blob: cabfc5b861754887fdc44222e3465898e2e3b4ea [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/suspend.h>
28#include <linux/tty.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070029#include <linux/signal.h>
Matt Helsley9f460802005-11-07 00:59:16 -080030#include <linux/cn_proc.h>
Andi Kleen3cfc3482006-09-26 10:52:28 +020031#include <linux/getcpu.h>
Eric Dumazet6eaeeab2007-05-10 22:22:37 -070032#include <linux/task_io_accounting_ops.h>
Andrea Arcangeli1d9d02f2007-07-15 23:41:32 -070033#include <linux/seccomp.h>
Mark Lord40477272007-10-01 01:20:10 -070034#include <linux/cpu.h>
Christoph Hellwige28cbf22010-03-10 15:21:19 -080035#include <linux/personality.h>
Paul Mackerrase3d5a272009-01-06 14:41:02 -080036#include <linux/ptrace.h>
Al Viro5ad4e532009-03-29 19:50:06 -040037#include <linux/fs_struct.h>
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -070038#include <linux/file.h>
39#include <linux/mount.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/gfp.h>
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +010041#include <linux/syscore_ops.h>
Andi Kleenbe274252011-08-19 16:15:10 -070042#include <linux/version.h>
43#include <linux/ctype.h>
Gabriel Krisman Bertazi1446e1d2020-11-27 14:32:34 -050044#include <linux/syscall_user_dispatch.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>
Cyril Hrubisecc421e2020-03-03 16:06:38 +010050#include <linux/time_namespace.h>
Chen Gang7fe5e042013-02-21 16:43:06 -080051#include <linux/binfmts.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Stephen Rothwell4a22f162013-04-30 15:27:37 -070053#include <linux/sched.h>
Ingo Molnar4eb5aaa2017-02-08 18:51:29 +010054#include <linux/sched/autogroup.h>
Ingo Molnar4f177222017-02-08 08:45:17 +010055#include <linux/sched/loadavg.h>
Ingo Molnar03441a32017-02-08 18:51:35 +010056#include <linux/sched/stat.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010057#include <linux/sched/mm.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +010058#include <linux/sched/coredump.h>
Ingo Molnar29930022017-02-08 18:51:36 +010059#include <linux/sched/task.h>
Ingo Molnar32ef5512017-02-05 11:48:36 +010060#include <linux/sched/cputime.h>
Stephen Rothwell4a22f162013-04-30 15:27:37 -070061#include <linux/rcupdate.h>
62#include <linux/uidgid.h>
63#include <linux/cred.h>
64
Thomas Gleixnerb617cfc2018-04-29 15:20:11 +020065#include <linux/nospec.h>
66
Seiji Aguchi04c68622011-01-12 16:59:30 -080067#include <linux/kmsg_dump.h>
Andi Kleenbe274252011-08-19 16:15:10 -070068/* Move somewhere else to avoid recompiling? */
69#include <generated/utsrelease.h>
Seiji Aguchi04c68622011-01-12 16:59:30 -080070
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080071#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <asm/io.h>
73#include <asm/unistd.h>
74
Dominik Brodowskie530dca2018-03-19 18:09:27 +010075#include "uid16.h"
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#ifndef SET_UNALIGN_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070078# define SET_UNALIGN_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#endif
80#ifndef GET_UNALIGN_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070081# define GET_UNALIGN_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#endif
83#ifndef SET_FPEMU_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070084# define SET_FPEMU_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#endif
86#ifndef GET_FPEMU_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070087# define GET_FPEMU_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#endif
89#ifndef SET_FPEXC_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070090# define SET_FPEXC_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#endif
92#ifndef GET_FPEXC_CTL
vishnu.psec94fc32014-10-09 15:30:23 -070093# define GET_FPEXC_CTL(a, b) (-EINVAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#endif
Anton Blanchard651d7652006-06-07 16:10:19 +100095#ifndef GET_ENDIAN
vishnu.psec94fc32014-10-09 15:30:23 -070096# define GET_ENDIAN(a, b) (-EINVAL)
Anton Blanchard651d7652006-06-07 16:10:19 +100097#endif
98#ifndef SET_ENDIAN
vishnu.psec94fc32014-10-09 15:30:23 -070099# define SET_ENDIAN(a, b) (-EINVAL)
Anton Blanchard651d7652006-06-07 16:10:19 +1000100#endif
Erik Bosman8fb402b2008-04-11 18:54:17 +0200101#ifndef GET_TSC_CTL
102# define GET_TSC_CTL(a) (-EINVAL)
103#endif
104#ifndef SET_TSC_CTL
105# define SET_TSC_CTL(a) (-EINVAL)
106#endif
Paul Burton97915542015-01-08 12:17:37 +0000107#ifndef GET_FP_MODE
108# define GET_FP_MODE(a) (-EINVAL)
109#endif
110#ifndef SET_FP_MODE
111# define SET_FP_MODE(a,b) (-EINVAL)
112#endif
Dave Martin2d2123b2017-10-31 15:51:14 +0000113#ifndef SVE_SET_VL
114# define SVE_SET_VL(a) (-EINVAL)
115#endif
116#ifndef SVE_GET_VL
117# define SVE_GET_VL() (-EINVAL)
118#endif
Kristina Martsenkoba830882018-12-07 18:39:28 +0000119#ifndef PAC_RESET_KEYS
120# define PAC_RESET_KEYS(a, b) (-EINVAL)
121#endif
Catalin Marinas63f0c602019-07-23 19:58:39 +0200122#ifndef SET_TAGGED_ADDR_CTRL
123# define SET_TAGGED_ADDR_CTRL(a) (-EINVAL)
124#endif
125#ifndef GET_TAGGED_ADDR_CTRL
126# define GET_TAGGED_ADDR_CTRL() (-EINVAL)
127#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/*
130 * this is where the system-wide overflow UID and GID are defined, for
131 * architectures that now have 32-bit UID/GID but didn't in the past
132 */
133
134int overflowuid = DEFAULT_OVERFLOWUID;
135int overflowgid = DEFAULT_OVERFLOWGID;
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137EXPORT_SYMBOL(overflowuid);
138EXPORT_SYMBOL(overflowgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/*
141 * the same as above, but for filesystems which can only store a 16-bit
142 * UID and GID. as such, this is needed on all architectures
143 */
144
145int fs_overflowuid = DEFAULT_FS_OVERFLOWUID;
Wolffhardt Schwabe8b2770a2017-12-14 19:13:57 +0100146int fs_overflowgid = DEFAULT_FS_OVERFLOWGID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148EXPORT_SYMBOL(fs_overflowuid);
149EXPORT_SYMBOL(fs_overflowgid);
150
151/*
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700152 * Returns true if current's euid is same as p's uid or euid,
153 * or has CAP_SYS_NICE to p's user_ns.
154 *
155 * Called with rcu_read_lock, creds are safe
156 */
157static bool set_one_prio_perm(struct task_struct *p)
158{
159 const struct cred *cred = current_cred(), *pcred = __task_cred(p);
160
Eric W. Biederman5af66202012-03-03 20:21:47 -0800161 if (uid_eq(pcred->uid, cred->euid) ||
162 uid_eq(pcred->euid, cred->euid))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700163 return true;
Eric W. Biedermanc4a4d602011-11-16 23:15:31 -0800164 if (ns_capable(pcred->user_ns, CAP_SYS_NICE))
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700165 return true;
166 return false;
167}
168
169/*
David Howellsc69e8d92008-11-14 10:39:19 +1100170 * set the priority of a task
171 * - the caller must hold the RCU read lock
172 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173static int set_one_prio(struct task_struct *p, int niceval, int error)
174{
175 int no_nice;
176
Serge E. Hallynfc832ad2011-03-23 16:43:22 -0700177 if (!set_one_prio_perm(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 error = -EPERM;
179 goto out;
180 }
Matt Mackalle43379f2005-05-01 08:59:00 -0700181 if (niceval < task_nice(p) && !can_nice(p, niceval)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 error = -EACCES;
183 goto out;
184 }
185 no_nice = security_task_setnice(p, niceval);
186 if (no_nice) {
187 error = no_nice;
188 goto out;
189 }
190 if (error == -ESRCH)
191 error = 0;
192 set_user_nice(p, niceval);
193out:
194 return error;
195}
196
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100197SYSCALL_DEFINE3(setpriority, int, which, int, who, int, niceval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 struct task_struct *g, *p;
200 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100201 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 int error = -EINVAL;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800203 struct pid *pgrp;
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800204 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Daniel Walker3e88c552007-05-10 22:22:53 -0700206 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 goto out;
208
209 /* normalize: avoid signed division (rounding problems) */
210 error = -ESRCH;
Dongsheng Yangc4a4d2f2014-02-11 15:34:51 +0800211 if (niceval < MIN_NICE)
212 niceval = MIN_NICE;
213 if (niceval > MAX_NICE)
214 niceval = MAX_NICE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000216 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 read_lock(&tasklist_lock);
218 switch (which) {
vishnu.psec94fc32014-10-09 15:30:23 -0700219 case PRIO_PROCESS:
220 if (who)
221 p = find_task_by_vpid(who);
222 else
223 p = current;
224 if (p)
225 error = set_one_prio(p, niceval, error);
226 break;
227 case PRIO_PGRP:
228 if (who)
229 pgrp = find_vpid(who);
230 else
231 pgrp = task_pgrp(current);
232 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
233 error = set_one_prio(p, niceval, error);
234 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
235 break;
236 case PRIO_USER:
237 uid = make_kuid(cred->user_ns, who);
238 user = cred->user;
239 if (!who)
240 uid = cred->uid;
241 else if (!uid_eq(uid, cred->uid)) {
242 user = find_user(uid);
243 if (!user)
David Howells86a264a2008-11-14 10:39:18 +1100244 goto out_unlock; /* No processes for this user */
vishnu.psec94fc32014-10-09 15:30:23 -0700245 }
246 do_each_thread(g, p) {
Ben Segall8639b462015-11-06 16:32:48 -0800247 if (uid_eq(task_uid(p), uid) && task_pid_vnr(p))
vishnu.psec94fc32014-10-09 15:30:23 -0700248 error = set_one_prio(p, niceval, error);
249 } while_each_thread(g, p);
250 if (!uid_eq(uid, cred->uid))
251 free_uid(user); /* For find_user() */
252 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254out_unlock:
255 read_unlock(&tasklist_lock);
Thomas Gleixnerd4581a22009-12-10 00:52:51 +0000256 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257out:
258 return error;
259}
260
261/*
262 * Ugh. To avoid negative return values, "getpriority()" will
263 * not return the normal nice-value, but a negated value that
264 * has been offset by 20 (ie it returns 40..1 instead of -20..19)
265 * to stay compatible.
266 */
Heiko Carstens754fe8d2009-01-14 14:14:09 +0100267SYSCALL_DEFINE2(getpriority, int, which, int, who)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 struct task_struct *g, *p;
270 struct user_struct *user;
David Howells86a264a2008-11-14 10:39:18 +1100271 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 long niceval, retval = -ESRCH;
Eric W. Biederman41487c62007-02-12 00:53:01 -0800273 struct pid *pgrp;
Eric W. Biederman7b44ab92011-11-16 23:20:58 -0800274 kuid_t uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Daniel Walker3e88c552007-05-10 22:22:53 -0700276 if (which > PRIO_USER || which < PRIO_PROCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return -EINVAL;
278
Tetsuo Handa70118832010-02-22 12:44:16 -0800279 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 read_lock(&tasklist_lock);
281 switch (which) {
vishnu.psec94fc32014-10-09 15:30:23 -0700282 case PRIO_PROCESS:
283 if (who)
284 p = find_task_by_vpid(who);
285 else
286 p = current;
287 if (p) {
288 niceval = nice_to_rlimit(task_nice(p));
289 if (niceval > retval)
290 retval = niceval;
291 }
292 break;
293 case PRIO_PGRP:
294 if (who)
295 pgrp = find_vpid(who);
296 else
297 pgrp = task_pgrp(current);
298 do_each_pid_thread(pgrp, PIDTYPE_PGID, p) {
299 niceval = nice_to_rlimit(task_nice(p));
300 if (niceval > retval)
301 retval = niceval;
302 } while_each_pid_thread(pgrp, PIDTYPE_PGID, p);
303 break;
304 case PRIO_USER:
305 uid = make_kuid(cred->user_ns, who);
306 user = cred->user;
307 if (!who)
308 uid = cred->uid;
309 else if (!uid_eq(uid, cred->uid)) {
310 user = find_user(uid);
311 if (!user)
312 goto out_unlock; /* No processes for this user */
313 }
314 do_each_thread(g, p) {
Ben Segall8639b462015-11-06 16:32:48 -0800315 if (uid_eq(task_uid(p), uid) && task_pid_vnr(p)) {
Dongsheng Yang7aa2c012014-05-08 18:33:49 +0900316 niceval = nice_to_rlimit(task_nice(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (niceval > retval)
318 retval = niceval;
319 }
vishnu.psec94fc32014-10-09 15:30:23 -0700320 } while_each_thread(g, p);
321 if (!uid_eq(uid, cred->uid))
322 free_uid(user); /* for find_user() */
323 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325out_unlock:
326 read_unlock(&tasklist_lock);
Tetsuo Handa70118832010-02-22 12:44:16 -0800327 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 return retval;
330}
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/*
333 * Unprivileged users may change the real gid to the effective gid
334 * or vice versa. (BSD-style)
335 *
336 * If you set the real gid at all, or set the effective gid to a value not
337 * equal to the real gid, then the saved gid is set to the new effective gid.
338 *
339 * This makes it possible for a setgid program to completely drop its
340 * privileges, which is often a useful assertion to make when you are doing
341 * a security audit over a program.
342 *
343 * The general idea is that a program which uses just setregid() will be
344 * 100% compatible with BSD. A program which uses just setgid() will be
vishnu.psec94fc32014-10-09 15:30:23 -0700345 * 100% compatible with POSIX with saved IDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 *
347 * SMP: There are not races, the GIDs are checked only by filesystem
348 * operations (as far as semantic preservation is concerned).
349 */
Iulia Manda28138932015-04-15 16:16:41 -0700350#ifdef CONFIG_MULTIUSER
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100351long __sys_setregid(gid_t rgid, gid_t egid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800353 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100354 const struct cred *old;
355 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800357 kgid_t krgid, kegid;
358
359 krgid = make_kgid(ns, rgid);
360 kegid = make_kgid(ns, egid);
361
362 if ((rgid != (gid_t) -1) && !gid_valid(krgid))
363 return -EINVAL;
364 if ((egid != (gid_t) -1) && !gid_valid(kegid))
365 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
David Howellsd84f4f92008-11-14 10:39:23 +1100367 new = prepare_creds();
368 if (!new)
369 return -ENOMEM;
370 old = current_cred();
371
David Howellsd84f4f92008-11-14 10:39:23 +1100372 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (rgid != (gid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800374 if (gid_eq(old->gid, krgid) ||
375 gid_eq(old->egid, krgid) ||
Thomas Cedeno111767c2020-07-16 19:13:57 +0000376 ns_capable_setid(old->user_ns, CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800377 new->gid = krgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 else
David Howellsd84f4f92008-11-14 10:39:23 +1100379 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381 if (egid != (gid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800382 if (gid_eq(old->gid, kegid) ||
383 gid_eq(old->egid, kegid) ||
384 gid_eq(old->sgid, kegid) ||
Thomas Cedeno111767c2020-07-16 19:13:57 +0000385 ns_capable_setid(old->user_ns, CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800386 new->egid = kegid;
Cal Peake756184b2006-09-30 23:27:24 -0700387 else
David Howellsd84f4f92008-11-14 10:39:23 +1100388 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
David Howellsd84f4f92008-11-14 10:39:23 +1100390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (rgid != (gid_t) -1 ||
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800392 (egid != (gid_t) -1 && !gid_eq(kegid, old->gid)))
David Howellsd84f4f92008-11-14 10:39:23 +1100393 new->sgid = new->egid;
394 new->fsgid = new->egid;
395
Thomas Cedeno39030e12020-06-09 10:22:13 -0700396 retval = security_task_fix_setgid(new, old, LSM_SETID_RE);
397 if (retval < 0)
398 goto error;
399
David Howellsd84f4f92008-11-14 10:39:23 +1100400 return commit_creds(new);
401
402error:
403 abort_creds(new);
404 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100407SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid)
408{
409 return __sys_setregid(rgid, egid);
410}
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412/*
vishnu.psec94fc32014-10-09 15:30:23 -0700413 * setgid() is implemented like SysV w/ SAVED_IDS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 *
415 * SMP: Same implicit races as above.
416 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100417long __sys_setgid(gid_t gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800419 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100420 const struct cred *old;
421 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800423 kgid_t kgid;
424
425 kgid = make_kgid(ns, gid);
426 if (!gid_valid(kgid))
427 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
David Howellsd84f4f92008-11-14 10:39:23 +1100429 new = prepare_creds();
430 if (!new)
431 return -ENOMEM;
432 old = current_cred();
433
David Howellsd84f4f92008-11-14 10:39:23 +1100434 retval = -EPERM;
Thomas Cedeno111767c2020-07-16 19:13:57 +0000435 if (ns_capable_setid(old->user_ns, CAP_SETGID))
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800436 new->gid = new->egid = new->sgid = new->fsgid = kgid;
437 else if (gid_eq(kgid, old->gid) || gid_eq(kgid, old->sgid))
438 new->egid = new->fsgid = kgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 else
David Howellsd84f4f92008-11-14 10:39:23 +1100440 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Thomas Cedeno39030e12020-06-09 10:22:13 -0700442 retval = security_task_fix_setgid(new, old, LSM_SETID_ID);
443 if (retval < 0)
444 goto error;
445
David Howellsd84f4f92008-11-14 10:39:23 +1100446 return commit_creds(new);
447
448error:
449 abort_creds(new);
450 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
Dhaval Giani54e99122009-02-27 15:13:54 +0530452
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100453SYSCALL_DEFINE1(setgid, gid_t, gid)
454{
455 return __sys_setgid(gid);
456}
457
David Howellsd84f4f92008-11-14 10:39:23 +1100458/*
459 * change the user struct in a credentials set to match the new UID
460 */
461static int set_user(struct cred *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 struct user_struct *new_user;
464
Eric W. Biederman078de5f2012-02-08 07:00:08 -0800465 new_user = alloc_uid(new->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (!new_user)
467 return -EAGAIN;
468
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +0400469 /*
470 * We don't fail in case of NPROC limit excess here because too many
471 * poorly written programs don't check set*uid() return code, assuming
472 * it never fails if called by root. We may still enforce NPROC limit
473 * for programs doing set*uid()+execve() by harmlessly deferring the
474 * failure to the execve() stage.
475 */
Jiri Slaby78d7d402010-03-05 13:42:54 -0800476 if (atomic_read(&new_user->processes) >= rlimit(RLIMIT_NPROC) &&
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +0400477 new_user != INIT_USER)
478 current->flags |= PF_NPROC_EXCEEDED;
479 else
480 current->flags &= ~PF_NPROC_EXCEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
David Howellsd84f4f92008-11-14 10:39:23 +1100482 free_uid(new->user);
483 new->user = new_user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return 0;
485}
486
487/*
488 * Unprivileged users may change the real uid to the effective uid
489 * or vice versa. (BSD-style)
490 *
491 * If you set the real uid at all, or set the effective uid to a value not
492 * equal to the real uid, then the saved uid is set to the new effective uid.
493 *
494 * This makes it possible for a setuid program to completely drop its
495 * privileges, which is often a useful assertion to make when you are doing
496 * a security audit over a program.
497 *
498 * The general idea is that a program which uses just setreuid() will be
499 * 100% compatible with BSD. A program which uses just setuid() will be
vishnu.psec94fc32014-10-09 15:30:23 -0700500 * 100% compatible with POSIX with saved IDs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100502long __sys_setreuid(uid_t ruid, uid_t euid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800504 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100505 const struct cred *old;
506 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800508 kuid_t kruid, keuid;
509
510 kruid = make_kuid(ns, ruid);
511 keuid = make_kuid(ns, euid);
512
513 if ((ruid != (uid_t) -1) && !uid_valid(kruid))
514 return -EINVAL;
515 if ((euid != (uid_t) -1) && !uid_valid(keuid))
516 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
David Howellsd84f4f92008-11-14 10:39:23 +1100518 new = prepare_creds();
519 if (!new)
520 return -ENOMEM;
521 old = current_cred();
522
David Howellsd84f4f92008-11-14 10:39:23 +1100523 retval = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (ruid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800525 new->uid = kruid;
526 if (!uid_eq(old->uid, kruid) &&
527 !uid_eq(old->euid, kruid) &&
Micah Morton40852272019-01-22 14:42:09 -0800528 !ns_capable_setid(old->user_ns, CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100529 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531
532 if (euid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800533 new->euid = keuid;
534 if (!uid_eq(old->uid, keuid) &&
535 !uid_eq(old->euid, keuid) &&
536 !uid_eq(old->suid, keuid) &&
Micah Morton40852272019-01-22 14:42:09 -0800537 !ns_capable_setid(old->user_ns, CAP_SETUID))
David Howellsd84f4f92008-11-14 10:39:23 +1100538 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800541 if (!uid_eq(new->uid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530542 retval = set_user(new);
543 if (retval < 0)
544 goto error;
545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (ruid != (uid_t) -1 ||
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800547 (euid != (uid_t) -1 && !uid_eq(keuid, old->uid)))
David Howellsd84f4f92008-11-14 10:39:23 +1100548 new->suid = new->euid;
549 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
David Howellsd84f4f92008-11-14 10:39:23 +1100551 retval = security_task_fix_setuid(new, old, LSM_SETID_RE);
552 if (retval < 0)
553 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Alexey Gladkov905ae012021-04-22 14:27:09 +0200555 retval = set_cred_ucounts(new);
556 if (retval < 0)
557 goto error;
558
David Howellsd84f4f92008-11-14 10:39:23 +1100559 return commit_creds(new);
560
561error:
562 abort_creds(new);
563 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
vishnu.psec94fc32014-10-09 15:30:23 -0700565
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100566SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid)
567{
568 return __sys_setreuid(ruid, euid);
569}
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571/*
vishnu.psec94fc32014-10-09 15:30:23 -0700572 * setuid() is implemented like SysV with SAVED_IDS
573 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 * Note that SAVED_ID's is deficient in that a setuid root program
vishnu.psec94fc32014-10-09 15:30:23 -0700575 * like sendmail, for example, cannot set its uid to be a normal
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * user and then switch back, because if you're root, setuid() sets
577 * the saved uid too. If you don't like this, blame the bright people
578 * in the POSIX committee and/or USG. Note that the BSD-style setreuid()
579 * will allow a root program to temporarily drop privileges and be able to
vishnu.psec94fc32014-10-09 15:30:23 -0700580 * regain them by swapping the real and effective uid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100582long __sys_setuid(uid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800584 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100585 const struct cred *old;
586 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800588 kuid_t kuid;
589
590 kuid = make_kuid(ns, uid);
591 if (!uid_valid(kuid))
592 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
David Howellsd84f4f92008-11-14 10:39:23 +1100594 new = prepare_creds();
595 if (!new)
596 return -ENOMEM;
597 old = current_cred();
598
David Howellsd84f4f92008-11-14 10:39:23 +1100599 retval = -EPERM;
Micah Morton40852272019-01-22 14:42:09 -0800600 if (ns_capable_setid(old->user_ns, CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800601 new->suid = new->uid = kuid;
602 if (!uid_eq(kuid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530603 retval = set_user(new);
604 if (retval < 0)
605 goto error;
David Howellsd84f4f92008-11-14 10:39:23 +1100606 }
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800607 } else if (!uid_eq(kuid, old->uid) && !uid_eq(kuid, new->suid)) {
David Howellsd84f4f92008-11-14 10:39:23 +1100608 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800611 new->fsuid = new->euid = kuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
David Howellsd84f4f92008-11-14 10:39:23 +1100613 retval = security_task_fix_setuid(new, old, LSM_SETID_ID);
614 if (retval < 0)
615 goto error;
616
Alexey Gladkov905ae012021-04-22 14:27:09 +0200617 retval = set_cred_ucounts(new);
618 if (retval < 0)
619 goto error;
620
David Howellsd84f4f92008-11-14 10:39:23 +1100621 return commit_creds(new);
622
623error:
624 abort_creds(new);
625 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100628SYSCALL_DEFINE1(setuid, uid_t, uid)
629{
630 return __sys_setuid(uid);
631}
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634/*
635 * This function implements a generic ability to update ruid, euid,
636 * and suid. This allows you to implement the 4.4 compatible seteuid().
637 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100638long __sys_setresuid(uid_t ruid, uid_t euid, uid_t suid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800640 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100641 const struct cred *old;
642 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800644 kuid_t kruid, keuid, ksuid;
645
646 kruid = make_kuid(ns, ruid);
647 keuid = make_kuid(ns, euid);
648 ksuid = make_kuid(ns, suid);
649
650 if ((ruid != (uid_t) -1) && !uid_valid(kruid))
651 return -EINVAL;
652
653 if ((euid != (uid_t) -1) && !uid_valid(keuid))
654 return -EINVAL;
655
656 if ((suid != (uid_t) -1) && !uid_valid(ksuid))
657 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
David Howellsd84f4f92008-11-14 10:39:23 +1100659 new = prepare_creds();
660 if (!new)
661 return -ENOMEM;
662
David Howellsd84f4f92008-11-14 10:39:23 +1100663 old = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
David Howellsd84f4f92008-11-14 10:39:23 +1100665 retval = -EPERM;
Micah Morton40852272019-01-22 14:42:09 -0800666 if (!ns_capable_setid(old->user_ns, CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800667 if (ruid != (uid_t) -1 && !uid_eq(kruid, old->uid) &&
668 !uid_eq(kruid, old->euid) && !uid_eq(kruid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100669 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800670 if (euid != (uid_t) -1 && !uid_eq(keuid, old->uid) &&
671 !uid_eq(keuid, old->euid) && !uid_eq(keuid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100672 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800673 if (suid != (uid_t) -1 && !uid_eq(ksuid, old->uid) &&
674 !uid_eq(ksuid, old->euid) && !uid_eq(ksuid, old->suid))
David Howellsd84f4f92008-11-14 10:39:23 +1100675 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
David Howellsd84f4f92008-11-14 10:39:23 +1100677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (ruid != (uid_t) -1) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800679 new->uid = kruid;
680 if (!uid_eq(kruid, old->uid)) {
Dhaval Giani54e99122009-02-27 15:13:54 +0530681 retval = set_user(new);
682 if (retval < 0)
683 goto error;
684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
David Howellsd84f4f92008-11-14 10:39:23 +1100686 if (euid != (uid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800687 new->euid = keuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (suid != (uid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800689 new->suid = ksuid;
David Howellsd84f4f92008-11-14 10:39:23 +1100690 new->fsuid = new->euid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
David Howellsd84f4f92008-11-14 10:39:23 +1100692 retval = security_task_fix_setuid(new, old, LSM_SETID_RES);
693 if (retval < 0)
694 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Alexey Gladkov905ae012021-04-22 14:27:09 +0200696 retval = set_cred_ucounts(new);
697 if (retval < 0)
698 goto error;
699
David Howellsd84f4f92008-11-14 10:39:23 +1100700 return commit_creds(new);
701
702error:
703 abort_creds(new);
704 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100707SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid)
708{
709 return __sys_setresuid(ruid, euid, suid);
710}
711
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800712SYSCALL_DEFINE3(getresuid, uid_t __user *, ruidp, uid_t __user *, euidp, uid_t __user *, suidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
David Howells86a264a2008-11-14 10:39:18 +1100714 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800716 uid_t ruid, euid, suid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800718 ruid = from_kuid_munged(cred->user_ns, cred->uid);
719 euid = from_kuid_munged(cred->user_ns, cred->euid);
720 suid = from_kuid_munged(cred->user_ns, cred->suid);
721
vishnu.psec94fc32014-10-09 15:30:23 -0700722 retval = put_user(ruid, ruidp);
723 if (!retval) {
724 retval = put_user(euid, euidp);
725 if (!retval)
726 return put_user(suid, suidp);
727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return retval;
729}
730
731/*
732 * Same as above, but for rgid, egid, sgid.
733 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100734long __sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800736 struct user_namespace *ns = current_user_ns();
David Howellsd84f4f92008-11-14 10:39:23 +1100737 const struct cred *old;
738 struct cred *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800740 kgid_t krgid, kegid, ksgid;
741
742 krgid = make_kgid(ns, rgid);
743 kegid = make_kgid(ns, egid);
744 ksgid = make_kgid(ns, sgid);
745
746 if ((rgid != (gid_t) -1) && !gid_valid(krgid))
747 return -EINVAL;
748 if ((egid != (gid_t) -1) && !gid_valid(kegid))
749 return -EINVAL;
750 if ((sgid != (gid_t) -1) && !gid_valid(ksgid))
751 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
David Howellsd84f4f92008-11-14 10:39:23 +1100753 new = prepare_creds();
754 if (!new)
755 return -ENOMEM;
756 old = current_cred();
757
David Howellsd84f4f92008-11-14 10:39:23 +1100758 retval = -EPERM;
Thomas Cedeno111767c2020-07-16 19:13:57 +0000759 if (!ns_capable_setid(old->user_ns, CAP_SETGID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800760 if (rgid != (gid_t) -1 && !gid_eq(krgid, old->gid) &&
761 !gid_eq(krgid, old->egid) && !gid_eq(krgid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100762 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800763 if (egid != (gid_t) -1 && !gid_eq(kegid, old->gid) &&
764 !gid_eq(kegid, old->egid) && !gid_eq(kegid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100765 goto error;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800766 if (sgid != (gid_t) -1 && !gid_eq(ksgid, old->gid) &&
767 !gid_eq(ksgid, old->egid) && !gid_eq(ksgid, old->sgid))
David Howellsd84f4f92008-11-14 10:39:23 +1100768 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
David Howellsd84f4f92008-11-14 10:39:23 +1100771 if (rgid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800772 new->gid = krgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100773 if (egid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800774 new->egid = kegid;
David Howellsd84f4f92008-11-14 10:39:23 +1100775 if (sgid != (gid_t) -1)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800776 new->sgid = ksgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100777 new->fsgid = new->egid;
778
Thomas Cedeno39030e12020-06-09 10:22:13 -0700779 retval = security_task_fix_setgid(new, old, LSM_SETID_RES);
780 if (retval < 0)
781 goto error;
782
David Howellsd84f4f92008-11-14 10:39:23 +1100783 return commit_creds(new);
784
785error:
786 abort_creds(new);
787 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100790SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
791{
792 return __sys_setresgid(rgid, egid, sgid);
793}
794
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800795SYSCALL_DEFINE3(getresgid, gid_t __user *, rgidp, gid_t __user *, egidp, gid_t __user *, sgidp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
David Howells86a264a2008-11-14 10:39:18 +1100797 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int retval;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800799 gid_t rgid, egid, sgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800801 rgid = from_kgid_munged(cred->user_ns, cred->gid);
802 egid = from_kgid_munged(cred->user_ns, cred->egid);
803 sgid = from_kgid_munged(cred->user_ns, cred->sgid);
804
vishnu.psec94fc32014-10-09 15:30:23 -0700805 retval = put_user(rgid, rgidp);
806 if (!retval) {
807 retval = put_user(egid, egidp);
808 if (!retval)
809 retval = put_user(sgid, sgidp);
810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 return retval;
813}
814
815
816/*
817 * "setfsuid()" sets the fsuid - the uid used for filesystem checks. This
818 * is used for "access()" and for the NFS daemon (letting nfsd stay at
819 * whatever uid it wants to). It normally shadows "euid", except when
820 * explicitly set by setfsuid() or for access..
821 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100822long __sys_setfsuid(uid_t uid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
David Howellsd84f4f92008-11-14 10:39:23 +1100824 const struct cred *old;
825 struct cred *new;
826 uid_t old_fsuid;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800827 kuid_t kuid;
828
829 old = current_cred();
830 old_fsuid = from_kuid_munged(old->user_ns, old->fsuid);
831
832 kuid = make_kuid(old->user_ns, uid);
833 if (!uid_valid(kuid))
834 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
David Howellsd84f4f92008-11-14 10:39:23 +1100836 new = prepare_creds();
837 if (!new)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800838 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800840 if (uid_eq(kuid, old->uid) || uid_eq(kuid, old->euid) ||
841 uid_eq(kuid, old->suid) || uid_eq(kuid, old->fsuid) ||
Micah Morton40852272019-01-22 14:42:09 -0800842 ns_capable_setid(old->user_ns, CAP_SETUID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800843 if (!uid_eq(kuid, old->fsuid)) {
844 new->fsuid = kuid;
David Howellsd84f4f92008-11-14 10:39:23 +1100845 if (security_task_fix_setuid(new, old, LSM_SETID_FS) == 0)
846 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849
David Howellsd84f4f92008-11-14 10:39:23 +1100850 abort_creds(new);
851 return old_fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
David Howellsd84f4f92008-11-14 10:39:23 +1100853change_okay:
854 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return old_fsuid;
856}
857
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100858SYSCALL_DEFINE1(setfsuid, uid_t, uid)
859{
860 return __sys_setfsuid(uid);
861}
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863/*
John Anthony Kazos Jrf42df9e2007-05-09 08:23:08 +0200864 * Samma på svenska..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 */
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100866long __sys_setfsgid(gid_t gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
David Howellsd84f4f92008-11-14 10:39:23 +1100868 const struct cred *old;
869 struct cred *new;
870 gid_t old_fsgid;
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800871 kgid_t kgid;
872
873 old = current_cred();
874 old_fsgid = from_kgid_munged(old->user_ns, old->fsgid);
875
876 kgid = make_kgid(old->user_ns, gid);
877 if (!gid_valid(kgid))
878 return old_fsgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
David Howellsd84f4f92008-11-14 10:39:23 +1100880 new = prepare_creds();
881 if (!new)
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800882 return old_fsgid;
David Howellsd84f4f92008-11-14 10:39:23 +1100883
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800884 if (gid_eq(kgid, old->gid) || gid_eq(kgid, old->egid) ||
885 gid_eq(kgid, old->sgid) || gid_eq(kgid, old->fsgid) ||
Thomas Cedeno111767c2020-07-16 19:13:57 +0000886 ns_capable_setid(old->user_ns, CAP_SETGID)) {
Eric W. Biedermana29c33f2012-02-07 18:51:01 -0800887 if (!gid_eq(kgid, old->fsgid)) {
888 new->fsgid = kgid;
Thomas Cedeno39030e12020-06-09 10:22:13 -0700889 if (security_task_fix_setgid(new,old,LSM_SETID_FS) == 0)
890 goto change_okay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
David Howellsd84f4f92008-11-14 10:39:23 +1100893
David Howellsd84f4f92008-11-14 10:39:23 +1100894 abort_creds(new);
895 return old_fsgid;
896
897change_okay:
898 commit_creds(new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return old_fsgid;
900}
Dominik Brodowskie530dca2018-03-19 18:09:27 +0100901
902SYSCALL_DEFINE1(setfsgid, gid_t, gid)
903{
904 return __sys_setfsgid(gid);
905}
Iulia Manda28138932015-04-15 16:16:41 -0700906#endif /* CONFIG_MULTIUSER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Stephen Rothwell4a22f162013-04-30 15:27:37 -0700908/**
909 * sys_getpid - return the thread group id of the current process
910 *
911 * Note, despite the name, this returns the tgid not the pid. The tgid and
912 * the pid are identical unless CLONE_THREAD was specified on clone() in
913 * which case the tgid is the same in all threads of the same group.
914 *
915 * This is SMP safe as current->tgid does not change.
916 */
917SYSCALL_DEFINE0(getpid)
918{
919 return task_tgid_vnr(current);
920}
921
922/* Thread ID - the internal kernel "pid" */
923SYSCALL_DEFINE0(gettid)
924{
925 return task_pid_vnr(current);
926}
927
928/*
929 * Accessing ->real_parent is not SMP-safe, it could
930 * change from under us. However, we can use a stale
931 * value of ->real_parent under rcu_read_lock(), see
932 * release_task()->call_rcu(delayed_put_task_struct).
933 */
934SYSCALL_DEFINE0(getppid)
935{
936 int pid;
937
938 rcu_read_lock();
939 pid = task_tgid_vnr(rcu_dereference(current->real_parent));
940 rcu_read_unlock();
941
942 return pid;
943}
944
945SYSCALL_DEFINE0(getuid)
946{
947 /* Only we change this so SMP safe */
948 return from_kuid_munged(current_user_ns(), current_uid());
949}
950
951SYSCALL_DEFINE0(geteuid)
952{
953 /* Only we change this so SMP safe */
954 return from_kuid_munged(current_user_ns(), current_euid());
955}
956
957SYSCALL_DEFINE0(getgid)
958{
959 /* Only we change this so SMP safe */
960 return from_kgid_munged(current_user_ns(), current_gid());
961}
962
963SYSCALL_DEFINE0(getegid)
964{
965 /* Only we change this so SMP safe */
966 return from_kgid_munged(current_user_ns(), current_egid());
967}
968
Al Viroca2406e2017-05-31 04:22:44 -0400969static void do_sys_times(struct tms *tms)
Frank Mayharf06febc2008-09-12 09:54:39 -0700970{
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100971 u64 tgutime, tgstime, cutime, cstime;
Frank Mayharf06febc2008-09-12 09:54:39 -0700972
Frederic Weisbeckere80d0a1a2012-11-21 16:26:44 +0100973 thread_group_cputime_adjusted(current, &tgutime, &tgstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700974 cutime = current->signal->cutime;
975 cstime = current->signal->cstime;
Frederic Weisbecker5613fda2017-01-31 04:09:23 +0100976 tms->tms_utime = nsec_to_clock_t(tgutime);
977 tms->tms_stime = nsec_to_clock_t(tgstime);
978 tms->tms_cutime = nsec_to_clock_t(cutime);
979 tms->tms_cstime = nsec_to_clock_t(cstime);
Frank Mayharf06febc2008-09-12 09:54:39 -0700980}
981
Heiko Carstens58fd3aa2009-01-14 14:14:03 +0100982SYSCALL_DEFINE1(times, struct tms __user *, tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (tbuf) {
985 struct tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Frank Mayharf06febc2008-09-12 09:54:39 -0700987 do_sys_times(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (copy_to_user(tbuf, &tmp, sizeof(struct tms)))
989 return -EFAULT;
990 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800991 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return (long) jiffies_64_to_clock_t(get_jiffies_64());
993}
994
Al Viroca2406e2017-05-31 04:22:44 -0400995#ifdef CONFIG_COMPAT
996static compat_clock_t clock_t_to_compat_clock_t(clock_t x)
997{
998 return compat_jiffies_to_clock_t(clock_t_to_jiffies(x));
999}
1000
1001COMPAT_SYSCALL_DEFINE1(times, struct compat_tms __user *, tbuf)
1002{
1003 if (tbuf) {
1004 struct tms tms;
1005 struct compat_tms tmp;
1006
1007 do_sys_times(&tms);
1008 /* Convert our struct tms to the compat version. */
1009 tmp.tms_utime = clock_t_to_compat_clock_t(tms.tms_utime);
1010 tmp.tms_stime = clock_t_to_compat_clock_t(tms.tms_stime);
1011 tmp.tms_cutime = clock_t_to_compat_clock_t(tms.tms_cutime);
1012 tmp.tms_cstime = clock_t_to_compat_clock_t(tms.tms_cstime);
1013 if (copy_to_user(tbuf, &tmp, sizeof(tmp)))
1014 return -EFAULT;
1015 }
1016 force_successful_syscall_return();
1017 return compat_jiffies_to_clock_t(jiffies);
1018}
1019#endif
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021/*
1022 * This needs some heavy checking ...
1023 * I just haven't the stomach for it. I also don't fully
1024 * understand sessions/pgrp etc. Let somebody who does explain it.
1025 *
1026 * OK, I think I have the protection semantics right.... this is really
1027 * only important on a multi-user system anyway, to make sure one user
1028 * can't send a signal to a process owned by another. -TYT, 12/12/91
1029 *
Oleg Nesterov98611e42014-01-23 15:55:52 -08001030 * !PF_FORKNOEXEC check to conform completely to POSIX.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 */
Heiko Carstensb290ebe2009-01-14 14:14:06 +01001032SYSCALL_DEFINE2(setpgid, pid_t, pid, pid_t, pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
1034 struct task_struct *p;
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001035 struct task_struct *group_leader = current->group_leader;
Oleg Nesterov4e021302008-02-08 04:19:08 -08001036 struct pid *pgrp;
1037 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 if (!pid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001040 pid = task_pid_vnr(group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (!pgid)
1042 pgid = pid;
1043 if (pgid < 0)
1044 return -EINVAL;
Paul E. McKenney950eaac2010-08-31 17:00:18 -07001045 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 /* From this point forward we keep holding onto the tasklist lock
1048 * so that our parent does not change from under us. -DaveM
1049 */
1050 write_lock_irq(&tasklist_lock);
1051
1052 err = -ESRCH;
Oleg Nesterov4e021302008-02-08 04:19:08 -08001053 p = find_task_by_vpid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (!p)
1055 goto out;
1056
1057 err = -EINVAL;
1058 if (!thread_group_leader(p))
1059 goto out;
1060
Oleg Nesterov4e021302008-02-08 04:19:08 -08001061 if (same_thread_group(p->real_parent, group_leader)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 err = -EPERM;
Eric W. Biederman41487c62007-02-12 00:53:01 -08001063 if (task_session(p) != task_session(group_leader))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 goto out;
1065 err = -EACCES;
Oleg Nesterov98611e42014-01-23 15:55:52 -08001066 if (!(p->flags & PF_FORKNOEXEC))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 goto out;
1068 } else {
1069 err = -ESRCH;
Oleg Nesterovee0acf92006-01-08 01:03:53 -08001070 if (p != group_leader)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 goto out;
1072 }
1073
1074 err = -EPERM;
1075 if (p->signal->leader)
1076 goto out;
1077
Oleg Nesterov4e021302008-02-08 04:19:08 -08001078 pgrp = task_pid(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (pgid != pid) {
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001080 struct task_struct *g;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Oleg Nesterov4e021302008-02-08 04:19:08 -08001082 pgrp = find_vpid(pgid);
1083 g = pid_task(pgrp, PIDTYPE_PGID);
Eric W. Biederman41487c62007-02-12 00:53:01 -08001084 if (!g || task_session(g) != task_session(group_leader))
Oleg Nesterovf020bc42006-12-08 02:38:02 -08001085 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 err = security_task_setpgid(p, pgid);
1089 if (err)
1090 goto out;
1091
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07001092 if (task_pgrp(p) != pgrp)
Oleg Nesterov83beaf32008-04-30 00:54:27 -07001093 change_pid(p, PIDTYPE_PGID, pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 err = 0;
1096out:
1097 /* All paths lead to here, thus we are safe. -DaveM */
1098 write_unlock_irq(&tasklist_lock);
Paul E. McKenney950eaac2010-08-31 17:00:18 -07001099 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return err;
1101}
1102
Dominik Brodowski192c5802018-03-11 11:34:27 +01001103static int do_getpgid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001105 struct task_struct *p;
1106 struct pid *grp;
1107 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001109 rcu_read_lock();
1110 if (!pid)
1111 grp = task_pgrp(current);
1112 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 retval = -ESRCH;
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001114 p = find_task_by_vpid(pid);
1115 if (!p)
1116 goto out;
1117 grp = task_pgrp(p);
1118 if (!grp)
1119 goto out;
1120
1121 retval = security_task_getpgid(p);
1122 if (retval)
1123 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
Oleg Nesterov12a3de0a2008-04-30 00:54:29 -07001125 retval = pid_vnr(grp);
1126out:
1127 rcu_read_unlock();
1128 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129}
1130
Dominik Brodowski192c5802018-03-11 11:34:27 +01001131SYSCALL_DEFINE1(getpgid, pid_t, pid)
1132{
1133 return do_getpgid(pid);
1134}
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136#ifdef __ARCH_WANT_SYS_GETPGRP
1137
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001138SYSCALL_DEFINE0(getpgrp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Dominik Brodowski192c5802018-03-11 11:34:27 +01001140 return do_getpgid(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
1143#endif
1144
Heiko Carstensdbf040d2009-01-14 14:14:04 +01001145SYSCALL_DEFINE1(getsid, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001147 struct task_struct *p;
1148 struct pid *sid;
1149 int retval;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001150
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001151 rcu_read_lock();
1152 if (!pid)
1153 sid = task_session(current);
1154 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 retval = -ESRCH;
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001156 p = find_task_by_vpid(pid);
1157 if (!p)
1158 goto out;
1159 sid = task_session(p);
1160 if (!sid)
1161 goto out;
1162
1163 retval = security_task_getsid(p);
1164 if (retval)
1165 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
Oleg Nesterov1dd768c02008-04-30 00:54:28 -07001167 retval = pid_vnr(sid);
1168out:
1169 rcu_read_unlock();
1170 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171}
1172
Oleg Nesterov81dabb42013-07-03 15:08:26 -07001173static void set_special_pids(struct pid *pid)
1174{
1175 struct task_struct *curr = current->group_leader;
1176
1177 if (task_session(curr) != pid)
1178 change_pid(curr, PIDTYPE_SID, pid);
1179
1180 if (task_pgrp(curr) != pid)
1181 change_pid(curr, PIDTYPE_PGID, pid);
1182}
1183
Dominik Brodowskie2aaa9f2018-03-16 12:36:06 +01001184int ksys_setsid(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Oren Laadane19f2472006-01-08 01:03:58 -08001186 struct task_struct *group_leader = current->group_leader;
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001187 struct pid *sid = task_pid(group_leader);
1188 pid_t session = pid_vnr(sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 int err = -EPERM;
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 write_lock_irq(&tasklist_lock);
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001192 /* Fail if I am already a session leader */
1193 if (group_leader->signal->leader)
1194 goto out;
1195
Oleg Nesterov430c6232008-02-08 04:19:11 -08001196 /* Fail if a process group id already exists that equals the
1197 * proposed session id.
Eric W. Biederman390e2ff2006-03-31 02:31:33 -08001198 */
Oleg Nesterov6806aac2008-02-08 04:19:12 -08001199 if (pid_task(sid, PIDTYPE_PGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 goto out;
1201
Oren Laadane19f2472006-01-08 01:03:58 -08001202 group_leader->signal->leader = 1;
Oleg Nesterov81dabb42013-07-03 15:08:26 -07001203 set_special_pids(sid);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001204
Alan Cox9c9f4de2008-10-13 10:37:26 +01001205 proc_clear_tty(group_leader);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001206
Oleg Nesterove4cc0a92008-02-08 04:19:09 -08001207 err = session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208out:
1209 write_unlock_irq(&tasklist_lock);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001210 if (err > 0) {
Christian Borntraeger0d0df592009-10-26 16:49:34 -07001211 proc_sid_connector(group_leader);
Mike Galbraith5091faa2010-11-30 14:18:03 +01001212 sched_autogroup_create_attach(group_leader);
1213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return err;
1215}
1216
Dominik Brodowskie2aaa9f2018-03-16 12:36:06 +01001217SYSCALL_DEFINE0(setsid)
1218{
1219 return ksys_setsid();
1220}
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222DECLARE_RWSEM(uts_sem);
1223
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001224#ifdef COMPAT_UTS_MACHINE
1225#define override_architecture(name) \
Andreas Schwab46da2762010-04-23 13:17:44 -04001226 (personality(current->personality) == PER_LINUX32 && \
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001227 copy_to_user(name->machine, COMPAT_UTS_MACHINE, \
1228 sizeof(COMPAT_UTS_MACHINE)))
1229#else
1230#define override_architecture(name) 0
1231#endif
1232
Andi Kleenbe274252011-08-19 16:15:10 -07001233/*
1234 * Work around broken programs that cannot handle "Linux 3.0".
1235 * Instead we map 3.x to 2.6.40+x, so e.g. 3.0 would be 2.6.40
Jonathan Neuschäferb7285b42019-01-12 18:14:30 +01001236 * And we map 4.x and later versions to 2.6.60+x, so 4.0/5.0/6.0/... would be
1237 * 2.6.60.
Andi Kleenbe274252011-08-19 16:15:10 -07001238 */
Kees Cook2702b152012-10-19 13:56:51 -07001239static int override_release(char __user *release, size_t len)
Andi Kleenbe274252011-08-19 16:15:10 -07001240{
1241 int ret = 0;
Andi Kleenbe274252011-08-19 16:15:10 -07001242
1243 if (current->personality & UNAME26) {
Kees Cook2702b152012-10-19 13:56:51 -07001244 const char *rest = UTS_RELEASE;
1245 char buf[65] = { 0 };
Andi Kleenbe274252011-08-19 16:15:10 -07001246 int ndots = 0;
1247 unsigned v;
Kees Cook2702b152012-10-19 13:56:51 -07001248 size_t copy;
Andi Kleenbe274252011-08-19 16:15:10 -07001249
1250 while (*rest) {
1251 if (*rest == '.' && ++ndots >= 3)
1252 break;
1253 if (!isdigit(*rest) && *rest != '.')
1254 break;
1255 rest++;
1256 }
Sasha Levin88a68672021-02-12 11:29:24 -05001257 v = LINUX_VERSION_PATCHLEVEL + 60;
Kees Cook31fd84b92012-10-19 18:45:53 -07001258 copy = clamp_t(size_t, len, 1, sizeof(buf));
Kees Cook2702b152012-10-19 13:56:51 -07001259 copy = scnprintf(buf, copy, "2.6.%u%s", v, rest);
1260 ret = copy_to_user(release, buf, copy + 1);
Andi Kleenbe274252011-08-19 16:15:10 -07001261 }
1262 return ret;
1263}
1264
Heiko Carstense48fbb62009-01-14 14:14:26 +01001265SYSCALL_DEFINE1(newuname, struct new_utsname __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
Jann Horn42a0cc32018-06-25 18:34:10 +02001267 struct new_utsname tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 down_read(&uts_sem);
Jann Horn42a0cc32018-06-25 18:34:10 +02001270 memcpy(&tmp, utsname(), sizeof(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 up_read(&uts_sem);
Jann Horn42a0cc32018-06-25 18:34:10 +02001272 if (copy_to_user(name, &tmp, sizeof(tmp)))
1273 return -EFAULT;
Christoph Hellwige28cbf22010-03-10 15:21:19 -08001274
Jann Horn42a0cc32018-06-25 18:34:10 +02001275 if (override_release(name->release, sizeof(name->release)))
1276 return -EFAULT;
1277 if (override_architecture(name))
1278 return -EFAULT;
1279 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001282#ifdef __ARCH_WANT_SYS_OLD_UNAME
1283/*
1284 * Old cruft
1285 */
1286SYSCALL_DEFINE1(uname, struct old_utsname __user *, name)
1287{
Jann Horn42a0cc32018-06-25 18:34:10 +02001288 struct old_utsname tmp;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001289
1290 if (!name)
1291 return -EFAULT;
1292
1293 down_read(&uts_sem);
Jann Horn42a0cc32018-06-25 18:34:10 +02001294 memcpy(&tmp, utsname(), sizeof(tmp));
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001295 up_read(&uts_sem);
Jann Horn42a0cc32018-06-25 18:34:10 +02001296 if (copy_to_user(name, &tmp, sizeof(tmp)))
1297 return -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001298
Jann Horn42a0cc32018-06-25 18:34:10 +02001299 if (override_release(name->release, sizeof(name->release)))
1300 return -EFAULT;
1301 if (override_architecture(name))
1302 return -EFAULT;
1303 return 0;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001304}
1305
1306SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name)
1307{
Joe Perches5e1aada2019-12-04 16:50:53 -08001308 struct oldold_utsname tmp;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001309
1310 if (!name)
1311 return -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001312
Joe Perches5e1aada2019-12-04 16:50:53 -08001313 memset(&tmp, 0, sizeof(tmp));
1314
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001315 down_read(&uts_sem);
Jann Horn42a0cc32018-06-25 18:34:10 +02001316 memcpy(&tmp.sysname, &utsname()->sysname, __OLD_UTS_LEN);
1317 memcpy(&tmp.nodename, &utsname()->nodename, __OLD_UTS_LEN);
1318 memcpy(&tmp.release, &utsname()->release, __OLD_UTS_LEN);
1319 memcpy(&tmp.version, &utsname()->version, __OLD_UTS_LEN);
1320 memcpy(&tmp.machine, &utsname()->machine, __OLD_UTS_LEN);
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001321 up_read(&uts_sem);
Jann Horn42a0cc32018-06-25 18:34:10 +02001322 if (copy_to_user(name, &tmp, sizeof(tmp)))
1323 return -EFAULT;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001324
Jann Horn42a0cc32018-06-25 18:34:10 +02001325 if (override_architecture(name))
1326 return -EFAULT;
1327 if (override_release(name->release, sizeof(name->release)))
1328 return -EFAULT;
1329 return 0;
Christoph Hellwig5cacdb42010-03-10 15:21:21 -08001330}
1331#endif
1332
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001333SYSCALL_DEFINE2(sethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 int errno;
1336 char tmp[__NEW_UTS_LEN];
1337
Serge E. Hallynbb96a6f2011-03-23 16:43:18 -07001338 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (len < 0 || len > __NEW_UTS_LEN)
1342 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 errno = -EFAULT;
1344 if (!copy_from_user(tmp, name, len)) {
Jann Horn42a0cc32018-06-25 18:34:10 +02001345 struct new_utsname *u;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001346
Jann Horn42a0cc32018-06-25 18:34:10 +02001347 down_write(&uts_sem);
1348 u = utsname();
Andrew Morton9679e4d2008-10-15 22:01:51 -07001349 memcpy(u->nodename, tmp, len);
1350 memset(u->nodename + len, 0, sizeof(u->nodename) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 errno = 0;
Sasikantha babu499eea62012-05-31 16:26:07 -07001352 uts_proc_notify(UTS_PROC_HOSTNAME);
Jann Horn42a0cc32018-06-25 18:34:10 +02001353 up_write(&uts_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return errno;
1356}
1357
1358#ifdef __ARCH_WANT_SYS_GETHOSTNAME
1359
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001360SYSCALL_DEFINE2(gethostname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
Jann Horn42a0cc32018-06-25 18:34:10 +02001362 int i;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001363 struct new_utsname *u;
Jann Horn42a0cc32018-06-25 18:34:10 +02001364 char tmp[__NEW_UTS_LEN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 if (len < 0)
1367 return -EINVAL;
1368 down_read(&uts_sem);
Andrew Morton9679e4d2008-10-15 22:01:51 -07001369 u = utsname();
1370 i = 1 + strlen(u->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (i > len)
1372 i = len;
Jann Horn42a0cc32018-06-25 18:34:10 +02001373 memcpy(tmp, u->nodename, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 up_read(&uts_sem);
Jann Horn42a0cc32018-06-25 18:34:10 +02001375 if (copy_to_user(name, tmp, i))
1376 return -EFAULT;
1377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
1380#endif
1381
1382/*
1383 * Only setdomainname; getdomainname can be implemented by calling
1384 * uname()
1385 */
Heiko Carstens5a8a82b2009-01-14 14:14:25 +01001386SYSCALL_DEFINE2(setdomainname, char __user *, name, int, len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 int errno;
1389 char tmp[__NEW_UTS_LEN];
1390
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001391 if (!ns_capable(current->nsproxy->uts_ns->user_ns, CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 return -EPERM;
1393 if (len < 0 || len > __NEW_UTS_LEN)
1394 return -EINVAL;
1395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 errno = -EFAULT;
1397 if (!copy_from_user(tmp, name, len)) {
Jann Horn42a0cc32018-06-25 18:34:10 +02001398 struct new_utsname *u;
Andrew Morton9679e4d2008-10-15 22:01:51 -07001399
Jann Horn42a0cc32018-06-25 18:34:10 +02001400 down_write(&uts_sem);
1401 u = utsname();
Andrew Morton9679e4d2008-10-15 22:01:51 -07001402 memcpy(u->domainname, tmp, len);
1403 memset(u->domainname + len, 0, sizeof(u->domainname) - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 errno = 0;
Sasikantha babu499eea62012-05-31 16:26:07 -07001405 uts_proc_notify(UTS_PROC_DOMAINNAME);
Jann Horn42a0cc32018-06-25 18:34:10 +02001406 up_write(&uts_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 return errno;
1409}
1410
Heiko Carstense48fbb62009-01-14 14:14:26 +01001411SYSCALL_DEFINE2(getrlimit, unsigned int, resource, struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
Jiri Slabyb9518342010-05-04 11:28:25 +02001413 struct rlimit value;
1414 int ret;
1415
1416 ret = do_prlimit(current, resource, NULL, &value);
1417 if (!ret)
1418 ret = copy_to_user(rlim, &value, sizeof(*rlim)) ? -EFAULT : 0;
1419
1420 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
Al Virod9e968c2017-05-31 04:33:51 -04001423#ifdef CONFIG_COMPAT
1424
1425COMPAT_SYSCALL_DEFINE2(setrlimit, unsigned int, resource,
1426 struct compat_rlimit __user *, rlim)
1427{
1428 struct rlimit r;
1429 struct compat_rlimit r32;
1430
1431 if (copy_from_user(&r32, rlim, sizeof(struct compat_rlimit)))
1432 return -EFAULT;
1433
1434 if (r32.rlim_cur == COMPAT_RLIM_INFINITY)
1435 r.rlim_cur = RLIM_INFINITY;
1436 else
1437 r.rlim_cur = r32.rlim_cur;
1438 if (r32.rlim_max == COMPAT_RLIM_INFINITY)
1439 r.rlim_max = RLIM_INFINITY;
1440 else
1441 r.rlim_max = r32.rlim_max;
1442 return do_prlimit(current, resource, &r, NULL);
1443}
1444
1445COMPAT_SYSCALL_DEFINE2(getrlimit, unsigned int, resource,
1446 struct compat_rlimit __user *, rlim)
1447{
1448 struct rlimit r;
1449 int ret;
1450
1451 ret = do_prlimit(current, resource, NULL, &r);
1452 if (!ret) {
Al Viro58c7ffc2017-07-12 04:59:45 +01001453 struct compat_rlimit r32;
Al Virod9e968c2017-05-31 04:33:51 -04001454 if (r.rlim_cur > COMPAT_RLIM_INFINITY)
1455 r32.rlim_cur = COMPAT_RLIM_INFINITY;
1456 else
1457 r32.rlim_cur = r.rlim_cur;
1458 if (r.rlim_max > COMPAT_RLIM_INFINITY)
1459 r32.rlim_max = COMPAT_RLIM_INFINITY;
1460 else
1461 r32.rlim_max = r.rlim_max;
1462
1463 if (copy_to_user(rlim, &r32, sizeof(struct compat_rlimit)))
1464 return -EFAULT;
1465 }
1466 return ret;
1467}
1468
1469#endif
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471#ifdef __ARCH_WANT_SYS_OLD_GETRLIMIT
1472
1473/*
1474 * Back compatibility for getrlimit. Needed for some apps.
1475 */
Heiko Carstense48fbb62009-01-14 14:14:26 +01001476SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
1477 struct rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
1479 struct rlimit x;
1480 if (resource >= RLIM_NLIMITS)
1481 return -EINVAL;
1482
Gustavo A. R. Silva23d6aef2018-05-25 14:47:57 -07001483 resource = array_index_nospec(resource, RLIM_NLIMITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 task_lock(current->group_leader);
1485 x = current->signal->rlim[resource];
1486 task_unlock(current->group_leader);
Cal Peake756184b2006-09-30 23:27:24 -07001487 if (x.rlim_cur > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 x.rlim_cur = 0x7FFFFFFF;
Cal Peake756184b2006-09-30 23:27:24 -07001489 if (x.rlim_max > 0x7FFFFFFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 x.rlim_max = 0x7FFFFFFF;
vishnu.psec94fc32014-10-09 15:30:23 -07001491 return copy_to_user(rlim, &x, sizeof(x)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
Al Viro613763a2017-05-26 22:04:29 -04001494#ifdef CONFIG_COMPAT
1495COMPAT_SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
1496 struct compat_rlimit __user *, rlim)
1497{
1498 struct rlimit r;
1499
1500 if (resource >= RLIM_NLIMITS)
1501 return -EINVAL;
1502
Gustavo A. R. Silva23d6aef2018-05-25 14:47:57 -07001503 resource = array_index_nospec(resource, RLIM_NLIMITS);
Al Viro613763a2017-05-26 22:04:29 -04001504 task_lock(current->group_leader);
1505 r = current->signal->rlim[resource];
1506 task_unlock(current->group_leader);
1507 if (r.rlim_cur > 0x7FFFFFFF)
1508 r.rlim_cur = 0x7FFFFFFF;
1509 if (r.rlim_max > 0x7FFFFFFF)
1510 r.rlim_max = 0x7FFFFFFF;
1511
1512 if (put_user(r.rlim_cur, &rlim->rlim_cur) ||
1513 put_user(r.rlim_max, &rlim->rlim_max))
1514 return -EFAULT;
1515 return 0;
1516}
1517#endif
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519#endif
1520
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001521static inline bool rlim64_is_infinity(__u64 rlim64)
1522{
1523#if BITS_PER_LONG < 64
1524 return rlim64 >= ULONG_MAX;
1525#else
1526 return rlim64 == RLIM64_INFINITY;
1527#endif
1528}
1529
1530static void rlim_to_rlim64(const struct rlimit *rlim, struct rlimit64 *rlim64)
1531{
1532 if (rlim->rlim_cur == RLIM_INFINITY)
1533 rlim64->rlim_cur = RLIM64_INFINITY;
1534 else
1535 rlim64->rlim_cur = rlim->rlim_cur;
1536 if (rlim->rlim_max == RLIM_INFINITY)
1537 rlim64->rlim_max = RLIM64_INFINITY;
1538 else
1539 rlim64->rlim_max = rlim->rlim_max;
1540}
1541
1542static void rlim64_to_rlim(const struct rlimit64 *rlim64, struct rlimit *rlim)
1543{
1544 if (rlim64_is_infinity(rlim64->rlim_cur))
1545 rlim->rlim_cur = RLIM_INFINITY;
1546 else
1547 rlim->rlim_cur = (unsigned long)rlim64->rlim_cur;
1548 if (rlim64_is_infinity(rlim64->rlim_max))
1549 rlim->rlim_max = RLIM_INFINITY;
1550 else
1551 rlim->rlim_max = (unsigned long)rlim64->rlim_max;
1552}
1553
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001554/* make sure you are allowed to change @tsk limits before calling this */
Jiri Slaby5b415352010-03-24 16:11:29 +01001555int do_prlimit(struct task_struct *tsk, unsigned int resource,
1556 struct rlimit *new_rlim, struct rlimit *old_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
Jiri Slaby5b415352010-03-24 16:11:29 +01001558 struct rlimit *rlim;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001559 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 if (resource >= RLIM_NLIMITS)
1562 return -EINVAL;
Jiri Slaby5b415352010-03-24 16:11:29 +01001563 if (new_rlim) {
1564 if (new_rlim->rlim_cur > new_rlim->rlim_max)
1565 return -EINVAL;
1566 if (resource == RLIMIT_NOFILE &&
1567 new_rlim->rlim_max > sysctl_nr_open)
1568 return -EPERM;
1569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001571 /* protect tsk->signal and tsk->sighand from disappearing */
1572 read_lock(&tasklist_lock);
1573 if (!tsk->sighand) {
1574 retval = -ESRCH;
1575 goto out;
1576 }
1577
Jiri Slaby5b415352010-03-24 16:11:29 +01001578 rlim = tsk->signal->rlim + resource;
Jiri Slaby86f162f2009-11-14 17:37:04 +01001579 task_lock(tsk->group_leader);
Jiri Slaby5b415352010-03-24 16:11:29 +01001580 if (new_rlim) {
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001581 /* Keep the capable check against init_user_ns until
1582 cgroups can contain all limits */
Jiri Slaby5b415352010-03-24 16:11:29 +01001583 if (new_rlim->rlim_max > rlim->rlim_max &&
1584 !capable(CAP_SYS_RESOURCE))
1585 retval = -EPERM;
1586 if (!retval)
Eric W. Biedermancad4ea52017-04-12 17:22:14 -05001587 retval = security_task_setrlimit(tsk, resource, new_rlim);
Tom Alsberg9926e4c2007-05-08 00:30:31 -07001588 }
Jiri Slaby5b415352010-03-24 16:11:29 +01001589 if (!retval) {
1590 if (old_rlim)
1591 *old_rlim = *rlim;
1592 if (new_rlim)
1593 *rlim = *new_rlim;
1594 }
Jiri Slaby7855c352009-08-26 23:45:34 +02001595 task_unlock(tsk->group_leader);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Andrew Mortond3561f72006-03-24 03:18:36 -08001597 /*
Thomas Gleixner24db4dd2019-08-21 21:09:18 +02001598 * RLIMIT_CPU handling. Arm the posix CPU timer if the limit is not
1599 * infite. In case of RLIM_INFINITY the posix CPU timer code
1600 * ignores the rlimit.
Andrew Mortond3561f72006-03-24 03:18:36 -08001601 */
Jiri Slaby5b415352010-03-24 16:11:29 +01001602 if (!retval && new_rlim && resource == RLIMIT_CPU &&
Nicolas Pitrebaa73d92016-11-11 00:10:10 -05001603 new_rlim->rlim_cur != RLIM_INFINITY &&
1604 IS_ENABLED(CONFIG_POSIX_TIMERS))
Jiri Slaby5b415352010-03-24 16:11:29 +01001605 update_rlimit_cpu(tsk, new_rlim->rlim_cur);
Andrew Mortonec9e16b2006-03-24 03:18:34 -08001606out:
Jiri Slaby1c1e6182009-08-28 14:08:17 +02001607 read_unlock(&tasklist_lock);
Oleg Nesterov2fb9d262009-09-03 19:21:45 +02001608 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609}
1610
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001611/* rcu lock must be held */
Stephen Smalley791ec492017-02-17 07:57:00 -05001612static int check_prlimit_permission(struct task_struct *task,
1613 unsigned int flags)
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001614{
1615 const struct cred *cred = current_cred(), *tcred;
Stephen Smalley791ec492017-02-17 07:57:00 -05001616 bool id_match;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001617
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001618 if (current == task)
1619 return 0;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001620
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001621 tcred = __task_cred(task);
Stephen Smalley791ec492017-02-17 07:57:00 -05001622 id_match = (uid_eq(cred->uid, tcred->euid) &&
1623 uid_eq(cred->uid, tcred->suid) &&
1624 uid_eq(cred->uid, tcred->uid) &&
1625 gid_eq(cred->gid, tcred->egid) &&
1626 gid_eq(cred->gid, tcred->sgid) &&
1627 gid_eq(cred->gid, tcred->gid));
1628 if (!id_match && !ns_capable(tcred->user_ns, CAP_SYS_RESOURCE))
1629 return -EPERM;
Serge E. Hallynfc832ad2011-03-23 16:43:22 -07001630
Stephen Smalley791ec492017-02-17 07:57:00 -05001631 return security_task_prlimit(cred, tcred, flags);
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001632}
1633
1634SYSCALL_DEFINE4(prlimit64, pid_t, pid, unsigned int, resource,
1635 const struct rlimit64 __user *, new_rlim,
1636 struct rlimit64 __user *, old_rlim)
1637{
1638 struct rlimit64 old64, new64;
1639 struct rlimit old, new;
1640 struct task_struct *tsk;
Stephen Smalley791ec492017-02-17 07:57:00 -05001641 unsigned int checkflags = 0;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001642 int ret;
1643
Stephen Smalley791ec492017-02-17 07:57:00 -05001644 if (old_rlim)
1645 checkflags |= LSM_PRLIMIT_READ;
1646
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001647 if (new_rlim) {
1648 if (copy_from_user(&new64, new_rlim, sizeof(new64)))
1649 return -EFAULT;
1650 rlim64_to_rlim(&new64, &new);
Stephen Smalley791ec492017-02-17 07:57:00 -05001651 checkflags |= LSM_PRLIMIT_WRITE;
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001652 }
1653
1654 rcu_read_lock();
1655 tsk = pid ? find_task_by_vpid(pid) : current;
1656 if (!tsk) {
1657 rcu_read_unlock();
1658 return -ESRCH;
1659 }
Stephen Smalley791ec492017-02-17 07:57:00 -05001660 ret = check_prlimit_permission(tsk, checkflags);
Jiri Slabyc022a0a2010-05-04 18:03:50 +02001661 if (ret) {
1662 rcu_read_unlock();
1663 return ret;
1664 }
1665 get_task_struct(tsk);
1666 rcu_read_unlock();
1667
1668 ret = do_prlimit(tsk, resource, new_rlim ? &new : NULL,
1669 old_rlim ? &old : NULL);
1670
1671 if (!ret && old_rlim) {
1672 rlim_to_rlim64(&old, &old64);
1673 if (copy_to_user(old_rlim, &old64, sizeof(old64)))
1674 ret = -EFAULT;
1675 }
1676
1677 put_task_struct(tsk);
1678 return ret;
1679}
1680
Jiri Slaby7855c352009-08-26 23:45:34 +02001681SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim)
1682{
1683 struct rlimit new_rlim;
1684
1685 if (copy_from_user(&new_rlim, rlim, sizeof(*rlim)))
1686 return -EFAULT;
Jiri Slaby5b415352010-03-24 16:11:29 +01001687 return do_prlimit(current, resource, &new_rlim, NULL);
Jiri Slaby7855c352009-08-26 23:45:34 +02001688}
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690/*
1691 * It would make sense to put struct rusage in the task_struct,
1692 * except that would make the task_struct be *really big*. After
1693 * task_struct gets moved into malloc'ed memory, it would
1694 * make sense to do this. It will make moving the rest of the information
1695 * a lot simpler! (Which we're not doing right now because we're not
1696 * measuring them yet).
1697 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 * When sampling multiple threads for RUSAGE_SELF, under SMP we might have
1699 * races with threads incrementing their own counters. But since word
1700 * reads are atomic, we either get new values or old values and we don't
1701 * care which for the sums. We always take the siglock to protect reading
1702 * the c* fields from p->signal from races with exit.c updating those
1703 * fields when reaping, so a sample either gets all the additions of a
1704 * given child after it's reaped, or none so this sample is before reaping.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001705 *
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001706 * Locking:
1707 * We need to take the siglock for CHILDEREN, SELF and BOTH
1708 * for the cases current multithreaded, non-current single threaded
1709 * non-current multithreaded. Thread traversal is now safe with
1710 * the siglock held.
1711 * Strictly speaking, we donot need to take the siglock if we are current and
1712 * single threaded, as no one else can take our signal_struct away, no one
1713 * else can reap the children to update signal->c* counters, and no one else
1714 * can race with the signal-> fields. If we do not take any lock, the
1715 * signal-> fields could be read out of order while another thread was just
1716 * exiting. So we should place a read memory barrier when we avoid the lock.
1717 * On the writer side, write memory barrier is implied in __exit_signal
1718 * as __exit_signal releases the siglock spinlock after updating the signal->
1719 * fields. But we don't do this yet to keep things simple.
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001720 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 */
1722
Frank Mayharf06febc2008-09-12 09:54:39 -07001723static void accumulate_thread_rusage(struct task_struct *t, struct rusage *r)
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001724{
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001725 r->ru_nvcsw += t->nvcsw;
1726 r->ru_nivcsw += t->nivcsw;
1727 r->ru_minflt += t->min_flt;
1728 r->ru_majflt += t->maj_flt;
1729 r->ru_inblock += task_io_get_inblock(t);
1730 r->ru_oublock += task_io_get_oublock(t);
1731}
1732
Al Viroce72a162017-05-14 20:25:02 -04001733void getrusage(struct task_struct *p, int who, struct rusage *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
1735 struct task_struct *t;
1736 unsigned long flags;
Frederic Weisbecker5613fda2017-01-31 04:09:23 +01001737 u64 tgutime, tgstime, utime, stime;
Jiri Pirko1f102062009-09-22 16:44:10 -07001738 unsigned long maxrss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
vishnu.psec94fc32014-10-09 15:30:23 -07001740 memset((char *)r, 0, sizeof (*r));
Martin Schwidefsky64861632011-12-15 14:56:09 +01001741 utime = stime = 0;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001742
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001743 if (who == RUSAGE_THREAD) {
Frederic Weisbeckere80d0a1a2012-11-21 16:26:44 +01001744 task_cputime_adjusted(current, &utime, &stime);
Frank Mayharf06febc2008-09-12 09:54:39 -07001745 accumulate_thread_rusage(p, r);
Jiri Pirko1f102062009-09-22 16:44:10 -07001746 maxrss = p->signal->maxrss;
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001747 goto out;
1748 }
1749
Oleg Nesterovd6cf7232008-04-30 00:52:38 -07001750 if (!lock_task_sighand(p, &flags))
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001751 return;
Ravikiran G Thirumalai2dd0ebc2006-03-23 03:00:13 -08001752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 switch (who) {
vishnu.psec94fc32014-10-09 15:30:23 -07001754 case RUSAGE_BOTH:
1755 case RUSAGE_CHILDREN:
1756 utime = p->signal->cutime;
1757 stime = p->signal->cstime;
1758 r->ru_nvcsw = p->signal->cnvcsw;
1759 r->ru_nivcsw = p->signal->cnivcsw;
1760 r->ru_minflt = p->signal->cmin_flt;
1761 r->ru_majflt = p->signal->cmaj_flt;
1762 r->ru_inblock = p->signal->cinblock;
1763 r->ru_oublock = p->signal->coublock;
1764 maxrss = p->signal->cmaxrss;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001765
vishnu.psec94fc32014-10-09 15:30:23 -07001766 if (who == RUSAGE_CHILDREN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 break;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001768 fallthrough;
Oleg Nesterov0f59cc42006-01-08 01:05:15 -08001769
vishnu.psec94fc32014-10-09 15:30:23 -07001770 case RUSAGE_SELF:
1771 thread_group_cputime_adjusted(p, &tgutime, &tgstime);
1772 utime += tgutime;
1773 stime += tgstime;
1774 r->ru_nvcsw += p->signal->nvcsw;
1775 r->ru_nivcsw += p->signal->nivcsw;
1776 r->ru_minflt += p->signal->min_flt;
1777 r->ru_majflt += p->signal->maj_flt;
1778 r->ru_inblock += p->signal->inblock;
1779 r->ru_oublock += p->signal->oublock;
1780 if (maxrss < p->signal->maxrss)
1781 maxrss = p->signal->maxrss;
1782 t = p;
1783 do {
1784 accumulate_thread_rusage(t, r);
1785 } while_each_thread(p, t);
1786 break;
1787
1788 default:
1789 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 }
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001791 unlock_task_sighand(p, &flags);
Ravikiran G Thirumalaide047c12006-06-22 14:47:26 -07001792
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001793out:
Arnd Bergmannbdd565f2019-10-25 22:46:48 +02001794 r->ru_utime = ns_to_kernel_old_timeval(utime);
1795 r->ru_stime = ns_to_kernel_old_timeval(stime);
Jiri Pirko1f102062009-09-22 16:44:10 -07001796
1797 if (who != RUSAGE_CHILDREN) {
1798 struct mm_struct *mm = get_task_mm(p);
vishnu.psec94fc32014-10-09 15:30:23 -07001799
Jiri Pirko1f102062009-09-22 16:44:10 -07001800 if (mm) {
1801 setmax_mm_hiwater_rss(&maxrss, mm);
1802 mmput(mm);
1803 }
1804 }
1805 r->ru_maxrss = maxrss * (PAGE_SIZE / 1024); /* convert pages to KBs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806}
1807
Al Viroce72a162017-05-14 20:25:02 -04001808SYSCALL_DEFINE2(getrusage, int, who, struct rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
1810 struct rusage r;
vishnu.psec94fc32014-10-09 15:30:23 -07001811
Sripathi Kodi679c9cd2008-04-29 00:58:42 -07001812 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1813 who != RUSAGE_THREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return -EINVAL;
Al Viroce72a162017-05-14 20:25:02 -04001815
1816 getrusage(current, who, &r);
1817 return copy_to_user(ru, &r, sizeof(r)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818}
1819
Al Viro8d2d5c42013-03-03 12:49:06 -05001820#ifdef CONFIG_COMPAT
1821COMPAT_SYSCALL_DEFINE2(getrusage, int, who, struct compat_rusage __user *, ru)
1822{
1823 struct rusage r;
1824
1825 if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN &&
1826 who != RUSAGE_THREAD)
1827 return -EINVAL;
1828
Al Viroce72a162017-05-14 20:25:02 -04001829 getrusage(current, who, &r);
Al Viro8d2d5c42013-03-03 12:49:06 -05001830 return put_compat_rusage(&r, ru);
1831}
1832#endif
1833
Heiko Carstense48fbb62009-01-14 14:14:26 +01001834SYSCALL_DEFINE1(umask, int, mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835{
1836 mask = xchg(&current->fs->umask, mask & S_IRWXUGO);
1837 return mask;
1838}
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -08001839
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001840static int prctl_set_mm_exe_file(struct mm_struct *mm, unsigned int fd)
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001841{
Al Viro2903ff02012-08-28 12:52:22 -04001842 struct fd exe;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001843 struct file *old_exe, *exe_file;
Al Viro496ad9a2013-01-23 17:07:38 -05001844 struct inode *inode;
Al Viro2903ff02012-08-28 12:52:22 -04001845 int err;
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001846
Al Viro2903ff02012-08-28 12:52:22 -04001847 exe = fdget(fd);
1848 if (!exe.file)
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001849 return -EBADF;
1850
Al Viro496ad9a2013-01-23 17:07:38 -05001851 inode = file_inode(exe.file);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001852
1853 /*
1854 * Because the original mm->exe_file points to executable file, make
1855 * sure that this one is executable as well, to avoid breaking an
1856 * overall picture.
1857 */
1858 err = -EACCES;
Eric W. Biederman90f85722015-06-29 14:42:03 -05001859 if (!S_ISREG(inode->i_mode) || path_noexec(&exe.file->f_path))
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001860 goto exit;
1861
Christian Brauner02f92b32021-01-21 14:19:22 +01001862 err = file_permission(exe.file, MAY_EXEC);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001863 if (err)
1864 goto exit;
1865
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001866 /*
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001867 * Forbid mm->exe_file change if old file still mapped.
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001868 */
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001869 exe_file = get_mm_exe_file(mm);
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001870 err = -EBUSY;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001871 if (exe_file) {
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001872 struct vm_area_struct *vma;
1873
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001874 mmap_read_lock(mm);
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001875 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1876 if (!vma->vm_file)
1877 continue;
1878 if (path_equal(&vma->vm_file->f_path,
1879 &exe_file->f_path))
1880 goto exit_err;
1881 }
1882
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001883 mmap_read_unlock(mm);
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001884 fput(exe_file);
Konstantin Khlebnikovbafb2822012-06-07 14:21:11 -07001885 }
1886
Konstantin Khlebnikov4229fb1d2012-07-11 14:02:11 -07001887 err = 0;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001888 /* set the new file, lockless */
1889 get_file(exe.file);
1890 old_exe = xchg(&mm->exe_file, exe.file);
1891 if (old_exe)
1892 fput(old_exe);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001893exit:
Al Viro2903ff02012-08-28 12:52:22 -04001894 fdput(exe);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001895 return err;
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001896exit_err:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001897 mmap_read_unlock(mm);
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001898 fput(exe_file);
1899 goto exit;
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07001900}
1901
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001902/*
Michal Koutný11bbd8b2019-05-31 22:30:16 -07001903 * Check arithmetic relations of passed addresses.
1904 *
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001905 * WARNING: we don't require any capability here so be very careful
1906 * in what is allowed for modification from userspace.
1907 */
Michal Koutný11bbd8b2019-05-31 22:30:16 -07001908static int validate_prctl_map_addr(struct prctl_mm_map *prctl_map)
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001909{
1910 unsigned long mmap_max_addr = TASK_SIZE;
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001911 int error = -EINVAL, i;
1912
1913 static const unsigned char offsets[] = {
1914 offsetof(struct prctl_mm_map, start_code),
1915 offsetof(struct prctl_mm_map, end_code),
1916 offsetof(struct prctl_mm_map, start_data),
1917 offsetof(struct prctl_mm_map, end_data),
1918 offsetof(struct prctl_mm_map, start_brk),
1919 offsetof(struct prctl_mm_map, brk),
1920 offsetof(struct prctl_mm_map, start_stack),
1921 offsetof(struct prctl_mm_map, arg_start),
1922 offsetof(struct prctl_mm_map, arg_end),
1923 offsetof(struct prctl_mm_map, env_start),
1924 offsetof(struct prctl_mm_map, env_end),
1925 };
1926
1927 /*
1928 * Make sure the members are not somewhere outside
1929 * of allowed address space.
1930 */
1931 for (i = 0; i < ARRAY_SIZE(offsets); i++) {
1932 u64 val = *(u64 *)((char *)prctl_map + offsets[i]);
1933
1934 if ((unsigned long)val >= mmap_max_addr ||
1935 (unsigned long)val < mmap_min_addr)
1936 goto out;
1937 }
1938
1939 /*
1940 * Make sure the pairs are ordered.
1941 */
1942#define __prctl_check_order(__m1, __op, __m2) \
1943 ((unsigned long)prctl_map->__m1 __op \
1944 (unsigned long)prctl_map->__m2) ? 0 : -EINVAL
1945 error = __prctl_check_order(start_code, <, end_code);
Cyrill Gorcunova9e73992019-05-13 17:15:40 -07001946 error |= __prctl_check_order(start_data,<=, end_data);
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001947 error |= __prctl_check_order(start_brk, <=, brk);
1948 error |= __prctl_check_order(arg_start, <=, arg_end);
1949 error |= __prctl_check_order(env_start, <=, env_end);
1950 if (error)
1951 goto out;
1952#undef __prctl_check_order
1953
1954 error = -EINVAL;
1955
1956 /*
1957 * @brk should be after @end_data in traditional maps.
1958 */
1959 if (prctl_map->start_brk <= prctl_map->end_data ||
1960 prctl_map->brk <= prctl_map->end_data)
1961 goto out;
1962
1963 /*
1964 * Neither we should allow to override limits if they set.
1965 */
1966 if (check_data_rlimit(rlimit(RLIMIT_DATA), prctl_map->brk,
1967 prctl_map->start_brk, prctl_map->end_data,
1968 prctl_map->start_data))
1969 goto out;
1970
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001971 error = 0;
1972out:
1973 return error;
1974}
1975
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07001976#ifdef CONFIG_CHECKPOINT_RESTORE
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001977static int prctl_set_mm_map(int opt, const void __user *addr, unsigned long data_size)
1978{
1979 struct prctl_mm_map prctl_map = { .exe_fd = (u32)-1, };
1980 unsigned long user_auxv[AT_VECTOR_SIZE];
1981 struct mm_struct *mm = current->mm;
1982 int error;
1983
1984 BUILD_BUG_ON(sizeof(user_auxv) != sizeof(mm->saved_auxv));
1985 BUILD_BUG_ON(sizeof(struct prctl_mm_map) > 256);
1986
1987 if (opt == PR_SET_MM_MAP_SIZE)
1988 return put_user((unsigned int)sizeof(prctl_map),
1989 (unsigned int __user *)addr);
1990
1991 if (data_size != sizeof(prctl_map))
1992 return -EINVAL;
1993
1994 if (copy_from_user(&prctl_map, addr, sizeof(prctl_map)))
1995 return -EFAULT;
1996
Michal Koutný11bbd8b2019-05-31 22:30:16 -07001997 error = validate_prctl_map_addr(&prctl_map);
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07001998 if (error)
1999 return error;
2000
2001 if (prctl_map.auxv_size) {
Michal Koutný11bbd8b2019-05-31 22:30:16 -07002002 /*
2003 * Someone is trying to cheat the auxv vector.
2004 */
2005 if (!prctl_map.auxv ||
2006 prctl_map.auxv_size > sizeof(mm->saved_auxv))
2007 return -EINVAL;
2008
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002009 memset(user_auxv, 0, sizeof(user_auxv));
2010 if (copy_from_user(user_auxv,
2011 (const void __user *)prctl_map.auxv,
2012 prctl_map.auxv_size))
2013 return -EFAULT;
2014
2015 /* Last entry must be AT_NULL as specification requires */
2016 user_auxv[AT_VECTOR_SIZE - 2] = AT_NULL;
2017 user_auxv[AT_VECTOR_SIZE - 1] = AT_NULL;
2018 }
2019
Mateusz Guzikddf1d392016-01-20 15:01:02 -08002020 if (prctl_map.exe_fd != (u32)-1) {
Michal Koutný11bbd8b2019-05-31 22:30:16 -07002021 /*
Nicolas Viennotebd6de62020-07-19 12:04:15 +02002022 * Check if the current user is checkpoint/restore capable.
2023 * At the time of this writing, it checks for CAP_SYS_ADMIN
2024 * or CAP_CHECKPOINT_RESTORE.
2025 * Note that a user with access to ptrace can masquerade an
2026 * arbitrary program as any executable, even setuid ones.
2027 * This may have implications in the tomoyo subsystem.
Michal Koutný11bbd8b2019-05-31 22:30:16 -07002028 */
Nicolas Viennotebd6de62020-07-19 12:04:15 +02002029 if (!checkpoint_restore_ns_capable(current_user_ns()))
Nicolas Viennot227175b2020-07-19 12:04:16 +02002030 return -EPERM;
Michal Koutný11bbd8b2019-05-31 22:30:16 -07002031
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07002032 error = prctl_set_mm_exe_file(mm, prctl_map.exe_fd);
Mateusz Guzikddf1d392016-01-20 15:01:02 -08002033 if (error)
2034 return error;
2035 }
2036
Yang Shi88aa7cc2018-06-07 17:05:28 -07002037 /*
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002038 * arg_lock protects concurent updates but we still need mmap_lock for
Yang Shi88aa7cc2018-06-07 17:05:28 -07002039 * read to exclude races with sys_brk.
2040 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002041 mmap_read_lock(mm);
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002042
2043 /*
2044 * We don't validate if these members are pointing to
2045 * real present VMAs because application may have correspond
2046 * VMAs already unmapped and kernel uses these members for statistics
2047 * output in procfs mostly, except
2048 *
Liao Pingfang15ec0fc2020-10-15 20:10:25 -07002049 * - @start_brk/@brk which are used in do_brk_flags but kernel lookups
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002050 * for VMAs when updating these memvers so anything wrong written
2051 * here cause kernel to swear at userspace program but won't lead
2052 * to any problem in kernel itself
2053 */
2054
Yang Shi88aa7cc2018-06-07 17:05:28 -07002055 spin_lock(&mm->arg_lock);
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002056 mm->start_code = prctl_map.start_code;
2057 mm->end_code = prctl_map.end_code;
2058 mm->start_data = prctl_map.start_data;
2059 mm->end_data = prctl_map.end_data;
2060 mm->start_brk = prctl_map.start_brk;
2061 mm->brk = prctl_map.brk;
2062 mm->start_stack = prctl_map.start_stack;
2063 mm->arg_start = prctl_map.arg_start;
2064 mm->arg_end = prctl_map.arg_end;
2065 mm->env_start = prctl_map.env_start;
2066 mm->env_end = prctl_map.env_end;
Yang Shi88aa7cc2018-06-07 17:05:28 -07002067 spin_unlock(&mm->arg_lock);
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002068
2069 /*
2070 * Note this update of @saved_auxv is lockless thus
2071 * if someone reads this member in procfs while we're
2072 * updating -- it may get partly updated results. It's
2073 * known and acceptable trade off: we leave it as is to
2074 * not introduce additional locks here making the kernel
2075 * more complex.
2076 */
2077 if (prctl_map.auxv_size)
2078 memcpy(mm->saved_auxv, user_auxv, sizeof(user_auxv));
2079
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002080 mmap_read_unlock(mm);
Mateusz Guzikddf1d392016-01-20 15:01:02 -08002081 return 0;
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002082}
2083#endif /* CONFIG_CHECKPOINT_RESTORE */
2084
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002085static int prctl_set_auxv(struct mm_struct *mm, unsigned long addr,
2086 unsigned long len)
2087{
2088 /*
2089 * This doesn't move the auxiliary vector itself since it's pinned to
2090 * mm_struct, but it permits filling the vector with new values. It's
2091 * up to the caller to provide sane values here, otherwise userspace
2092 * tools which use this vector might be unhappy.
2093 */
Alexey Dobriyanc995f122021-03-14 23:51:14 +03002094 unsigned long user_auxv[AT_VECTOR_SIZE] = {};
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002095
2096 if (len > sizeof(user_auxv))
2097 return -EINVAL;
2098
2099 if (copy_from_user(user_auxv, (const void __user *)addr, len))
2100 return -EFAULT;
2101
2102 /* Make sure the last entry is always AT_NULL */
2103 user_auxv[AT_VECTOR_SIZE - 2] = 0;
2104 user_auxv[AT_VECTOR_SIZE - 1] = 0;
2105
2106 BUILD_BUG_ON(sizeof(user_auxv) != sizeof(mm->saved_auxv));
2107
2108 task_lock(current);
2109 memcpy(mm->saved_auxv, user_auxv, len);
2110 task_unlock(current);
2111
2112 return 0;
2113}
2114
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002115static int prctl_set_mm(int opt, unsigned long addr,
2116 unsigned long arg4, unsigned long arg5)
2117{
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002118 struct mm_struct *mm = current->mm;
Michal Koutný11bbd8b2019-05-31 22:30:16 -07002119 struct prctl_mm_map prctl_map = {
2120 .auxv = NULL,
2121 .auxv_size = 0,
2122 .exe_fd = -1,
2123 };
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002124 struct vm_area_struct *vma;
2125 int error;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002126
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002127 if (arg5 || (arg4 && (opt != PR_SET_MM_AUXV &&
2128 opt != PR_SET_MM_MAP &&
2129 opt != PR_SET_MM_MAP_SIZE)))
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002130 return -EINVAL;
2131
Cyrill Gorcunovf606b772014-10-09 15:27:37 -07002132#ifdef CONFIG_CHECKPOINT_RESTORE
2133 if (opt == PR_SET_MM_MAP || opt == PR_SET_MM_MAP_SIZE)
2134 return prctl_set_mm_map(opt, (const void __user *)addr, arg4);
2135#endif
2136
Cyrill Gorcunov79f07132012-03-15 15:17:10 -07002137 if (!capable(CAP_SYS_RESOURCE))
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002138 return -EPERM;
2139
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07002140 if (opt == PR_SET_MM_EXE_FILE)
2141 return prctl_set_mm_exe_file(mm, (unsigned int)addr);
Cyrill Gorcunovb32dfe32012-05-31 16:26:46 -07002142
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002143 if (opt == PR_SET_MM_AUXV)
2144 return prctl_set_auxv(mm, addr, arg4);
2145
Cyrill Gorcunov1ad75b92012-06-07 14:21:11 -07002146 if (addr >= TASK_SIZE || addr < mmap_min_addr)
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002147 return -EINVAL;
2148
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002149 error = -EINVAL;
2150
Michal Koutnýbc814262019-05-31 22:30:19 -07002151 /*
2152 * arg_lock protects concurent updates of arg boundaries, we need
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002153 * mmap_lock for a) concurrent sys_brk, b) finding VMA for addr
Michal Koutnýbc814262019-05-31 22:30:19 -07002154 * validation.
2155 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002156 mmap_read_lock(mm);
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002157 vma = find_vma(mm, addr);
2158
Michal Koutnýbc814262019-05-31 22:30:19 -07002159 spin_lock(&mm->arg_lock);
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002160 prctl_map.start_code = mm->start_code;
2161 prctl_map.end_code = mm->end_code;
2162 prctl_map.start_data = mm->start_data;
2163 prctl_map.end_data = mm->end_data;
2164 prctl_map.start_brk = mm->start_brk;
2165 prctl_map.brk = mm->brk;
2166 prctl_map.start_stack = mm->start_stack;
2167 prctl_map.arg_start = mm->arg_start;
2168 prctl_map.arg_end = mm->arg_end;
2169 prctl_map.env_start = mm->env_start;
2170 prctl_map.env_end = mm->env_end;
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002171
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002172 switch (opt) {
2173 case PR_SET_MM_START_CODE:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002174 prctl_map.start_code = addr;
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002175 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002176 case PR_SET_MM_END_CODE:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002177 prctl_map.end_code = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002178 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002179 case PR_SET_MM_START_DATA:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002180 prctl_map.start_data = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002181 break;
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002182 case PR_SET_MM_END_DATA:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002183 prctl_map.end_data = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002184 break;
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002185 case PR_SET_MM_START_STACK:
2186 prctl_map.start_stack = addr;
2187 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002188 case PR_SET_MM_START_BRK:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002189 prctl_map.start_brk = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002190 break;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002191 case PR_SET_MM_BRK:
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002192 prctl_map.brk = addr;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002193 break;
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002194 case PR_SET_MM_ARG_START:
2195 prctl_map.arg_start = addr;
2196 break;
2197 case PR_SET_MM_ARG_END:
2198 prctl_map.arg_end = addr;
2199 break;
2200 case PR_SET_MM_ENV_START:
2201 prctl_map.env_start = addr;
2202 break;
2203 case PR_SET_MM_ENV_END:
2204 prctl_map.env_end = addr;
2205 break;
2206 default:
2207 goto out;
2208 }
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002209
Michal Koutný11bbd8b2019-05-31 22:30:16 -07002210 error = validate_prctl_map_addr(&prctl_map);
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002211 if (error)
2212 goto out;
2213
2214 switch (opt) {
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002215 /*
2216 * If command line arguments and environment
2217 * are placed somewhere else on stack, we can
2218 * set them up here, ARG_START/END to setup
2219 * command line argumets and ENV_START/END
2220 * for environment.
2221 */
2222 case PR_SET_MM_START_STACK:
2223 case PR_SET_MM_ARG_START:
2224 case PR_SET_MM_ARG_END:
2225 case PR_SET_MM_ENV_START:
2226 case PR_SET_MM_ENV_END:
2227 if (!vma) {
2228 error = -EFAULT;
2229 goto out;
2230 }
Cyrill Gorcunovfe8c7f52012-05-31 16:26:45 -07002231 }
Alexey Dobriyan4a00e9d2015-06-25 15:00:51 -07002232
2233 mm->start_code = prctl_map.start_code;
2234 mm->end_code = prctl_map.end_code;
2235 mm->start_data = prctl_map.start_data;
2236 mm->end_data = prctl_map.end_data;
2237 mm->start_brk = prctl_map.start_brk;
2238 mm->brk = prctl_map.brk;
2239 mm->start_stack = prctl_map.start_stack;
2240 mm->arg_start = prctl_map.arg_start;
2241 mm->arg_end = prctl_map.arg_end;
2242 mm->env_start = prctl_map.env_start;
2243 mm->env_end = prctl_map.env_end;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002244
2245 error = 0;
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002246out:
Michal Koutnýbc814262019-05-31 22:30:19 -07002247 spin_unlock(&mm->arg_lock);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002248 mmap_read_unlock(mm);
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002249 return error;
2250}
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07002251
Amnon Shiloh52b36942013-04-30 15:28:48 -07002252#ifdef CONFIG_CHECKPOINT_RESTORE
Rasmus Villemoes986b9ea2020-10-24 03:04:26 +02002253static int prctl_get_tid_address(struct task_struct *me, int __user * __user *tid_addr)
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07002254{
2255 return put_user(me->clear_child_tid, tid_addr);
2256}
Amnon Shiloh52b36942013-04-30 15:28:48 -07002257#else
Rasmus Villemoes986b9ea2020-10-24 03:04:26 +02002258static int prctl_get_tid_address(struct task_struct *me, int __user * __user *tid_addr)
Cyrill Gorcunov300f7862012-06-07 14:21:12 -07002259{
2260 return -EINVAL;
2261}
Cyrill Gorcunov028ee4b2012-01-12 17:20:55 -08002262#endif
2263
Pavel Tikhomirov749860c2017-01-30 18:06:12 +03002264static int propagate_has_child_subreaper(struct task_struct *p, void *data)
2265{
2266 /*
2267 * If task has has_child_subreaper - all its decendants
2268 * already have these flag too and new decendants will
2269 * inherit it on fork, skip them.
2270 *
2271 * If we've found child_reaper - skip descendants in
2272 * it's subtree as they will never get out pidns.
2273 */
2274 if (p->signal->has_child_subreaper ||
2275 is_child_reaper(task_pid(p)))
2276 return 0;
2277
2278 p->signal->has_child_subreaper = 1;
2279 return 1;
2280}
2281
Kees Cook7bbf1372018-05-01 15:19:04 -07002282int __weak arch_prctl_spec_ctrl_get(struct task_struct *t, unsigned long which)
Thomas Gleixnerb617cfc2018-04-29 15:20:11 +02002283{
2284 return -EINVAL;
2285}
2286
Kees Cook7bbf1372018-05-01 15:19:04 -07002287int __weak arch_prctl_spec_ctrl_set(struct task_struct *t, unsigned long which,
2288 unsigned long ctrl)
Thomas Gleixnerb617cfc2018-04-29 15:20:11 +02002289{
2290 return -EINVAL;
2291}
2292
NeilBrowna37b0712020-06-01 21:48:18 -07002293#define PR_IO_FLUSHER (PF_MEMALLOC_NOIO | PF_LOCAL_THROTTLE)
Mike Christie8d19f1c2019-11-11 18:19:00 -06002294
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01002295SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
2296 unsigned long, arg4, unsigned long, arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
David Howellsb6dff3e2008-11-14 10:39:16 +11002298 struct task_struct *me = current;
2299 unsigned char comm[sizeof(me->comm)];
2300 long error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
David Howellsd84f4f92008-11-14 10:39:23 +11002302 error = security_task_prctl(option, arg2, arg3, arg4, arg5);
2303 if (error != -ENOSYS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 return error;
2305
David Howellsd84f4f92008-11-14 10:39:23 +11002306 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 switch (option) {
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002308 case PR_SET_PDEATHSIG:
2309 if (!valid_signal(arg2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 error = -EINVAL;
2311 break;
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002312 }
2313 me->pdeath_signal = arg2;
2314 break;
2315 case PR_GET_PDEATHSIG:
2316 error = put_user(me->pdeath_signal, (int __user *)arg2);
2317 break;
2318 case PR_GET_DUMPABLE:
2319 error = get_dumpable(me->mm);
2320 break;
2321 case PR_SET_DUMPABLE:
2322 if (arg2 != SUID_DUMP_DISABLE && arg2 != SUID_DUMP_USER) {
2323 error = -EINVAL;
2324 break;
2325 }
2326 set_dumpable(me->mm, arg2);
2327 break;
2328
2329 case PR_SET_UNALIGN:
2330 error = SET_UNALIGN_CTL(me, arg2);
2331 break;
2332 case PR_GET_UNALIGN:
2333 error = GET_UNALIGN_CTL(me, arg2);
2334 break;
2335 case PR_SET_FPEMU:
2336 error = SET_FPEMU_CTL(me, arg2);
2337 break;
2338 case PR_GET_FPEMU:
2339 error = GET_FPEMU_CTL(me, arg2);
2340 break;
2341 case PR_SET_FPEXC:
2342 error = SET_FPEXC_CTL(me, arg2);
2343 break;
2344 case PR_GET_FPEXC:
2345 error = GET_FPEXC_CTL(me, arg2);
2346 break;
2347 case PR_GET_TIMING:
2348 error = PR_TIMING_STATISTICAL;
2349 break;
2350 case PR_SET_TIMING:
2351 if (arg2 != PR_TIMING_STATISTICAL)
2352 error = -EINVAL;
2353 break;
2354 case PR_SET_NAME:
2355 comm[sizeof(me->comm) - 1] = 0;
2356 if (strncpy_from_user(comm, (char __user *)arg2,
2357 sizeof(me->comm) - 1) < 0)
2358 return -EFAULT;
2359 set_task_comm(me, comm);
2360 proc_comm_connector(me);
2361 break;
2362 case PR_GET_NAME:
2363 get_task_comm(comm, me);
2364 if (copy_to_user((char __user *)arg2, comm, sizeof(comm)))
2365 return -EFAULT;
2366 break;
2367 case PR_GET_ENDIAN:
2368 error = GET_ENDIAN(me, arg2);
2369 break;
2370 case PR_SET_ENDIAN:
2371 error = SET_ENDIAN(me, arg2);
2372 break;
2373 case PR_GET_SECCOMP:
2374 error = prctl_get_seccomp();
2375 break;
2376 case PR_SET_SECCOMP:
2377 error = prctl_set_seccomp(arg2, (char __user *)arg3);
2378 break;
2379 case PR_GET_TSC:
2380 error = GET_TSC_CTL(arg2);
2381 break;
2382 case PR_SET_TSC:
2383 error = SET_TSC_CTL(arg2);
2384 break;
2385 case PR_TASK_PERF_EVENTS_DISABLE:
2386 error = perf_event_task_disable();
2387 break;
2388 case PR_TASK_PERF_EVENTS_ENABLE:
2389 error = perf_event_task_enable();
2390 break;
2391 case PR_GET_TIMERSLACK:
John Stultzda8b44d2016-03-17 14:20:51 -07002392 if (current->timer_slack_ns > ULONG_MAX)
2393 error = ULONG_MAX;
2394 else
2395 error = current->timer_slack_ns;
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002396 break;
2397 case PR_SET_TIMERSLACK:
2398 if (arg2 <= 0)
2399 current->timer_slack_ns =
2400 current->default_timer_slack_ns;
2401 else
2402 current->timer_slack_ns = arg2;
2403 break;
2404 case PR_MCE_KILL:
2405 if (arg4 | arg5)
2406 return -EINVAL;
2407 switch (arg2) {
2408 case PR_MCE_KILL_CLEAR:
2409 if (arg3 != 0)
2410 return -EINVAL;
2411 current->flags &= ~PF_MCE_PROCESS;
2412 break;
2413 case PR_MCE_KILL_SET:
2414 current->flags |= PF_MCE_PROCESS;
2415 if (arg3 == PR_MCE_KILL_EARLY)
2416 current->flags |= PF_MCE_EARLY;
2417 else if (arg3 == PR_MCE_KILL_LATE)
2418 current->flags &= ~PF_MCE_EARLY;
2419 else if (arg3 == PR_MCE_KILL_DEFAULT)
2420 current->flags &=
2421 ~(PF_MCE_EARLY|PF_MCE_PROCESS);
2422 else
2423 return -EINVAL;
2424 break;
2425 default:
2426 return -EINVAL;
2427 }
2428 break;
2429 case PR_MCE_KILL_GET:
2430 if (arg2 | arg3 | arg4 | arg5)
2431 return -EINVAL;
2432 if (current->flags & PF_MCE_PROCESS)
2433 error = (current->flags & PF_MCE_EARLY) ?
2434 PR_MCE_KILL_EARLY : PR_MCE_KILL_LATE;
2435 else
2436 error = PR_MCE_KILL_DEFAULT;
2437 break;
2438 case PR_SET_MM:
2439 error = prctl_set_mm(arg2, arg3, arg4, arg5);
2440 break;
2441 case PR_GET_TID_ADDRESS:
Rasmus Villemoes986b9ea2020-10-24 03:04:26 +02002442 error = prctl_get_tid_address(me, (int __user * __user *)arg2);
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002443 break;
2444 case PR_SET_CHILD_SUBREAPER:
2445 me->signal->is_child_subreaper = !!arg2;
Pavel Tikhomirov749860c2017-01-30 18:06:12 +03002446 if (!arg2)
2447 break;
2448
2449 walk_process_tree(me, propagate_has_child_subreaper, NULL);
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002450 break;
2451 case PR_GET_CHILD_SUBREAPER:
2452 error = put_user(me->signal->is_child_subreaper,
2453 (int __user *)arg2);
2454 break;
2455 case PR_SET_NO_NEW_PRIVS:
2456 if (arg2 != 1 || arg3 || arg4 || arg5)
2457 return -EINVAL;
2458
Kees Cook1d4457f2014-05-21 15:23:46 -07002459 task_set_no_new_privs(current);
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002460 break;
2461 case PR_GET_NO_NEW_PRIVS:
2462 if (arg2 || arg3 || arg4 || arg5)
2463 return -EINVAL;
Kees Cook1d4457f2014-05-21 15:23:46 -07002464 return task_no_new_privs(current) ? 1 : 0;
Alex Thorltona0715cc2014-04-07 15:37:10 -07002465 case PR_GET_THP_DISABLE:
2466 if (arg2 || arg3 || arg4 || arg5)
2467 return -EINVAL;
Michal Hocko18600332017-07-10 15:48:02 -07002468 error = !!test_bit(MMF_DISABLE_THP, &me->mm->flags);
Alex Thorltona0715cc2014-04-07 15:37:10 -07002469 break;
2470 case PR_SET_THP_DISABLE:
2471 if (arg3 || arg4 || arg5)
2472 return -EINVAL;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002473 if (mmap_write_lock_killable(me->mm))
Michal Hocko17b05732016-05-23 16:26:05 -07002474 return -EINTR;
Alex Thorltona0715cc2014-04-07 15:37:10 -07002475 if (arg2)
Michal Hocko18600332017-07-10 15:48:02 -07002476 set_bit(MMF_DISABLE_THP, &me->mm->flags);
Alex Thorltona0715cc2014-04-07 15:37:10 -07002477 else
Michal Hocko18600332017-07-10 15:48:02 -07002478 clear_bit(MMF_DISABLE_THP, &me->mm->flags);
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07002479 mmap_write_unlock(me->mm);
Alex Thorltona0715cc2014-04-07 15:37:10 -07002480 break;
Dave Hansenfe3d1972014-11-14 07:18:29 -08002481 case PR_MPX_ENABLE_MANAGEMENT:
Dave Hansenfe3d1972014-11-14 07:18:29 -08002482 case PR_MPX_DISABLE_MANAGEMENT:
Dave Hansenf2406522019-07-05 10:53:21 -07002483 /* No longer implemented: */
2484 return -EINVAL;
Paul Burton97915542015-01-08 12:17:37 +00002485 case PR_SET_FP_MODE:
2486 error = SET_FP_MODE(me, arg2);
2487 break;
2488 case PR_GET_FP_MODE:
2489 error = GET_FP_MODE(me);
2490 break;
Dave Martin2d2123b2017-10-31 15:51:14 +00002491 case PR_SVE_SET_VL:
2492 error = SVE_SET_VL(arg2);
2493 break;
2494 case PR_SVE_GET_VL:
2495 error = SVE_GET_VL();
2496 break;
Thomas Gleixnerb617cfc2018-04-29 15:20:11 +02002497 case PR_GET_SPECULATION_CTRL:
2498 if (arg3 || arg4 || arg5)
2499 return -EINVAL;
Kees Cook7bbf1372018-05-01 15:19:04 -07002500 error = arch_prctl_spec_ctrl_get(me, arg2);
Thomas Gleixnerb617cfc2018-04-29 15:20:11 +02002501 break;
2502 case PR_SET_SPECULATION_CTRL:
2503 if (arg4 || arg5)
2504 return -EINVAL;
Kees Cook7bbf1372018-05-01 15:19:04 -07002505 error = arch_prctl_spec_ctrl_set(me, arg2, arg3);
Thomas Gleixnerb617cfc2018-04-29 15:20:11 +02002506 break;
Kristina Martsenkoba830882018-12-07 18:39:28 +00002507 case PR_PAC_RESET_KEYS:
2508 if (arg3 || arg4 || arg5)
2509 return -EINVAL;
2510 error = PAC_RESET_KEYS(me, arg2);
2511 break;
Catalin Marinas63f0c602019-07-23 19:58:39 +02002512 case PR_SET_TAGGED_ADDR_CTRL:
Catalin Marinas3e91ec82019-08-15 16:44:00 +01002513 if (arg3 || arg4 || arg5)
2514 return -EINVAL;
Catalin Marinas63f0c602019-07-23 19:58:39 +02002515 error = SET_TAGGED_ADDR_CTRL(arg2);
2516 break;
2517 case PR_GET_TAGGED_ADDR_CTRL:
Catalin Marinas3e91ec82019-08-15 16:44:00 +01002518 if (arg2 || arg3 || arg4 || arg5)
2519 return -EINVAL;
Catalin Marinas63f0c602019-07-23 19:58:39 +02002520 error = GET_TAGGED_ADDR_CTRL();
2521 break;
Mike Christie8d19f1c2019-11-11 18:19:00 -06002522 case PR_SET_IO_FLUSHER:
2523 if (!capable(CAP_SYS_RESOURCE))
2524 return -EPERM;
2525
2526 if (arg3 || arg4 || arg5)
2527 return -EINVAL;
2528
2529 if (arg2 == 1)
2530 current->flags |= PR_IO_FLUSHER;
2531 else if (!arg2)
2532 current->flags &= ~PR_IO_FLUSHER;
2533 else
2534 return -EINVAL;
2535 break;
2536 case PR_GET_IO_FLUSHER:
2537 if (!capable(CAP_SYS_RESOURCE))
2538 return -EPERM;
2539
2540 if (arg2 || arg3 || arg4 || arg5)
2541 return -EINVAL;
2542
2543 error = (current->flags & PR_IO_FLUSHER) == PR_IO_FLUSHER;
2544 break;
Gabriel Krisman Bertazi1446e1d2020-11-27 14:32:34 -05002545 case PR_SET_SYSCALL_USER_DISPATCH:
2546 error = set_syscall_user_dispatch(arg2, arg3, arg4,
2547 (char __user *) arg5);
2548 break;
Andrew Mortonf3cbd432013-02-21 16:43:07 -08002549 default:
2550 error = -EINVAL;
2551 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 }
2553 return error;
2554}
Andi Kleen3cfc3482006-09-26 10:52:28 +02002555
Heiko Carstens836f92a2009-01-14 14:14:33 +01002556SYSCALL_DEFINE3(getcpu, unsigned __user *, cpup, unsigned __user *, nodep,
2557 struct getcpu_cache __user *, unused)
Andi Kleen3cfc3482006-09-26 10:52:28 +02002558{
2559 int err = 0;
2560 int cpu = raw_smp_processor_id();
vishnu.psec94fc32014-10-09 15:30:23 -07002561
Andi Kleen3cfc3482006-09-26 10:52:28 +02002562 if (cpup)
2563 err |= put_user(cpu, cpup);
2564 if (nodep)
2565 err |= put_user(cpu_to_node(cpu), nodep);
Andi Kleen3cfc3482006-09-26 10:52:28 +02002566 return err ? -EFAULT : 0;
2567}
Jeremy Fitzhardinge10a0a8d2007-07-17 18:37:02 -07002568
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002569/**
2570 * do_sysinfo - fill in sysinfo struct
2571 * @info: pointer to buffer to fill
2572 */
2573static int do_sysinfo(struct sysinfo *info)
2574{
2575 unsigned long mem_total, sav_total;
2576 unsigned int mem_unit, bitcount;
Arnd Bergmanndc1b7b62018-06-18 17:00:38 +02002577 struct timespec64 tp;
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002578
2579 memset(info, 0, sizeof(struct sysinfo));
2580
Arnd Bergmanndc1b7b62018-06-18 17:00:38 +02002581 ktime_get_boottime_ts64(&tp);
Cyril Hrubisecc421e2020-03-03 16:06:38 +01002582 timens_add_boottime(&tp);
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002583 info->uptime = tp.tv_sec + (tp.tv_nsec ? 1 : 0);
2584
2585 get_avenrun(info->loads, 0, SI_LOAD_SHIFT - FSHIFT);
2586
2587 info->procs = nr_threads;
2588
2589 si_meminfo(info);
2590 si_swapinfo(info);
2591
2592 /*
2593 * If the sum of all the available memory (i.e. ram + swap)
2594 * is less than can be stored in a 32 bit unsigned long then
2595 * we can be binary compatible with 2.2.x kernels. If not,
2596 * well, in that case 2.2.x was broken anyways...
2597 *
2598 * -Erik Andersen <andersee@debian.org>
2599 */
2600
2601 mem_total = info->totalram + info->totalswap;
2602 if (mem_total < info->totalram || mem_total < info->totalswap)
2603 goto out;
2604 bitcount = 0;
2605 mem_unit = info->mem_unit;
2606 while (mem_unit > 1) {
2607 bitcount++;
2608 mem_unit >>= 1;
2609 sav_total = mem_total;
2610 mem_total <<= 1;
2611 if (mem_total < sav_total)
2612 goto out;
2613 }
2614
2615 /*
2616 * If mem_total did not overflow, multiply all memory values by
2617 * info->mem_unit and set it to 1. This leaves things compatible
2618 * with 2.2.x, and also retains compatibility with earlier 2.4.x
2619 * kernels...
2620 */
2621
2622 info->mem_unit = 1;
2623 info->totalram <<= bitcount;
2624 info->freeram <<= bitcount;
2625 info->sharedram <<= bitcount;
2626 info->bufferram <<= bitcount;
2627 info->totalswap <<= bitcount;
2628 info->freeswap <<= bitcount;
2629 info->totalhigh <<= bitcount;
2630 info->freehigh <<= bitcount;
2631
2632out:
2633 return 0;
2634}
2635
2636SYSCALL_DEFINE1(sysinfo, struct sysinfo __user *, info)
2637{
2638 struct sysinfo val;
2639
2640 do_sysinfo(&val);
2641
2642 if (copy_to_user(info, &val, sizeof(struct sysinfo)))
2643 return -EFAULT;
2644
2645 return 0;
2646}
2647
2648#ifdef CONFIG_COMPAT
2649struct compat_sysinfo {
2650 s32 uptime;
2651 u32 loads[3];
2652 u32 totalram;
2653 u32 freeram;
2654 u32 sharedram;
2655 u32 bufferram;
2656 u32 totalswap;
2657 u32 freeswap;
2658 u16 procs;
2659 u16 pad;
2660 u32 totalhigh;
2661 u32 freehigh;
2662 u32 mem_unit;
2663 char _f[20-2*sizeof(u32)-sizeof(int)];
2664};
2665
2666COMPAT_SYSCALL_DEFINE1(sysinfo, struct compat_sysinfo __user *, info)
2667{
2668 struct sysinfo s;
Al Viroce5155c2020-02-18 22:43:15 -05002669 struct compat_sysinfo s_32;
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002670
2671 do_sysinfo(&s);
2672
2673 /* Check to see if any memory value is too large for 32-bit and scale
2674 * down if needed
2675 */
Scotty Bauer0baae412014-10-09 15:30:26 -07002676 if (upper_32_bits(s.totalram) || upper_32_bits(s.totalswap)) {
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002677 int bitcount = 0;
2678
2679 while (s.mem_unit < PAGE_SIZE) {
2680 s.mem_unit <<= 1;
2681 bitcount++;
2682 }
2683
2684 s.totalram >>= bitcount;
2685 s.freeram >>= bitcount;
2686 s.sharedram >>= bitcount;
2687 s.bufferram >>= bitcount;
2688 s.totalswap >>= bitcount;
2689 s.freeswap >>= bitcount;
2690 s.totalhigh >>= bitcount;
2691 s.freehigh >>= bitcount;
2692 }
2693
Al Viroce5155c2020-02-18 22:43:15 -05002694 memset(&s_32, 0, sizeof(s_32));
2695 s_32.uptime = s.uptime;
2696 s_32.loads[0] = s.loads[0];
2697 s_32.loads[1] = s.loads[1];
2698 s_32.loads[2] = s.loads[2];
2699 s_32.totalram = s.totalram;
2700 s_32.freeram = s.freeram;
2701 s_32.sharedram = s.sharedram;
2702 s_32.bufferram = s.bufferram;
2703 s_32.totalswap = s.totalswap;
2704 s_32.freeswap = s.freeswap;
2705 s_32.procs = s.procs;
2706 s_32.totalhigh = s.totalhigh;
2707 s_32.freehigh = s.freehigh;
2708 s_32.mem_unit = s.mem_unit;
2709 if (copy_to_user(info, &s_32, sizeof(s_32)))
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002710 return -EFAULT;
Stephen Rothwell4a22f162013-04-30 15:27:37 -07002711 return 0;
2712}
2713#endif /* CONFIG_COMPAT */