blob: 3698252719a33d21049d0f4f58b0ca898bc4d29d [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/exec.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 */
7
8/*
9 * #!-checking implemented by tytso.
10 */
11/*
12 * Demand-loading implemented 01.12.91 - no need to read anything but
13 * the header into memory. The inode of the executable is put into
14 * "current->executable", and page faults do the actual loading. Clean.
15 *
16 * Once more I can proudly say that linux stood up to being changed: it
17 * was less than 2 hours work to get demand-loading completely implemented.
18 *
19 * Demand loading changed July 1993 by Eric Youngdale. Use mmap instead,
20 * current->executable is only used by the procfs. This allows a dispatch
21 * table to check for several different types of binary formats. We keep
22 * trying until we recognize the file or we run out of supported binary
Aleksa Sarai613cc2b2016-12-21 16:26:24 +110023 * formats.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/slab.h>
27#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040028#include <linux/fdtable.h>
Hugh Dickinsba92a432008-07-25 01:45:43 -070029#include <linux/mm.h>
Davidlohr Bueso615d6e82014-04-07 15:37:25 -070030#include <linux/vmacache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/stat.h>
32#include <linux/fcntl.h>
Hugh Dickinsba92a432008-07-25 01:45:43 -070033#include <linux/swap.h>
Neil Horman74aadce2007-10-16 23:26:35 -070034#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/init.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010036#include <linux/sched/mm.h>
Ingo Molnarf7ccbae2017-02-08 18:51:30 +010037#include <linux/sched/coredump.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010038#include <linux/sched/signal.h>
Ingo Molnar6a3827d2017-02-08 18:51:31 +010039#include <linux/sched/numa_balancing.h>
Ingo Molnar29930022017-02-08 18:51:36 +010040#include <linux/sched/task.h>
Hugh Dickinsca5b1722008-07-28 15:46:18 -070041#include <linux/pagemap.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020042#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/highmem.h>
44#include <linux/spinlock.h>
45#include <linux/key.h>
46#include <linux/personality.h>
47#include <linux/binfmts.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/utsname.h>
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080049#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/module.h>
51#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/mount.h>
53#include <linux/security.h>
54#include <linux/syscalls.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070055#include <linux/tsacct_kern.h>
Matt Helsley9f460802005-11-07 00:59:16 -080056#include <linux/cn_proc.h>
Al Viro473ae302006-04-26 14:04:08 -040057#include <linux/audit.h>
Roland McGrath6341c392008-07-25 19:45:44 -070058#include <linux/tracehook.h>
Johannes Berg5f4123b2008-07-09 10:28:40 +020059#include <linux/kmod.h>
Eric Paris6110e3a2008-12-17 13:53:20 -050060#include <linux/fsnotify.h>
Al Viro5ad4e532009-03-29 19:50:06 -040061#include <linux/fs_struct.h>
Ying Han3d5992d2010-10-26 14:21:23 -070062#include <linux/oom.h>
Oleg Nesterov0e028462011-03-06 18:02:54 +010063#include <linux/compat.h>
Mimi Zoharb44a7df2015-12-28 16:02:29 -050064#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080066#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <asm/mmu_context.h>
Ollie Wildb6a2fea2007-07-19 01:48:16 -070068#include <asm/tlb.h>
KAMEZAWA Hiroyuki43d2b112012-01-10 15:08:09 -080069
70#include <trace/events/task.h>
David Howellsa6f76f22008-11-14 10:39:24 +110071#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
David Smith4ff16c22012-02-07 10:11:05 -060073#include <trace/events/sched.h>
74
Eric W. Biederman56305aa2020-05-29 22:00:54 -050075static int bprm_creds_from_file(struct linux_binprm *bprm);
76
Alan Coxd6e71142005-06-23 00:09:43 -070077int suid_dumpable = 0;
78
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070079static LIST_HEAD(formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static DEFINE_RWLOCK(binfmt_lock);
81
Al Viro8fc3dc52012-03-17 03:05:16 -040082void __register_binfmt(struct linux_binfmt * fmt, int insert)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Al Viro8fc3dc52012-03-17 03:05:16 -040084 BUG_ON(!fmt);
Oleg Nesterov92eaa562013-09-11 14:24:42 -070085 if (WARN_ON(!fmt->load_binary))
86 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 write_lock(&binfmt_lock);
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070088 insert ? list_add(&fmt->lh, &formats) :
89 list_add_tail(&fmt->lh, &formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 write_unlock(&binfmt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070093EXPORT_SYMBOL(__register_binfmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Alexey Dobriyanf6b450d2007-10-16 23:26:04 -070095void unregister_binfmt(struct linux_binfmt * fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 write_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070098 list_del(&fmt->lh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 write_unlock(&binfmt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102EXPORT_SYMBOL(unregister_binfmt);
103
104static inline void put_binfmt(struct linux_binfmt * fmt)
105{
106 module_put(fmt->module);
107}
108
Eric W. Biederman90f85722015-06-29 14:42:03 -0500109bool path_noexec(const struct path *path)
110{
111 return (path->mnt->mnt_flags & MNT_NOEXEC) ||
112 (path->mnt->mnt_sb->s_iflags & SB_I_NOEXEC);
113}
114
Josh Triplett69369a72014-04-03 14:48:27 -0700115#ifdef CONFIG_USELIB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/*
117 * Note that a shared library must be both readable and executable due to
118 * security reasons.
119 *
120 * Also note that we take the address to load from from the file itself.
121 */
Heiko Carstens1e7bfb22009-01-14 14:14:29 +0100122SYSCALL_DEFINE1(uselib, const char __user *, library)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Al Viro72c2d532013-09-22 16:27:52 -0400124 struct linux_binfmt *fmt;
Al Viro964bd182008-07-26 03:33:14 -0400125 struct file *file;
Jeff Layton91a27b22012-10-10 15:25:28 -0400126 struct filename *tmp = getname(library);
Al Viro964bd182008-07-26 03:33:14 -0400127 int error = PTR_ERR(tmp);
Al Viro47c805d2011-02-23 17:44:09 -0500128 static const struct open_flags uselib_flags = {
129 .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC,
Al Viro62fb4a12015-12-26 22:33:24 -0500130 .acc_mode = MAY_READ | MAY_EXEC,
Al Virof9652e12013-06-11 08:23:01 +0400131 .intent = LOOKUP_OPEN,
132 .lookup_flags = LOOKUP_FOLLOW,
Al Viro47c805d2011-02-23 17:44:09 -0500133 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Al Viro6e8341a2009-04-06 11:16:22 -0400135 if (IS_ERR(tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 goto out;
137
Al Virof9652e12013-06-11 08:23:01 +0400138 file = do_filp_open(AT_FDCWD, tmp, &uselib_flags);
Al Viro6e8341a2009-04-06 11:16:22 -0400139 putname(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 error = PTR_ERR(file);
141 if (IS_ERR(file))
142 goto out;
143
Al Viro6e8341a2009-04-06 11:16:22 -0400144 error = -EINVAL;
Al Viro496ad9a2013-01-23 17:07:38 -0500145 if (!S_ISREG(file_inode(file)->i_mode))
Al Viro6e8341a2009-04-06 11:16:22 -0400146 goto exit;
147
148 error = -EACCES;
Eric W. Biederman90f85722015-06-29 14:42:03 -0500149 if (path_noexec(&file->f_path))
Al Viro6e8341a2009-04-06 11:16:22 -0400150 goto exit;
151
Eric Paris2a12a9d2009-12-17 21:24:21 -0500152 fsnotify_open(file);
Eric Paris6110e3a2008-12-17 13:53:20 -0500153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 error = -ENOEXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Al Viro72c2d532013-09-22 16:27:52 -0400156 read_lock(&binfmt_lock);
157 list_for_each_entry(fmt, &formats, lh) {
158 if (!fmt->load_shlib)
159 continue;
160 if (!try_module_get(fmt->module))
161 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 read_unlock(&binfmt_lock);
Al Viro72c2d532013-09-22 16:27:52 -0400163 error = fmt->load_shlib(file);
164 read_lock(&binfmt_lock);
165 put_binfmt(fmt);
166 if (error != -ENOEXEC)
167 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
Al Viro72c2d532013-09-22 16:27:52 -0400169 read_unlock(&binfmt_lock);
Al Viro6e8341a2009-04-06 11:16:22 -0400170exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 fput(file);
172out:
173 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
Josh Triplett69369a72014-04-03 14:48:27 -0700175#endif /* #ifdef CONFIG_USELIB */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700177#ifdef CONFIG_MMU
Oleg Nesterovae6b5852011-03-06 18:03:11 +0100178/*
179 * The nascent bprm->mm is not visible until exec_mmap() but it can
180 * use a lot of memory, account these pages in current->mm temporary
181 * for oom_badness()->get_mm_rss(). Once exec succeeds or fails, we
182 * change the counter back via acct_arg_size(0).
183 */
Oleg Nesterov0e028462011-03-06 18:02:54 +0100184static void acct_arg_size(struct linux_binprm *bprm, unsigned long pages)
Oleg Nesterov3c77f842010-11-30 20:55:34 +0100185{
186 struct mm_struct *mm = current->mm;
187 long diff = (long)(pages - bprm->vma_pages);
188
189 if (!mm || !diff)
190 return;
191
192 bprm->vma_pages = pages;
Oleg Nesterov3c77f842010-11-30 20:55:34 +0100193 add_mm_counter(mm, MM_ANONPAGES, diff);
Oleg Nesterov3c77f842010-11-30 20:55:34 +0100194}
195
Oleg Nesterov0e028462011-03-06 18:02:54 +0100196static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700197 int write)
198{
199 struct page *page;
200 int ret;
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +0100201 unsigned int gup_flags = FOLL_FORCE;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700202
203#ifdef CONFIG_STACK_GROWSUP
204 if (write) {
Michal Hockod05f3162011-05-24 17:11:44 -0700205 ret = expand_downwards(bprm->vma, pos);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700206 if (ret < 0)
207 return NULL;
208 }
209#endif
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +0100210
211 if (write)
212 gup_flags |= FOLL_WRITE;
213
Dave Hansen1e987792016-02-12 13:01:54 -0800214 /*
215 * We are doing an exec(). 'current' is the process
216 * doing the exec and bprm->mm is the new process's mm.
217 */
Lorenzo Stoakes9beae1e2016-10-13 01:20:17 +0100218 ret = get_user_pages_remote(current, bprm->mm, pos, 1, gup_flags,
Lorenzo Stoakes5b56d492016-12-14 15:06:52 -0800219 &page, NULL, NULL);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700220 if (ret <= 0)
221 return NULL;
222
Oleg Nesterov655c16a2019-01-03 15:28:11 -0800223 if (write)
224 acct_arg_size(bprm, vma_pages(bprm->vma));
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700225
226 return page;
227}
228
229static void put_arg_page(struct page *page)
230{
231 put_page(page);
232}
233
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700234static void free_arg_pages(struct linux_binprm *bprm)
235{
236}
237
238static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
239 struct page *page)
240{
241 flush_cache_page(bprm->vma, pos, page_to_pfn(page));
242}
243
244static int __bprm_mm_init(struct linux_binprm *bprm)
245{
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800246 int err;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700247 struct vm_area_struct *vma = NULL;
248 struct mm_struct *mm = bprm->mm;
249
Linus Torvalds490fc052018-07-21 15:24:03 -0700250 bprm->vma = vma = vm_area_alloc(mm);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700251 if (!vma)
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800252 return -ENOMEM;
Kirill A. Shutemovbfd40ea2018-07-26 16:37:35 -0700253 vma_set_anonymous(vma);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700254
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700255 if (mmap_write_lock_killable(mm)) {
Michal Hockof268dfe2016-05-23 16:26:02 -0700256 err = -EINTR;
257 goto err_free;
258 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700259
260 /*
261 * Place the stack at the largest stack address the architecture
262 * supports. Later, we'll move this to an appropriate place. We don't
263 * use STACK_TOP because that can depend on attributes which aren't
264 * configured yet.
265 */
Michal Hockoaacb3d12011-07-26 16:08:40 -0700266 BUILD_BUG_ON(VM_STACK_FLAGS & VM_STACK_INCOMPLETE_SETUP);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700267 vma->vm_end = STACK_TOP_MAX;
268 vma->vm_start = vma->vm_end - PAGE_SIZE;
Cyrill Gorcunovd9104d12013-09-11 14:22:24 -0700269 vma->vm_flags = VM_SOFTDIRTY | VM_STACK_FLAGS | VM_STACK_INCOMPLETE_SETUP;
Coly Li3ed75eb2007-10-18 23:39:15 -0700270 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Tavis Ormandy462e635e2010-12-09 15:29:42 +0100271
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700272 err = insert_vm_struct(mm, vma);
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800273 if (err)
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700274 goto err;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700275
276 mm->stack_vm = mm->total_vm = 1;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700277 mmap_write_unlock(mm);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700278 bprm->p = vma->vm_end - sizeof(void *);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700279 return 0;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700280err:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700281 mmap_write_unlock(mm);
Michal Hockof268dfe2016-05-23 16:26:02 -0700282err_free:
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800283 bprm->vma = NULL;
Linus Torvalds3928d4f2018-07-21 13:48:51 -0700284 vm_area_free(vma);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700285 return err;
286}
287
288static bool valid_arg_len(struct linux_binprm *bprm, long len)
289{
290 return len <= MAX_ARG_STRLEN;
291}
292
293#else
294
Oleg Nesterov0e028462011-03-06 18:02:54 +0100295static inline void acct_arg_size(struct linux_binprm *bprm, unsigned long pages)
Oleg Nesterov3c77f842010-11-30 20:55:34 +0100296{
297}
298
Oleg Nesterov0e028462011-03-06 18:02:54 +0100299static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700300 int write)
301{
302 struct page *page;
303
304 page = bprm->page[pos / PAGE_SIZE];
305 if (!page && write) {
306 page = alloc_page(GFP_HIGHUSER|__GFP_ZERO);
307 if (!page)
308 return NULL;
309 bprm->page[pos / PAGE_SIZE] = page;
310 }
311
312 return page;
313}
314
315static void put_arg_page(struct page *page)
316{
317}
318
319static void free_arg_page(struct linux_binprm *bprm, int i)
320{
321 if (bprm->page[i]) {
322 __free_page(bprm->page[i]);
323 bprm->page[i] = NULL;
324 }
325}
326
327static void free_arg_pages(struct linux_binprm *bprm)
328{
329 int i;
330
331 for (i = 0; i < MAX_ARG_PAGES; i++)
332 free_arg_page(bprm, i);
333}
334
335static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
336 struct page *page)
337{
338}
339
340static int __bprm_mm_init(struct linux_binprm *bprm)
341{
342 bprm->p = PAGE_SIZE * MAX_ARG_PAGES - sizeof(void *);
343 return 0;
344}
345
346static bool valid_arg_len(struct linux_binprm *bprm, long len)
347{
348 return len <= bprm->p;
349}
350
351#endif /* CONFIG_MMU */
352
353/*
354 * Create a new mm_struct and populate it with a temporary stack
355 * vm_area_struct. We don't have enough context at this point to set the stack
356 * flags, permissions, and offset, so we use temporary values. We'll update
357 * them later in setup_arg_pages().
358 */
Yuanhan Liu9cc64ce2013-02-20 13:16:01 +1100359static int bprm_mm_init(struct linux_binprm *bprm)
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700360{
361 int err;
362 struct mm_struct *mm = NULL;
363
364 bprm->mm = mm = mm_alloc();
365 err = -ENOMEM;
366 if (!mm)
367 goto err;
368
Kees Cookc31dbb142018-04-10 16:35:01 -0700369 /* Save current stack limit for all calculations made during exec. */
370 task_lock(current->group_leader);
371 bprm->rlim_stack = current->signal->rlim[RLIMIT_STACK];
372 task_unlock(current->group_leader);
373
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700374 err = __bprm_mm_init(bprm);
375 if (err)
376 goto err;
377
378 return 0;
379
380err:
381 if (mm) {
382 bprm->mm = NULL;
383 mmdrop(mm);
384 }
385
386 return err;
387}
388
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100389struct user_arg_ptr {
Oleg Nesterov0e028462011-03-06 18:02:54 +0100390#ifdef CONFIG_COMPAT
391 bool is_compat;
392#endif
393 union {
394 const char __user *const __user *native;
395#ifdef CONFIG_COMPAT
Al Viro38b983b2012-09-30 13:38:55 -0400396 const compat_uptr_t __user *compat;
Oleg Nesterov0e028462011-03-06 18:02:54 +0100397#endif
398 } ptr;
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100399};
400
401static const char __user *get_user_arg_ptr(struct user_arg_ptr argv, int nr)
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100402{
Oleg Nesterov0e028462011-03-06 18:02:54 +0100403 const char __user *native;
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100404
Oleg Nesterov0e028462011-03-06 18:02:54 +0100405#ifdef CONFIG_COMPAT
406 if (unlikely(argv.is_compat)) {
407 compat_uptr_t compat;
408
409 if (get_user(compat, argv.ptr.compat + nr))
410 return ERR_PTR(-EFAULT);
411
412 return compat_ptr(compat);
413 }
414#endif
415
416 if (get_user(native, argv.ptr.native + nr))
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100417 return ERR_PTR(-EFAULT);
418
Oleg Nesterov0e028462011-03-06 18:02:54 +0100419 return native;
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/*
423 * count() counts the number of strings in array ARGV.
424 */
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100425static int count(struct user_arg_ptr argv, int max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 int i = 0;
428
Oleg Nesterov0e028462011-03-06 18:02:54 +0100429 if (argv.ptr.native != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 for (;;) {
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100431 const char __user *p = get_user_arg_ptr(argv, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (!p)
434 break;
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100435
436 if (IS_ERR(p))
437 return -EFAULT;
438
Xi Wang6d92d4f2013-01-11 14:31:48 -0800439 if (i >= max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return -E2BIG;
Xi Wang6d92d4f2013-01-11 14:31:48 -0800441 ++i;
Roland McGrath9aea5a62010-09-07 19:37:06 -0700442
443 if (fatal_signal_pending(current))
444 return -ERESTARTNOHAND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 cond_resched();
446 }
447 }
448 return i;
449}
450
Eric W. Biedermanbe619f72020-07-13 12:06:48 -0500451static int count_strings_kernel(const char *const *argv)
452{
453 int i;
454
455 if (!argv)
456 return 0;
457
458 for (i = 0; argv[i]; ++i) {
459 if (i >= MAX_ARG_STRINGS)
460 return -E2BIG;
461 if (fatal_signal_pending(current))
462 return -ERESTARTNOHAND;
463 cond_resched();
464 }
465 return i;
466}
467
Eric W. Biedermand8b9cd52020-07-12 08:23:54 -0500468static int bprm_stack_limits(struct linux_binprm *bprm)
Oleg Nesterov655c16a2019-01-03 15:28:11 -0800469{
470 unsigned long limit, ptr_size;
471
Oleg Nesterov655c16a2019-01-03 15:28:11 -0800472 /*
473 * Limit to 1/4 of the max stack size or 3/4 of _STK_LIM
474 * (whichever is smaller) for the argv+env strings.
475 * This ensures that:
476 * - the remaining binfmt code will not run out of stack space,
477 * - the program will have a reasonable amount of stack left
478 * to work from.
479 */
480 limit = _STK_LIM / 4 * 3;
481 limit = min(limit, bprm->rlim_stack.rlim_cur / 4);
482 /*
483 * We've historically supported up to 32 pages (ARG_MAX)
484 * of argument strings even with small stacks
485 */
486 limit = max_t(unsigned long, limit, ARG_MAX);
487 /*
488 * We must account for the size of all the argv and envp pointers to
489 * the argv and envp strings, since they will also take up space in
490 * the stack. They aren't stored until much later when we can't
491 * signal to the parent that the child has run out of stack space.
492 * Instead, calculate it here so it's possible to fail gracefully.
493 */
494 ptr_size = (bprm->argc + bprm->envc) * sizeof(void *);
495 if (limit <= ptr_size)
496 return -E2BIG;
497 limit -= ptr_size;
498
499 bprm->argmin = bprm->p - limit;
500 return 0;
501}
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503/*
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700504 * 'copy_strings()' copies argument/environment strings from the old
505 * processes's memory to the new process's stack. The call to get_user_pages()
506 * ensures the destination page is created and not swapped out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 */
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100508static int copy_strings(int argc, struct user_arg_ptr argv,
Adrian Bunk75c96f82005-05-05 16:16:09 -0700509 struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 struct page *kmapped_page = NULL;
512 char *kaddr = NULL;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700513 unsigned long kpos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 int ret;
515
516 while (argc-- > 0) {
David Howellsd7627462010-08-17 23:52:56 +0100517 const char __user *str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 int len;
519 unsigned long pos;
520
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100521 ret = -EFAULT;
522 str = get_user_arg_ptr(argv, argc);
523 if (IS_ERR(str))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100526 len = strnlen_user(str, MAX_ARG_STRLEN);
527 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 goto out;
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100529
530 ret = -E2BIG;
531 if (!valid_arg_len(bprm, len))
532 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700534 /* We're going to work our way backwords. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 pos = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700536 str += len;
537 bprm->p -= len;
Oleg Nesterov655c16a2019-01-03 15:28:11 -0800538#ifdef CONFIG_MMU
539 if (bprm->p < bprm->argmin)
540 goto out;
541#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 while (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 int offset, bytes_to_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Roland McGrath9aea5a62010-09-07 19:37:06 -0700546 if (fatal_signal_pending(current)) {
547 ret = -ERESTARTNOHAND;
548 goto out;
549 }
Roland McGrath7993bc12010-09-07 19:36:28 -0700550 cond_resched();
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 offset = pos % PAGE_SIZE;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700553 if (offset == 0)
554 offset = PAGE_SIZE;
555
556 bytes_to_copy = offset;
557 if (bytes_to_copy > len)
558 bytes_to_copy = len;
559
560 offset -= bytes_to_copy;
561 pos -= bytes_to_copy;
562 str -= bytes_to_copy;
563 len -= bytes_to_copy;
564
565 if (!kmapped_page || kpos != (pos & PAGE_MASK)) {
566 struct page *page;
567
568 page = get_arg_page(bprm, pos, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (!page) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700570 ret = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 goto out;
572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700574 if (kmapped_page) {
575 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700577 put_arg_page(kmapped_page);
578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 kmapped_page = page;
580 kaddr = kmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700581 kpos = pos & PAGE_MASK;
582 flush_arg_page(bprm, kpos, kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700584 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 ret = -EFAULT;
586 goto out;
587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589 }
590 ret = 0;
591out:
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700592 if (kmapped_page) {
593 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700595 put_arg_page(kmapped_page);
596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return ret;
598}
599
600/*
Christoph Hellwig986db2d2020-06-04 16:51:14 -0700601 * Copy and argument/environment string from the kernel to the processes stack.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 */
Christoph Hellwig986db2d2020-06-04 16:51:14 -0700603int copy_string_kernel(const char *arg, struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Christoph Hellwig762a3af2020-06-04 16:51:18 -0700605 int len = strnlen(arg, MAX_ARG_STRLEN) + 1 /* terminating NUL */;
606 unsigned long pos = bprm->p;
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100607
Christoph Hellwig762a3af2020-06-04 16:51:18 -0700608 if (len == 0)
609 return -EFAULT;
610 if (!valid_arg_len(bprm, len))
611 return -E2BIG;
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100612
Christoph Hellwig762a3af2020-06-04 16:51:18 -0700613 /* We're going to work our way backwards. */
614 arg += len;
615 bprm->p -= len;
616 if (IS_ENABLED(CONFIG_MMU) && bprm->p < bprm->argmin)
617 return -E2BIG;
618
619 while (len > 0) {
620 unsigned int bytes_to_copy = min_t(unsigned int, len,
621 min_not_zero(offset_in_page(pos), PAGE_SIZE));
622 struct page *page;
623 char *kaddr;
624
625 pos -= bytes_to_copy;
626 arg -= bytes_to_copy;
627 len -= bytes_to_copy;
628
629 page = get_arg_page(bprm, pos, 1);
630 if (!page)
631 return -E2BIG;
632 kaddr = kmap_atomic(page);
633 flush_arg_page(bprm, pos & PAGE_MASK, page);
634 memcpy(kaddr + offset_in_page(pos), arg, bytes_to_copy);
635 flush_kernel_dcache_page(page);
636 kunmap_atomic(kaddr);
637 put_arg_page(page);
638 }
639
640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
Christoph Hellwig986db2d2020-06-04 16:51:14 -0700642EXPORT_SYMBOL(copy_string_kernel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Eric W. Biedermanbe619f72020-07-13 12:06:48 -0500644static int copy_strings_kernel(int argc, const char *const *argv,
645 struct linux_binprm *bprm)
646{
647 while (argc-- > 0) {
648 int ret = copy_string_kernel(argv[argc], bprm);
649 if (ret < 0)
650 return ret;
651 if (fatal_signal_pending(current))
652 return -ERESTARTNOHAND;
653 cond_resched();
654 }
655 return 0;
656}
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658#ifdef CONFIG_MMU
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660/*
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700661 * During bprm_mm_init(), we create a temporary stack at STACK_TOP_MAX. Once
662 * the binfmt code determines where the new stack should reside, we shift it to
663 * its final location. The process proceeds as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 *
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700665 * 1) Use shift to calculate the new vma endpoints.
666 * 2) Extend vma to cover both the old and new ranges. This ensures the
667 * arguments passed to subsequent functions are consistent.
668 * 3) Move vma's page tables to the new range.
669 * 4) Free up any cleared pgd range.
670 * 5) Shrink the vma to cover only the new range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700672static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 struct mm_struct *mm = vma->vm_mm;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700675 unsigned long old_start = vma->vm_start;
676 unsigned long old_end = vma->vm_end;
677 unsigned long length = old_end - old_start;
678 unsigned long new_start = old_start - shift;
679 unsigned long new_end = old_end - shift;
Peter Zijlstrad16dfc52011-05-24 17:11:45 -0700680 struct mmu_gather tlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700682 BUG_ON(new_start > new_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700684 /*
685 * ensure there are no vmas between where we want to go
686 * and where we are
687 */
688 if (vma != find_vma(mm, new_start))
689 return -EFAULT;
690
691 /*
692 * cover the whole range: [new_start, old_end)
693 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800694 if (vma_adjust(vma, new_start, old_end, vma->vm_pgoff, NULL))
695 return -ENOMEM;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700696
697 /*
698 * move the page tables downwards, on failure we rely on
699 * process cleanup to remove whatever mess we made.
700 */
701 if (length != move_page_tables(vma, old_start,
Michel Lespinasse38a76012012-10-08 16:31:50 -0700702 vma, new_start, length, false))
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700703 return -ENOMEM;
704
705 lru_add_drain();
Linus Torvalds2b047252013-08-15 11:42:25 -0700706 tlb_gather_mmu(&tlb, mm, old_start, old_end);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700707 if (new_end > old_start) {
708 /*
709 * when the old and new regions overlap clear from new_end.
710 */
Peter Zijlstrad16dfc52011-05-24 17:11:45 -0700711 free_pgd_range(&tlb, new_end, old_end, new_end,
Hugh Dickins6ee86302013-04-29 15:07:44 -0700712 vma->vm_next ? vma->vm_next->vm_start : USER_PGTABLES_CEILING);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700713 } else {
714 /*
715 * otherwise, clean from old_start; this is done to not touch
716 * the address space in [new_end, old_start) some architectures
717 * have constraints on va-space that make this illegal (IA64) -
718 * for the others its just a little faster.
719 */
Peter Zijlstrad16dfc52011-05-24 17:11:45 -0700720 free_pgd_range(&tlb, old_start, old_end, new_end,
Hugh Dickins6ee86302013-04-29 15:07:44 -0700721 vma->vm_next ? vma->vm_next->vm_start : USER_PGTABLES_CEILING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
Linus Torvalds2b047252013-08-15 11:42:25 -0700723 tlb_finish_mmu(&tlb, old_start, old_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700725 /*
Rik van Riel5beb4932010-03-05 13:42:07 -0800726 * Shrink the vma to just the new range. Always succeeds.
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700727 */
728 vma_adjust(vma, new_start, new_end, vma->vm_pgoff, NULL);
729
730 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
732
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700733/*
734 * Finalizes the stack vm_area_struct. The flags and permissions are updated,
735 * the stack is optionally relocated, and some extra space is added.
736 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737int setup_arg_pages(struct linux_binprm *bprm,
738 unsigned long stack_top,
739 int executable_stack)
740{
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700741 unsigned long ret;
742 unsigned long stack_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 struct mm_struct *mm = current->mm;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700744 struct vm_area_struct *vma = bprm->vma;
745 struct vm_area_struct *prev = NULL;
746 unsigned long vm_flags;
747 unsigned long stack_base;
Michael Neuling803bf5e2010-02-10 13:56:42 -0800748 unsigned long stack_size;
749 unsigned long stack_expand;
750 unsigned long rlim_stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752#ifdef CONFIG_STACK_GROWSUP
James Hogand71f2902014-05-13 23:58:24 +0100753 /* Limit stack size */
Kees Cookc31dbb142018-04-10 16:35:01 -0700754 stack_base = bprm->rlim_stack.rlim_max;
James Hogand71f2902014-05-13 23:58:24 +0100755 if (stack_base > STACK_SIZE_MAX)
756 stack_base = STACK_SIZE_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Helge Dellerd045c772015-05-11 22:01:27 +0200758 /* Add space for stack randomization. */
759 stack_base += (STACK_RND_MASK << PAGE_SHIFT);
760
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700761 /* Make sure we didn't let the argument array grow too large. */
762 if (vma->vm_end - vma->vm_start > stack_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return -ENOMEM;
764
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700765 stack_base = PAGE_ALIGN(stack_top - stack_base);
766
767 stack_shift = vma->vm_start - stack_base;
768 mm->arg_start = bprm->p - stack_shift;
769 bprm->p = vma->vm_end - stack_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770#else
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700771 stack_top = arch_align_stack(stack_top);
772 stack_top = PAGE_ALIGN(stack_top);
Roland McGrath1b528182010-09-07 19:35:49 -0700773
774 if (unlikely(stack_top < mmap_min_addr) ||
775 unlikely(vma->vm_end - vma->vm_start >= stack_top - mmap_min_addr))
776 return -ENOMEM;
777
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700778 stack_shift = vma->vm_end - stack_top;
779
780 bprm->p -= stack_shift;
781 mm->arg_start = bprm->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782#endif
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700783
784 if (bprm->loader)
785 bprm->loader -= stack_shift;
786 bprm->exec -= stack_shift;
787
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700788 if (mmap_write_lock_killable(mm))
Michal Hockof268dfe2016-05-23 16:26:02 -0700789 return -EINTR;
790
Hugh Dickins96a8e132008-07-10 21:19:20 +0100791 vm_flags = VM_STACK_FLAGS;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700792
793 /*
794 * Adjust stack execute permissions; explicitly enable for
795 * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone
796 * (arch default) otherwise.
797 */
798 if (unlikely(executable_stack == EXSTACK_ENABLE_X))
799 vm_flags |= VM_EXEC;
800 else if (executable_stack == EXSTACK_DISABLE_X)
801 vm_flags &= ~VM_EXEC;
802 vm_flags |= mm->def_flags;
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700803 vm_flags |= VM_STACK_INCOMPLETE_SETUP;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700804
805 ret = mprotect_fixup(vma, &prev, vma->vm_start, vma->vm_end,
806 vm_flags);
807 if (ret)
808 goto out_unlock;
809 BUG_ON(prev != vma);
810
Alexey Dobriyan47a2ebb2020-01-30 22:17:29 -0800811 if (unlikely(vm_flags & VM_EXEC)) {
812 pr_warn_once("process '%pD4' started with executable stack\n",
813 bprm->file);
814 }
815
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700816 /* Move stack pages down in memory. */
817 if (stack_shift) {
818 ret = shift_arg_pages(vma, stack_shift);
Anton Blanchardfc63cf22009-11-11 14:26:48 -0800819 if (ret)
820 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700823 /* mprotect_fixup is overkill to remove the temporary stack flags */
824 vma->vm_flags &= ~VM_STACK_INCOMPLETE_SETUP;
825
Michael Neuling5ef097d2010-03-05 13:42:57 -0800826 stack_expand = 131072UL; /* randomly 32*4k (or 2*64k) pages */
Michael Neuling803bf5e2010-02-10 13:56:42 -0800827 stack_size = vma->vm_end - vma->vm_start;
828 /*
829 * Align this down to a page boundary as expand_stack
830 * will align it up.
831 */
Kees Cookc31dbb142018-04-10 16:35:01 -0700832 rlim_stack = bprm->rlim_stack.rlim_cur & PAGE_MASK;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700833#ifdef CONFIG_STACK_GROWSUP
Michael Neuling803bf5e2010-02-10 13:56:42 -0800834 if (stack_size + stack_expand > rlim_stack)
835 stack_base = vma->vm_start + rlim_stack;
836 else
837 stack_base = vma->vm_end + stack_expand;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700838#else
Michael Neuling803bf5e2010-02-10 13:56:42 -0800839 if (stack_size + stack_expand > rlim_stack)
840 stack_base = vma->vm_end - rlim_stack;
841 else
842 stack_base = vma->vm_start - stack_expand;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700843#endif
Eric B Munson3af9e852010-05-18 15:30:49 +0100844 current->mm->start_stack = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700845 ret = expand_stack(vma, stack_base);
846 if (ret)
847 ret = -EFAULT;
848
849out_unlock:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -0700850 mmap_write_unlock(mm);
Anton Blanchardfc63cf22009-11-11 14:26:48 -0800851 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853EXPORT_SYMBOL(setup_arg_pages);
854
Nicolas Pitre7e7ec6a2016-07-24 11:30:18 -0400855#else
856
857/*
858 * Transfer the program arguments and environment from the holding pages
859 * onto the stack. The provided stack pointer is adjusted accordingly.
860 */
861int transfer_args_to_stack(struct linux_binprm *bprm,
862 unsigned long *sp_location)
863{
864 unsigned long index, stop, sp;
865 int ret = 0;
866
867 stop = bprm->p >> PAGE_SHIFT;
868 sp = *sp_location;
869
870 for (index = MAX_ARG_PAGES - 1; index >= stop; index--) {
871 unsigned int offset = index == stop ? bprm->p & ~PAGE_MASK : 0;
872 char *src = kmap(bprm->page[index]) + offset;
873 sp -= PAGE_SIZE - offset;
874 if (copy_to_user((void *) sp, src, PAGE_SIZE - offset) != 0)
875 ret = -EFAULT;
876 kunmap(bprm->page[index]);
877 if (ret)
878 goto out;
879 }
880
881 *sp_location = sp;
882
883out:
884 return ret;
885}
886EXPORT_SYMBOL(transfer_args_to_stack);
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888#endif /* CONFIG_MMU */
889
David Drysdale51f39a12014-12-12 16:57:29 -0800890static struct file *do_open_execat(int fd, struct filename *name, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 struct file *file;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200893 int err;
David Drysdale51f39a12014-12-12 16:57:29 -0800894 struct open_flags open_exec_flags = {
Al Viro47c805d2011-02-23 17:44:09 -0500895 .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC,
Al Viro62fb4a12015-12-26 22:33:24 -0500896 .acc_mode = MAY_EXEC,
Al Virof9652e12013-06-11 08:23:01 +0400897 .intent = LOOKUP_OPEN,
898 .lookup_flags = LOOKUP_FOLLOW,
Al Viro47c805d2011-02-23 17:44:09 -0500899 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
David Drysdale51f39a12014-12-12 16:57:29 -0800901 if ((flags & ~(AT_SYMLINK_NOFOLLOW | AT_EMPTY_PATH)) != 0)
902 return ERR_PTR(-EINVAL);
903 if (flags & AT_SYMLINK_NOFOLLOW)
904 open_exec_flags.lookup_flags &= ~LOOKUP_FOLLOW;
905 if (flags & AT_EMPTY_PATH)
906 open_exec_flags.lookup_flags |= LOOKUP_EMPTY;
907
908 file = do_filp_open(fd, name, &open_exec_flags);
Al Viro6e8341a2009-04-06 11:16:22 -0400909 if (IS_ERR(file))
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200910 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200912 err = -EACCES;
Al Viro496ad9a2013-01-23 17:07:38 -0500913 if (!S_ISREG(file_inode(file)->i_mode))
Al Viro6e8341a2009-04-06 11:16:22 -0400914 goto exit;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200915
Eric W. Biederman90f85722015-06-29 14:42:03 -0500916 if (path_noexec(&file->f_path))
Al Viro6e8341a2009-04-06 11:16:22 -0400917 goto exit;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200918
919 err = deny_write_access(file);
Al Viro6e8341a2009-04-06 11:16:22 -0400920 if (err)
921 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
David Drysdale51f39a12014-12-12 16:57:29 -0800923 if (name->name[0] != '\0')
924 fsnotify_open(file);
925
Al Viro6e8341a2009-04-06 11:16:22 -0400926out:
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200927 return file;
928
Al Viro6e8341a2009-04-06 11:16:22 -0400929exit:
930 fput(file);
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200931 return ERR_PTR(err);
932}
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800933
934struct file *open_exec(const char *name)
935{
Paul Moore51689102015-01-22 00:00:03 -0500936 struct filename *filename = getname_kernel(name);
937 struct file *f = ERR_CAST(filename);
938
939 if (!IS_ERR(filename)) {
940 f = do_open_execat(AT_FDCWD, filename, 0);
941 putname(filename);
942 }
943 return f;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800944}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945EXPORT_SYMBOL(open_exec);
946
Mimi Zoharb44a7df2015-12-28 16:02:29 -0500947int kernel_read_file(struct file *file, void **buf, loff_t *size,
Mimi Zoharbc8ca5b2016-01-24 10:07:32 -0500948 loff_t max_size, enum kernel_read_file_id id)
Mimi Zoharb44a7df2015-12-28 16:02:29 -0500949{
950 loff_t i_size, pos;
951 ssize_t bytes = 0;
952 int ret;
953
954 if (!S_ISREG(file_inode(file)->i_mode) || max_size < 0)
955 return -EINVAL;
956
Dmitry Kasatkin39d637a2014-10-26 12:42:07 +0200957 ret = deny_write_access(file);
958 if (ret)
959 return ret;
960
Kees Cook7bd698b2018-03-09 11:30:20 -0800961 ret = security_kernel_read_file(file, id);
962 if (ret)
963 goto out;
964
Mimi Zoharb44a7df2015-12-28 16:02:29 -0500965 i_size = i_size_read(file_inode(file));
Dmitry Kasatkin39d637a2014-10-26 12:42:07 +0200966 if (i_size <= 0) {
967 ret = -EINVAL;
968 goto out;
969 }
Eric Biggers691115c2018-09-07 12:16:24 -0700970 if (i_size > SIZE_MAX || (max_size > 0 && i_size > max_size)) {
971 ret = -EFBIG;
972 goto out;
973 }
Mimi Zoharb44a7df2015-12-28 16:02:29 -0500974
Stephen Boyda098ecd2016-08-02 14:04:28 -0700975 if (id != READING_FIRMWARE_PREALLOC_BUFFER)
976 *buf = vmalloc(i_size);
Dmitry Kasatkin39d637a2014-10-26 12:42:07 +0200977 if (!*buf) {
978 ret = -ENOMEM;
979 goto out;
980 }
Mimi Zoharb44a7df2015-12-28 16:02:29 -0500981
982 pos = 0;
983 while (pos < i_size) {
Christoph Hellwigbdd1d2d2017-09-01 17:39:13 +0200984 bytes = kernel_read(file, *buf + pos, i_size - pos, &pos);
Mimi Zoharb44a7df2015-12-28 16:02:29 -0500985 if (bytes < 0) {
986 ret = bytes;
YueHaibingf612acf2019-02-19 10:10:38 +0800987 goto out_free;
Mimi Zoharb44a7df2015-12-28 16:02:29 -0500988 }
989
990 if (bytes == 0)
991 break;
Mimi Zoharb44a7df2015-12-28 16:02:29 -0500992 }
993
994 if (pos != i_size) {
995 ret = -EIO;
Dmitry Kasatkin39d637a2014-10-26 12:42:07 +0200996 goto out_free;
Mimi Zoharb44a7df2015-12-28 16:02:29 -0500997 }
998
Mimi Zoharbc8ca5b2016-01-24 10:07:32 -0500999 ret = security_kernel_post_read_file(file, *buf, i_size, id);
Mimi Zoharb44a7df2015-12-28 16:02:29 -05001000 if (!ret)
1001 *size = pos;
1002
Dmitry Kasatkin39d637a2014-10-26 12:42:07 +02001003out_free:
Mimi Zoharb44a7df2015-12-28 16:02:29 -05001004 if (ret < 0) {
Stephen Boyda098ecd2016-08-02 14:04:28 -07001005 if (id != READING_FIRMWARE_PREALLOC_BUFFER) {
1006 vfree(*buf);
1007 *buf = NULL;
1008 }
Mimi Zoharb44a7df2015-12-28 16:02:29 -05001009 }
Dmitry Kasatkin39d637a2014-10-26 12:42:07 +02001010
1011out:
1012 allow_write_access(file);
Mimi Zoharb44a7df2015-12-28 16:02:29 -05001013 return ret;
1014}
1015EXPORT_SYMBOL_GPL(kernel_read_file);
1016
Mimi Zohar711aab12017-09-12 22:45:33 -04001017int kernel_read_file_from_path(const char *path, void **buf, loff_t *size,
Mimi Zohar09596b92015-11-19 12:39:22 -05001018 loff_t max_size, enum kernel_read_file_id id)
1019{
1020 struct file *file;
1021 int ret;
1022
1023 if (!path || !*path)
1024 return -EINVAL;
1025
1026 file = filp_open(path, O_RDONLY, 0);
1027 if (IS_ERR(file))
1028 return PTR_ERR(file);
1029
1030 ret = kernel_read_file(file, buf, size, max_size, id);
1031 fput(file);
1032 return ret;
1033}
1034EXPORT_SYMBOL_GPL(kernel_read_file_from_path);
1035
Topi Miettinen901cff72020-01-23 14:58:38 +02001036int kernel_read_file_from_path_initns(const char *path, void **buf,
1037 loff_t *size, loff_t max_size,
1038 enum kernel_read_file_id id)
1039{
1040 struct file *file;
1041 struct path root;
1042 int ret;
1043
1044 if (!path || !*path)
1045 return -EINVAL;
1046
1047 task_lock(&init_task);
1048 get_fs_root(init_task.fs, &root);
1049 task_unlock(&init_task);
1050
1051 file = file_open_root(root.dentry, root.mnt, path, O_RDONLY, 0);
1052 path_put(&root);
1053 if (IS_ERR(file))
1054 return PTR_ERR(file);
1055
1056 ret = kernel_read_file(file, buf, size, max_size, id);
1057 fput(file);
1058 return ret;
1059}
1060EXPORT_SYMBOL_GPL(kernel_read_file_from_path_initns);
1061
Mimi Zoharb844f0e2016-02-01 08:36:21 -05001062int kernel_read_file_from_fd(int fd, void **buf, loff_t *size, loff_t max_size,
1063 enum kernel_read_file_id id)
1064{
1065 struct fd f = fdget(fd);
1066 int ret = -EBADF;
1067
1068 if (!f.file)
1069 goto out;
1070
1071 ret = kernel_read_file(f.file, buf, size, max_size, id);
1072out:
1073 fdput(f);
1074 return ret;
1075}
1076EXPORT_SYMBOL_GPL(kernel_read_file_from_fd);
1077
Christoph Hellwig48304f72020-06-07 21:42:40 -07001078#if defined(CONFIG_HAVE_AOUT) || defined(CONFIG_BINFMT_FLAT) || \
1079 defined(CONFIG_BINFMT_ELF_FDPIC)
Al Viro3dc20cb2013-04-13 20:31:37 -04001080ssize_t read_code(struct file *file, unsigned long addr, loff_t pos, size_t len)
1081{
Al Viroec695572014-02-04 19:08:21 -05001082 ssize_t res = vfs_read(file, (void __user *)addr, len, &pos);
Al Viro3dc20cb2013-04-13 20:31:37 -04001083 if (res > 0)
Christoph Hellwigbce2b682020-06-07 21:42:43 -07001084 flush_icache_user_range(addr, addr + len);
Al Viro3dc20cb2013-04-13 20:31:37 -04001085 return res;
1086}
1087EXPORT_SYMBOL(read_code);
Christoph Hellwig48304f72020-06-07 21:42:40 -07001088#endif
Al Viro3dc20cb2013-04-13 20:31:37 -04001089
Eric W. Biedermaneea96732020-03-25 10:03:36 -05001090/*
1091 * Maps the mm_struct mm into the current task struct.
1092 * On success, this function returns with the mutex
1093 * exec_update_mutex locked.
1094 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095static int exec_mmap(struct mm_struct *mm)
1096{
1097 struct task_struct *tsk;
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07001098 struct mm_struct *old_mm, *active_mm;
Eric W. Biedermaneea96732020-03-25 10:03:36 -05001099 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 /* Notify parent that we're no longer interested in the old VM */
1102 tsk = current;
1103 old_mm = current->mm;
Thomas Gleixner4610ba72019-11-06 22:55:38 +01001104 exec_mm_release(tsk, old_mm);
Eric W. Biedermana28bf132020-03-30 16:33:39 -05001105 if (old_mm)
1106 sync_mm_rss(old_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Eric W. Biedermaneea96732020-03-25 10:03:36 -05001108 ret = mutex_lock_killable(&tsk->signal->exec_update_mutex);
1109 if (ret)
1110 return ret;
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (old_mm) {
1113 /*
1114 * Make sure that if there is a core dump in progress
1115 * for the old mm, we get out and die instead of going
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07001116 * through with the exec. We must hold mmap_lock around
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001117 * checking core_state and changing tsk->mm.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 */
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001119 mmap_read_lock(old_mm);
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001120 if (unlikely(old_mm->core_state)) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001121 mmap_read_unlock(old_mm);
Eric W. Biedermaneea96732020-03-25 10:03:36 -05001122 mutex_unlock(&tsk->signal->exec_update_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 return -EINTR;
1124 }
1125 }
Eric W. Biedermaneea96732020-03-25 10:03:36 -05001126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 task_lock(tsk);
1128 active_mm = tsk->active_mm;
Mathieu Desnoyers227a4aa2019-09-19 13:37:02 -04001129 membarrier_exec_mmap(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 tsk->mm = mm;
1131 tsk->active_mm = mm;
1132 activate_mm(active_mm, mm);
Davidlohr Bueso615d6e82014-04-07 15:37:25 -07001133 tsk->mm->vmacache_seqnum = 0;
1134 vmacache_flush(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 task_unlock(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (old_mm) {
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001137 mmap_read_unlock(old_mm);
Eric Sesterhenn7dddb122006-04-01 01:13:38 +02001138 BUG_ON(active_mm != old_mm);
Oleg Nesterov701085b22012-03-19 17:04:01 +01001139 setmax_mm_hiwater_rss(&tsk->signal->maxrss, old_mm);
Balbir Singh31a78f22008-09-28 23:09:31 +01001140 mm_update_next_owner(old_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 mmput(old_mm);
1142 return 0;
1143 }
1144 mmdrop(active_mm);
1145 return 0;
1146}
1147
Arjan van de Ven858119e2006-01-14 13:20:43 -08001148static int de_thread(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 struct signal_struct *sig = tsk->signal;
Oleg Nesterovb2c903b2007-10-16 23:27:22 -07001151 struct sighand_struct *oldsighand = tsk->sighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 spinlock_t *lock = &oldsighand->siglock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -07001154 if (thread_group_empty(tsk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 goto no_thread_group;
1156
1157 /*
1158 * Kill all other threads in the thread group.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 spin_lock_irq(lock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -08001161 if (signal_group_exit(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 /*
1163 * Another group action in progress, just
1164 * return so that the signal is processed.
1165 */
1166 spin_unlock_irq(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return -EAGAIN;
1168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Oleg Nesterovd3441932010-05-26 14:43:11 -07001170 sig->group_exit_task = tsk;
1171 sig->notify_count = zap_other_threads(tsk);
1172 if (!thread_group_leader(tsk))
1173 sig->notify_count--;
1174
1175 while (sig->notify_count) {
Oleg Nesterovd5bbd432012-10-08 19:13:01 +02001176 __set_current_state(TASK_KILLABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 spin_unlock_irq(lock);
Rafael J. Wysockia72173e2018-12-03 13:04:18 +01001178 schedule();
Davidlohr Bueso08d405c2019-01-03 15:28:58 -08001179 if (__fatal_signal_pending(tsk))
Oleg Nesterovd5bbd432012-10-08 19:13:01 +02001180 goto killed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 spin_lock_irq(lock);
1182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 spin_unlock_irq(lock);
1184
1185 /*
1186 * At this point all other threads have exited, all we have to
1187 * do is to wait for the thread group leader to become inactive,
1188 * and to assume its PID:
1189 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -07001190 if (!thread_group_leader(tsk)) {
Oleg Nesterov81879262008-12-01 14:18:16 -08001191 struct task_struct *leader = tsk->group_leader;
Oleg Nesterov6db840f2007-10-16 23:27:23 -07001192
Oleg Nesterov6db840f2007-10-16 23:27:23 -07001193 for (;;) {
Ingo Molnar780de9d2017-02-02 11:50:56 +01001194 cgroup_threadgroup_change_begin(tsk);
Oleg Nesterov6db840f2007-10-16 23:27:23 -07001195 write_lock_irq(&tasklist_lock);
Kirill Tkhaidfcce792015-04-16 12:48:01 -07001196 /*
1197 * Do this under tasklist_lock to ensure that
1198 * exit_notify() can't miss ->group_exit_task
1199 */
1200 sig->notify_count = -1;
Oleg Nesterov6db840f2007-10-16 23:27:23 -07001201 if (likely(leader->exit_state))
1202 break;
Oleg Nesterovd5bbd432012-10-08 19:13:01 +02001203 __set_current_state(TASK_KILLABLE);
Oleg Nesterov6db840f2007-10-16 23:27:23 -07001204 write_unlock_irq(&tasklist_lock);
Ingo Molnar780de9d2017-02-02 11:50:56 +01001205 cgroup_threadgroup_change_end(tsk);
Rafael J. Wysockia72173e2018-12-03 13:04:18 +01001206 schedule();
Davidlohr Bueso08d405c2019-01-03 15:28:58 -08001207 if (__fatal_signal_pending(tsk))
Oleg Nesterovd5bbd432012-10-08 19:13:01 +02001208 goto killed;
Oleg Nesterov6db840f2007-10-16 23:27:23 -07001209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Roland McGrathf5e90282006-04-10 22:54:16 -07001211 /*
1212 * The only record we have of the real-time age of a
1213 * process, regardless of execs it's done, is start_time.
1214 * All the past CPU time is accumulated in signal_struct
1215 * from sister threads now dead. But in this non-leader
1216 * exec, nothing survives from the original leader thread,
1217 * whose birth marks the true age of this process now.
1218 * When we take on its identity by switching to its PID, we
1219 * also take its birthdate (always earlier than our own).
1220 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -07001221 tsk->start_time = leader->start_time;
Peter Zijlstracf25e242019-11-07 11:07:58 +01001222 tsk->start_boottime = leader->start_boottime;
Roland McGrathf5e90282006-04-10 22:54:16 -07001223
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -07001224 BUG_ON(!same_thread_group(leader, tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 /*
1226 * An exec() starts a new thread group with the
1227 * TGID of the previous thread group. Rehash the
1228 * two threads with a switched PID, and release
1229 * the former thread group leader:
1230 */
Eric W. Biedermand73d6522006-03-28 16:11:03 -08001231
1232 /* Become a process group leader with the old leader's pid.
Eric W. Biedermanc18258c2006-09-27 01:51:06 -07001233 * The old leader becomes a thread of the this thread group.
Eric W. Biedermand73d6522006-03-28 16:11:03 -08001234 */
Eric W. Biederman6b03d132020-04-19 06:35:02 -05001235 exchange_tids(tsk, leader);
Eric W. Biederman6883f812017-06-04 04:32:13 -05001236 transfer_pid(leader, tsk, PIDTYPE_TGID);
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -07001237 transfer_pid(leader, tsk, PIDTYPE_PGID);
1238 transfer_pid(leader, tsk, PIDTYPE_SID);
Oleg Nesterov9cd80bb2009-12-17 15:27:15 -08001239
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -07001240 list_replace_rcu(&leader->tasks, &tsk->tasks);
Oleg Nesterov9cd80bb2009-12-17 15:27:15 -08001241 list_replace_init(&leader->sibling, &tsk->sibling);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -07001243 tsk->group_leader = tsk;
1244 leader->group_leader = tsk;
Eric W. Biedermande12a782006-04-10 17:16:49 -06001245
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -07001246 tsk->exit_signal = SIGCHLD;
Oleg Nesterov087806b2011-06-22 23:10:26 +02001247 leader->exit_signal = -1;
Oleg Nesterov962b5642005-11-23 13:37:43 -08001248
1249 BUG_ON(leader->exit_state != EXIT_ZOMBIE);
1250 leader->exit_state = EXIT_DEAD;
Oleg Nesteroveac1b5e2011-07-21 20:00:43 +02001251
1252 /*
1253 * We are going to release_task()->ptrace_unlink() silently,
1254 * the tracer can sleep in do_wait(). EXIT_DEAD guarantees
1255 * the tracer wont't block again waiting for this thread.
1256 */
1257 if (unlikely(leader->ptrace))
1258 __wake_up_parent(leader, leader->parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 write_unlock_irq(&tasklist_lock);
Ingo Molnar780de9d2017-02-02 11:50:56 +01001260 cgroup_threadgroup_change_end(tsk);
Oleg Nesterov81879262008-12-01 14:18:16 -08001261
1262 release_task(leader);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -08001263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Oleg Nesterov6db840f2007-10-16 23:27:23 -07001265 sig->group_exit_task = NULL;
1266 sig->notify_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268no_thread_group:
Oleg Nesterove6368252012-03-19 17:03:22 +01001269 /* we have changed execution domain */
1270 tsk->exit_signal = SIGCHLD;
1271
Eric W. Biederman02169152020-03-25 10:00:21 -05001272 BUG_ON(!thread_group_leader(tsk));
1273 return 0;
1274
1275killed:
1276 /* protects against exit_notify() and __exit_signal() */
1277 read_lock(&tasklist_lock);
1278 sig->group_exit_task = NULL;
1279 sig->notify_count = 0;
1280 read_unlock(&tasklist_lock);
1281 return -EAGAIN;
1282}
1283
1284
Eric W. Biederman7a60ef42020-03-08 12:04:44 -05001285/*
1286 * This function makes sure the current process has its own signal table,
1287 * so that flush_signal_handlers can later reset the handlers without
1288 * disturbing other processes. (Other processes might share the signal
1289 * table via the CLONE_SIGHAND option to clone().)
1290 */
Eric W. Biederman02169152020-03-25 10:00:21 -05001291static int unshare_sighand(struct task_struct *me)
1292{
1293 struct sighand_struct *oldsighand = me->sighand;
Oleg Nesterov329f7db2005-11-07 21:12:43 +03001294
Elena Reshetovad036bda2019-01-18 14:27:26 +02001295 if (refcount_read(&oldsighand->count) != 1) {
Oleg Nesterovb2c903b2007-10-16 23:27:22 -07001296 struct sighand_struct *newsighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 /*
Oleg Nesterovb2c903b2007-10-16 23:27:22 -07001298 * This ->sighand is shared with the CLONE_SIGHAND
1299 * but not CLONE_THREAD task, switch to the new one.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 */
Oleg Nesterovb2c903b2007-10-16 23:27:22 -07001301 newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
1302 if (!newsighand)
1303 return -ENOMEM;
1304
Elena Reshetovad036bda2019-01-18 14:27:26 +02001305 refcount_set(&newsighand->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 memcpy(newsighand->action, oldsighand->action,
1307 sizeof(newsighand->action));
1308
1309 write_lock_irq(&tasklist_lock);
1310 spin_lock(&oldsighand->siglock);
Eric W. Biederman02169152020-03-25 10:00:21 -05001311 rcu_assign_pointer(me->sighand, newsighand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 spin_unlock(&oldsighand->siglock);
1313 write_unlock_irq(&tasklist_lock);
1314
Davide Libenzifba2afa2007-05-10 22:23:13 -07001315 __cleanup_sighand(oldsighand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return 0;
1318}
Oleg Nesterov0840a902007-10-16 23:27:22 -07001319
Arnd Bergmann3756f642017-12-14 15:32:41 -08001320char *__get_task_comm(char *buf, size_t buf_size, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 task_lock(tsk);
Arnd Bergmann3756f642017-12-14 15:32:41 -08001323 strncpy(buf, tsk->comm, buf_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 task_unlock(tsk);
Andrew Morton59714d62008-02-04 22:27:21 -08001325 return buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
Arnd Bergmann3756f642017-12-14 15:32:41 -08001327EXPORT_SYMBOL_GPL(__get_task_comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Al Viro6a6d27d2012-08-21 09:56:33 -04001329/*
1330 * These functions flushes out all traces of the currently running executable
1331 * so that a new one can be started
1332 */
1333
Adrian Hunter82b89772014-05-28 11:45:04 +03001334void __set_task_comm(struct task_struct *tsk, const char *buf, bool exec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
1336 task_lock(tsk);
KAMEZAWA Hiroyuki43d2b112012-01-10 15:08:09 -08001337 trace_task_rename(tsk, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 strlcpy(tsk->comm, buf, sizeof(tsk->comm));
1339 task_unlock(tsk);
Adrian Hunter82b89772014-05-28 11:45:04 +03001340 perf_event_comm(tsk, exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341}
1342
Kees Cooka9208e42017-07-18 15:25:30 -07001343/*
1344 * Calling this is the point of no return. None of the failures will be
1345 * seen by userspace since either the process is already taking a fatal
1346 * signal (via de_thread() or coredump), or will have SEGV raised
Eric W. Biederman13c432b2020-03-19 17:16:12 -05001347 * (after exec_mmap()) by search_binary_handler (see below).
Kees Cooka9208e42017-07-18 15:25:30 -07001348 */
Eric W. Biederman23887772020-05-03 07:54:10 -05001349int begin_new_exec(struct linux_binprm * bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
Eric W. Biederman2ca7be72020-03-25 10:00:07 -05001351 struct task_struct *me = current;
Linus Torvalds221af7f2010-01-28 22:14:42 -08001352 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Eric W. Biederman56305aa2020-05-29 22:00:54 -05001354 /* Once we are committed compute the creds */
1355 retval = bprm_creds_from_file(bprm);
1356 if (retval)
1357 return retval;
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 /*
Eric W. Biederman6834e0b2020-04-04 12:01:37 -05001360 * Ensure all future errors are fatal.
1361 */
1362 bprm->point_of_no_return = true;
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 /*
Eric W. Biederman02169152020-03-25 10:00:21 -05001365 * Make this the only thread in the thread group.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 */
Eric W. Biederman2ca7be72020-03-25 10:00:07 -05001367 retval = de_thread(me);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 if (retval)
1369 goto out;
1370
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001371 /*
1372 * Must be called _before_ exec_mmap() as bprm->mm is
1373 * not visibile until then. This also enables the update
1374 * to be lockless.
1375 */
Matt Helsley925d1c42008-04-29 01:01:36 -07001376 set_mm_exe_file(bprm->mm, bprm->file);
Davidlohr Bueso6e399cd2015-04-16 12:47:59 -07001377
Eric W. Biedermanb8a61c92020-05-14 15:17:40 -05001378 /* If the binary is not readable then enforce mm->dumpable=0 */
Eric W. Biedermanf87d1c92020-05-16 16:29:20 -05001379 would_dump(bprm, bprm->file);
Eric W. Biedermanb8a61c92020-05-14 15:17:40 -05001380 if (bprm->have_execfd)
1381 would_dump(bprm, bprm->executable);
Eric W. Biedermanf87d1c92020-05-16 16:29:20 -05001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 * Release all of the old mmap stuff
1385 */
Oleg Nesterov3c77f842010-11-30 20:55:34 +01001386 acct_arg_size(bprm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 retval = exec_mmap(bprm->mm);
1388 if (retval)
Al Virofd8328b2008-04-22 05:11:59 -04001389 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Kees Cooka9208e42017-07-18 15:25:30 -07001391 bprm->mm = NULL;
Linus Torvalds7ab02af2010-02-02 12:37:44 -08001392
Eric W. Biedermanccf0fa62020-03-25 10:03:21 -05001393#ifdef CONFIG_POSIX_TIMERS
1394 exit_itimers(me->signal);
1395 flush_itimer_signals();
1396#endif
1397
1398 /*
1399 * Make the signal table private.
1400 */
1401 retval = unshare_sighand(me);
1402 if (retval)
Eric W. Biederman89826cc2020-04-02 18:04:54 -05001403 goto out_unlock;
Eric W. Biedermanccf0fa62020-03-25 10:03:21 -05001404
Mathias Krausedac853a2011-06-09 20:05:18 +02001405 set_fs(USER_DS);
Eric W. Biederman2ca7be72020-03-25 10:00:07 -05001406 me->flags &= ~(PF_RANDOMIZE | PF_FORKNOEXEC | PF_KTHREAD |
Zhang Yib88fae62014-01-23 15:55:57 -08001407 PF_NOFREEZE | PF_NO_SETAFFINITY);
Linus Torvalds7ab02af2010-02-02 12:37:44 -08001408 flush_thread();
Eric W. Biederman2ca7be72020-03-25 10:00:07 -05001409 me->personality &= ~bprm->per_clear;
Linus Torvalds7ab02af2010-02-02 12:37:44 -08001410
Aleksa Sarai613cc2b2016-12-21 16:26:24 +11001411 /*
1412 * We have to apply CLOEXEC before we change whether the process is
1413 * dumpable (in setup_new_exec) to avoid a race with a process in userspace
1414 * trying to access the should-be-closed file descriptors of a process
1415 * undergoing exec(2).
1416 */
Eric W. Biederman2ca7be72020-03-25 10:00:07 -05001417 do_close_on_exec(me->files);
Eric W. Biedermandf9e4d22020-05-03 07:15:28 -05001418
Eric W. Biedermandf9e4d22020-05-03 07:15:28 -05001419 if (bprm->secureexec) {
1420 /* Make sure parent cannot signal privileged process. */
1421 me->pdeath_signal = 0;
1422
1423 /*
1424 * For secureexec, reset the stack limit to sane default to
1425 * avoid bad behavior from the prior rlimits. This has to
1426 * happen before arch_pick_mmap_layout(), which examines
1427 * RLIMIT_STACK, but after the point of no return to avoid
1428 * needing to clean up the change on failure.
1429 */
1430 if (bprm->rlim_stack.rlim_cur > _STK_LIM)
1431 bprm->rlim_stack.rlim_cur = _STK_LIM;
1432 }
1433
1434 me->sas_ss_sp = me->sas_ss_size = 0;
1435
1436 /*
1437 * Figure out dumpability. Note that this checking only of current
1438 * is wrong, but userspace depends on it. This should be testing
1439 * bprm->secureexec instead.
1440 */
1441 if (bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP ||
1442 !(uid_eq(current_euid(), current_uid()) &&
1443 gid_eq(current_egid(), current_gid())))
1444 set_dumpable(current->mm, suid_dumpable);
1445 else
1446 set_dumpable(current->mm, SUID_DUMP_USER);
1447
1448 perf_event_exec();
1449 __set_task_comm(me, kbasename(bprm->filename), true);
1450
1451 /* An exec changes our domain. We are no longer part of the thread
1452 group */
1453 WRITE_ONCE(me->self_exec_id, me->self_exec_id + 1);
1454 flush_signal_handlers(me, 0);
1455
1456 /*
1457 * install the new credentials for this executable
1458 */
1459 security_bprm_committing_creds(bprm);
1460
1461 commit_creds(bprm->cred);
1462 bprm->cred = NULL;
1463
1464 /*
1465 * Disable monitoring for regular users
1466 * when executing setuid binaries. Must
1467 * wait until new credentials are committed
1468 * by commit_creds() above
1469 */
1470 if (get_dumpable(me->mm) != SUID_DUMP_USER)
1471 perf_event_exit_task(me);
1472 /*
1473 * cred_guard_mutex must be held at least to this point to prevent
1474 * ptrace_attach() from altering our determination of the task's
1475 * credentials; any time after this it may be unlocked.
1476 */
1477 security_bprm_committed_creds(bprm);
Eric W. Biedermanb8a61c92020-05-14 15:17:40 -05001478
1479 /* Pass the opened binary to the interpreter. */
1480 if (bprm->have_execfd) {
1481 retval = get_unused_fd_flags(0);
1482 if (retval < 0)
1483 goto out_unlock;
1484 fd_install(retval, bprm->executable);
1485 bprm->executable = NULL;
1486 bprm->execfd = retval;
1487 }
Linus Torvalds221af7f2010-01-28 22:14:42 -08001488 return 0;
1489
Eric W. Biederman89826cc2020-04-02 18:04:54 -05001490out_unlock:
1491 mutex_unlock(&me->signal->exec_update_mutex);
Linus Torvalds221af7f2010-01-28 22:14:42 -08001492out:
1493 return retval;
1494}
Eric W. Biederman23887772020-05-03 07:54:10 -05001495EXPORT_SYMBOL(begin_new_exec);
Linus Torvalds221af7f2010-01-28 22:14:42 -08001496
Al Viro1b5d7832011-06-19 12:49:47 -04001497void would_dump(struct linux_binprm *bprm, struct file *file)
1498{
Eric W. Biedermanf84df2a2016-11-16 22:06:51 -06001499 struct inode *inode = file_inode(file);
1500 if (inode_permission(inode, MAY_READ) < 0) {
1501 struct user_namespace *old, *user_ns;
Al Viro1b5d7832011-06-19 12:49:47 -04001502 bprm->interp_flags |= BINPRM_FLAGS_ENFORCE_NONDUMP;
Eric W. Biedermanf84df2a2016-11-16 22:06:51 -06001503
1504 /* Ensure mm->user_ns contains the executable */
1505 user_ns = old = bprm->mm->user_ns;
1506 while ((user_ns != &init_user_ns) &&
1507 !privileged_wrt_inode_uidgid(user_ns, inode))
1508 user_ns = user_ns->parent;
1509
1510 if (old != user_ns) {
1511 bprm->mm->user_ns = get_user_ns(user_ns);
1512 put_user_ns(old);
1513 }
1514 }
Al Viro1b5d7832011-06-19 12:49:47 -04001515}
1516EXPORT_SYMBOL(would_dump);
1517
Linus Torvalds221af7f2010-01-28 22:14:42 -08001518void setup_new_exec(struct linux_binprm * bprm)
1519{
Eric W. Biedermandf9e4d22020-05-03 07:15:28 -05001520 /* Setup things that can depend upon the personality */
Eric W. Biederman7d503fe2020-04-02 18:35:14 -05001521 struct task_struct *me = current;
Kees Cook46d98eb2017-07-18 15:25:27 -07001522
Eric W. Biederman7d503fe2020-04-02 18:35:14 -05001523 arch_pick_mmap_layout(me->mm, &bprm->rlim_stack);
Alan Coxd6e71142005-06-23 00:09:43 -07001524
Kyle Hueye9ea1e72017-03-20 01:16:26 -07001525 arch_setup_new_exec();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Benjamin Herrenschmidt0551fbd2006-02-28 16:59:19 -08001527 /* Set the new mm task size. We have to do that late because it may
1528 * depend on TIF_32BIT which is only updated in flush_thread() on
1529 * some architectures like powerpc
1530 */
Eric W. Biederman7d503fe2020-04-02 18:35:14 -05001531 me->mm->task_size = TASK_SIZE;
Eric W. Biederman7d503fe2020-04-02 18:35:14 -05001532 mutex_unlock(&me->signal->exec_update_mutex);
1533 mutex_unlock(&me->signal->cred_guard_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
Linus Torvalds221af7f2010-01-28 22:14:42 -08001535EXPORT_SYMBOL(setup_new_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Kees Cookb8383832018-04-10 16:34:57 -07001537/* Runs immediately before start_thread() takes over. */
1538void finalize_exec(struct linux_binprm *bprm)
1539{
Kees Cookc31dbb142018-04-10 16:35:01 -07001540 /* Store any stack rlimit changes before starting thread. */
1541 task_lock(current->group_leader);
1542 current->signal->rlim[RLIMIT_STACK] = bprm->rlim_stack;
1543 task_unlock(current->group_leader);
Kees Cookb8383832018-04-10 16:34:57 -07001544}
1545EXPORT_SYMBOL(finalize_exec);
1546
David Howellsa6f76f22008-11-14 10:39:24 +11001547/*
Oleg Nesterova2a84742009-09-05 11:17:13 -07001548 * Prepare credentials and lock ->cred_guard_mutex.
Eric W. Biederman96ecee22020-05-03 06:48:17 -05001549 * setup_new_exec() commits the new creds and drops the lock.
Oleg Nesterova2a84742009-09-05 11:17:13 -07001550 * Or, if exec fails before, free_bprm() should release ->cred and
1551 * and unlock.
1552 */
Chanho Min4addd262018-12-10 16:49:54 +09001553static int prepare_bprm_creds(struct linux_binprm *bprm)
Oleg Nesterova2a84742009-09-05 11:17:13 -07001554{
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07001555 if (mutex_lock_interruptible(&current->signal->cred_guard_mutex))
Oleg Nesterova2a84742009-09-05 11:17:13 -07001556 return -ERESTARTNOINTR;
1557
1558 bprm->cred = prepare_exec_creds();
1559 if (likely(bprm->cred))
1560 return 0;
1561
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07001562 mutex_unlock(&current->signal->cred_guard_mutex);
Oleg Nesterova2a84742009-09-05 11:17:13 -07001563 return -ENOMEM;
1564}
1565
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -08001566static void free_bprm(struct linux_binprm *bprm)
Oleg Nesterova2a84742009-09-05 11:17:13 -07001567{
Eric W. Biedermanf18ac552020-07-10 15:54:54 -05001568 if (bprm->mm) {
1569 acct_arg_size(bprm, 0);
1570 mmput(bprm->mm);
1571 }
Oleg Nesterova2a84742009-09-05 11:17:13 -07001572 free_arg_pages(bprm);
1573 if (bprm->cred) {
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07001574 mutex_unlock(&current->signal->cred_guard_mutex);
Oleg Nesterova2a84742009-09-05 11:17:13 -07001575 abort_creds(bprm->cred);
1576 }
Oleg Nesterov63e46b92014-01-23 15:55:51 -08001577 if (bprm->file) {
1578 allow_write_access(bprm->file);
1579 fput(bprm->file);
1580 }
Eric W. Biedermanb8a61c92020-05-14 15:17:40 -05001581 if (bprm->executable)
1582 fput(bprm->executable);
Kees Cookb66c5982012-12-20 15:05:16 -08001583 /* If a binfmt changed the interp, free it. */
1584 if (bprm->interp != bprm->filename)
1585 kfree(bprm->interp);
Eric W. Biederman60d9ad12020-07-11 08:16:15 -05001586 kfree(bprm->fdpath);
Oleg Nesterova2a84742009-09-05 11:17:13 -07001587 kfree(bprm);
1588}
1589
Eric W. Biederman60d9ad12020-07-11 08:16:15 -05001590static struct linux_binprm *alloc_bprm(int fd, struct filename *filename)
Eric W. Biederman0a8f36e2020-07-10 15:39:45 -05001591{
1592 struct linux_binprm *bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
Eric W. Biederman60d9ad12020-07-11 08:16:15 -05001593 int retval = -ENOMEM;
Eric W. Biederman0a8f36e2020-07-10 15:39:45 -05001594 if (!bprm)
Eric W. Biederman60d9ad12020-07-11 08:16:15 -05001595 goto out;
1596
1597 if (fd == AT_FDCWD || filename->name[0] == '/') {
1598 bprm->filename = filename->name;
1599 } else {
1600 if (filename->name[0] == '\0')
1601 bprm->fdpath = kasprintf(GFP_KERNEL, "/dev/fd/%d", fd);
1602 else
1603 bprm->fdpath = kasprintf(GFP_KERNEL, "/dev/fd/%d/%s",
1604 fd, filename->name);
1605 if (!bprm->fdpath)
1606 goto out_free;
1607
1608 bprm->filename = bprm->fdpath;
1609 }
1610 bprm->interp = bprm->filename;
Eric W. Biedermanf18ac552020-07-10 15:54:54 -05001611
1612 retval = bprm_mm_init(bprm);
1613 if (retval)
1614 goto out_free;
Eric W. Biederman0a8f36e2020-07-10 15:39:45 -05001615 return bprm;
Eric W. Biederman60d9ad12020-07-11 08:16:15 -05001616
1617out_free:
1618 free_bprm(bprm);
1619out:
1620 return ERR_PTR(retval);
Eric W. Biederman0a8f36e2020-07-10 15:39:45 -05001621}
1622
Oleg Nesterovc2315c12017-10-03 16:15:42 -07001623int bprm_change_interp(const char *interp, struct linux_binprm *bprm)
Kees Cookb66c5982012-12-20 15:05:16 -08001624{
1625 /* If a binfmt changed the interp, free it first. */
1626 if (bprm->interp != bprm->filename)
1627 kfree(bprm->interp);
1628 bprm->interp = kstrdup(interp, GFP_KERNEL);
1629 if (!bprm->interp)
1630 return -ENOMEM;
1631 return 0;
1632}
1633EXPORT_SYMBOL(bprm_change_interp);
1634
Oleg Nesterova2a84742009-09-05 11:17:13 -07001635/*
David Howellsa6f76f22008-11-14 10:39:24 +11001636 * determine how safe it is to execute the proposed program
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07001637 * - the caller must hold ->cred_guard_mutex to protect against
Kees Cookc2e1f2e2014-06-05 00:23:17 -07001638 * PTRACE_ATTACH or seccomp thread-sync
David Howellsa6f76f22008-11-14 10:39:24 +11001639 */
Oleg Nesterov9e00cdb2014-01-23 15:55:50 -08001640static void check_unsafe_exec(struct linux_binprm *bprm)
David Howellsa6f76f22008-11-14 10:39:24 +11001641{
David Howells0bf2f3a2009-02-06 11:45:46 +00001642 struct task_struct *p = current, *t;
Al Virof1191b52009-03-30 07:35:18 -04001643 unsigned n_fs;
David Howellsa6f76f22008-11-14 10:39:24 +11001644
Eric W. Biederman9227dd22017-01-23 17:26:31 +13001645 if (p->ptrace)
1646 bprm->unsafe |= LSM_UNSAFE_PTRACE;
David Howellsa6f76f22008-11-14 10:39:24 +11001647
Andy Lutomirski259e5e62012-04-12 16:47:50 -05001648 /*
1649 * This isn't strictly necessary, but it makes it harder for LSMs to
1650 * mess up.
1651 */
Kees Cook1d4457f2014-05-21 15:23:46 -07001652 if (task_no_new_privs(current))
Andy Lutomirski259e5e62012-04-12 16:47:50 -05001653 bprm->unsafe |= LSM_UNSAFE_NO_NEW_PRIVS;
1654
Oleg Nesterov83f62a22014-01-23 15:55:49 -08001655 t = p;
David Howells0bf2f3a2009-02-06 11:45:46 +00001656 n_fs = 1;
Nick Piggin2a4419b2010-08-18 04:37:33 +10001657 spin_lock(&p->fs->lock);
Oleg Nesterov437f7fd2009-04-24 01:02:45 +02001658 rcu_read_lock();
Oleg Nesterov83f62a22014-01-23 15:55:49 -08001659 while_each_thread(p, t) {
David Howells0bf2f3a2009-02-06 11:45:46 +00001660 if (t->fs == p->fs)
1661 n_fs++;
David Howells0bf2f3a2009-02-06 11:45:46 +00001662 }
Oleg Nesterov437f7fd2009-04-24 01:02:45 +02001663 rcu_read_unlock();
David Howells0bf2f3a2009-02-06 11:45:46 +00001664
Oleg Nesterov9e00cdb2014-01-23 15:55:50 -08001665 if (p->fs->users > n_fs)
David Howellsa6f76f22008-11-14 10:39:24 +11001666 bprm->unsafe |= LSM_UNSAFE_SHARE;
Oleg Nesterov9e00cdb2014-01-23 15:55:50 -08001667 else
1668 p->fs->in_exec = 1;
Nick Piggin2a4419b2010-08-18 04:37:33 +10001669 spin_unlock(&p->fs->lock);
David Howellsa6f76f22008-11-14 10:39:24 +11001670}
1671
Eric W. Biederman56305aa2020-05-29 22:00:54 -05001672static void bprm_fill_uid(struct linux_binprm *bprm, struct file *file)
Jann Horn8b01fc82015-04-19 02:48:39 +02001673{
Eric W. Biederman56305aa2020-05-29 22:00:54 -05001674 /* Handle suid and sgid on files */
Jann Horn8b01fc82015-04-19 02:48:39 +02001675 struct inode *inode;
1676 unsigned int mode;
1677 kuid_t uid;
1678 kgid_t gid;
1679
Eric W. Biederman56305aa2020-05-29 22:00:54 -05001680 if (!mnt_may_suid(file->f_path.mnt))
Jann Horn8b01fc82015-04-19 02:48:39 +02001681 return;
1682
1683 if (task_no_new_privs(current))
1684 return;
1685
Eric W. Biederman56305aa2020-05-29 22:00:54 -05001686 inode = file->f_path.dentry->d_inode;
Jann Horn8b01fc82015-04-19 02:48:39 +02001687 mode = READ_ONCE(inode->i_mode);
1688 if (!(mode & (S_ISUID|S_ISGID)))
1689 return;
1690
1691 /* Be careful if suid/sgid is set */
Al Viro59551022016-01-22 15:40:57 -05001692 inode_lock(inode);
Jann Horn8b01fc82015-04-19 02:48:39 +02001693
1694 /* reload atomically mode/uid/gid now that lock held */
1695 mode = inode->i_mode;
1696 uid = inode->i_uid;
1697 gid = inode->i_gid;
Al Viro59551022016-01-22 15:40:57 -05001698 inode_unlock(inode);
Jann Horn8b01fc82015-04-19 02:48:39 +02001699
1700 /* We ignore suid/sgid if there are no mappings for them in the ns */
1701 if (!kuid_has_mapping(bprm->cred->user_ns, uid) ||
1702 !kgid_has_mapping(bprm->cred->user_ns, gid))
1703 return;
1704
1705 if (mode & S_ISUID) {
1706 bprm->per_clear |= PER_CLEAR_ON_SETID;
1707 bprm->cred->euid = uid;
1708 }
1709
1710 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
1711 bprm->per_clear |= PER_CLEAR_ON_SETID;
1712 bprm->cred->egid = gid;
1713 }
1714}
1715
Oleg Nesterov9e00cdb2014-01-23 15:55:50 -08001716/*
Eric W. Biederman56305aa2020-05-29 22:00:54 -05001717 * Compute brpm->cred based upon the final binary.
1718 */
1719static int bprm_creds_from_file(struct linux_binprm *bprm)
1720{
1721 /* Compute creds based on which file? */
1722 struct file *file = bprm->execfd_creds ? bprm->executable : bprm->file;
1723
1724 bprm_fill_uid(bprm, file);
1725 return security_bprm_creds_from_file(bprm, file);
1726}
1727
1728/*
Oleg Nesterov9e00cdb2014-01-23 15:55:50 -08001729 * Fill the binprm structure from the inode.
Eric W. Biederman56305aa2020-05-29 22:00:54 -05001730 * Read the first BINPRM_BUF_SIZE bytes
David Howellsa6f76f22008-11-14 10:39:24 +11001731 *
1732 * This may be called multiple times for binary chains (scripts for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 */
Eric W. Biederman8b72ca92020-05-13 22:25:20 -05001734static int prepare_binprm(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
Christoph Hellwigbdd1d2d2017-09-01 17:39:13 +02001736 loff_t pos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
David Howellsa6f76f22008-11-14 10:39:24 +11001738 memset(bprm->buf, 0, BINPRM_BUF_SIZE);
Christoph Hellwigbdd1d2d2017-09-01 17:39:13 +02001739 return kernel_read(bprm->file, bprm->buf, BINPRM_BUF_SIZE, &pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
1741
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001742/*
1743 * Arguments are '\0' separated strings found at the location bprm->p
1744 * points to; chop off the first by relocating brpm->p to right after
1745 * the first '\0' encountered.
1746 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001747int remove_arg_zero(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001749 int ret = 0;
1750 unsigned long offset;
1751 char *kaddr;
1752 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001754 if (!bprm->argc)
1755 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001757 do {
1758 offset = bprm->p & ~PAGE_MASK;
1759 page = get_arg_page(bprm, bprm->p, 0);
1760 if (!page) {
1761 ret = -EFAULT;
1762 goto out;
1763 }
Cong Wange8e3c3d2011-11-25 23:14:27 +08001764 kaddr = kmap_atomic(page);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001765
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001766 for (; offset < PAGE_SIZE && kaddr[offset];
1767 offset++, bprm->p++)
1768 ;
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001769
Cong Wange8e3c3d2011-11-25 23:14:27 +08001770 kunmap_atomic(kaddr);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001771 put_arg_page(page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001772 } while (offset == PAGE_SIZE);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001773
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001774 bprm->p++;
1775 bprm->argc--;
1776 ret = 0;
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001777
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001778out:
1779 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781EXPORT_SYMBOL(remove_arg_zero);
1782
Oleg Nesterovcb7b6b12013-09-11 14:24:44 -07001783#define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784/*
1785 * cycle the list of binary formats handler, until one recognizes the image
1786 */
Eric W. Biedermanbc2bf332020-05-18 18:43:20 -05001787static int search_binary_handler(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
Oleg Nesterovcb7b6b12013-09-11 14:24:44 -07001789 bool need_retry = IS_ENABLED(CONFIG_MODULES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 struct linux_binfmt *fmt;
Oleg Nesterovcb7b6b12013-09-11 14:24:44 -07001791 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Eric W. Biederman8b72ca92020-05-13 22:25:20 -05001793 retval = prepare_binprm(bprm);
1794 if (retval < 0)
1795 return retval;
Kees Cookd7402692012-12-17 16:03:20 -08001796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 retval = security_bprm_check(bprm);
1798 if (retval)
1799 return retval;
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 retval = -ENOENT;
Oleg Nesterovcb7b6b12013-09-11 14:24:44 -07001802 retry:
1803 read_lock(&binfmt_lock);
1804 list_for_each_entry(fmt, &formats, lh) {
1805 if (!try_module_get(fmt->module))
1806 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 read_unlock(&binfmt_lock);
Alexey Dobriyand53ddd02019-05-14 15:44:37 -07001808
Oleg Nesterovcb7b6b12013-09-11 14:24:44 -07001809 retval = fmt->load_binary(bprm);
Alexey Dobriyand53ddd02019-05-14 15:44:37 -07001810
Oleg Nesterovcb7b6b12013-09-11 14:24:44 -07001811 read_lock(&binfmt_lock);
1812 put_binfmt(fmt);
Eric W. Biedermanbc2bf332020-05-18 18:43:20 -05001813 if (bprm->point_of_no_return || (retval != -ENOEXEC)) {
Al Viro19d860a2014-05-04 20:11:36 -04001814 read_unlock(&binfmt_lock);
1815 return retval;
1816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
Oleg Nesterovcb7b6b12013-09-11 14:24:44 -07001818 read_unlock(&binfmt_lock);
1819
Al Viro19d860a2014-05-04 20:11:36 -04001820 if (need_retry) {
Oleg Nesterovcb7b6b12013-09-11 14:24:44 -07001821 if (printable(bprm->buf[0]) && printable(bprm->buf[1]) &&
1822 printable(bprm->buf[2]) && printable(bprm->buf[3]))
1823 return retval;
Oleg Nesterov4e0621a2013-09-11 14:24:45 -07001824 if (request_module("binfmt-%04x", *(ushort *)(bprm->buf + 2)) < 0)
1825 return retval;
Oleg Nesterovcb7b6b12013-09-11 14:24:44 -07001826 need_retry = false;
1827 goto retry;
1828 }
1829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 return retval;
1831}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Oleg Nesterov5d1baf32013-09-11 14:24:38 -07001833static int exec_binprm(struct linux_binprm *bprm)
1834{
1835 pid_t old_pid, old_vpid;
Eric W. Biedermanbc2bf332020-05-18 18:43:20 -05001836 int ret, depth;
Oleg Nesterov5d1baf32013-09-11 14:24:38 -07001837
1838 /* Need to fetch pid before load_binary changes it */
1839 old_pid = current->pid;
1840 rcu_read_lock();
1841 old_vpid = task_pid_nr_ns(current, task_active_pid_ns(current->parent));
1842 rcu_read_unlock();
1843
Eric W. Biedermanbc2bf332020-05-18 18:43:20 -05001844 /* This allows 4 levels of binfmt rewrites before failing hard. */
1845 for (depth = 0;; depth++) {
1846 struct file *exec;
1847 if (depth > 5)
1848 return -ELOOP;
1849
1850 ret = search_binary_handler(bprm);
1851 if (ret < 0)
1852 return ret;
1853 if (!bprm->interpreter)
1854 break;
1855
1856 exec = bprm->file;
1857 bprm->file = bprm->interpreter;
1858 bprm->interpreter = NULL;
1859
1860 allow_write_access(exec);
1861 if (unlikely(bprm->have_execfd)) {
1862 if (bprm->executable) {
1863 fput(exec);
1864 return -ENOEXEC;
1865 }
1866 bprm->executable = exec;
1867 } else
1868 fput(exec);
Oleg Nesterov5d1baf32013-09-11 14:24:38 -07001869 }
1870
Eric W. Biedermanbc2bf332020-05-18 18:43:20 -05001871 audit_bprm(bprm);
1872 trace_sched_process_exec(current, old_pid, bprm);
1873 ptrace_event(PTRACE_EVENT_EXEC, old_vpid);
1874 proc_exec_connector(current);
1875 return 0;
Oleg Nesterov5d1baf32013-09-11 14:24:38 -07001876}
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878/*
1879 * sys_execve() executes a new program.
1880 */
Eric W. Biederman0c9cdff2020-07-12 07:17:50 -05001881static int bprm_execve(struct linux_binprm *bprm,
1882 int fd, struct filename *filename, int flags)
1883{
1884 struct file *file;
1885 struct files_struct *displaced;
1886 int retval;
1887
1888 retval = unshare_files(&displaced);
1889 if (retval)
1890 return retval;
1891
1892 retval = prepare_bprm_creds(bprm);
1893 if (retval)
1894 goto out_files;
1895
1896 check_unsafe_exec(bprm);
1897 current->in_execve = 1;
1898
1899 file = do_open_execat(fd, filename, flags);
1900 retval = PTR_ERR(file);
1901 if (IS_ERR(file))
1902 goto out_unmark;
1903
1904 sched_exec();
1905
1906 bprm->file = file;
1907 /*
1908 * Record that a name derived from an O_CLOEXEC fd will be
1909 * inaccessible after exec. Relies on having exclusive access to
1910 * current->files (due to unshare_files above).
1911 */
1912 if (bprm->fdpath &&
1913 close_on_exec(fd, rcu_dereference_raw(current->files->fdt)))
1914 bprm->interp_flags |= BINPRM_FLAGS_PATH_INACCESSIBLE;
1915
1916 /* Set the unchanging part of bprm->cred */
1917 retval = security_bprm_creds_for_exec(bprm);
1918 if (retval)
1919 goto out;
1920
1921 retval = exec_binprm(bprm);
1922 if (retval < 0)
1923 goto out;
1924
1925 /* execve succeeded */
1926 current->fs->in_exec = 0;
1927 current->in_execve = 0;
1928 rseq_execve(current);
1929 acct_update_integrals(current);
1930 task_numa_free(current, false);
1931 if (displaced)
1932 put_files_struct(displaced);
1933 return retval;
1934
1935out:
1936 /*
1937 * If past the point of no return ensure the the code never
1938 * returns to the userspace process. Use an existing fatal
1939 * signal if present otherwise terminate the process with
1940 * SIGSEGV.
1941 */
1942 if (bprm->point_of_no_return && !fatal_signal_pending(current))
1943 force_sigsegv(SIGSEGV);
1944
1945out_unmark:
1946 current->fs->in_exec = 0;
1947 current->in_execve = 0;
1948
1949out_files:
1950 if (displaced)
1951 reset_files_struct(displaced);
1952
1953 return retval;
1954}
1955
Eric W. Biederman25cf3362020-06-25 13:56:40 -05001956static int do_execveat_common(int fd, struct filename *filename,
1957 struct user_arg_ptr argv,
1958 struct user_arg_ptr envp,
1959 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960{
1961 struct linux_binprm *bprm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 int retval;
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +04001963
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -08001964 if (IS_ERR(filename))
1965 return PTR_ERR(filename);
1966
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +04001967 /*
1968 * We move the actual failure in case of RLIMIT_NPROC excess from
1969 * set*uid() to execve() because too many poorly written programs
1970 * don't check setuid() return code. Here we additionally recheck
1971 * whether NPROC limit is still exceeded.
1972 */
1973 if ((current->flags & PF_NPROC_EXCEEDED) &&
Oleg Nesterovbd9d43f2013-07-03 15:08:34 -07001974 atomic_read(&current_user()->processes) > rlimit(RLIMIT_NPROC)) {
Vasiliy Kulikov72fa5992011-08-08 19:02:04 +04001975 retval = -EAGAIN;
1976 goto out_ret;
1977 }
1978
1979 /* We're below the limit (still or again), so we don't want to make
1980 * further execve() calls fail. */
1981 current->flags &= ~PF_NPROC_EXCEEDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Eric W. Biederman60d9ad12020-07-11 08:16:15 -05001983 bprm = alloc_bprm(fd, filename);
Eric W. Biederman0a8f36e2020-07-10 15:39:45 -05001984 if (IS_ERR(bprm)) {
1985 retval = PTR_ERR(bprm);
1986 goto out_ret;
1987 }
1988
Eric W. Biedermand8b9cd52020-07-12 08:23:54 -05001989 retval = count(argv, MAX_ARG_STRINGS);
1990 if (retval < 0)
1991 goto out_free;
1992 bprm->argc = retval;
1993
1994 retval = count(envp, MAX_ARG_STRINGS);
1995 if (retval < 0)
1996 goto out_free;
1997 bprm->envc = retval;
1998
1999 retval = bprm_stack_limits(bprm);
Oleg Nesterov655c16a2019-01-03 15:28:11 -08002000 if (retval < 0)
Eric W. Biederman0c9cdff2020-07-12 07:17:50 -05002001 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Christoph Hellwig986db2d2020-06-04 16:51:14 -07002003 retval = copy_string_kernel(bprm->filename, bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 if (retval < 0)
Eric W. Biederman0c9cdff2020-07-12 07:17:50 -05002005 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 bprm->exec = bprm->p;
Eric W. Biederman0c9cdff2020-07-12 07:17:50 -05002007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 retval = copy_strings(bprm->envc, envp, bprm);
2009 if (retval < 0)
Eric W. Biederman0c9cdff2020-07-12 07:17:50 -05002010 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
2012 retval = copy_strings(bprm->argc, argv, bprm);
2013 if (retval < 0)
Eric W. Biederman0c9cdff2020-07-12 07:17:50 -05002014 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Eric W. Biederman0c9cdff2020-07-12 07:17:50 -05002016 retval = bprm_execve(bprm, fd, filename, flags);
David Howellsa6f76f22008-11-14 10:39:24 +11002017out_free:
Al Viro08a6fac2008-05-10 16:38:25 -04002018 free_bprm(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020out_ret:
Eric W. Biederman25cf3362020-06-25 13:56:40 -05002021 putname(filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 return retval;
2023}
2024
Eric W. Biedermanbe619f72020-07-13 12:06:48 -05002025int kernel_execve(const char *kernel_filename,
2026 const char *const *argv, const char *const *envp)
2027{
2028 struct filename *filename;
2029 struct linux_binprm *bprm;
2030 int fd = AT_FDCWD;
2031 int retval;
2032
2033 filename = getname_kernel(kernel_filename);
2034 if (IS_ERR(filename))
2035 return PTR_ERR(filename);
2036
2037 bprm = alloc_bprm(fd, filename);
2038 if (IS_ERR(bprm)) {
2039 retval = PTR_ERR(bprm);
2040 goto out_ret;
2041 }
2042
2043 retval = count_strings_kernel(argv);
2044 if (retval < 0)
2045 goto out_free;
2046 bprm->argc = retval;
2047
2048 retval = count_strings_kernel(envp);
2049 if (retval < 0)
2050 goto out_free;
2051 bprm->envc = retval;
2052
2053 retval = bprm_stack_limits(bprm);
2054 if (retval < 0)
2055 goto out_free;
2056
2057 retval = copy_string_kernel(bprm->filename, bprm);
2058 if (retval < 0)
2059 goto out_free;
2060 bprm->exec = bprm->p;
2061
2062 retval = copy_strings_kernel(bprm->envc, envp, bprm);
2063 if (retval < 0)
2064 goto out_free;
2065
2066 retval = copy_strings_kernel(bprm->argc, argv, bprm);
2067 if (retval < 0)
2068 goto out_free;
2069
2070 retval = bprm_execve(bprm, fd, filename, 0);
2071out_free:
2072 free_bprm(bprm);
2073out_ret:
2074 putname(filename);
2075 return retval;
2076}
2077
2078static int do_execve(struct filename *filename,
Oleg Nesterovba2d01622011-03-06 18:02:37 +01002079 const char __user *const __user *__argv,
Al Viroda3d4c52012-10-20 21:49:33 -04002080 const char __user *const __user *__envp)
Oleg Nesterovba2d01622011-03-06 18:02:37 +01002081{
Oleg Nesterov0e028462011-03-06 18:02:54 +01002082 struct user_arg_ptr argv = { .ptr.native = __argv };
2083 struct user_arg_ptr envp = { .ptr.native = __envp };
David Drysdale51f39a12014-12-12 16:57:29 -08002084 return do_execveat_common(AT_FDCWD, filename, argv, envp, 0);
2085}
2086
Eric W. Biedermanbe619f72020-07-13 12:06:48 -05002087static int do_execveat(int fd, struct filename *filename,
David Drysdale51f39a12014-12-12 16:57:29 -08002088 const char __user *const __user *__argv,
2089 const char __user *const __user *__envp,
2090 int flags)
2091{
2092 struct user_arg_ptr argv = { .ptr.native = __argv };
2093 struct user_arg_ptr envp = { .ptr.native = __envp };
2094
2095 return do_execveat_common(fd, filename, argv, envp, flags);
Oleg Nesterovba2d01622011-03-06 18:02:37 +01002096}
2097
Oleg Nesterov0e028462011-03-06 18:02:54 +01002098#ifdef CONFIG_COMPAT
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -08002099static int compat_do_execve(struct filename *filename,
Al Viro38b983b2012-09-30 13:38:55 -04002100 const compat_uptr_t __user *__argv,
Al Virod03d26e2012-10-20 21:46:25 -04002101 const compat_uptr_t __user *__envp)
Oleg Nesterov0e028462011-03-06 18:02:54 +01002102{
2103 struct user_arg_ptr argv = {
2104 .is_compat = true,
2105 .ptr.compat = __argv,
2106 };
2107 struct user_arg_ptr envp = {
2108 .is_compat = true,
2109 .ptr.compat = __envp,
2110 };
David Drysdale51f39a12014-12-12 16:57:29 -08002111 return do_execveat_common(AT_FDCWD, filename, argv, envp, 0);
2112}
2113
2114static int compat_do_execveat(int fd, struct filename *filename,
2115 const compat_uptr_t __user *__argv,
2116 const compat_uptr_t __user *__envp,
2117 int flags)
2118{
2119 struct user_arg_ptr argv = {
2120 .is_compat = true,
2121 .ptr.compat = __argv,
2122 };
2123 struct user_arg_ptr envp = {
2124 .is_compat = true,
2125 .ptr.compat = __envp,
2126 };
2127 return do_execveat_common(fd, filename, argv, envp, flags);
Oleg Nesterov0e028462011-03-06 18:02:54 +01002128}
2129#endif
2130
Oleg Nesterov964ee7d2009-09-23 15:56:59 -07002131void set_binfmt(struct linux_binfmt *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07002133 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07002135 if (mm->binfmt)
2136 module_put(mm->binfmt->module);
2137
2138 mm->binfmt = new;
Oleg Nesterov964ee7d2009-09-23 15:56:59 -07002139 if (new)
2140 __module_get(new->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142EXPORT_SYMBOL(set_binfmt);
2143
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07002144/*
Oleg Nesterov7288e112014-01-23 15:55:32 -08002145 * set_dumpable stores three-value SUID_DUMP_* into mm->flags.
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07002146 */
2147void set_dumpable(struct mm_struct *mm, int value)
2148{
Oleg Nesterov7288e112014-01-23 15:55:32 -08002149 if (WARN_ON((unsigned)value > SUID_DUMP_ROOT))
2150 return;
2151
Vineet Gupta26e15222019-03-07 16:29:23 -08002152 set_mask_bits(&mm->flags, MMF_DUMPABLE_MASK, value);
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07002153}
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07002154
Al Viro38b983b2012-09-30 13:38:55 -04002155SYSCALL_DEFINE3(execve,
2156 const char __user *, filename,
2157 const char __user *const __user *, argv,
2158 const char __user *const __user *, envp)
2159{
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -08002160 return do_execve(getname(filename), argv, envp);
Al Viro38b983b2012-09-30 13:38:55 -04002161}
David Drysdale51f39a12014-12-12 16:57:29 -08002162
2163SYSCALL_DEFINE5(execveat,
2164 int, fd, const char __user *, filename,
2165 const char __user *const __user *, argv,
2166 const char __user *const __user *, envp,
2167 int, flags)
2168{
2169 int lookup_flags = (flags & AT_EMPTY_PATH) ? LOOKUP_EMPTY : 0;
2170
2171 return do_execveat(fd,
2172 getname_flags(filename, lookup_flags, NULL),
2173 argv, envp, flags);
2174}
2175
Al Viro38b983b2012-09-30 13:38:55 -04002176#ifdef CONFIG_COMPAT
Heiko Carstens625b1d72014-03-04 10:53:50 +01002177COMPAT_SYSCALL_DEFINE3(execve, const char __user *, filename,
2178 const compat_uptr_t __user *, argv,
2179 const compat_uptr_t __user *, envp)
Al Viro38b983b2012-09-30 13:38:55 -04002180{
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -08002181 return compat_do_execve(getname(filename), argv, envp);
Al Viro38b983b2012-09-30 13:38:55 -04002182}
David Drysdale51f39a12014-12-12 16:57:29 -08002183
2184COMPAT_SYSCALL_DEFINE5(execveat, int, fd,
2185 const char __user *, filename,
2186 const compat_uptr_t __user *, argv,
2187 const compat_uptr_t __user *, envp,
2188 int, flags)
2189{
2190 int lookup_flags = (flags & AT_EMPTY_PATH) ? LOOKUP_EMPTY : 0;
2191
2192 return compat_do_execveat(fd,
2193 getname_flags(filename, lookup_flags, NULL),
2194 argv, envp, flags);
2195}
Al Viro38b983b2012-09-30 13:38:55 -04002196#endif