blob: b76dee23bdc9864122ae6aa0d4e8f097cb758b13 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/kernel/sys.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 */
7
Paul Gortmaker9984de12011-05-23 14:51:41 -04008#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mm.h>
10#include <linux/utsname.h>
11#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/reboot.h>
13#include <linux/prctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/highuid.h>
15#include <linux/fs.h>
Paul Gortmaker74da1ff2011-05-26 12:48:41 -040016#include <linux/kmod.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020017#include <linux/perf_event.h>
Daniel Walker3e88c552007-05-10 22:22:53 -070018#include <linux/resource.h>
Eric W. Biedermandc009d92005-06-25 14:57:52 -070019#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/workqueue.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080021#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/device.h>
23#include <linux/key.h>
24#include <linux/times.h>
25#include <linux/posix-timers.h>
26#include <linux/security.h>
27#include <linux/dcookies.h>
28#include <linux/suspend.h>
29#include <linux/tty.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070030#include <linux/signal.h>
Matt Helsley9f460802005-11-07 00:59:16 -080031#include <linux/cn_proc.h>
Andi Kleen3cfc3482006-09-26 10:52:28 +020032#include <linux/getcpu.h>
Eric Dumazet6eaeeab2007-05-10 22:22:37 -070033#include <linux/task_io_accounting_ops.h>
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -070034#include <linux/seccomp.h>
Mark Lord40477272007-10-01 01:20:10 -070035#include <linux/cpu.h>
Christoph Hellwige28cbf22010-03-10 15:21:19 -080036#include <linux/personality.h>
Paul Mackerrase3d5a272009-01-06 14:41:02 -080037#include <linux/ptrace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040038#include <linux/fs_struct.h>
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -070039#include <linux/file.h>
40#include <linux/mount.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/gfp.h>
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +010042#include <linux/syscore_ops.h>
Andi Kleenbe274252011-08-19 16:15:10 -070043#include <linux/version.h>
44#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <linux/compat.h>
47#include <linux/syscalls.h>
Keshavamurthy Anil S00d7c052005-12-12 00:37:33 -080048#include <linux/kprobes.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070049#include <linux/user_namespace.h>
Chen Gang7fe5e042013-02-21 16:43:06 -080050#include <linux/binfmts.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Stephen Rothwell4a22f162013-04-30 15:27:37 -070052#include <linux/sched.h>
Ingo Molnar4eb5aaa2017-02-08 18:51:29 +010053#include <linux/sched/autogroup.h>
Ingo Molnar4f177222017-02-08 08:45:17 +010054#include <linux/sched/loadavg.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010055#include <linux/sched/stat.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010056#include <linux/sched/mm.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +010057#include <linux/sched/coredump.h>
Ingo Molnar29930022017-02-08 18:51:36 +010058#include <linux/sched/task.h>
Ingo Molnar32ef5512017-02-05 11:48:36 +010059#include <linux/sched/cputime.h>
Stephen Rothwell4a22f162013-04-30 15:27:37 -070060#include <linux/rcupdate.h>
61#include <linux/uidgid.h>
62#include <linux/cred.h>
63
Thomas Gleixnerb617cfc2018-04-29 15:20:11 +020064#include <linux/nospec.h>
65
Seiji Aguchi04c68622011-01-12 16:59:30 -080066#include <linux/kmsg_dump.h>
Andi Kleenbe274252011-08-19 16:15:10 -070067/* Move somewhere else to avoid recompiling? */
68#include <generated/utsrelease.h>
Seiji Aguchi04c68622011-01-12 16:59:30 -080069
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080070#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <asm/io.h>
72#include <asm/unistd.h>
73
Dominik Brodowskie530dca2018-03-19 18:09:27 +010074#include "uid16.h"
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#ifndef SET_UNALIGN_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070077# define SET_UNALIGN_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#endif
79#ifndef GET_UNALIGN_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070080# define GET_UNALIGN_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
82#ifndef SET_FPEMU_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070083# define SET_FPEMU_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#endif
85#ifndef GET_FPEMU_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070086# define GET_FPEMU_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#endif
88#ifndef SET_FPEXC_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070089# define SET_FPEXC_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#endif
91#ifndef GET_FPEXC_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070092# define GET_FPEXC_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#endif
Anton Blanchard651d7652006-06-07 16:10:19 +100094#ifndef GET_ENDIAN
vishnu.psec94fc32014-10-09 15:30:23 -070095# define GET_ENDIAN(a, b) (-EINVAL)
Anton Blanchard651d7652006-06-07 16:10:19 +100096#endif
97#ifndef SET_ENDIAN
vishnu.psec94fc32014-10-09 15:30:23 -070098# define SET_ENDIAN(a, b) (-EINVAL)
Anton Blanchard651d7652006-06-07 16:10:19 +100099#endif
Erik Bosman8fb402b2008-04-11 18:54:17 +0200100#ifndef GET_TSC_CTL
101# define GET_TSC_CTL(a) (-EINVAL)
102#endif
103#ifndef SET_TSC_CTL
104# define SET_TSC_CTL(a) (-EINVAL)
105#endif
Dave Hansenfe3d1972014-11-14 07:18:29 -0800106#ifndef MPX_ENABLE_MANAGEMENT
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700107# define MPX_ENABLE_MANAGEMENT() (-EINVAL)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800108#endif
109#ifndef MPX_DISABLE_MANAGEMENT
Dave Hansen46a6e0c2015-06-07 11:37:02 -0700110# define MPX_DISABLE_MANAGEMENT() (-EINVAL)
Dave Hansenfe3d1972014-11-14 07:18:29 -0800111#endif
Paul Burton97915542015-01-08 12:17:37 +0000112#ifndef GET_FP_MODE
113# define GET_FP_MODE(a) (-EINVAL)
114#endif
115#ifndef SET_FP_MODE
116# define SET_FP_MODE(a,b) (-EINVAL)
117#endif
Dave Martin2d2123b2017-10-31 15:51:14 +0000118#ifndef SVE_SET_VL
119# define SVE_SET_VL(a) (-EINVAL)
120#endif
121#ifndef SVE_GET_VL
122# define SVE_GET_VL() (-EINVAL)
123#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/*
126 * this is where the system-wide overflow UID and GID are defined, for
127 * architectures that now have 32-bit UID/GID but didn't in the past
128 */
129
130int overflowuid = DEFAULT_OVERFLOWUID;
131int overflowgid = DEFAULT_OVERFLOWGID;
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133EXPORT_SYMBOL(overflowuid);
134EXPORT_SYMBOL(overflowgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136/*
137 * the same as above, but for filesystems which can only store a 16-bit
138 * UID and GID. as such, this is needed on all architectures
139 */
140
141int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
Wolffhardt Schwabe8b2770a2017-12-14 19:13:57 +0100142int fs_overflowgid = DEFAULT_FS_OVERFLOWGID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144EXPORT_SYMBOL(fs_overflowuid);
145EXPORT_SYMBOL(fs_overflowgid);
146
147/*
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700148 * Returns true if current's euid is same as p's uid or euid,
149 * or has CAP_SYS_NICE to p's user_ns.
150 *
151 * Called with rcu_read_lock, creds are safe
152 */
153static bool set_one_prio_perm(struct task_struct *p)
154{
155 const struct cred *cred = current_cred(), *pcred = __task_cred(p);
156
Eric W. Biederman5af66202012-03-03 20:21:47 -0800157 if (uid_eq(pcred->uid, cred->euid) ||
158 uid_eq(pcred->euid, cred->euid))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700159 return true;
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -0800160 if (ns_capable(pcred->user_ns, CAP_SYS_NICE))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700161 return true;
162 return false;
163}
164
165/*
David Howellsc69e8d92008-11-14 10:39:19 +1100166 * set the priority of a task
167 * - the caller must hold the RCU read lock
168 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169static int set_one_prio(struct task_struct *p, int niceval, int error)
170{
171 int no_nice;
172
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700173 if (!set_one_prio_perm(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 error = -EPERM;
175 goto out;
176 }
Matt Mackalle43379f2005-05-01 08:59:00 -0700177 if (niceval < task_nice(p) && !can_nice(p, niceval)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 error = -EACCES;
179 goto out;
180 }
181 no_nice = security_task_setnice(p, niceval);
182 if (no_nice) {
183 error = no_nice;
184 goto out;
185 }
186 if (error == -ESRCH)
187 error = 0;
188 set_user_nice(p, niceval);
189out:
190 return error;
191}
192
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100193SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 struct task_struct *g, *p;
196 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100197 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 int error = -EINVAL;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800199 struct pid *pgrp;
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800200 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Daniel Walker3e88c552007-05-10 22:22:53 -0700202 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 goto out;
204
205 /* normalize: avoid signed division (rounding problems) */
206 error = -ESRCH;
Dongsheng Yangc4a4d2f2014-02-11 15:34:51 +0800207 if (niceval < MIN_NICE)
208 niceval = MIN_NICE;
209 if (niceval > MAX_NICE)
210 niceval = MAX_NICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000212 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 read_lock(&tasklist_lock);
214 switch (which) {
vishnu.psec94fc32014-10-09 15:30:23 -0700215 case PRIO_PROCESS:
216 if (who)
217 p = find_task_by_vpid(who);
218 else
219 p = current;
220 if (p)
221 error = set_one_prio(p, niceval, error);
222 break;
223 case PRIO_PGRP:
224 if (who)
225 pgrp = find_vpid(who);
226 else
227 pgrp = task_pgrp(current);
228 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
229 error = set_one_prio(p, niceval, error);
230 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
231 break;
232 case PRIO_USER:
233 uid = make_kuid(cred->user_ns, who);
234 user = cred->user;
235 if (!who)
236 uid = cred->uid;
237 else if (!uid_eq(uid, cred->uid)) {
238 user = find_user(uid);
239 if (!user)
David Howells86a264a2008-11-14 10:39:18 +1100240 goto out_unlock; /* No processes for this user */
vishnu.psec94fc32014-10-09 15:30:23 -0700241 }
242 do_each_thread(g, p) {
Ben Segall8639b462015-11-06 16:32:48 -0800243 if (uid_eq(task_uid(p), uid) && task_pid_vnr(p))
vishnu.psec94fc32014-10-09 15:30:23 -0700244 error = set_one_prio(p, niceval, error);
245 } while_each_thread(g, p);
246 if (!uid_eq(uid, cred->uid))
247 free_uid(user); /* For find_user() */
248 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250out_unlock:
251 read_unlock(&tasklist_lock);
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000252 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253out:
254 return error;
255}
256
257/*
258 * Ugh. To avoid negative return values, "getpriority()" will
259 * not return the normal nice-value, but a negated value that
260 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
261 * to stay compatible.
262 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100263SYSCALL_DEFINE2(getpriority, int, which, int, who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 struct task_struct *g, *p;
266 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100267 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 long niceval, retval = -ESRCH;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800269 struct pid *pgrp;
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800270 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Daniel Walker3e88c552007-05-10 22:22:53 -0700272 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return -EINVAL;
274
Tetsuo Handa70118832010-02-22 12:44:16 -0800275 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 read_lock(&tasklist_lock);
277 switch (which) {
vishnu.psec94fc32014-10-09 15:30:23 -0700278 case PRIO_PROCESS:
279 if (who)
280 p = find_task_by_vpid(who);
281 else
282 p = current;
283 if (p) {
284 niceval = nice_to_rlimit(task_nice(p));
285 if (niceval > retval)
286 retval = niceval;
287 }
288 break;
289 case PRIO_PGRP:
290 if (who)
291 pgrp = find_vpid(who);
292 else
293 pgrp = task_pgrp(current);
294 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
295 niceval = nice_to_rlimit(task_nice(p));
296 if (niceval > retval)
297 retval = niceval;
298 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
299 break;
300 case PRIO_USER:
301 uid = make_kuid(cred->user_ns, who);
302 user = cred->user;
303 if (!who)
304 uid = cred->uid;
305 else if (!uid_eq(uid, cred->uid)) {
306 user = find_user(uid);
307 if (!user)
308 goto out_unlock; /* No processes for this user */
309 }
310 do_each_thread(g, p) {
Ben Segall8639b462015-11-06 16:32:48 -0800311 if (uid_eq(task_uid(p), uid) && task_pid_vnr(p)) {
Dongsheng Yang7aa2c012014-05-08 18:33:49 +0900312 niceval = nice_to_rlimit(task_nice(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (niceval > retval)
314 retval = niceval;
315 }
vishnu.psec94fc32014-10-09 15:30:23 -0700316 } while_each_thread(g, p);
317 if (!uid_eq(uid, cred->uid))
318 free_uid(user); /* for find_user() */
319 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321out_unlock:
322 read_unlock(&tasklist_lock);
Tetsuo Handa70118832010-02-22 12:44:16 -0800323 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 return retval;
326}
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328/*
329 * Unprivileged users may change the real gid to the effective gid
330 * or vice versa. (BSD-style)
331 *
332 * If you set the real gid at all, or set the effective gid to a value not
333 * equal to the real gid, then the saved gid is set to the new effective gid.
334 *
335 * This makes it possible for a setgid program to completely drop its
336 * privileges, which is often a useful assertion to make when you are doing
337 * a security audit over a program.
338 *
339 * The general idea is that a program which uses just setregid() will be
340 * 100% compatible with BSD. A program which uses just setgid() will be
vishnu.psec94fc32014-10-09 15:30:23 -0700341 * 100% compatible with POSIX with saved IDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 *
343 * SMP: There are not races, the GIDs are checked only by filesystem
344 * operations (as far as semantic preservation is concerned).
345 */
Iulia Manda28138932015-04-15 16:16:41 -0700346#ifdef CONFIG_MULTIUSER
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100347long __sys_setregid(gid_t rgid, gid_t egid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800349 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100350 const struct cred *old;
351 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800353 kgid_t krgid, kegid;
354
355 krgid = make_kgid(ns, rgid);
356 kegid = make_kgid(ns, egid);
357
358 if ((rgid != (gid_t) -1) && !gid_valid(krgid))
359 return -EINVAL;
360 if ((egid != (gid_t) -1) && !gid_valid(kegid))
361 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
David Howellsd84f4f92008-11-14 10:39:23 +1100363 new = prepare_creds();
364 if (!new)
365 return -ENOMEM;
366 old = current_cred();
367
David Howellsd84f4f92008-11-14 10:39:23 +1100368 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (rgid != (gid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800370 if (gid_eq(old->gid, krgid) ||
371 gid_eq(old->egid, krgid) ||
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700372 ns_capable(old->user_ns, CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800373 new->gid = krgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 else
David Howellsd84f4f92008-11-14 10:39:23 +1100375 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 if (egid != (gid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800378 if (gid_eq(old->gid, kegid) ||
379 gid_eq(old->egid, kegid) ||
380 gid_eq(old->sgid, kegid) ||
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700381 ns_capable(old->user_ns, CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800382 new->egid = kegid;
Cal Peake756184b2006-09-30 23:27:24 -0700383 else
David Howellsd84f4f92008-11-14 10:39:23 +1100384 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
David Howellsd84f4f92008-11-14 10:39:23 +1100386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (rgid != (gid_t) -1 ||
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800388 (egid != (gid_t) -1 && !gid_eq(kegid, old->gid)))
David Howellsd84f4f92008-11-14 10:39:23 +1100389 new->sgid = new->egid;
390 new->fsgid = new->egid;
391
392 return commit_creds(new);
393
394error:
395 abort_creds(new);
396 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100399SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid)
400{
401 return __sys_setregid(rgid, egid);
402}
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404/*
vishnu.psec94fc32014-10-09 15:30:23 -0700405 * setgid() is implemented like SysV w/ SAVED_IDS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 *
407 * SMP: Same implicit races as above.
408 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100409long __sys_setgid(gid_t gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800411 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100412 const struct cred *old;
413 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800415 kgid_t kgid;
416
417 kgid = make_kgid(ns, gid);
418 if (!gid_valid(kgid))
419 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
David Howellsd84f4f92008-11-14 10:39:23 +1100421 new = prepare_creds();
422 if (!new)
423 return -ENOMEM;
424 old = current_cred();
425
David Howellsd84f4f92008-11-14 10:39:23 +1100426 retval = -EPERM;
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700427 if (ns_capable(old->user_ns, CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800428 new->gid = new->egid = new->sgid = new->fsgid = kgid;
429 else if (gid_eq(kgid, old->gid) || gid_eq(kgid, old->sgid))
430 new->egid = new->fsgid = kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 else
David Howellsd84f4f92008-11-14 10:39:23 +1100432 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
David Howellsd84f4f92008-11-14 10:39:23 +1100434 return commit_creds(new);
435
436error:
437 abort_creds(new);
438 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
Dhaval Giani54e99122009-02-27 15:13:54 +0530440
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100441SYSCALL_DEFINE1(setgid, gid_t, gid)
442{
443 return __sys_setgid(gid);
444}
445
David Howellsd84f4f92008-11-14 10:39:23 +1100446/*
447 * change the user struct in a credentials set to match the new UID
448 */
449static int set_user(struct cred *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 struct user_struct *new_user;
452
Eric W. Biederman078de5f2012-02-08 07:00:08 -0800453 new_user = alloc_uid(new->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (!new_user)
455 return -EAGAIN;
456
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +0400457 /*
458 * We don't fail in case of NPROC limit excess here because too many
459 * poorly written programs don't check set*uid() return code, assuming
460 * it never fails if called by root. We may still enforce NPROC limit
461 * for programs doing set*uid()+execve() by harmlessly deferring the
462 * failure to the execve() stage.
463 */
Jiri Slaby78d7d402010-03-05 13:42:54 -0800464 if (atomic_read(&new_user->processes) >= rlimit(RLIMIT_NPROC) &&
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +0400465 new_user != INIT_USER)
466 current->flags |= PF_NPROC_EXCEEDED;
467 else
468 current->flags &= ~PF_NPROC_EXCEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
David Howellsd84f4f92008-11-14 10:39:23 +1100470 free_uid(new->user);
471 new->user = new_user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return 0;
473}
474
475/*
476 * Unprivileged users may change the real uid to the effective uid
477 * or vice versa. (BSD-style)
478 *
479 * If you set the real uid at all, or set the effective uid to a value not
480 * equal to the real uid, then the saved uid is set to the new effective uid.
481 *
482 * This makes it possible for a setuid program to completely drop its
483 * privileges, which is often a useful assertion to make when you are doing
484 * a security audit over a program.
485 *
486 * The general idea is that a program which uses just setreuid() will be
487 * 100% compatible with BSD. A program which uses just setuid() will be
vishnu.psec94fc32014-10-09 15:30:23 -0700488 * 100% compatible with POSIX with saved IDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100490long __sys_setreuid(uid_t ruid, uid_t euid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800492 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100493 const struct cred *old;
494 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800496 kuid_t kruid, keuid;
497
498 kruid = make_kuid(ns, ruid);
499 keuid = make_kuid(ns, euid);
500
501 if ((ruid != (uid_t) -1) && !uid_valid(kruid))
502 return -EINVAL;
503 if ((euid != (uid_t) -1) && !uid_valid(keuid))
504 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
David Howellsd84f4f92008-11-14 10:39:23 +1100506 new = prepare_creds();
507 if (!new)
508 return -ENOMEM;
509 old = current_cred();
510
David Howellsd84f4f92008-11-14 10:39:23 +1100511 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (ruid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800513 new->uid = kruid;
514 if (!uid_eq(old->uid, kruid) &&
515 !uid_eq(old->euid, kruid) &&
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700516 !ns_capable(old->user_ns, CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100517 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
520 if (euid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800521 new->euid = keuid;
522 if (!uid_eq(old->uid, keuid) &&
523 !uid_eq(old->euid, keuid) &&
524 !uid_eq(old->suid, keuid) &&
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700525 !ns_capable(old->user_ns, CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100526 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800529 if (!uid_eq(new->uid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530530 retval = set_user(new);
531 if (retval < 0)
532 goto error;
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (ruid != (uid_t) -1 ||
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800535 (euid != (uid_t) -1 && !uid_eq(keuid, old->uid)))
David Howellsd84f4f92008-11-14 10:39:23 +1100536 new->suid = new->euid;
537 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
David Howellsd84f4f92008-11-14 10:39:23 +1100539 retval = security_task_fix_setuid(new, old, LSM_SETID_RE);
540 if (retval < 0)
541 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
David Howellsd84f4f92008-11-14 10:39:23 +1100543 return commit_creds(new);
544
545error:
546 abort_creds(new);
547 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
vishnu.psec94fc32014-10-09 15:30:23 -0700549
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100550SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid)
551{
552 return __sys_setreuid(ruid, euid);
553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555/*
vishnu.psec94fc32014-10-09 15:30:23 -0700556 * setuid() is implemented like SysV with SAVED_IDS
557 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 * Note that SAVED_ID's is deficient in that a setuid root program
vishnu.psec94fc32014-10-09 15:30:23 -0700559 * like sendmail, for example, cannot set its uid to be a normal
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 * user and then switch back, because if you're root, setuid() sets
561 * the saved uid too. If you don't like this, blame the bright people
562 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
563 * will allow a root program to temporarily drop privileges and be able to
vishnu.psec94fc32014-10-09 15:30:23 -0700564 * regain them by swapping the real and effective uid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100566long __sys_setuid(uid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800568 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100569 const struct cred *old;
570 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800572 kuid_t kuid;
573
574 kuid = make_kuid(ns, uid);
575 if (!uid_valid(kuid))
576 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
David Howellsd84f4f92008-11-14 10:39:23 +1100578 new = prepare_creds();
579 if (!new)
580 return -ENOMEM;
581 old = current_cred();
582
David Howellsd84f4f92008-11-14 10:39:23 +1100583 retval = -EPERM;
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700584 if (ns_capable(old->user_ns, CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800585 new->suid = new->uid = kuid;
586 if (!uid_eq(kuid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530587 retval = set_user(new);
588 if (retval < 0)
589 goto error;
David Howellsd84f4f92008-11-14 10:39:23 +1100590 }
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800591 } else if (!uid_eq(kuid, old->uid) && !uid_eq(kuid, new->suid)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100592 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800595 new->fsuid = new->euid = kuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
David Howellsd84f4f92008-11-14 10:39:23 +1100597 retval = security_task_fix_setuid(new, old, LSM_SETID_ID);
598 if (retval < 0)
599 goto error;
600
601 return commit_creds(new);
602
603error:
604 abort_creds(new);
605 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100608SYSCALL_DEFINE1(setuid, uid_t, uid)
609{
610 return __sys_setuid(uid);
611}
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614/*
615 * This function implements a generic ability to update ruid, euid,
616 * and suid. This allows you to implement the 4.4 compatible seteuid().
617 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100618long __sys_setresuid(uid_t ruid, uid_t euid, uid_t suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800620 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100621 const struct cred *old;
622 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800624 kuid_t kruid, keuid, ksuid;
625
626 kruid = make_kuid(ns, ruid);
627 keuid = make_kuid(ns, euid);
628 ksuid = make_kuid(ns, suid);
629
630 if ((ruid != (uid_t) -1) && !uid_valid(kruid))
631 return -EINVAL;
632
633 if ((euid != (uid_t) -1) && !uid_valid(keuid))
634 return -EINVAL;
635
636 if ((suid != (uid_t) -1) && !uid_valid(ksuid))
637 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
David Howellsd84f4f92008-11-14 10:39:23 +1100639 new = prepare_creds();
640 if (!new)
641 return -ENOMEM;
642
David Howellsd84f4f92008-11-14 10:39:23 +1100643 old = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
David Howellsd84f4f92008-11-14 10:39:23 +1100645 retval = -EPERM;
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700646 if (!ns_capable(old->user_ns, CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800647 if (ruid != (uid_t) -1 && !uid_eq(kruid, old->uid) &&
648 !uid_eq(kruid, old->euid) && !uid_eq(kruid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100649 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800650 if (euid != (uid_t) -1 && !uid_eq(keuid, old->uid) &&
651 !uid_eq(keuid, old->euid) && !uid_eq(keuid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100652 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800653 if (suid != (uid_t) -1 && !uid_eq(ksuid, old->uid) &&
654 !uid_eq(ksuid, old->euid) && !uid_eq(ksuid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100655 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
David Howellsd84f4f92008-11-14 10:39:23 +1100657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (ruid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800659 new->uid = kruid;
660 if (!uid_eq(kruid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530661 retval = set_user(new);
662 if (retval < 0)
663 goto error;
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
David Howellsd84f4f92008-11-14 10:39:23 +1100666 if (euid != (uid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800667 new->euid = keuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (suid != (uid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800669 new->suid = ksuid;
David Howellsd84f4f92008-11-14 10:39:23 +1100670 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
David Howellsd84f4f92008-11-14 10:39:23 +1100672 retval = security_task_fix_setuid(new, old, LSM_SETID_RES);
673 if (retval < 0)
674 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
David Howellsd84f4f92008-11-14 10:39:23 +1100676 return commit_creds(new);
677
678error:
679 abort_creds(new);
680 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100683SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid)
684{
685 return __sys_setresuid(ruid, euid, suid);
686}
687
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800688SYSCALL_DEFINE3(getresuid, uid_t __user *, ruidp, uid_t __user *, euidp, uid_t __user *, suidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
David Howells86a264a2008-11-14 10:39:18 +1100690 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800692 uid_t ruid, euid, suid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800694 ruid = from_kuid_munged(cred->user_ns, cred->uid);
695 euid = from_kuid_munged(cred->user_ns, cred->euid);
696 suid = from_kuid_munged(cred->user_ns, cred->suid);
697
vishnu.psec94fc32014-10-09 15:30:23 -0700698 retval = put_user(ruid, ruidp);
699 if (!retval) {
700 retval = put_user(euid, euidp);
701 if (!retval)
702 return put_user(suid, suidp);
703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return retval;
705}
706
707/*
708 * Same as above, but for rgid, egid, sgid.
709 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100710long __sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800712 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100713 const struct cred *old;
714 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800716 kgid_t krgid, kegid, ksgid;
717
718 krgid = make_kgid(ns, rgid);
719 kegid = make_kgid(ns, egid);
720 ksgid = make_kgid(ns, sgid);
721
722 if ((rgid != (gid_t) -1) && !gid_valid(krgid))
723 return -EINVAL;
724 if ((egid != (gid_t) -1) && !gid_valid(kegid))
725 return -EINVAL;
726 if ((sgid != (gid_t) -1) && !gid_valid(ksgid))
727 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
David Howellsd84f4f92008-11-14 10:39:23 +1100729 new = prepare_creds();
730 if (!new)
731 return -ENOMEM;
732 old = current_cred();
733
David Howellsd84f4f92008-11-14 10:39:23 +1100734 retval = -EPERM;
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700735 if (!ns_capable(old->user_ns, CAP_SETGID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800736 if (rgid != (gid_t) -1 && !gid_eq(krgid, old->gid) &&
737 !gid_eq(krgid, old->egid) && !gid_eq(krgid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100738 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800739 if (egid != (gid_t) -1 && !gid_eq(kegid, old->gid) &&
740 !gid_eq(kegid, old->egid) && !gid_eq(kegid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100741 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800742 if (sgid != (gid_t) -1 && !gid_eq(ksgid, old->gid) &&
743 !gid_eq(ksgid, old->egid) && !gid_eq(ksgid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100744 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
David Howellsd84f4f92008-11-14 10:39:23 +1100747 if (rgid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800748 new->gid = krgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100749 if (egid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800750 new->egid = kegid;
David Howellsd84f4f92008-11-14 10:39:23 +1100751 if (sgid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800752 new->sgid = ksgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100753 new->fsgid = new->egid;
754
755 return commit_creds(new);
756
757error:
758 abort_creds(new);
759 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100762SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
763{
764 return __sys_setresgid(rgid, egid, sgid);
765}
766
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800767SYSCALL_DEFINE3(getresgid, gid_t __user *, rgidp, gid_t __user *, egidp, gid_t __user *, sgidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
David Howells86a264a2008-11-14 10:39:18 +1100769 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800771 gid_t rgid, egid, sgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800773 rgid = from_kgid_munged(cred->user_ns, cred->gid);
774 egid = from_kgid_munged(cred->user_ns, cred->egid);
775 sgid = from_kgid_munged(cred->user_ns, cred->sgid);
776
vishnu.psec94fc32014-10-09 15:30:23 -0700777 retval = put_user(rgid, rgidp);
778 if (!retval) {
779 retval = put_user(egid, egidp);
780 if (!retval)
781 retval = put_user(sgid, sgidp);
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 return retval;
785}
786
787
788/*
789 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
790 * is used for "access()" and for the NFS daemon (letting nfsd stay at
791 * whatever uid it wants to). It normally shadows "euid", except when
792 * explicitly set by setfsuid() or for access..
793 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100794long __sys_setfsuid(uid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
David Howellsd84f4f92008-11-14 10:39:23 +1100796 const struct cred *old;
797 struct cred *new;
798 uid_t old_fsuid;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800799 kuid_t kuid;
800
801 old = current_cred();
802 old_fsuid = from_kuid_munged(old->user_ns, old->fsuid);
803
804 kuid = make_kuid(old->user_ns, uid);
805 if (!uid_valid(kuid))
806 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
David Howellsd84f4f92008-11-14 10:39:23 +1100808 new = prepare_creds();
809 if (!new)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800810 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800812 if (uid_eq(kuid, old->uid) || uid_eq(kuid, old->euid) ||
813 uid_eq(kuid, old->suid) || uid_eq(kuid, old->fsuid) ||
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700814 ns_capable(old->user_ns, CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800815 if (!uid_eq(kuid, old->fsuid)) {
816 new->fsuid = kuid;
David Howellsd84f4f92008-11-14 10:39:23 +1100817 if (security_task_fix_setuid(new, old, LSM_SETID_FS) == 0)
818 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
David Howellsd84f4f92008-11-14 10:39:23 +1100822 abort_creds(new);
823 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
David Howellsd84f4f92008-11-14 10:39:23 +1100825change_okay:
826 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return old_fsuid;
828}
829
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100830SYSCALL_DEFINE1(setfsuid, uid_t, uid)
831{
832 return __sys_setfsuid(uid);
833}
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835/*
John Anthony Kazos Jrf42df9e2007-05-09 08:23:08 +0200836 * Samma på svenska..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100838long __sys_setfsgid(gid_t gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
David Howellsd84f4f92008-11-14 10:39:23 +1100840 const struct cred *old;
841 struct cred *new;
842 gid_t old_fsgid;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800843 kgid_t kgid;
844
845 old = current_cred();
846 old_fsgid = from_kgid_munged(old->user_ns, old->fsgid);
847
848 kgid = make_kgid(old->user_ns, gid);
849 if (!gid_valid(kgid))
850 return old_fsgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
David Howellsd84f4f92008-11-14 10:39:23 +1100852 new = prepare_creds();
853 if (!new)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800854 return old_fsgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100855
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800856 if (gid_eq(kgid, old->gid) || gid_eq(kgid, old->egid) ||
857 gid_eq(kgid, old->sgid) || gid_eq(kgid, old->fsgid) ||
Eric W. Biedermanc7b96ac2013-03-20 12:49:49 -0700858 ns_capable(old->user_ns, CAP_SETGID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800859 if (!gid_eq(kgid, old->fsgid)) {
860 new->fsgid = kgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100861 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
David Howellsd84f4f92008-11-14 10:39:23 +1100864
David Howellsd84f4f92008-11-14 10:39:23 +1100865 abort_creds(new);
866 return old_fsgid;
867
868change_okay:
869 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return old_fsgid;
871}
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100872
873SYSCALL_DEFINE1(setfsgid, gid_t, gid)
874{
875 return __sys_setfsgid(gid);
876}
Iulia Manda28138932015-04-15 16:16:41 -0700877#endif /* CONFIG_MULTIUSER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Stephen Rothwell4a22f162013-04-30 15:27:37 -0700879/**
880 * sys_getpid - return the thread group id of the current process
881 *
882 * Note, despite the name, this returns the tgid not the pid. The tgid and
883 * the pid are identical unless CLONE_THREAD was specified on clone() in
884 * which case the tgid is the same in all threads of the same group.
885 *
886 * This is SMP safe as current->tgid does not change.
887 */
888SYSCALL_DEFINE0(getpid)
889{
890 return task_tgid_vnr(current);
891}
892
893/* Thread ID - the internal kernel "pid" */
894SYSCALL_DEFINE0(gettid)
895{
896 return task_pid_vnr(current);
897}
898
899/*
900 * Accessing ->real_parent is not SMP-safe, it could
901 * change from under us. However, we can use a stale
902 * value of ->real_parent under rcu_read_lock(), see
903 * release_task()->call_rcu(delayed_put_task_struct).
904 */
905SYSCALL_DEFINE0(getppid)
906{
907 int pid;
908
909 rcu_read_lock();
910 pid = task_tgid_vnr(rcu_dereference(current->real_parent));
911 rcu_read_unlock();
912
913 return pid;
914}
915
916SYSCALL_DEFINE0(getuid)
917{
918 /* Only we change this so SMP safe */
919 return from_kuid_munged(current_user_ns(), current_uid());
920}
921
922SYSCALL_DEFINE0(geteuid)
923{
924 /* Only we change this so SMP safe */
925 return from_kuid_munged(current_user_ns(), current_euid());
926}
927
928SYSCALL_DEFINE0(getgid)
929{
930 /* Only we change this so SMP safe */
931 return from_kgid_munged(current_user_ns(), current_gid());
932}
933
934SYSCALL_DEFINE0(getegid)
935{
936 /* Only we change this so SMP safe */
937 return from_kgid_munged(current_user_ns(), current_egid());
938}
939
Al Viroca2406e2017-05-31 04:22:44 -0400940static void do_sys_times(struct tms *tms)
Frank Mayharf06febc2008-09-12 09:54:39 -0700941{
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100942 u64 tgutime, tgstime, cutime, cstime;
Frank Mayharf06febc2008-09-12 09:54:39 -0700943
Frederic Weisbeckere80d0a1a2012-11-21 16:26:44 +0100944 thread_group_cputime_adjusted(current, &tgutime, &tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700945 cutime = current->signal->cutime;
946 cstime = current->signal->cstime;
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100947 tms->tms_utime = nsec_to_clock_t(tgutime);
948 tms->tms_stime = nsec_to_clock_t(tgstime);
949 tms->tms_cutime = nsec_to_clock_t(cutime);
950 tms->tms_cstime = nsec_to_clock_t(cstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700951}
952
Heiko Carstens58fd3aa2009-01-14 14:14:03 +0100953SYSCALL_DEFINE1(times, struct tms __user *, tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (tbuf) {
956 struct tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Frank Mayharf06febc2008-09-12 09:54:39 -0700958 do_sys_times(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (copy_to_user(tbuf, &tmp, sizeof(struct tms)))
960 return -EFAULT;
961 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800962 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return (long) jiffies_64_to_clock_t(get_jiffies_64());
964}
965
Al Viroca2406e2017-05-31 04:22:44 -0400966#ifdef CONFIG_COMPAT
967static compat_clock_t clock_t_to_compat_clock_t(clock_t x)
968{
969 return compat_jiffies_to_clock_t(clock_t_to_jiffies(x));
970}
971
972COMPAT_SYSCALL_DEFINE1(times, struct compat_tms __user *, tbuf)
973{
974 if (tbuf) {
975 struct tms tms;
976 struct compat_tms tmp;
977
978 do_sys_times(&tms);
979 /* Convert our struct tms to the compat version. */
980 tmp.tms_utime = clock_t_to_compat_clock_t(tms.tms_utime);
981 tmp.tms_stime = clock_t_to_compat_clock_t(tms.tms_stime);
982 tmp.tms_cutime = clock_t_to_compat_clock_t(tms.tms_cutime);
983 tmp.tms_cstime = clock_t_to_compat_clock_t(tms.tms_cstime);
984 if (copy_to_user(tbuf, &tmp, sizeof(tmp)))
985 return -EFAULT;
986 }
987 force_successful_syscall_return();
988 return compat_jiffies_to_clock_t(jiffies);
989}
990#endif
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992/*
993 * This needs some heavy checking ...
994 * I just haven't the stomach for it. I also don't fully
995 * understand sessions/pgrp etc. Let somebody who does explain it.
996 *
997 * OK, I think I have the protection semantics right.... this is really
998 * only important on a multi-user system anyway, to make sure one user
999 * can't send a signal to a process owned by another. -TYT, 12/12/91
1000 *
Oleg Nesterov98611e42014-01-23 15:55:52 -08001001 * !PF_FORKNOEXEC check to conform completely to POSIX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 */
Heiko Carstensb290ebe2009-01-14 14:14:06 +01001003SYSCALL_DEFINE2(setpgid, pid_t, pid, pid_t, pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
1005 struct task_struct *p;
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001006 struct task_struct *group_leader = current->group_leader;
Oleg Nesterov4e021302008-02-08 04:19:08 -08001007 struct pid *pgrp;
1008 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 if (!pid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001011 pid = task_pid_vnr(group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (!pgid)
1013 pgid = pid;
1014 if (pgid < 0)
1015 return -EINVAL;
Paul E. McKenney950eaac2010-08-31 17:00:18 -07001016 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 /* From this point forward we keep holding onto the tasklist lock
1019 * so that our parent does not change from under us. -DaveM
1020 */
1021 write_lock_irq(&tasklist_lock);
1022
1023 err = -ESRCH;
Oleg Nesterov4e021302008-02-08 04:19:08 -08001024 p = find_task_by_vpid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (!p)
1026 goto out;
1027
1028 err = -EINVAL;
1029 if (!thread_group_leader(p))
1030 goto out;
1031
Oleg Nesterov4e021302008-02-08 04:19:08 -08001032 if (same_thread_group(p->real_parent, group_leader)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 err = -EPERM;
Eric W. Biederman41487c62007-02-12 00:53:01 -08001034 if (task_session(p) != task_session(group_leader))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 goto out;
1036 err = -EACCES;
Oleg Nesterov98611e42014-01-23 15:55:52 -08001037 if (!(p->flags & PF_FORKNOEXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 goto out;
1039 } else {
1040 err = -ESRCH;
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001041 if (p != group_leader)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 goto out;
1043 }
1044
1045 err = -EPERM;
1046 if (p->signal->leader)
1047 goto out;
1048
Oleg Nesterov4e021302008-02-08 04:19:08 -08001049 pgrp = task_pid(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (pgid != pid) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001051 struct task_struct *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Oleg Nesterov4e021302008-02-08 04:19:08 -08001053 pgrp = find_vpid(pgid);
1054 g = pid_task(pgrp, PIDTYPE_PGID);
Eric W. Biederman41487c62007-02-12 00:53:01 -08001055 if (!g || task_session(g) != task_session(group_leader))
Oleg Nesterovf020bc42006-12-08 02:38:02 -08001056 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 err = security_task_setpgid(p, pgid);
1060 if (err)
1061 goto out;
1062
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07001063 if (task_pgrp(p) != pgrp)
Oleg Nesterov83beaf32008-04-30 00:54:27 -07001064 change_pid(p, PIDTYPE_PGID, pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 err = 0;
1067out:
1068 /* All paths lead to here, thus we are safe. -DaveM */
1069 write_unlock_irq(&tasklist_lock);
Paul E. McKenney950eaac2010-08-31 17:00:18 -07001070 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 return err;
1072}
1073
Dominik Brodowski192c5802018-03-11 11:34:27 +01001074static int do_getpgid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001076 struct task_struct *p;
1077 struct pid *grp;
1078 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001080 rcu_read_lock();
1081 if (!pid)
1082 grp = task_pgrp(current);
1083 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 retval = -ESRCH;
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001085 p = find_task_by_vpid(pid);
1086 if (!p)
1087 goto out;
1088 grp = task_pgrp(p);
1089 if (!grp)
1090 goto out;
1091
1092 retval = security_task_getpgid(p);
1093 if (retval)
1094 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001096 retval = pid_vnr(grp);
1097out:
1098 rcu_read_unlock();
1099 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Dominik Brodowski192c5802018-03-11 11:34:27 +01001102SYSCALL_DEFINE1(getpgid, pid_t, pid)
1103{
1104 return do_getpgid(pid);
1105}
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107#ifdef __ARCH_WANT_SYS_GETPGRP
1108
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001109SYSCALL_DEFINE0(getpgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Dominik Brodowski192c5802018-03-11 11:34:27 +01001111 return do_getpgid(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
1114#endif
1115
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001116SYSCALL_DEFINE1(getsid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001118 struct task_struct *p;
1119 struct pid *sid;
1120 int retval;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001121
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001122 rcu_read_lock();
1123 if (!pid)
1124 sid = task_session(current);
1125 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 retval = -ESRCH;
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001127 p = find_task_by_vpid(pid);
1128 if (!p)
1129 goto out;
1130 sid = task_session(p);
1131 if (!sid)
1132 goto out;
1133
1134 retval = security_task_getsid(p);
1135 if (retval)
1136 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001138 retval = pid_vnr(sid);
1139out:
1140 rcu_read_unlock();
1141 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
Oleg Nesterov81dabb42013-07-03 15:08:26 -07001144static void set_special_pids(struct pid *pid)
1145{
1146 struct task_struct *curr = current->group_leader;
1147
1148 if (task_session(curr) != pid)
1149 change_pid(curr, PIDTYPE_SID, pid);
1150
1151 if (task_pgrp(curr) != pid)
1152 change_pid(curr, PIDTYPE_PGID, pid);
1153}
1154
Dominik Brodowskie2aaa9f2018-03-16 12:36:06 +01001155int ksys_setsid(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
Oren Laadane19f2472006-01-08 01:03:58 -08001157 struct task_struct *group_leader = current->group_leader;
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001158 struct pid *sid = task_pid(group_leader);
1159 pid_t session = pid_vnr(sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 int err = -EPERM;
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 write_lock_irq(&tasklist_lock);
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001163 /* Fail if I am already a session leader */
1164 if (group_leader->signal->leader)
1165 goto out;
1166
Oleg Nesterov430c6232008-02-08 04:19:11 -08001167 /* Fail if a process group id already exists that equals the
1168 * proposed session id.
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001169 */
Oleg Nesterov6806aac2008-02-08 04:19:12 -08001170 if (pid_task(sid, PIDTYPE_PGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 goto out;
1172
Oren Laadane19f2472006-01-08 01:03:58 -08001173 group_leader->signal->leader = 1;
Oleg Nesterov81dabb42013-07-03 15:08:26 -07001174 set_special_pids(sid);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001175
Alan Cox9c9f4de2008-10-13 10:37:26 +01001176 proc_clear_tty(group_leader);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001177
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001178 err = session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179out:
1180 write_unlock_irq(&tasklist_lock);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001181 if (err > 0) {
Christian Borntraeger0d0df592009-10-26 16:49:34 -07001182 proc_sid_connector(group_leader);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001183 sched_autogroup_create_attach(group_leader);
1184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return err;
1186}
1187
Dominik Brodowskie2aaa9f2018-03-16 12:36:06 +01001188SYSCALL_DEFINE0(setsid)
1189{
1190 return ksys_setsid();
1191}
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193DECLARE_RWSEM(uts_sem);
1194
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001195#ifdef COMPAT_UTS_MACHINE
1196#define override_architecture(name) \
Andreas Schwab46da2762010-04-23 13:17:44 -04001197 (personality(current->personality) == PER_LINUX32 && \
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001198 copy_to_user(name->machine, COMPAT_UTS_MACHINE, \
1199 sizeof(COMPAT_UTS_MACHINE)))
1200#else
1201#define override_architecture(name) 0
1202#endif
1203
Andi Kleenbe274252011-08-19 16:15:10 -07001204/*
1205 * Work around broken programs that cannot handle "Linux 3.0".
1206 * 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 -08001207 * 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 -07001208 */
Kees Cook2702b152012-10-19 13:56:51 -07001209static int override_release(char __user *release, size_t len)
Andi Kleenbe274252011-08-19 16:15:10 -07001210{
1211 int ret = 0;
Andi Kleenbe274252011-08-19 16:15:10 -07001212
1213 if (current->personality & UNAME26) {
Kees Cook2702b152012-10-19 13:56:51 -07001214 const char *rest = UTS_RELEASE;
1215 char buf[65] = { 0 };
Andi Kleenbe274252011-08-19 16:15:10 -07001216 int ndots = 0;
1217 unsigned v;
Kees Cook2702b152012-10-19 13:56:51 -07001218 size_t copy;
Andi Kleenbe274252011-08-19 16:15:10 -07001219
1220 while (*rest) {
1221 if (*rest == '.' && ++ndots >= 3)
1222 break;
1223 if (!isdigit(*rest) && *rest != '.')
1224 break;
1225 rest++;
1226 }
Jon DeVree39afb5e2015-02-27 15:52:07 -08001227 v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 60;
Kees Cook31fd84b92012-10-19 18:45:53 -07001228 copy = clamp_t(size_t, len, 1, sizeof(buf));
Kees Cook2702b152012-10-19 13:56:51 -07001229 copy = scnprintf(buf, copy, "2.6.%u%s", v, rest);
1230 ret = copy_to_user(release, buf, copy + 1);
Andi Kleenbe274252011-08-19 16:15:10 -07001231 }
1232 return ret;
1233}
1234
Heiko Carstense48fbb62009-01-14 14:14:26 +01001235SYSCALL_DEFINE1(newuname, struct new_utsname __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
1237 int errno = 0;
1238
1239 down_read(&uts_sem);
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001240 if (copy_to_user(name, utsname(), sizeof *name))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 errno = -EFAULT;
1242 up_read(&uts_sem);
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001243
Andi Kleenbe274252011-08-19 16:15:10 -07001244 if (!errno && override_release(name->release, sizeof(name->release)))
1245 errno = -EFAULT;
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001246 if (!errno && override_architecture(name))
1247 errno = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return errno;
1249}
1250
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001251#ifdef __ARCH_WANT_SYS_OLD_UNAME
1252/*
1253 * Old cruft
1254 */
1255SYSCALL_DEFINE1(uname, struct old_utsname __user *, name)
1256{
1257 int error = 0;
1258
1259 if (!name)
1260 return -EFAULT;
1261
1262 down_read(&uts_sem);
1263 if (copy_to_user(name, utsname(), sizeof(*name)))
1264 error = -EFAULT;
1265 up_read(&uts_sem);
1266
Andi Kleenbe274252011-08-19 16:15:10 -07001267 if (!error && override_release(name->release, sizeof(name->release)))
1268 error = -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001269 if (!error && override_architecture(name))
1270 error = -EFAULT;
1271 return error;
1272}
1273
1274SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name)
1275{
1276 int error;
1277
1278 if (!name)
1279 return -EFAULT;
1280 if (!access_ok(VERIFY_WRITE, name, sizeof(struct oldold_utsname)))
1281 return -EFAULT;
1282
1283 down_read(&uts_sem);
1284 error = __copy_to_user(&name->sysname, &utsname()->sysname,
1285 __OLD_UTS_LEN);
1286 error |= __put_user(0, name->sysname + __OLD_UTS_LEN);
1287 error |= __copy_to_user(&name->nodename, &utsname()->nodename,
1288 __OLD_UTS_LEN);
1289 error |= __put_user(0, name->nodename + __OLD_UTS_LEN);
1290 error |= __copy_to_user(&name->release, &utsname()->release,
1291 __OLD_UTS_LEN);
1292 error |= __put_user(0, name->release + __OLD_UTS_LEN);
1293 error |= __copy_to_user(&name->version, &utsname()->version,
1294 __OLD_UTS_LEN);
1295 error |= __put_user(0, name->version + __OLD_UTS_LEN);
1296 error |= __copy_to_user(&name->machine, &utsname()->machine,
1297 __OLD_UTS_LEN);
1298 error |= __put_user(0, name->machine + __OLD_UTS_LEN);
1299 up_read(&uts_sem);
1300
1301 if (!error && override_architecture(name))
1302 error = -EFAULT;
Andi Kleenbe274252011-08-19 16:15:10 -07001303 if (!error && override_release(name->release, sizeof(name->release)))
1304 error = -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001305 return error ? -EFAULT : 0;
1306}
1307#endif
1308
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001309SYSCALL_DEFINE2(sethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
1311 int errno;
1312 char tmp[__NEW_UTS_LEN];
1313
Serge E. Hallynbb96a6f2011-03-23 16:43:18 -07001314 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 if (len < 0 || len > __NEW_UTS_LEN)
1318 return -EINVAL;
1319 down_write(&uts_sem);
1320 errno = -EFAULT;
1321 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001322 struct new_utsname *u = utsname();
1323
1324 memcpy(u->nodename, tmp, len);
1325 memset(u->nodename + len, 0, sizeof(u->nodename) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 errno = 0;
Sasikantha babu499eea62012-05-31 16:26:07 -07001327 uts_proc_notify(UTS_PROC_HOSTNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
1329 up_write(&uts_sem);
1330 return errno;
1331}
1332
1333#ifdef __ARCH_WANT_SYS_GETHOSTNAME
1334
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001335SYSCALL_DEFINE2(gethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
1337 int i, errno;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001338 struct new_utsname *u;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 if (len < 0)
1341 return -EINVAL;
1342 down_read(&uts_sem);
Andrew Morton9679e4d2008-10-15 22:01:51 -07001343 u = utsname();
1344 i = 1 + strlen(u->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if (i > len)
1346 i = len;
1347 errno = 0;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001348 if (copy_to_user(name, u->nodename, i))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 errno = -EFAULT;
1350 up_read(&uts_sem);
1351 return errno;
1352}
1353
1354#endif
1355
1356/*
1357 * Only setdomainname; getdomainname can be implemented by calling
1358 * uname()
1359 */
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001360SYSCALL_DEFINE2(setdomainname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
1362 int errno;
1363 char tmp[__NEW_UTS_LEN];
1364
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001365 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return -EPERM;
1367 if (len < 0 || len > __NEW_UTS_LEN)
1368 return -EINVAL;
1369
1370 down_write(&uts_sem);
1371 errno = -EFAULT;
1372 if (!copy_from_user(tmp, name, len)) {
Andrew Morton9679e4d2008-10-15 22:01:51 -07001373 struct new_utsname *u = utsname();
1374
1375 memcpy(u->domainname, tmp, len);
1376 memset(u->domainname + len, 0, sizeof(u->domainname) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 errno = 0;
Sasikantha babu499eea62012-05-31 16:26:07 -07001378 uts_proc_notify(UTS_PROC_DOMAINNAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380 up_write(&uts_sem);
1381 return errno;
1382}
1383
Heiko Carstense48fbb62009-01-14 14:14:26 +01001384SYSCALL_DEFINE2(getrlimit, unsigned int, resource, struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Jiri Slabyb9518342010-05-04 11:28:25 +02001386 struct rlimit value;
1387 int ret;
1388
1389 ret = do_prlimit(current, resource, NULL, &value);
1390 if (!ret)
1391 ret = copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
1392
1393 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
Al Virod9e968c2017-05-31 04:33:51 -04001396#ifdef CONFIG_COMPAT
1397
1398COMPAT_SYSCALL_DEFINE2(setrlimit, unsigned int, resource,
1399 struct compat_rlimit __user *, rlim)
1400{
1401 struct rlimit r;
1402 struct compat_rlimit r32;
1403
1404 if (copy_from_user(&r32, rlim, sizeof(struct compat_rlimit)))
1405 return -EFAULT;
1406
1407 if (r32.rlim_cur == COMPAT_RLIM_INFINITY)
1408 r.rlim_cur = RLIM_INFINITY;
1409 else
1410 r.rlim_cur = r32.rlim_cur;
1411 if (r32.rlim_max == COMPAT_RLIM_INFINITY)
1412 r.rlim_max = RLIM_INFINITY;
1413 else
1414 r.rlim_max = r32.rlim_max;
1415 return do_prlimit(current, resource, &r, NULL);
1416}
1417
1418COMPAT_SYSCALL_DEFINE2(getrlimit, unsigned int, resource,
1419 struct compat_rlimit __user *, rlim)
1420{
1421 struct rlimit r;
1422 int ret;
1423
1424 ret = do_prlimit(current, resource, NULL, &r);
1425 if (!ret) {
Al Viro58c7ffc2017-07-12 04:59:45 +01001426 struct compat_rlimit r32;
Al Virod9e968c2017-05-31 04:33:51 -04001427 if (r.rlim_cur > COMPAT_RLIM_INFINITY)
1428 r32.rlim_cur = COMPAT_RLIM_INFINITY;
1429 else
1430 r32.rlim_cur = r.rlim_cur;
1431 if (r.rlim_max > COMPAT_RLIM_INFINITY)
1432 r32.rlim_max = COMPAT_RLIM_INFINITY;
1433 else
1434 r32.rlim_max = r.rlim_max;
1435
1436 if (copy_to_user(rlim, &r32, sizeof(struct compat_rlimit)))
1437 return -EFAULT;
1438 }
1439 return ret;
1440}
1441
1442#endif
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444#ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
1445
1446/*
1447 * Back compatibility for getrlimit. Needed for some apps.
1448 */
Heiko Carstense48fbb62009-01-14 14:14:26 +01001449SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
1450 struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
1452 struct rlimit x;
1453 if (resource >= RLIM_NLIMITS)
1454 return -EINVAL;
1455
1456 task_lock(current->group_leader);
1457 x = current->signal->rlim[resource];
1458 task_unlock(current->group_leader);
Cal Peake756184b2006-09-30 23:27:24 -07001459 if (x.rlim_cur > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 x.rlim_cur = 0x7FFFFFFF;
Cal Peake756184b2006-09-30 23:27:24 -07001461 if (x.rlim_max > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 x.rlim_max = 0x7FFFFFFF;
vishnu.psec94fc32014-10-09 15:30:23 -07001463 return copy_to_user(rlim, &x, sizeof(x)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
Al Viro613763a2017-05-26 22:04:29 -04001466#ifdef CONFIG_COMPAT
1467COMPAT_SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
1468 struct compat_rlimit __user *, rlim)
1469{
1470 struct rlimit r;
1471
1472 if (resource >= RLIM_NLIMITS)
1473 return -EINVAL;
1474
1475 task_lock(current->group_leader);
1476 r = current->signal->rlim[resource];
1477 task_unlock(current->group_leader);
1478 if (r.rlim_cur > 0x7FFFFFFF)
1479 r.rlim_cur = 0x7FFFFFFF;
1480 if (r.rlim_max > 0x7FFFFFFF)
1481 r.rlim_max = 0x7FFFFFFF;
1482
1483 if (put_user(r.rlim_cur, &rlim->rlim_cur) ||
1484 put_user(r.rlim_max, &rlim->rlim_max))
1485 return -EFAULT;
1486 return 0;
1487}
1488#endif
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490#endif
1491
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001492static inline bool rlim64_is_infinity(__u64 rlim64)
1493{
1494#if BITS_PER_LONG < 64
1495 return rlim64 >= ULONG_MAX;
1496#else
1497 return rlim64 == RLIM64_INFINITY;
1498#endif
1499}
1500
1501static void rlim_to_rlim64(const struct rlimit *rlim, struct rlimit64 *rlim64)
1502{
1503 if (rlim->rlim_cur == RLIM_INFINITY)
1504 rlim64->rlim_cur = RLIM64_INFINITY;
1505 else
1506 rlim64->rlim_cur = rlim->rlim_cur;
1507 if (rlim->rlim_max == RLIM_INFINITY)
1508 rlim64->rlim_max = RLIM64_INFINITY;
1509 else
1510 rlim64->rlim_max = rlim->rlim_max;
1511}
1512
1513static void rlim64_to_rlim(const struct rlimit64 *rlim64, struct rlimit *rlim)
1514{
1515 if (rlim64_is_infinity(rlim64->rlim_cur))
1516 rlim->rlim_cur = RLIM_INFINITY;
1517 else
1518 rlim->rlim_cur = (unsigned long)rlim64->rlim_cur;
1519 if (rlim64_is_infinity(rlim64->rlim_max))
1520 rlim->rlim_max = RLIM_INFINITY;
1521 else
1522 rlim->rlim_max = (unsigned long)rlim64->rlim_max;
1523}
1524
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001525/* make sure you are allowed to change @tsk limits before calling this */
Jiri Slaby5b415352010-03-24 16:11:29 +01001526int do_prlimit(struct task_struct *tsk, unsigned int resource,
1527 struct rlimit *new_rlim, struct rlimit *old_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Jiri Slaby5b415352010-03-24 16:11:29 +01001529 struct rlimit *rlim;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001530 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 if (resource >= RLIM_NLIMITS)
1533 return -EINVAL;
Jiri Slaby5b415352010-03-24 16:11:29 +01001534 if (new_rlim) {
1535 if (new_rlim->rlim_cur > new_rlim->rlim_max)
1536 return -EINVAL;
1537 if (resource == RLIMIT_NOFILE &&
1538 new_rlim->rlim_max > sysctl_nr_open)
1539 return -EPERM;
1540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001542 /* protect tsk->signal and tsk->sighand from disappearing */
1543 read_lock(&tasklist_lock);
1544 if (!tsk->sighand) {
1545 retval = -ESRCH;
1546 goto out;
1547 }
1548
Jiri Slaby5b415352010-03-24 16:11:29 +01001549 rlim = tsk->signal->rlim + resource;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001550 task_lock(tsk->group_leader);
Jiri Slaby5b415352010-03-24 16:11:29 +01001551 if (new_rlim) {
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001552 /* Keep the capable check against init_user_ns until
1553 cgroups can contain all limits */
Jiri Slaby5b415352010-03-24 16:11:29 +01001554 if (new_rlim->rlim_max > rlim->rlim_max &&
1555 !capable(CAP_SYS_RESOURCE))
1556 retval = -EPERM;
1557 if (!retval)
Eric W. Biedermancad4ea52017-04-12 17:22:14 -05001558 retval = security_task_setrlimit(tsk, resource, new_rlim);
Jiri Slaby5b415352010-03-24 16:11:29 +01001559 if (resource == RLIMIT_CPU && new_rlim->rlim_cur == 0) {
1560 /*
1561 * The caller is asking for an immediate RLIMIT_CPU
1562 * expiry. But we use the zero value to mean "it was
1563 * never set". So let's cheat and make it one second
1564 * instead
1565 */
1566 new_rlim->rlim_cur = 1;
1567 }
Tom Alsberg9926e4c2007-05-08 00:30:31 -07001568 }
Jiri Slaby5b415352010-03-24 16:11:29 +01001569 if (!retval) {
1570 if (old_rlim)
1571 *old_rlim = *rlim;
1572 if (new_rlim)
1573 *rlim = *new_rlim;
1574 }
Jiri Slaby7855c352009-08-26 23:45:34 +02001575 task_unlock(tsk->group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Andrew Mortond3561f72006-03-24 03:18:36 -08001577 /*
1578 * RLIMIT_CPU handling. Note that the kernel fails to return an error
1579 * code if it rejected the user's attempt to set RLIMIT_CPU. This is a
1580 * very long-standing error, and fixing it now risks breakage of
1581 * applications, so we live with it
1582 */
Jiri Slaby5b415352010-03-24 16:11:29 +01001583 if (!retval && new_rlim && resource == RLIMIT_CPU &&
Nicolas Pitrebaa73d92016-11-11 00:10:10 -05001584 new_rlim->rlim_cur != RLIM_INFINITY &&
1585 IS_ENABLED(CONFIG_POSIX_TIMERS))
Jiri Slaby5b415352010-03-24 16:11:29 +01001586 update_rlimit_cpu(tsk, new_rlim->rlim_cur);
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001587out:
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001588 read_unlock(&tasklist_lock);
Oleg Nesterov2fb9d262009-09-03 19:21:45 +02001589 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001592/* rcu lock must be held */
Stephen Smalley791ec492017-02-17 07:57:00 -05001593static int check_prlimit_permission(struct task_struct *task,
1594 unsigned int flags)
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001595{
1596 const struct cred *cred = current_cred(), *tcred;
Stephen Smalley791ec492017-02-17 07:57:00 -05001597 bool id_match;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001598
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001599 if (current == task)
1600 return 0;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001601
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001602 tcred = __task_cred(task);
Stephen Smalley791ec492017-02-17 07:57:00 -05001603 id_match = (uid_eq(cred->uid, tcred->euid) &&
1604 uid_eq(cred->uid, tcred->suid) &&
1605 uid_eq(cred->uid, tcred->uid) &&
1606 gid_eq(cred->gid, tcred->egid) &&
1607 gid_eq(cred->gid, tcred->sgid) &&
1608 gid_eq(cred->gid, tcred->gid));
1609 if (!id_match && !ns_capable(tcred->user_ns, CAP_SYS_RESOURCE))
1610 return -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001611
Stephen Smalley791ec492017-02-17 07:57:00 -05001612 return security_task_prlimit(cred, tcred, flags);
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001613}
1614
1615SYSCALL_DEFINE4(prlimit64, pid_t, pid, unsigned int, resource,
1616 const struct rlimit64 __user *, new_rlim,
1617 struct rlimit64 __user *, old_rlim)
1618{
1619 struct rlimit64 old64, new64;
1620 struct rlimit old, new;
1621 struct task_struct *tsk;
Stephen Smalley791ec492017-02-17 07:57:00 -05001622 unsigned int checkflags = 0;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001623 int ret;
1624
Stephen Smalley791ec492017-02-17 07:57:00 -05001625 if (old_rlim)
1626 checkflags |= LSM_PRLIMIT_READ;
1627
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001628 if (new_rlim) {
1629 if (copy_from_user(&new64, new_rlim, sizeof(new64)))
1630 return -EFAULT;
1631 rlim64_to_rlim(&new64, &new);
Stephen Smalley791ec492017-02-17 07:57:00 -05001632 checkflags |= LSM_PRLIMIT_WRITE;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001633 }
1634
1635 rcu_read_lock();
1636 tsk = pid ? find_task_by_vpid(pid) : current;
1637 if (!tsk) {
1638 rcu_read_unlock();
1639 return -ESRCH;
1640 }
Stephen Smalley791ec492017-02-17 07:57:00 -05001641 ret = check_prlimit_permission(tsk, checkflags);
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001642 if (ret) {
1643 rcu_read_unlock();
1644 return ret;
1645 }
1646 get_task_struct(tsk);
1647 rcu_read_unlock();
1648
1649 ret = do_prlimit(tsk, resource, new_rlim ? &new : NULL,
1650 old_rlim ? &old : NULL);
1651
1652 if (!ret && old_rlim) {
1653 rlim_to_rlim64(&old, &old64);
1654 if (copy_to_user(old_rlim, &old64, sizeof(old64)))
1655 ret = -EFAULT;
1656 }
1657
1658 put_task_struct(tsk);
1659 return ret;
1660}
1661
Jiri Slaby7855c352009-08-26 23:45:34 +02001662SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim)
1663{
1664 struct rlimit new_rlim;
1665
1666 if (copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
1667 return -EFAULT;
Jiri Slaby5b415352010-03-24 16:11:29 +01001668 return do_prlimit(current, resource, &new_rlim, NULL);
Jiri Slaby7855c352009-08-26 23:45:34 +02001669}
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671/*
1672 * It would make sense to put struct rusage in the task_struct,
1673 * except that would make the task_struct be *really big*. After
1674 * task_struct gets moved into malloc'ed memory, it would
1675 * make sense to do this. It will make moving the rest of the information
1676 * a lot simpler! (Which we're not doing right now because we're not
1677 * measuring them yet).
1678 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
1680 * races with threads incrementing their own counters. But since word
1681 * reads are atomic, we either get new values or old values and we don't
1682 * care which for the sums. We always take the siglock to protect reading
1683 * the c* fields from p->signal from races with exit.c updating those
1684 * fields when reaping, so a sample either gets all the additions of a
1685 * given child after it's reaped, or none so this sample is before reaping.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001686 *
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001687 * Locking:
1688 * We need to take the siglock for CHILDEREN, SELF and BOTH
1689 * for the cases current multithreaded, non-current single threaded
1690 * non-current multithreaded. Thread traversal is now safe with
1691 * the siglock held.
1692 * Strictly speaking, we donot need to take the siglock if we are current and
1693 * single threaded, as no one else can take our signal_struct away, no one
1694 * else can reap the children to update signal->c* counters, and no one else
1695 * can race with the signal-> fields. If we do not take any lock, the
1696 * signal-> fields could be read out of order while another thread was just
1697 * exiting. So we should place a read memory barrier when we avoid the lock.
1698 * On the writer side, write memory barrier is implied in __exit_signal
1699 * as __exit_signal releases the siglock spinlock after updating the signal->
1700 * fields. But we don't do this yet to keep things simple.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001701 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 */
1703
Frank Mayharf06febc2008-09-12 09:54:39 -07001704static void accumulate_thread_rusage(struct task_struct *t, struct rusage *r)
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001705{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001706 r->ru_nvcsw += t->nvcsw;
1707 r->ru_nivcsw += t->nivcsw;
1708 r->ru_minflt += t->min_flt;
1709 r->ru_majflt += t->maj_flt;
1710 r->ru_inblock += task_io_get_inblock(t);
1711 r->ru_oublock += task_io_get_oublock(t);
1712}
1713
Al Viroce72a162017-05-14 20:25:02 -04001714void getrusage(struct task_struct *p, int who, struct rusage *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
1716 struct task_struct *t;
1717 unsigned long flags;
Frederic Weisbecker5613fda2017-01-31 04:09:23 +01001718 u64 tgutime, tgstime, utime, stime;
Jiri Pirko1f102062009-09-22 16:44:10 -07001719 unsigned long maxrss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
vishnu.psec94fc32014-10-09 15:30:23 -07001721 memset((char *)r, 0, sizeof (*r));
Martin Schwidefsky64861632011-12-15 14:56:09 +01001722 utime = stime = 0;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001723
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001724 if (who == RUSAGE_THREAD) {
Frederic Weisbeckere80d0a1a2012-11-21 16:26:44 +01001725 task_cputime_adjusted(current, &utime, &stime);
Frank Mayharf06febc2008-09-12 09:54:39 -07001726 accumulate_thread_rusage(p, r);
Jiri Pirko1f102062009-09-22 16:44:10 -07001727 maxrss = p->signal->maxrss;
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001728 goto out;
1729 }
1730
Oleg Nesterovd6cf7232008-04-30 00:52:38 -07001731 if (!lock_task_sighand(p, &flags))
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001732 return;
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 switch (who) {
vishnu.psec94fc32014-10-09 15:30:23 -07001735 case RUSAGE_BOTH:
1736 case RUSAGE_CHILDREN:
1737 utime = p->signal->cutime;
1738 stime = p->signal->cstime;
1739 r->ru_nvcsw = p->signal->cnvcsw;
1740 r->ru_nivcsw = p->signal->cnivcsw;
1741 r->ru_minflt = p->signal->cmin_flt;
1742 r->ru_majflt = p->signal->cmaj_flt;
1743 r->ru_inblock = p->signal->cinblock;
1744 r->ru_oublock = p->signal->coublock;
1745 maxrss = p->signal->cmaxrss;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001746
vishnu.psec94fc32014-10-09 15:30:23 -07001747 if (who == RUSAGE_CHILDREN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 break;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001749
vishnu.psec94fc32014-10-09 15:30:23 -07001750 case RUSAGE_SELF:
1751 thread_group_cputime_adjusted(p, &tgutime, &tgstime);
1752 utime += tgutime;
1753 stime += tgstime;
1754 r->ru_nvcsw += p->signal->nvcsw;
1755 r->ru_nivcsw += p->signal->nivcsw;
1756 r->ru_minflt += p->signal->min_flt;
1757 r->ru_majflt += p->signal->maj_flt;
1758 r->ru_inblock += p->signal->inblock;
1759 r->ru_oublock += p->signal->oublock;
1760 if (maxrss < p->signal->maxrss)
1761 maxrss = p->signal->maxrss;
1762 t = p;
1763 do {
1764 accumulate_thread_rusage(t, r);
1765 } while_each_thread(p, t);
1766 break;
1767
1768 default:
1769 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001771 unlock_task_sighand(p, &flags);
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001772
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001773out:
Frederic Weisbecker5613fda2017-01-31 04:09:23 +01001774 r->ru_utime = ns_to_timeval(utime);
1775 r->ru_stime = ns_to_timeval(stime);
Jiri Pirko1f102062009-09-22 16:44:10 -07001776
1777 if (who != RUSAGE_CHILDREN) {
1778 struct mm_struct *mm = get_task_mm(p);
vishnu.psec94fc32014-10-09 15:30:23 -07001779
Jiri Pirko1f102062009-09-22 16:44:10 -07001780 if (mm) {
1781 setmax_mm_hiwater_rss(&maxrss, mm);
1782 mmput(mm);
1783 }
1784 }
1785 r->ru_maxrss = maxrss * (PAGE_SIZE / 1024); /* convert pages to KBs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
1787
Al Viroce72a162017-05-14 20:25:02 -04001788SYSCALL_DEFINE2(getrusage, int, who, struct rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789{
1790 struct rusage r;
vishnu.psec94fc32014-10-09 15:30:23 -07001791
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001792 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1793 who != RUSAGE_THREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return -EINVAL;
Al Viroce72a162017-05-14 20:25:02 -04001795
1796 getrusage(current, who, &r);
1797 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
Al Viro8d2d5c42013-03-03 12:49:06 -05001800#ifdef CONFIG_COMPAT
1801COMPAT_SYSCALL_DEFINE2(getrusage, int, who, struct compat_rusage __user *, ru)
1802{
1803 struct rusage r;
1804
1805 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1806 who != RUSAGE_THREAD)
1807 return -EINVAL;
1808
Al Viroce72a162017-05-14 20:25:02 -04001809 getrusage(current, who, &r);
Al Viro8d2d5c42013-03-03 12:49:06 -05001810 return put_compat_rusage(&r, ru);
1811}
1812#endif
1813
Heiko Carstense48fbb62009-01-14 14:14:26 +01001814SYSCALL_DEFINE1(umask, int, mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
1816 mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
1817 return mask;
1818}
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -08001819
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001820static int prctl_set_mm_exe_file(struct mm_struct *mm, unsigned int fd)
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001821{
Al Viro2903ff02012-08-28 12:52:22 -04001822 struct fd exe;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001823 struct file *old_exe, *exe_file;
Al Viro496ad9a2013-01-23 17:07:38 -05001824 struct inode *inode;
Al Viro2903ff02012-08-28 12:52:22 -04001825 int err;
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001826
Al Viro2903ff02012-08-28 12:52:22 -04001827 exe = fdget(fd);
1828 if (!exe.file)
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001829 return -EBADF;
1830
Al Viro496ad9a2013-01-23 17:07:38 -05001831 inode = file_inode(exe.file);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001832
1833 /*
1834 * Because the original mm->exe_file points to executable file, make
1835 * sure that this one is executable as well, to avoid breaking an
1836 * overall picture.
1837 */
1838 err = -EACCES;
Eric W. Biederman90f85722015-06-29 14:42:03 -05001839 if (!S_ISREG(inode->i_mode) || path_noexec(&exe.file->f_path))
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001840 goto exit;
1841
Al Viro496ad9a2013-01-23 17:07:38 -05001842 err = inode_permission(inode, MAY_EXEC);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001843 if (err)
1844 goto exit;
1845
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001846 /*
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001847 * Forbid mm->exe_file change if old file still mapped.
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001848 */
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001849 exe_file = get_mm_exe_file(mm);
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001850 err = -EBUSY;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001851 if (exe_file) {
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001852 struct vm_area_struct *vma;
1853
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001854 down_read(&mm->mmap_sem);
1855 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1856 if (!vma->vm_file)
1857 continue;
1858 if (path_equal(&vma->vm_file->f_path,
1859 &exe_file->f_path))
1860 goto exit_err;
1861 }
1862
1863 up_read(&mm->mmap_sem);
1864 fput(exe_file);
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001865 }
1866
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001867 err = 0;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001868 /* set the new file, lockless */
1869 get_file(exe.file);
1870 old_exe = xchg(&mm->exe_file, exe.file);
1871 if (old_exe)
1872 fput(old_exe);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001873exit:
Al Viro2903ff02012-08-28 12:52:22 -04001874 fdput(exe);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001875 return err;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001876exit_err:
1877 up_read(&mm->mmap_sem);
1878 fput(exe_file);
1879 goto exit;
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001880}
1881
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001882/*
1883 * WARNING: we don't require any capability here so be very careful
1884 * in what is allowed for modification from userspace.
1885 */
1886static int validate_prctl_map(struct prctl_mm_map *prctl_map)
1887{
1888 unsigned long mmap_max_addr = TASK_SIZE;
1889 struct mm_struct *mm = current->mm;
1890 int error = -EINVAL, i;
1891
1892 static const unsigned char offsets[] = {
1893 offsetof(struct prctl_mm_map, start_code),
1894 offsetof(struct prctl_mm_map, end_code),
1895 offsetof(struct prctl_mm_map, start_data),
1896 offsetof(struct prctl_mm_map, end_data),
1897 offsetof(struct prctl_mm_map, start_brk),
1898 offsetof(struct prctl_mm_map, brk),
1899 offsetof(struct prctl_mm_map, start_stack),
1900 offsetof(struct prctl_mm_map, arg_start),
1901 offsetof(struct prctl_mm_map, arg_end),
1902 offsetof(struct prctl_mm_map, env_start),
1903 offsetof(struct prctl_mm_map, env_end),
1904 };
1905
1906 /*
1907 * Make sure the members are not somewhere outside
1908 * of allowed address space.
1909 */
1910 for (i = 0; i < ARRAY_SIZE(offsets); i++) {
1911 u64 val = *(u64 *)((char *)prctl_map + offsets[i]);
1912
1913 if ((unsigned long)val >= mmap_max_addr ||
1914 (unsigned long)val < mmap_min_addr)
1915 goto out;
1916 }
1917
1918 /*
1919 * Make sure the pairs are ordered.
1920 */
1921#define __prctl_check_order(__m1, __op, __m2) \
1922 ((unsigned long)prctl_map->__m1 __op \
1923 (unsigned long)prctl_map->__m2) ? 0 : -EINVAL
1924 error = __prctl_check_order(start_code, <, end_code);
1925 error |= __prctl_check_order(start_data, <, end_data);
1926 error |= __prctl_check_order(start_brk, <=, brk);
1927 error |= __prctl_check_order(arg_start, <=, arg_end);
1928 error |= __prctl_check_order(env_start, <=, env_end);
1929 if (error)
1930 goto out;
1931#undef __prctl_check_order
1932
1933 error = -EINVAL;
1934
1935 /*
1936 * @brk should be after @end_data in traditional maps.
1937 */
1938 if (prctl_map->start_brk <= prctl_map->end_data ||
1939 prctl_map->brk <= prctl_map->end_data)
1940 goto out;
1941
1942 /*
1943 * Neither we should allow to override limits if they set.
1944 */
1945 if (check_data_rlimit(rlimit(RLIMIT_DATA), prctl_map->brk,
1946 prctl_map->start_brk, prctl_map->end_data,
1947 prctl_map->start_data))
1948 goto out;
1949
1950 /*
1951 * Someone is trying to cheat the auxv vector.
1952 */
1953 if (prctl_map->auxv_size) {
1954 if (!prctl_map->auxv || prctl_map->auxv_size > sizeof(mm->saved_auxv))
1955 goto out;
1956 }
1957
1958 /*
1959 * Finally, make sure the caller has the rights to
Kirill Tkhai4d28df62017-05-12 17:33:36 +03001960 * change /proc/pid/exe link: only local sys admin should
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001961 * be allowed to.
1962 */
1963 if (prctl_map->exe_fd != (u32)-1) {
Kirill Tkhai4d28df62017-05-12 17:33:36 +03001964 if (!ns_capable(current_user_ns(), CAP_SYS_ADMIN))
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001965 goto out;
1966 }
1967
1968 error = 0;
1969out:
1970 return error;
1971}
1972
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001973#ifdef CONFIG_CHECKPOINT_RESTORE
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001974static int prctl_set_mm_map(int opt, const void __user *addr, unsigned long data_size)
1975{
1976 struct prctl_mm_map prctl_map = { .exe_fd = (u32)-1, };
1977 unsigned long user_auxv[AT_VECTOR_SIZE];
1978 struct mm_struct *mm = current->mm;
1979 int error;
1980
1981 BUILD_BUG_ON(sizeof(user_auxv) != sizeof(mm->saved_auxv));
1982 BUILD_BUG_ON(sizeof(struct prctl_mm_map) > 256);
1983
1984 if (opt == PR_SET_MM_MAP_SIZE)
1985 return put_user((unsigned int)sizeof(prctl_map),
1986 (unsigned int __user *)addr);
1987
1988 if (data_size != sizeof(prctl_map))
1989 return -EINVAL;
1990
1991 if (copy_from_user(&prctl_map, addr, sizeof(prctl_map)))
1992 return -EFAULT;
1993
1994 error = validate_prctl_map(&prctl_map);
1995 if (error)
1996 return error;
1997
1998 if (prctl_map.auxv_size) {
1999 memset(user_auxv, 0, sizeof(user_auxv));
2000 if (copy_from_user(user_auxv,
2001 (const void __user *)prctl_map.auxv,
2002 prctl_map.auxv_size))
2003 return -EFAULT;
2004
2005 /* Last entry must be AT_NULL as specification requires */
2006 user_auxv[AT_VECTOR_SIZE - 2] = AT_NULL;
2007 user_auxv[AT_VECTOR_SIZE - 1] = AT_NULL;
2008 }
2009
Mateusz Guzikddf1d392016-01-20 15:01:02 -08002010 if (prctl_map.exe_fd != (u32)-1) {
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07002011 error = prctl_set_mm_exe_file(mm, prctl_map.exe_fd);
Mateusz Guzikddf1d392016-01-20 15:01:02 -08002012 if (error)
2013 return error;
2014 }
2015
2016 down_write(&mm->mmap_sem);
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002017
2018 /*
2019 * We don't validate if these members are pointing to
2020 * real present VMAs because application may have correspond
2021 * VMAs already unmapped and kernel uses these members for statistics
2022 * output in procfs mostly, except
2023 *
2024 * - @start_brk/@brk which are used in do_brk but kernel lookups
2025 * for VMAs when updating these memvers so anything wrong written
2026 * here cause kernel to swear at userspace program but won't lead
2027 * to any problem in kernel itself
2028 */
2029
2030 mm->start_code = prctl_map.start_code;
2031 mm->end_code = prctl_map.end_code;
2032 mm->start_data = prctl_map.start_data;
2033 mm->end_data = prctl_map.end_data;
2034 mm->start_brk = prctl_map.start_brk;
2035 mm->brk = prctl_map.brk;
2036 mm->start_stack = prctl_map.start_stack;
2037 mm->arg_start = prctl_map.arg_start;
2038 mm->arg_end = prctl_map.arg_end;
2039 mm->env_start = prctl_map.env_start;
2040 mm->env_end = prctl_map.env_end;
2041
2042 /*
2043 * Note this update of @saved_auxv is lockless thus
2044 * if someone reads this member in procfs while we're
2045 * updating -- it may get partly updated results. It's
2046 * known and acceptable trade off: we leave it as is to
2047 * not introduce additional locks here making the kernel
2048 * more complex.
2049 */
2050 if (prctl_map.auxv_size)
2051 memcpy(mm->saved_auxv, user_auxv, sizeof(user_auxv));
2052
Mateusz Guzikddf1d392016-01-20 15:01:02 -08002053 up_write(&mm->mmap_sem);
2054 return 0;
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002055}
2056#endif /* CONFIG_CHECKPOINT_RESTORE */
2057
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002058static int prctl_set_auxv(struct mm_struct *mm, unsigned long addr,
2059 unsigned long len)
2060{
2061 /*
2062 * This doesn't move the auxiliary vector itself since it's pinned to
2063 * mm_struct, but it permits filling the vector with new values. It's
2064 * up to the caller to provide sane values here, otherwise userspace
2065 * tools which use this vector might be unhappy.
2066 */
2067 unsigned long user_auxv[AT_VECTOR_SIZE];
2068
2069 if (len > sizeof(user_auxv))
2070 return -EINVAL;
2071
2072 if (copy_from_user(user_auxv, (const void __user *)addr, len))
2073 return -EFAULT;
2074
2075 /* Make sure the last entry is always AT_NULL */
2076 user_auxv[AT_VECTOR_SIZE - 2] = 0;
2077 user_auxv[AT_VECTOR_SIZE - 1] = 0;
2078
2079 BUILD_BUG_ON(sizeof(user_auxv) != sizeof(mm->saved_auxv));
2080
2081 task_lock(current);
2082 memcpy(mm->saved_auxv, user_auxv, len);
2083 task_unlock(current);
2084
2085 return 0;
2086}
2087
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002088static int prctl_set_mm(int opt, unsigned long addr,
2089 unsigned long arg4, unsigned long arg5)
2090{
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002091 struct mm_struct *mm = current->mm;
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002092 struct prctl_mm_map prctl_map;
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002093 struct vm_area_struct *vma;
2094 int error;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002095
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002096 if (arg5 || (arg4 && (opt != PR_SET_MM_AUXV &&
2097 opt != PR_SET_MM_MAP &&
2098 opt != PR_SET_MM_MAP_SIZE)))
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002099 return -EINVAL;
2100
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002101#ifdef CONFIG_CHECKPOINT_RESTORE
2102 if (opt == PR_SET_MM_MAP || opt == PR_SET_MM_MAP_SIZE)
2103 return prctl_set_mm_map(opt, (const void __user *)addr, arg4);
2104#endif
2105
Cyrill Gorcunov79f07132012-03-15 15:17:10 -07002106 if (!capable(CAP_SYS_RESOURCE))
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002107 return -EPERM;
2108
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07002109 if (opt == PR_SET_MM_EXE_FILE)
2110 return prctl_set_mm_exe_file(mm, (unsigned int)addr);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07002111
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002112 if (opt == PR_SET_MM_AUXV)
2113 return prctl_set_auxv(mm, addr, arg4);
2114
Cyrill Gorcunov1ad75b92012-06-07 14:21:11 -07002115 if (addr >= TASK_SIZE || addr < mmap_min_addr)
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002116 return -EINVAL;
2117
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002118 error = -EINVAL;
2119
Mateusz Guzikddf1d392016-01-20 15:01:02 -08002120 down_write(&mm->mmap_sem);
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002121 vma = find_vma(mm, addr);
2122
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002123 prctl_map.start_code = mm->start_code;
2124 prctl_map.end_code = mm->end_code;
2125 prctl_map.start_data = mm->start_data;
2126 prctl_map.end_data = mm->end_data;
2127 prctl_map.start_brk = mm->start_brk;
2128 prctl_map.brk = mm->brk;
2129 prctl_map.start_stack = mm->start_stack;
2130 prctl_map.arg_start = mm->arg_start;
2131 prctl_map.arg_end = mm->arg_end;
2132 prctl_map.env_start = mm->env_start;
2133 prctl_map.env_end = mm->env_end;
2134 prctl_map.auxv = NULL;
2135 prctl_map.auxv_size = 0;
2136 prctl_map.exe_fd = -1;
2137
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002138 switch (opt) {
2139 case PR_SET_MM_START_CODE:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002140 prctl_map.start_code = addr;
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002141 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002142 case PR_SET_MM_END_CODE:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002143 prctl_map.end_code = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002144 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002145 case PR_SET_MM_START_DATA:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002146 prctl_map.start_data = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002147 break;
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002148 case PR_SET_MM_END_DATA:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002149 prctl_map.end_data = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002150 break;
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002151 case PR_SET_MM_START_STACK:
2152 prctl_map.start_stack = addr;
2153 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002154 case PR_SET_MM_START_BRK:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002155 prctl_map.start_brk = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002156 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002157 case PR_SET_MM_BRK:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002158 prctl_map.brk = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002159 break;
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002160 case PR_SET_MM_ARG_START:
2161 prctl_map.arg_start = addr;
2162 break;
2163 case PR_SET_MM_ARG_END:
2164 prctl_map.arg_end = addr;
2165 break;
2166 case PR_SET_MM_ENV_START:
2167 prctl_map.env_start = addr;
2168 break;
2169 case PR_SET_MM_ENV_END:
2170 prctl_map.env_end = addr;
2171 break;
2172 default:
2173 goto out;
2174 }
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002175
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002176 error = validate_prctl_map(&prctl_map);
2177 if (error)
2178 goto out;
2179
2180 switch (opt) {
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002181 /*
2182 * If command line arguments and environment
2183 * are placed somewhere else on stack, we can
2184 * set them up here, ARG_START/END to setup
2185 * command line argumets and ENV_START/END
2186 * for environment.
2187 */
2188 case PR_SET_MM_START_STACK:
2189 case PR_SET_MM_ARG_START:
2190 case PR_SET_MM_ARG_END:
2191 case PR_SET_MM_ENV_START:
2192 case PR_SET_MM_ENV_END:
2193 if (!vma) {
2194 error = -EFAULT;
2195 goto out;
2196 }
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002197 }
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002198
2199 mm->start_code = prctl_map.start_code;
2200 mm->end_code = prctl_map.end_code;
2201 mm->start_data = prctl_map.start_data;
2202 mm->end_data = prctl_map.end_data;
2203 mm->start_brk = prctl_map.start_brk;
2204 mm->brk = prctl_map.brk;
2205 mm->start_stack = prctl_map.start_stack;
2206 mm->arg_start = prctl_map.arg_start;
2207 mm->arg_end = prctl_map.arg_end;
2208 mm->env_start = prctl_map.env_start;
2209 mm->env_end = prctl_map.env_end;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002210
2211 error = 0;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002212out:
Mateusz Guzikddf1d392016-01-20 15:01:02 -08002213 up_write(&mm->mmap_sem);
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002214 return error;
2215}
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07002216
Amnon Shiloh52b36942013-04-30 15:28:48 -07002217#ifdef CONFIG_CHECKPOINT_RESTORE
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07002218static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr)
2219{
2220 return put_user(me->clear_child_tid, tid_addr);
2221}
Amnon Shiloh52b36942013-04-30 15:28:48 -07002222#else
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07002223static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr)
2224{
2225 return -EINVAL;
2226}
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002227#endif
2228
Pavel Tikhomirov749860c2017-01-30 18:06:12 +03002229static int propagate_has_child_subreaper(struct task_struct *p, void *data)
2230{
2231 /*
2232 * If task has has_child_subreaper - all its decendants
2233 * already have these flag too and new decendants will
2234 * inherit it on fork, skip them.
2235 *
2236 * If we've found child_reaper - skip descendants in
2237 * it's subtree as they will never get out pidns.
2238 */
2239 if (p->signal->has_child_subreaper ||
2240 is_child_reaper(task_pid(p)))
2241 return 0;
2242
2243 p->signal->has_child_subreaper = 1;
2244 return 1;
2245}
2246
Thomas Gleixnerb617cfc2018-04-29 15:20:11 +02002247int __weak arch_prctl_spec_ctrl_get(unsigned long which)
2248{
2249 return -EINVAL;
2250}
2251
2252int __weak arch_prctl_spec_ctrl_set(unsigned long which, unsigned long ctrl)
2253{
2254 return -EINVAL;
2255}
2256
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01002257SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
2258 unsigned long, arg4, unsigned long, arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
David Howellsb6dff3e2008-11-14 10:39:16 +11002260 struct task_struct *me = current;
2261 unsigned char comm[sizeof(me->comm)];
2262 long error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
David Howellsd84f4f92008-11-14 10:39:23 +11002264 error = security_task_prctl(option, arg2, arg3, arg4, arg5);
2265 if (error != -ENOSYS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 return error;
2267
David Howellsd84f4f92008-11-14 10:39:23 +11002268 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 switch (option) {
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002270 case PR_SET_PDEATHSIG:
2271 if (!valid_signal(arg2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 error = -EINVAL;
2273 break;
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002274 }
2275 me->pdeath_signal = arg2;
2276 break;
2277 case PR_GET_PDEATHSIG:
2278 error = put_user(me->pdeath_signal, (int __user *)arg2);
2279 break;
2280 case PR_GET_DUMPABLE:
2281 error = get_dumpable(me->mm);
2282 break;
2283 case PR_SET_DUMPABLE:
2284 if (arg2 != SUID_DUMP_DISABLE && arg2 != SUID_DUMP_USER) {
2285 error = -EINVAL;
2286 break;
2287 }
2288 set_dumpable(me->mm, arg2);
2289 break;
2290
2291 case PR_SET_UNALIGN:
2292 error = SET_UNALIGN_CTL(me, arg2);
2293 break;
2294 case PR_GET_UNALIGN:
2295 error = GET_UNALIGN_CTL(me, arg2);
2296 break;
2297 case PR_SET_FPEMU:
2298 error = SET_FPEMU_CTL(me, arg2);
2299 break;
2300 case PR_GET_FPEMU:
2301 error = GET_FPEMU_CTL(me, arg2);
2302 break;
2303 case PR_SET_FPEXC:
2304 error = SET_FPEXC_CTL(me, arg2);
2305 break;
2306 case PR_GET_FPEXC:
2307 error = GET_FPEXC_CTL(me, arg2);
2308 break;
2309 case PR_GET_TIMING:
2310 error = PR_TIMING_STATISTICAL;
2311 break;
2312 case PR_SET_TIMING:
2313 if (arg2 != PR_TIMING_STATISTICAL)
2314 error = -EINVAL;
2315 break;
2316 case PR_SET_NAME:
2317 comm[sizeof(me->comm) - 1] = 0;
2318 if (strncpy_from_user(comm, (char __user *)arg2,
2319 sizeof(me->comm) - 1) < 0)
2320 return -EFAULT;
2321 set_task_comm(me, comm);
2322 proc_comm_connector(me);
2323 break;
2324 case PR_GET_NAME:
2325 get_task_comm(comm, me);
2326 if (copy_to_user((char __user *)arg2, comm, sizeof(comm)))
2327 return -EFAULT;
2328 break;
2329 case PR_GET_ENDIAN:
2330 error = GET_ENDIAN(me, arg2);
2331 break;
2332 case PR_SET_ENDIAN:
2333 error = SET_ENDIAN(me, arg2);
2334 break;
2335 case PR_GET_SECCOMP:
2336 error = prctl_get_seccomp();
2337 break;
2338 case PR_SET_SECCOMP:
2339 error = prctl_set_seccomp(arg2, (char __user *)arg3);
2340 break;
2341 case PR_GET_TSC:
2342 error = GET_TSC_CTL(arg2);
2343 break;
2344 case PR_SET_TSC:
2345 error = SET_TSC_CTL(arg2);
2346 break;
2347 case PR_TASK_PERF_EVENTS_DISABLE:
2348 error = perf_event_task_disable();
2349 break;
2350 case PR_TASK_PERF_EVENTS_ENABLE:
2351 error = perf_event_task_enable();
2352 break;
2353 case PR_GET_TIMERSLACK:
John Stultzda8b44d2016-03-17 14:20:51 -07002354 if (current->timer_slack_ns > ULONG_MAX)
2355 error = ULONG_MAX;
2356 else
2357 error = current->timer_slack_ns;
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002358 break;
2359 case PR_SET_TIMERSLACK:
2360 if (arg2 <= 0)
2361 current->timer_slack_ns =
2362 current->default_timer_slack_ns;
2363 else
2364 current->timer_slack_ns = arg2;
2365 break;
2366 case PR_MCE_KILL:
2367 if (arg4 | arg5)
2368 return -EINVAL;
2369 switch (arg2) {
2370 case PR_MCE_KILL_CLEAR:
2371 if (arg3 != 0)
2372 return -EINVAL;
2373 current->flags &= ~PF_MCE_PROCESS;
2374 break;
2375 case PR_MCE_KILL_SET:
2376 current->flags |= PF_MCE_PROCESS;
2377 if (arg3 == PR_MCE_KILL_EARLY)
2378 current->flags |= PF_MCE_EARLY;
2379 else if (arg3 == PR_MCE_KILL_LATE)
2380 current->flags &= ~PF_MCE_EARLY;
2381 else if (arg3 == PR_MCE_KILL_DEFAULT)
2382 current->flags &=
2383 ~(PF_MCE_EARLY|PF_MCE_PROCESS);
2384 else
2385 return -EINVAL;
2386 break;
2387 default:
2388 return -EINVAL;
2389 }
2390 break;
2391 case PR_MCE_KILL_GET:
2392 if (arg2 | arg3 | arg4 | arg5)
2393 return -EINVAL;
2394 if (current->flags & PF_MCE_PROCESS)
2395 error = (current->flags & PF_MCE_EARLY) ?
2396 PR_MCE_KILL_EARLY : PR_MCE_KILL_LATE;
2397 else
2398 error = PR_MCE_KILL_DEFAULT;
2399 break;
2400 case PR_SET_MM:
2401 error = prctl_set_mm(arg2, arg3, arg4, arg5);
2402 break;
2403 case PR_GET_TID_ADDRESS:
2404 error = prctl_get_tid_address(me, (int __user **)arg2);
2405 break;
2406 case PR_SET_CHILD_SUBREAPER:
2407 me->signal->is_child_subreaper = !!arg2;
Pavel Tikhomirov749860c2017-01-30 18:06:12 +03002408 if (!arg2)
2409 break;
2410
2411 walk_process_tree(me, propagate_has_child_subreaper, NULL);
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002412 break;
2413 case PR_GET_CHILD_SUBREAPER:
2414 error = put_user(me->signal->is_child_subreaper,
2415 (int __user *)arg2);
2416 break;
2417 case PR_SET_NO_NEW_PRIVS:
2418 if (arg2 != 1 || arg3 || arg4 || arg5)
2419 return -EINVAL;
2420
Kees Cook1d4457f2014-05-21 15:23:46 -07002421 task_set_no_new_privs(current);
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002422 break;
2423 case PR_GET_NO_NEW_PRIVS:
2424 if (arg2 || arg3 || arg4 || arg5)
2425 return -EINVAL;
Kees Cook1d4457f2014-05-21 15:23:46 -07002426 return task_no_new_privs(current) ? 1 : 0;
Alex Thorltona0715cc2014-04-07 15:37:10 -07002427 case PR_GET_THP_DISABLE:
2428 if (arg2 || arg3 || arg4 || arg5)
2429 return -EINVAL;
Michal Hocko18600332017-07-10 15:48:02 -07002430 error = !!test_bit(MMF_DISABLE_THP, &me->mm->flags);
Alex Thorltona0715cc2014-04-07 15:37:10 -07002431 break;
2432 case PR_SET_THP_DISABLE:
2433 if (arg3 || arg4 || arg5)
2434 return -EINVAL;
Michal Hocko17b05732016-05-23 16:26:05 -07002435 if (down_write_killable(&me->mm->mmap_sem))
2436 return -EINTR;
Alex Thorltona0715cc2014-04-07 15:37:10 -07002437 if (arg2)
Michal Hocko18600332017-07-10 15:48:02 -07002438 set_bit(MMF_DISABLE_THP, &me->mm->flags);
Alex Thorltona0715cc2014-04-07 15:37:10 -07002439 else
Michal Hocko18600332017-07-10 15:48:02 -07002440 clear_bit(MMF_DISABLE_THP, &me->mm->flags);
Alex Thorltona0715cc2014-04-07 15:37:10 -07002441 up_write(&me->mm->mmap_sem);
2442 break;
Dave Hansenfe3d1972014-11-14 07:18:29 -08002443 case PR_MPX_ENABLE_MANAGEMENT:
Dave Hansene9d1b4f2015-01-08 14:30:22 -08002444 if (arg2 || arg3 || arg4 || arg5)
2445 return -EINVAL;
Dave Hansen46a6e0c2015-06-07 11:37:02 -07002446 error = MPX_ENABLE_MANAGEMENT();
Dave Hansenfe3d1972014-11-14 07:18:29 -08002447 break;
2448 case PR_MPX_DISABLE_MANAGEMENT:
Dave Hansene9d1b4f2015-01-08 14:30:22 -08002449 if (arg2 || arg3 || arg4 || arg5)
2450 return -EINVAL;
Dave Hansen46a6e0c2015-06-07 11:37:02 -07002451 error = MPX_DISABLE_MANAGEMENT();
Dave Hansenfe3d1972014-11-14 07:18:29 -08002452 break;
Paul Burton97915542015-01-08 12:17:37 +00002453 case PR_SET_FP_MODE:
2454 error = SET_FP_MODE(me, arg2);
2455 break;
2456 case PR_GET_FP_MODE:
2457 error = GET_FP_MODE(me);
2458 break;
Dave Martin2d2123b2017-10-31 15:51:14 +00002459 case PR_SVE_SET_VL:
2460 error = SVE_SET_VL(arg2);
2461 break;
2462 case PR_SVE_GET_VL:
2463 error = SVE_GET_VL();
2464 break;
Thomas Gleixnerb617cfc2018-04-29 15:20:11 +02002465 case PR_GET_SPECULATION_CTRL:
2466 if (arg3 || arg4 || arg5)
2467 return -EINVAL;
2468 error = arch_prctl_spec_ctrl_get(arg2);
2469 break;
2470 case PR_SET_SPECULATION_CTRL:
2471 if (arg4 || arg5)
2472 return -EINVAL;
2473 error = arch_prctl_spec_ctrl_set(arg2, arg3);
2474 break;
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002475 default:
2476 error = -EINVAL;
2477 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 }
2479 return error;
2480}
Andi Kleen3cfc3482006-09-26 10:52:28 +02002481
Heiko Carstens836f92a2009-01-14 14:14:33 +01002482SYSCALL_DEFINE3(getcpu, unsigned __user *, cpup, unsigned __user *, nodep,
2483 struct getcpu_cache __user *, unused)
Andi Kleen3cfc3482006-09-26 10:52:28 +02002484{
2485 int err = 0;
2486 int cpu = raw_smp_processor_id();
vishnu.psec94fc32014-10-09 15:30:23 -07002487
Andi Kleen3cfc3482006-09-26 10:52:28 +02002488 if (cpup)
2489 err |= put_user(cpu, cpup);
2490 if (nodep)
2491 err |= put_user(cpu_to_node(cpu), nodep);
Andi Kleen3cfc3482006-09-26 10:52:28 +02002492 return err ? -EFAULT : 0;
2493}
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002494
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002495/**
2496 * do_sysinfo - fill in sysinfo struct
2497 * @info: pointer to buffer to fill
2498 */
2499static int do_sysinfo(struct sysinfo *info)
2500{
2501 unsigned long mem_total, sav_total;
2502 unsigned int mem_unit, bitcount;
2503 struct timespec tp;
2504
2505 memset(info, 0, sizeof(struct sysinfo));
2506
Oleg Nesterov45c64942013-07-03 15:05:01 -07002507 get_monotonic_boottime(&tp);
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002508 info->uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0);
2509
2510 get_avenrun(info->loads, 0, SI_LOAD_SHIFT - FSHIFT);
2511
2512 info->procs = nr_threads;
2513
2514 si_meminfo(info);
2515 si_swapinfo(info);
2516
2517 /*
2518 * If the sum of all the available memory (i.e. ram + swap)
2519 * is less than can be stored in a 32 bit unsigned long then
2520 * we can be binary compatible with 2.2.x kernels. If not,
2521 * well, in that case 2.2.x was broken anyways...
2522 *
2523 * -Erik Andersen <andersee@debian.org>
2524 */
2525
2526 mem_total = info->totalram + info->totalswap;
2527 if (mem_total < info->totalram || mem_total < info->totalswap)
2528 goto out;
2529 bitcount = 0;
2530 mem_unit = info->mem_unit;
2531 while (mem_unit > 1) {
2532 bitcount++;
2533 mem_unit >>= 1;
2534 sav_total = mem_total;
2535 mem_total <<= 1;
2536 if (mem_total < sav_total)
2537 goto out;
2538 }
2539
2540 /*
2541 * If mem_total did not overflow, multiply all memory values by
2542 * info->mem_unit and set it to 1. This leaves things compatible
2543 * with 2.2.x, and also retains compatibility with earlier 2.4.x
2544 * kernels...
2545 */
2546
2547 info->mem_unit = 1;
2548 info->totalram <<= bitcount;
2549 info->freeram <<= bitcount;
2550 info->sharedram <<= bitcount;
2551 info->bufferram <<= bitcount;
2552 info->totalswap <<= bitcount;
2553 info->freeswap <<= bitcount;
2554 info->totalhigh <<= bitcount;
2555 info->freehigh <<= bitcount;
2556
2557out:
2558 return 0;
2559}
2560
2561SYSCALL_DEFINE1(sysinfo, struct sysinfo __user *, info)
2562{
2563 struct sysinfo val;
2564
2565 do_sysinfo(&val);
2566
2567 if (copy_to_user(info, &val, sizeof(struct sysinfo)))
2568 return -EFAULT;
2569
2570 return 0;
2571}
2572
2573#ifdef CONFIG_COMPAT
2574struct compat_sysinfo {
2575 s32 uptime;
2576 u32 loads[3];
2577 u32 totalram;
2578 u32 freeram;
2579 u32 sharedram;
2580 u32 bufferram;
2581 u32 totalswap;
2582 u32 freeswap;
2583 u16 procs;
2584 u16 pad;
2585 u32 totalhigh;
2586 u32 freehigh;
2587 u32 mem_unit;
2588 char _f[20-2*sizeof(u32)-sizeof(int)];
2589};
2590
2591COMPAT_SYSCALL_DEFINE1(sysinfo, struct compat_sysinfo __user *, info)
2592{
2593 struct sysinfo s;
2594
2595 do_sysinfo(&s);
2596
2597 /* Check to see if any memory value is too large for 32-bit and scale
2598 * down if needed
2599 */
Scotty Bauer0baae412014-10-09 15:30:26 -07002600 if (upper_32_bits(s.totalram) || upper_32_bits(s.totalswap)) {
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002601 int bitcount = 0;
2602
2603 while (s.mem_unit < PAGE_SIZE) {
2604 s.mem_unit <<= 1;
2605 bitcount++;
2606 }
2607
2608 s.totalram >>= bitcount;
2609 s.freeram >>= bitcount;
2610 s.sharedram >>= bitcount;
2611 s.bufferram >>= bitcount;
2612 s.totalswap >>= bitcount;
2613 s.freeswap >>= bitcount;
2614 s.totalhigh >>= bitcount;
2615 s.freehigh >>= bitcount;
2616 }
2617
2618 if (!access_ok(VERIFY_WRITE, info, sizeof(struct compat_sysinfo)) ||
2619 __put_user(s.uptime, &info->uptime) ||
2620 __put_user(s.loads[0], &info->loads[0]) ||
2621 __put_user(s.loads[1], &info->loads[1]) ||
2622 __put_user(s.loads[2], &info->loads[2]) ||
2623 __put_user(s.totalram, &info->totalram) ||
2624 __put_user(s.freeram, &info->freeram) ||
2625 __put_user(s.sharedram, &info->sharedram) ||
2626 __put_user(s.bufferram, &info->bufferram) ||
2627 __put_user(s.totalswap, &info->totalswap) ||
2628 __put_user(s.freeswap, &info->freeswap) ||
2629 __put_user(s.procs, &info->procs) ||
2630 __put_user(s.totalhigh, &info->totalhigh) ||
2631 __put_user(s.freehigh, &info->freehigh) ||
2632 __put_user(s.mem_unit, &info->mem_unit))
2633 return -EFAULT;
2634
2635 return 0;
2636}
2637#endif /* CONFIG_COMPAT */