]>
Commit | Line | Data |
---|---|---|
457c8996 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
1da177e4 LT |
2 | /* |
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 | |
613cc2b6 | 23 | * formats. |
1da177e4 LT |
24 | */ |
25 | ||
1da177e4 LT |
26 | #include <linux/slab.h> |
27 | #include <linux/file.h> | |
9f3acc31 | 28 | #include <linux/fdtable.h> |
ba92a43d | 29 | #include <linux/mm.h> |
615d6e87 | 30 | #include <linux/vmacache.h> |
1da177e4 LT |
31 | #include <linux/stat.h> |
32 | #include <linux/fcntl.h> | |
ba92a43d | 33 | #include <linux/swap.h> |
74aadce9 | 34 | #include <linux/string.h> |
1da177e4 | 35 | #include <linux/init.h> |
6e84f315 | 36 | #include <linux/sched/mm.h> |
f7ccbae4 | 37 | #include <linux/sched/coredump.h> |
3f07c014 | 38 | #include <linux/sched/signal.h> |
6a3827d7 | 39 | #include <linux/sched/numa_balancing.h> |
29930025 | 40 | #include <linux/sched/task.h> |
ca5b172b | 41 | #include <linux/pagemap.h> |
cdd6c482 | 42 | #include <linux/perf_event.h> |
1da177e4 LT |
43 | #include <linux/highmem.h> |
44 | #include <linux/spinlock.h> | |
45 | #include <linux/key.h> | |
46 | #include <linux/personality.h> | |
47 | #include <linux/binfmts.h> | |
1da177e4 | 48 | #include <linux/utsname.h> |
84d73786 | 49 | #include <linux/pid_namespace.h> |
1da177e4 LT |
50 | #include <linux/module.h> |
51 | #include <linux/namei.h> | |
1da177e4 LT |
52 | #include <linux/mount.h> |
53 | #include <linux/security.h> | |
54 | #include <linux/syscalls.h> | |
8f0ab514 | 55 | #include <linux/tsacct_kern.h> |
9f46080c | 56 | #include <linux/cn_proc.h> |
473ae30b | 57 | #include <linux/audit.h> |
6341c393 | 58 | #include <linux/tracehook.h> |
5f4123be | 59 | #include <linux/kmod.h> |
6110e3ab | 60 | #include <linux/fsnotify.h> |
5ad4e53b | 61 | #include <linux/fs_struct.h> |
3d5992d2 | 62 | #include <linux/oom.h> |
0e028465 | 63 | #include <linux/compat.h> |
b44a7dfc | 64 | #include <linux/vmalloc.h> |
1da177e4 | 65 | |
7c0f6ba6 | 66 | #include <linux/uaccess.h> |
1da177e4 | 67 | #include <asm/mmu_context.h> |
b6a2fea3 | 68 | #include <asm/tlb.h> |
43d2b113 KH |
69 | |
70 | #include <trace/events/task.h> | |
a6f76f23 | 71 | #include "internal.h" |
1da177e4 | 72 | |
4ff16c25 DS |
73 | #include <trace/events/sched.h> |
74 | ||
56305aa9 EB |
75 | static int bprm_creds_from_file(struct linux_binprm *bprm); |
76 | ||
d6e71144 AC |
77 | int suid_dumpable = 0; |
78 | ||
e4dc1b14 | 79 | static LIST_HEAD(formats); |
1da177e4 LT |
80 | static DEFINE_RWLOCK(binfmt_lock); |
81 | ||
8fc3dc5a | 82 | void __register_binfmt(struct linux_binfmt * fmt, int insert) |
1da177e4 | 83 | { |
8fc3dc5a | 84 | BUG_ON(!fmt); |
92eaa565 ON |
85 | if (WARN_ON(!fmt->load_binary)) |
86 | return; | |
1da177e4 | 87 | write_lock(&binfmt_lock); |
74641f58 IK |
88 | insert ? list_add(&fmt->lh, &formats) : |
89 | list_add_tail(&fmt->lh, &formats); | |
1da177e4 | 90 | write_unlock(&binfmt_lock); |
1da177e4 LT |
91 | } |
92 | ||
74641f58 | 93 | EXPORT_SYMBOL(__register_binfmt); |
1da177e4 | 94 | |
f6b450d4 | 95 | void unregister_binfmt(struct linux_binfmt * fmt) |
1da177e4 | 96 | { |
1da177e4 | 97 | write_lock(&binfmt_lock); |
e4dc1b14 | 98 | list_del(&fmt->lh); |
1da177e4 | 99 | write_unlock(&binfmt_lock); |
1da177e4 LT |
100 | } |
101 | ||
102 | EXPORT_SYMBOL(unregister_binfmt); | |
103 | ||
104 | static inline void put_binfmt(struct linux_binfmt * fmt) | |
105 | { | |
106 | module_put(fmt->module); | |
107 | } | |
108 | ||
90f8572b EB |
109 | bool 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 | ||
69369a70 | 115 | #ifdef CONFIG_USELIB |
1da177e4 LT |
116 | /* |
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 | */ | |
1e7bfb21 | 122 | SYSCALL_DEFINE1(uselib, const char __user *, library) |
1da177e4 | 123 | { |
72c2d531 | 124 | struct linux_binfmt *fmt; |
964bd183 | 125 | struct file *file; |
91a27b2a | 126 | struct filename *tmp = getname(library); |
964bd183 | 127 | int error = PTR_ERR(tmp); |
47c805dc AV |
128 | static const struct open_flags uselib_flags = { |
129 | .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC, | |
62fb4a15 | 130 | .acc_mode = MAY_READ | MAY_EXEC, |
f9652e10 AV |
131 | .intent = LOOKUP_OPEN, |
132 | .lookup_flags = LOOKUP_FOLLOW, | |
47c805dc | 133 | }; |
964bd183 | 134 | |
6e8341a1 AV |
135 | if (IS_ERR(tmp)) |
136 | goto out; | |
137 | ||
f9652e10 | 138 | file = do_filp_open(AT_FDCWD, tmp, &uselib_flags); |
6e8341a1 AV |
139 | putname(tmp); |
140 | error = PTR_ERR(file); | |
141 | if (IS_ERR(file)) | |
1da177e4 LT |
142 | goto out; |
143 | ||
144 | error = -EINVAL; | |
496ad9aa | 145 | if (!S_ISREG(file_inode(file)->i_mode)) |
1da177e4 LT |
146 | goto exit; |
147 | ||
30524472 | 148 | error = -EACCES; |
90f8572b | 149 | if (path_noexec(&file->f_path)) |
1da177e4 LT |
150 | goto exit; |
151 | ||
2a12a9d7 | 152 | fsnotify_open(file); |
6110e3ab | 153 | |
1da177e4 | 154 | error = -ENOEXEC; |
1da177e4 | 155 | |
72c2d531 AV |
156 | 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; | |
1da177e4 | 162 | read_unlock(&binfmt_lock); |
72c2d531 AV |
163 | error = fmt->load_shlib(file); |
164 | read_lock(&binfmt_lock); | |
165 | put_binfmt(fmt); | |
166 | if (error != -ENOEXEC) | |
167 | break; | |
1da177e4 | 168 | } |
72c2d531 | 169 | read_unlock(&binfmt_lock); |
6e8341a1 | 170 | exit: |
1da177e4 LT |
171 | fput(file); |
172 | out: | |
173 | return error; | |
1da177e4 | 174 | } |
69369a70 | 175 | #endif /* #ifdef CONFIG_USELIB */ |
1da177e4 | 176 | |
b6a2fea3 | 177 | #ifdef CONFIG_MMU |
ae6b585e ON |
178 | /* |
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 | */ | |
0e028465 | 184 | static void acct_arg_size(struct linux_binprm *bprm, unsigned long pages) |
3c77f845 ON |
185 | { |
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; | |
3c77f845 | 193 | add_mm_counter(mm, MM_ANONPAGES, diff); |
3c77f845 ON |
194 | } |
195 | ||
0e028465 | 196 | static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos, |
b6a2fea3 OW |
197 | int write) |
198 | { | |
199 | struct page *page; | |
200 | int ret; | |
9beae1ea | 201 | unsigned int gup_flags = FOLL_FORCE; |
b6a2fea3 OW |
202 | |
203 | #ifdef CONFIG_STACK_GROWSUP | |
204 | if (write) { | |
d05f3169 | 205 | ret = expand_downwards(bprm->vma, pos); |
b6a2fea3 OW |
206 | if (ret < 0) |
207 | return NULL; | |
208 | } | |
209 | #endif | |
9beae1ea LS |
210 | |
211 | if (write) | |
212 | gup_flags |= FOLL_WRITE; | |
213 | ||
1e987790 DH |
214 | /* |
215 | * We are doing an exec(). 'current' is the process | |
216 | * doing the exec and bprm->mm is the new process's mm. | |
217 | */ | |
9beae1ea | 218 | ret = get_user_pages_remote(current, bprm->mm, pos, 1, gup_flags, |
5b56d49f | 219 | &page, NULL, NULL); |
b6a2fea3 OW |
220 | if (ret <= 0) |
221 | return NULL; | |
222 | ||
655c16a8 ON |
223 | if (write) |
224 | acct_arg_size(bprm, vma_pages(bprm->vma)); | |
b6a2fea3 OW |
225 | |
226 | return page; | |
227 | } | |
228 | ||
229 | static void put_arg_page(struct page *page) | |
230 | { | |
231 | put_page(page); | |
232 | } | |
233 | ||
b6a2fea3 OW |
234 | static void free_arg_pages(struct linux_binprm *bprm) |
235 | { | |
236 | } | |
237 | ||
238 | static 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 | ||
244 | static int __bprm_mm_init(struct linux_binprm *bprm) | |
245 | { | |
eaccbfa5 | 246 | int err; |
b6a2fea3 OW |
247 | struct vm_area_struct *vma = NULL; |
248 | struct mm_struct *mm = bprm->mm; | |
249 | ||
490fc053 | 250 | bprm->vma = vma = vm_area_alloc(mm); |
b6a2fea3 | 251 | if (!vma) |
eaccbfa5 | 252 | return -ENOMEM; |
bfd40eaf | 253 | vma_set_anonymous(vma); |
b6a2fea3 | 254 | |
d8ed45c5 | 255 | if (mmap_write_lock_killable(mm)) { |
f268dfe9 MH |
256 | err = -EINTR; |
257 | goto err_free; | |
258 | } | |
b6a2fea3 OW |
259 | |
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 | */ | |
aacb3d17 | 266 | BUILD_BUG_ON(VM_STACK_FLAGS & VM_STACK_INCOMPLETE_SETUP); |
b6a2fea3 OW |
267 | vma->vm_end = STACK_TOP_MAX; |
268 | vma->vm_start = vma->vm_end - PAGE_SIZE; | |
d9104d1c | 269 | vma->vm_flags = VM_SOFTDIRTY | VM_STACK_FLAGS | VM_STACK_INCOMPLETE_SETUP; |
3ed75eb8 | 270 | vma->vm_page_prot = vm_get_page_prot(vma->vm_flags); |
462e635e | 271 | |
b6a2fea3 | 272 | err = insert_vm_struct(mm, vma); |
eaccbfa5 | 273 | if (err) |
b6a2fea3 | 274 | goto err; |
b6a2fea3 OW |
275 | |
276 | mm->stack_vm = mm->total_vm = 1; | |
d8ed45c5 | 277 | mmap_write_unlock(mm); |
b6a2fea3 | 278 | bprm->p = vma->vm_end - sizeof(void *); |
b6a2fea3 | 279 | return 0; |
b6a2fea3 | 280 | err: |
d8ed45c5 | 281 | mmap_write_unlock(mm); |
f268dfe9 | 282 | err_free: |
eaccbfa5 | 283 | bprm->vma = NULL; |
3928d4f5 | 284 | vm_area_free(vma); |
b6a2fea3 OW |
285 | return err; |
286 | } | |
287 | ||
288 | static bool valid_arg_len(struct linux_binprm *bprm, long len) | |
289 | { | |
290 | return len <= MAX_ARG_STRLEN; | |
291 | } | |
292 | ||
293 | #else | |
294 | ||
0e028465 | 295 | static inline void acct_arg_size(struct linux_binprm *bprm, unsigned long pages) |
3c77f845 ON |
296 | { |
297 | } | |
298 | ||
0e028465 | 299 | static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos, |
b6a2fea3 OW |
300 | 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 | ||
315 | static void put_arg_page(struct page *page) | |
316 | { | |
317 | } | |
318 | ||
319 | static 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 | ||
327 | static 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 | ||
335 | static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos, | |
336 | struct page *page) | |
337 | { | |
338 | } | |
339 | ||
340 | static int __bprm_mm_init(struct linux_binprm *bprm) | |
341 | { | |
342 | bprm->p = PAGE_SIZE * MAX_ARG_PAGES - sizeof(void *); | |
343 | return 0; | |
344 | } | |
345 | ||
346 | static 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 | */ | |
9cc64cea | 359 | static int bprm_mm_init(struct linux_binprm *bprm) |
b6a2fea3 OW |
360 | { |
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 | ||
c31dbb14 KC |
369 | /* 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 | ||
b6a2fea3 OW |
374 | err = __bprm_mm_init(bprm); |
375 | if (err) | |
376 | goto err; | |
377 | ||
378 | return 0; | |
379 | ||
380 | err: | |
381 | if (mm) { | |
382 | bprm->mm = NULL; | |
383 | mmdrop(mm); | |
384 | } | |
385 | ||
386 | return err; | |
387 | } | |
388 | ||
ba2d0162 | 389 | struct user_arg_ptr { |
0e028465 ON |
390 | #ifdef CONFIG_COMPAT |
391 | bool is_compat; | |
392 | #endif | |
393 | union { | |
394 | const char __user *const __user *native; | |
395 | #ifdef CONFIG_COMPAT | |
38b983b3 | 396 | const compat_uptr_t __user *compat; |
0e028465 ON |
397 | #endif |
398 | } ptr; | |
ba2d0162 ON |
399 | }; |
400 | ||
401 | static const char __user *get_user_arg_ptr(struct user_arg_ptr argv, int nr) | |
1d1dbf81 | 402 | { |
0e028465 ON |
403 | const char __user *native; |
404 | ||
405 | #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); | |
1d1dbf81 | 411 | |
0e028465 ON |
412 | return compat_ptr(compat); |
413 | } | |
414 | #endif | |
415 | ||
416 | if (get_user(native, argv.ptr.native + nr)) | |
1d1dbf81 ON |
417 | return ERR_PTR(-EFAULT); |
418 | ||
0e028465 | 419 | return native; |
1d1dbf81 ON |
420 | } |
421 | ||
1da177e4 LT |
422 | /* |
423 | * count() counts the number of strings in array ARGV. | |
424 | */ | |
ba2d0162 | 425 | static int count(struct user_arg_ptr argv, int max) |
1da177e4 LT |
426 | { |
427 | int i = 0; | |
428 | ||
0e028465 | 429 | if (argv.ptr.native != NULL) { |
1da177e4 | 430 | for (;;) { |
1d1dbf81 | 431 | const char __user *p = get_user_arg_ptr(argv, i); |
1da177e4 | 432 | |
1da177e4 LT |
433 | if (!p) |
434 | break; | |
1d1dbf81 ON |
435 | |
436 | if (IS_ERR(p)) | |
437 | return -EFAULT; | |
438 | ||
6d92d4f6 | 439 | if (i >= max) |
1da177e4 | 440 | return -E2BIG; |
6d92d4f6 | 441 | ++i; |
9aea5a65 RM |
442 | |
443 | if (fatal_signal_pending(current)) | |
444 | return -ERESTARTNOHAND; | |
1da177e4 LT |
445 | cond_resched(); |
446 | } | |
447 | } | |
448 | return i; | |
449 | } | |
450 | ||
655c16a8 ON |
451 | static int prepare_arg_pages(struct linux_binprm *bprm, |
452 | struct user_arg_ptr argv, struct user_arg_ptr envp) | |
453 | { | |
454 | unsigned long limit, ptr_size; | |
455 | ||
456 | bprm->argc = count(argv, MAX_ARG_STRINGS); | |
457 | if (bprm->argc < 0) | |
458 | return bprm->argc; | |
459 | ||
460 | bprm->envc = count(envp, MAX_ARG_STRINGS); | |
461 | if (bprm->envc < 0) | |
462 | return bprm->envc; | |
463 | ||
464 | /* | |
465 | * Limit to 1/4 of the max stack size or 3/4 of _STK_LIM | |
466 | * (whichever is smaller) for the argv+env strings. | |
467 | * This ensures that: | |
468 | * - the remaining binfmt code will not run out of stack space, | |
469 | * - the program will have a reasonable amount of stack left | |
470 | * to work from. | |
471 | */ | |
472 | limit = _STK_LIM / 4 * 3; | |
473 | limit = min(limit, bprm->rlim_stack.rlim_cur / 4); | |
474 | /* | |
475 | * We've historically supported up to 32 pages (ARG_MAX) | |
476 | * of argument strings even with small stacks | |
477 | */ | |
478 | limit = max_t(unsigned long, limit, ARG_MAX); | |
479 | /* | |
480 | * We must account for the size of all the argv and envp pointers to | |
481 | * the argv and envp strings, since they will also take up space in | |
482 | * the stack. They aren't stored until much later when we can't | |
483 | * signal to the parent that the child has run out of stack space. | |
484 | * Instead, calculate it here so it's possible to fail gracefully. | |
485 | */ | |
486 | ptr_size = (bprm->argc + bprm->envc) * sizeof(void *); | |
487 | if (limit <= ptr_size) | |
488 | return -E2BIG; | |
489 | limit -= ptr_size; | |
490 | ||
491 | bprm->argmin = bprm->p - limit; | |
492 | return 0; | |
493 | } | |
494 | ||
1da177e4 | 495 | /* |
b6a2fea3 OW |
496 | * 'copy_strings()' copies argument/environment strings from the old |
497 | * processes's memory to the new process's stack. The call to get_user_pages() | |
498 | * ensures the destination page is created and not swapped out. | |
1da177e4 | 499 | */ |
ba2d0162 | 500 | static int copy_strings(int argc, struct user_arg_ptr argv, |
75c96f85 | 501 | struct linux_binprm *bprm) |
1da177e4 LT |
502 | { |
503 | struct page *kmapped_page = NULL; | |
504 | char *kaddr = NULL; | |
b6a2fea3 | 505 | unsigned long kpos = 0; |
1da177e4 LT |
506 | int ret; |
507 | ||
508 | while (argc-- > 0) { | |
d7627467 | 509 | const char __user *str; |
1da177e4 LT |
510 | int len; |
511 | unsigned long pos; | |
512 | ||
1d1dbf81 ON |
513 | ret = -EFAULT; |
514 | str = get_user_arg_ptr(argv, argc); | |
515 | if (IS_ERR(str)) | |
1da177e4 | 516 | goto out; |
1da177e4 | 517 | |
1d1dbf81 ON |
518 | len = strnlen_user(str, MAX_ARG_STRLEN); |
519 | if (!len) | |
520 | goto out; | |
521 | ||
522 | ret = -E2BIG; | |
523 | if (!valid_arg_len(bprm, len)) | |
1da177e4 | 524 | goto out; |
1da177e4 | 525 | |
b6a2fea3 | 526 | /* We're going to work our way backwords. */ |
1da177e4 | 527 | pos = bprm->p; |
b6a2fea3 OW |
528 | str += len; |
529 | bprm->p -= len; | |
655c16a8 ON |
530 | #ifdef CONFIG_MMU |
531 | if (bprm->p < bprm->argmin) | |
532 | goto out; | |
533 | #endif | |
1da177e4 LT |
534 | |
535 | while (len > 0) { | |
1da177e4 | 536 | int offset, bytes_to_copy; |
1da177e4 | 537 | |
9aea5a65 RM |
538 | if (fatal_signal_pending(current)) { |
539 | ret = -ERESTARTNOHAND; | |
540 | goto out; | |
541 | } | |
7993bc1f RM |
542 | cond_resched(); |
543 | ||
1da177e4 | 544 | offset = pos % PAGE_SIZE; |
b6a2fea3 OW |
545 | if (offset == 0) |
546 | offset = PAGE_SIZE; | |
547 | ||
548 | bytes_to_copy = offset; | |
549 | if (bytes_to_copy > len) | |
550 | bytes_to_copy = len; | |
551 | ||
552 | offset -= bytes_to_copy; | |
553 | pos -= bytes_to_copy; | |
554 | str -= bytes_to_copy; | |
555 | len -= bytes_to_copy; | |
556 | ||
557 | if (!kmapped_page || kpos != (pos & PAGE_MASK)) { | |
558 | struct page *page; | |
559 | ||
560 | page = get_arg_page(bprm, pos, 1); | |
1da177e4 | 561 | if (!page) { |
b6a2fea3 | 562 | ret = -E2BIG; |
1da177e4 LT |
563 | goto out; |
564 | } | |
1da177e4 | 565 | |
b6a2fea3 OW |
566 | if (kmapped_page) { |
567 | flush_kernel_dcache_page(kmapped_page); | |
1da177e4 | 568 | kunmap(kmapped_page); |
b6a2fea3 OW |
569 | put_arg_page(kmapped_page); |
570 | } | |
1da177e4 LT |
571 | kmapped_page = page; |
572 | kaddr = kmap(kmapped_page); | |
b6a2fea3 OW |
573 | kpos = pos & PAGE_MASK; |
574 | flush_arg_page(bprm, kpos, kmapped_page); | |
1da177e4 | 575 | } |
b6a2fea3 | 576 | if (copy_from_user(kaddr+offset, str, bytes_to_copy)) { |
1da177e4 LT |
577 | ret = -EFAULT; |
578 | goto out; | |
579 | } | |
1da177e4 LT |
580 | } |
581 | } | |
582 | ret = 0; | |
583 | out: | |
b6a2fea3 OW |
584 | if (kmapped_page) { |
585 | flush_kernel_dcache_page(kmapped_page); | |
1da177e4 | 586 | kunmap(kmapped_page); |
b6a2fea3 OW |
587 | put_arg_page(kmapped_page); |
588 | } | |
1da177e4 LT |
589 | return ret; |
590 | } | |
591 | ||
592 | /* | |
986db2d1 | 593 | * Copy and argument/environment string from the kernel to the processes stack. |
1da177e4 | 594 | */ |
986db2d1 | 595 | int copy_string_kernel(const char *arg, struct linux_binprm *bprm) |
1da177e4 | 596 | { |
762a3af6 CH |
597 | int len = strnlen(arg, MAX_ARG_STRLEN) + 1 /* terminating NUL */; |
598 | unsigned long pos = bprm->p; | |
599 | ||
600 | if (len == 0) | |
601 | return -EFAULT; | |
602 | if (!valid_arg_len(bprm, len)) | |
603 | return -E2BIG; | |
604 | ||
605 | /* We're going to work our way backwards. */ | |
606 | arg += len; | |
607 | bprm->p -= len; | |
608 | if (IS_ENABLED(CONFIG_MMU) && bprm->p < bprm->argmin) | |
609 | return -E2BIG; | |
ba2d0162 | 610 | |
762a3af6 CH |
611 | while (len > 0) { |
612 | unsigned int bytes_to_copy = min_t(unsigned int, len, | |
613 | min_not_zero(offset_in_page(pos), PAGE_SIZE)); | |
614 | struct page *page; | |
615 | char *kaddr; | |
ba2d0162 | 616 | |
762a3af6 CH |
617 | pos -= bytes_to_copy; |
618 | arg -= bytes_to_copy; | |
619 | len -= bytes_to_copy; | |
ba2d0162 | 620 | |
762a3af6 CH |
621 | page = get_arg_page(bprm, pos, 1); |
622 | if (!page) | |
623 | return -E2BIG; | |
624 | kaddr = kmap_atomic(page); | |
625 | flush_arg_page(bprm, pos & PAGE_MASK, page); | |
626 | memcpy(kaddr + offset_in_page(pos), arg, bytes_to_copy); | |
627 | flush_kernel_dcache_page(page); | |
628 | kunmap_atomic(kaddr); | |
629 | put_arg_page(page); | |
630 | } | |
631 | ||
632 | return 0; | |
1da177e4 | 633 | } |
986db2d1 | 634 | EXPORT_SYMBOL(copy_string_kernel); |
1da177e4 LT |
635 | |
636 | #ifdef CONFIG_MMU | |
b6a2fea3 | 637 | |
1da177e4 | 638 | /* |
b6a2fea3 OW |
639 | * During bprm_mm_init(), we create a temporary stack at STACK_TOP_MAX. Once |
640 | * the binfmt code determines where the new stack should reside, we shift it to | |
641 | * its final location. The process proceeds as follows: | |
1da177e4 | 642 | * |
b6a2fea3 OW |
643 | * 1) Use shift to calculate the new vma endpoints. |
644 | * 2) Extend vma to cover both the old and new ranges. This ensures the | |
645 | * arguments passed to subsequent functions are consistent. | |
646 | * 3) Move vma's page tables to the new range. | |
647 | * 4) Free up any cleared pgd range. | |
648 | * 5) Shrink the vma to cover only the new range. | |
1da177e4 | 649 | */ |
b6a2fea3 | 650 | static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift) |
1da177e4 LT |
651 | { |
652 | struct mm_struct *mm = vma->vm_mm; | |
b6a2fea3 OW |
653 | unsigned long old_start = vma->vm_start; |
654 | unsigned long old_end = vma->vm_end; | |
655 | unsigned long length = old_end - old_start; | |
656 | unsigned long new_start = old_start - shift; | |
657 | unsigned long new_end = old_end - shift; | |
d16dfc55 | 658 | struct mmu_gather tlb; |
1da177e4 | 659 | |
b6a2fea3 | 660 | BUG_ON(new_start > new_end); |
1da177e4 | 661 | |
b6a2fea3 OW |
662 | /* |
663 | * ensure there are no vmas between where we want to go | |
664 | * and where we are | |
665 | */ | |
666 | if (vma != find_vma(mm, new_start)) | |
667 | return -EFAULT; | |
668 | ||
669 | /* | |
670 | * cover the whole range: [new_start, old_end) | |
671 | */ | |
5beb4930 RR |
672 | if (vma_adjust(vma, new_start, old_end, vma->vm_pgoff, NULL)) |
673 | return -ENOMEM; | |
b6a2fea3 OW |
674 | |
675 | /* | |
676 | * move the page tables downwards, on failure we rely on | |
677 | * process cleanup to remove whatever mess we made. | |
678 | */ | |
679 | if (length != move_page_tables(vma, old_start, | |
38a76013 | 680 | vma, new_start, length, false)) |
b6a2fea3 OW |
681 | return -ENOMEM; |
682 | ||
683 | lru_add_drain(); | |
2b047252 | 684 | tlb_gather_mmu(&tlb, mm, old_start, old_end); |
b6a2fea3 OW |
685 | if (new_end > old_start) { |
686 | /* | |
687 | * when the old and new regions overlap clear from new_end. | |
688 | */ | |
d16dfc55 | 689 | free_pgd_range(&tlb, new_end, old_end, new_end, |
6ee8630e | 690 | vma->vm_next ? vma->vm_next->vm_start : USER_PGTABLES_CEILING); |
b6a2fea3 OW |
691 | } else { |
692 | /* | |
693 | * otherwise, clean from old_start; this is done to not touch | |
694 | * the address space in [new_end, old_start) some architectures | |
695 | * have constraints on va-space that make this illegal (IA64) - | |
696 | * for the others its just a little faster. | |
697 | */ | |
d16dfc55 | 698 | free_pgd_range(&tlb, old_start, old_end, new_end, |
6ee8630e | 699 | vma->vm_next ? vma->vm_next->vm_start : USER_PGTABLES_CEILING); |
1da177e4 | 700 | } |
2b047252 | 701 | tlb_finish_mmu(&tlb, old_start, old_end); |
b6a2fea3 OW |
702 | |
703 | /* | |
5beb4930 | 704 | * Shrink the vma to just the new range. Always succeeds. |
b6a2fea3 OW |
705 | */ |
706 | vma_adjust(vma, new_start, new_end, vma->vm_pgoff, NULL); | |
707 | ||
708 | return 0; | |
1da177e4 LT |
709 | } |
710 | ||
b6a2fea3 OW |
711 | /* |
712 | * Finalizes the stack vm_area_struct. The flags and permissions are updated, | |
713 | * the stack is optionally relocated, and some extra space is added. | |
714 | */ | |
1da177e4 LT |
715 | int setup_arg_pages(struct linux_binprm *bprm, |
716 | unsigned long stack_top, | |
717 | int executable_stack) | |
718 | { | |
b6a2fea3 OW |
719 | unsigned long ret; |
720 | unsigned long stack_shift; | |
1da177e4 | 721 | struct mm_struct *mm = current->mm; |
b6a2fea3 OW |
722 | struct vm_area_struct *vma = bprm->vma; |
723 | struct vm_area_struct *prev = NULL; | |
724 | unsigned long vm_flags; | |
725 | unsigned long stack_base; | |
803bf5ec MN |
726 | unsigned long stack_size; |
727 | unsigned long stack_expand; | |
728 | unsigned long rlim_stack; | |
1da177e4 LT |
729 | |
730 | #ifdef CONFIG_STACK_GROWSUP | |
d71f290b | 731 | /* Limit stack size */ |
c31dbb14 | 732 | stack_base = bprm->rlim_stack.rlim_max; |
d71f290b JH |
733 | if (stack_base > STACK_SIZE_MAX) |
734 | stack_base = STACK_SIZE_MAX; | |
1da177e4 | 735 | |
d045c77c HD |
736 | /* Add space for stack randomization. */ |
737 | stack_base += (STACK_RND_MASK << PAGE_SHIFT); | |
738 | ||
b6a2fea3 OW |
739 | /* Make sure we didn't let the argument array grow too large. */ |
740 | if (vma->vm_end - vma->vm_start > stack_base) | |
741 | return -ENOMEM; | |
1da177e4 | 742 | |
b6a2fea3 | 743 | stack_base = PAGE_ALIGN(stack_top - stack_base); |
1da177e4 | 744 | |
b6a2fea3 OW |
745 | stack_shift = vma->vm_start - stack_base; |
746 | mm->arg_start = bprm->p - stack_shift; | |
747 | bprm->p = vma->vm_end - stack_shift; | |
1da177e4 | 748 | #else |
b6a2fea3 OW |
749 | stack_top = arch_align_stack(stack_top); |
750 | stack_top = PAGE_ALIGN(stack_top); | |
1b528181 RM |
751 | |
752 | if (unlikely(stack_top < mmap_min_addr) || | |
753 | unlikely(vma->vm_end - vma->vm_start >= stack_top - mmap_min_addr)) | |
754 | return -ENOMEM; | |
755 | ||
b6a2fea3 OW |
756 | stack_shift = vma->vm_end - stack_top; |
757 | ||
758 | bprm->p -= stack_shift; | |
1da177e4 | 759 | mm->arg_start = bprm->p; |
1da177e4 LT |
760 | #endif |
761 | ||
1da177e4 | 762 | if (bprm->loader) |
b6a2fea3 OW |
763 | bprm->loader -= stack_shift; |
764 | bprm->exec -= stack_shift; | |
1da177e4 | 765 | |
d8ed45c5 | 766 | if (mmap_write_lock_killable(mm)) |
f268dfe9 MH |
767 | return -EINTR; |
768 | ||
96a8e13e | 769 | vm_flags = VM_STACK_FLAGS; |
b6a2fea3 OW |
770 | |
771 | /* | |
772 | * Adjust stack execute permissions; explicitly enable for | |
773 | * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone | |
774 | * (arch default) otherwise. | |
775 | */ | |
776 | if (unlikely(executable_stack == EXSTACK_ENABLE_X)) | |
777 | vm_flags |= VM_EXEC; | |
778 | else if (executable_stack == EXSTACK_DISABLE_X) | |
779 | vm_flags &= ~VM_EXEC; | |
780 | vm_flags |= mm->def_flags; | |
a8bef8ff | 781 | vm_flags |= VM_STACK_INCOMPLETE_SETUP; |
b6a2fea3 OW |
782 | |
783 | ret = mprotect_fixup(vma, &prev, vma->vm_start, vma->vm_end, | |
784 | vm_flags); | |
785 | if (ret) | |
786 | goto out_unlock; | |
787 | BUG_ON(prev != vma); | |
788 | ||
47a2ebb7 AD |
789 | if (unlikely(vm_flags & VM_EXEC)) { |
790 | pr_warn_once("process '%pD4' started with executable stack\n", | |
791 | bprm->file); | |
792 | } | |
793 | ||
b6a2fea3 OW |
794 | /* Move stack pages down in memory. */ |
795 | if (stack_shift) { | |
796 | ret = shift_arg_pages(vma, stack_shift); | |
fc63cf23 AB |
797 | if (ret) |
798 | goto out_unlock; | |
1da177e4 LT |
799 | } |
800 | ||
a8bef8ff MG |
801 | /* mprotect_fixup is overkill to remove the temporary stack flags */ |
802 | vma->vm_flags &= ~VM_STACK_INCOMPLETE_SETUP; | |
803 | ||
5ef097dd | 804 | stack_expand = 131072UL; /* randomly 32*4k (or 2*64k) pages */ |
803bf5ec MN |
805 | stack_size = vma->vm_end - vma->vm_start; |
806 | /* | |
807 | * Align this down to a page boundary as expand_stack | |
808 | * will align it up. | |
809 | */ | |
c31dbb14 | 810 | rlim_stack = bprm->rlim_stack.rlim_cur & PAGE_MASK; |
b6a2fea3 | 811 | #ifdef CONFIG_STACK_GROWSUP |
803bf5ec MN |
812 | if (stack_size + stack_expand > rlim_stack) |
813 | stack_base = vma->vm_start + rlim_stack; | |
814 | else | |
815 | stack_base = vma->vm_end + stack_expand; | |
b6a2fea3 | 816 | #else |
803bf5ec MN |
817 | if (stack_size + stack_expand > rlim_stack) |
818 | stack_base = vma->vm_end - rlim_stack; | |
819 | else | |
820 | stack_base = vma->vm_start - stack_expand; | |
b6a2fea3 | 821 | #endif |
3af9e859 | 822 | current->mm->start_stack = bprm->p; |
b6a2fea3 OW |
823 | ret = expand_stack(vma, stack_base); |
824 | if (ret) | |
825 | ret = -EFAULT; | |
826 | ||
827 | out_unlock: | |
d8ed45c5 | 828 | mmap_write_unlock(mm); |
fc63cf23 | 829 | return ret; |
1da177e4 | 830 | } |
1da177e4 LT |
831 | EXPORT_SYMBOL(setup_arg_pages); |
832 | ||
7e7ec6a9 NP |
833 | #else |
834 | ||
835 | /* | |
836 | * Transfer the program arguments and environment from the holding pages | |
837 | * onto the stack. The provided stack pointer is adjusted accordingly. | |
838 | */ | |
839 | int transfer_args_to_stack(struct linux_binprm *bprm, | |
840 | unsigned long *sp_location) | |
841 | { | |
842 | unsigned long index, stop, sp; | |
843 | int ret = 0; | |
844 | ||
845 | stop = bprm->p >> PAGE_SHIFT; | |
846 | sp = *sp_location; | |
847 | ||
848 | for (index = MAX_ARG_PAGES - 1; index >= stop; index--) { | |
849 | unsigned int offset = index == stop ? bprm->p & ~PAGE_MASK : 0; | |
850 | char *src = kmap(bprm->page[index]) + offset; | |
851 | sp -= PAGE_SIZE - offset; | |
852 | if (copy_to_user((void *) sp, src, PAGE_SIZE - offset) != 0) | |
853 | ret = -EFAULT; | |
854 | kunmap(bprm->page[index]); | |
855 | if (ret) | |
856 | goto out; | |
857 | } | |
858 | ||
859 | *sp_location = sp; | |
860 | ||
861 | out: | |
862 | return ret; | |
863 | } | |
864 | EXPORT_SYMBOL(transfer_args_to_stack); | |
865 | ||
1da177e4 LT |
866 | #endif /* CONFIG_MMU */ |
867 | ||
51f39a1f | 868 | static struct file *do_open_execat(int fd, struct filename *name, int flags) |
1da177e4 | 869 | { |
1da177e4 | 870 | struct file *file; |
e56b6a5d | 871 | int err; |
51f39a1f | 872 | struct open_flags open_exec_flags = { |
47c805dc | 873 | .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC, |
62fb4a15 | 874 | .acc_mode = MAY_EXEC, |
f9652e10 AV |
875 | .intent = LOOKUP_OPEN, |
876 | .lookup_flags = LOOKUP_FOLLOW, | |
47c805dc | 877 | }; |
1da177e4 | 878 | |
51f39a1f DD |
879 | if ((flags & ~(AT_SYMLINK_NOFOLLOW | AT_EMPTY_PATH)) != 0) |
880 | return ERR_PTR(-EINVAL); | |
881 | if (flags & AT_SYMLINK_NOFOLLOW) | |
882 | open_exec_flags.lookup_flags &= ~LOOKUP_FOLLOW; | |
883 | if (flags & AT_EMPTY_PATH) | |
884 | open_exec_flags.lookup_flags |= LOOKUP_EMPTY; | |
885 | ||
886 | file = do_filp_open(fd, name, &open_exec_flags); | |
6e8341a1 | 887 | if (IS_ERR(file)) |
e56b6a5d CH |
888 | goto out; |
889 | ||
890 | err = -EACCES; | |
496ad9aa | 891 | if (!S_ISREG(file_inode(file)->i_mode)) |
6e8341a1 | 892 | goto exit; |
e56b6a5d | 893 | |
90f8572b | 894 | if (path_noexec(&file->f_path)) |
6e8341a1 | 895 | goto exit; |
e56b6a5d CH |
896 | |
897 | err = deny_write_access(file); | |
6e8341a1 AV |
898 | if (err) |
899 | goto exit; | |
1da177e4 | 900 | |
51f39a1f DD |
901 | if (name->name[0] != '\0') |
902 | fsnotify_open(file); | |
903 | ||
6e8341a1 | 904 | out: |
e56b6a5d CH |
905 | return file; |
906 | ||
6e8341a1 AV |
907 | exit: |
908 | fput(file); | |
e56b6a5d CH |
909 | return ERR_PTR(err); |
910 | } | |
c4ad8f98 LT |
911 | |
912 | struct file *open_exec(const char *name) | |
913 | { | |
51689104 PM |
914 | struct filename *filename = getname_kernel(name); |
915 | struct file *f = ERR_CAST(filename); | |
916 | ||
917 | if (!IS_ERR(filename)) { | |
918 | f = do_open_execat(AT_FDCWD, filename, 0); | |
919 | putname(filename); | |
920 | } | |
921 | return f; | |
c4ad8f98 | 922 | } |
1da177e4 LT |
923 | EXPORT_SYMBOL(open_exec); |
924 | ||
b44a7dfc | 925 | int kernel_read_file(struct file *file, void **buf, loff_t *size, |
bc8ca5b9 | 926 | loff_t max_size, enum kernel_read_file_id id) |
b44a7dfc MZ |
927 | { |
928 | loff_t i_size, pos; | |
929 | ssize_t bytes = 0; | |
930 | int ret; | |
931 | ||
932 | if (!S_ISREG(file_inode(file)->i_mode) || max_size < 0) | |
933 | return -EINVAL; | |
934 | ||
7bd698b3 | 935 | ret = deny_write_access(file); |
39eeb4fb MZ |
936 | if (ret) |
937 | return ret; | |
938 | ||
7bd698b3 | 939 | ret = security_kernel_read_file(file, id); |
39d637af | 940 | if (ret) |
7bd698b3 | 941 | goto out; |
39d637af | 942 | |
b44a7dfc | 943 | i_size = i_size_read(file_inode(file)); |
39d637af DK |
944 | if (i_size <= 0) { |
945 | ret = -EINVAL; | |
946 | goto out; | |
947 | } | |
691115c3 EB |
948 | if (i_size > SIZE_MAX || (max_size > 0 && i_size > max_size)) { |
949 | ret = -EFBIG; | |
950 | goto out; | |
951 | } | |
b44a7dfc | 952 | |
a098ecd2 SB |
953 | if (id != READING_FIRMWARE_PREALLOC_BUFFER) |
954 | *buf = vmalloc(i_size); | |
39d637af DK |
955 | if (!*buf) { |
956 | ret = -ENOMEM; | |
957 | goto out; | |
958 | } | |
b44a7dfc MZ |
959 | |
960 | pos = 0; | |
961 | while (pos < i_size) { | |
bdd1d2d3 | 962 | bytes = kernel_read(file, *buf + pos, i_size - pos, &pos); |
b44a7dfc MZ |
963 | if (bytes < 0) { |
964 | ret = bytes; | |
f612acfa | 965 | goto out_free; |
b44a7dfc MZ |
966 | } |
967 | ||
968 | if (bytes == 0) | |
969 | break; | |
b44a7dfc MZ |
970 | } |
971 | ||
972 | if (pos != i_size) { | |
973 | ret = -EIO; | |
39d637af | 974 | goto out_free; |
b44a7dfc MZ |
975 | } |
976 | ||
bc8ca5b9 | 977 | ret = security_kernel_post_read_file(file, *buf, i_size, id); |
b44a7dfc MZ |
978 | if (!ret) |
979 | *size = pos; | |
980 | ||
39d637af | 981 | out_free: |
b44a7dfc | 982 | if (ret < 0) { |
a098ecd2 SB |
983 | if (id != READING_FIRMWARE_PREALLOC_BUFFER) { |
984 | vfree(*buf); | |
985 | *buf = NULL; | |
986 | } | |
b44a7dfc | 987 | } |
39d637af DK |
988 | |
989 | out: | |
990 | allow_write_access(file); | |
b44a7dfc MZ |
991 | return ret; |
992 | } | |
993 | EXPORT_SYMBOL_GPL(kernel_read_file); | |
994 | ||
711aab1d | 995 | int kernel_read_file_from_path(const char *path, void **buf, loff_t *size, |
09596b94 MZ |
996 | loff_t max_size, enum kernel_read_file_id id) |
997 | { | |
998 | struct file *file; | |
999 | int ret; | |
1000 | ||
1001 | if (!path || !*path) | |
1002 | return -EINVAL; | |
1003 | ||
1004 | file = filp_open(path, O_RDONLY, 0); | |
1005 | if (IS_ERR(file)) | |
1006 | return PTR_ERR(file); | |
1007 | ||
1008 | ret = kernel_read_file(file, buf, size, max_size, id); | |
1009 | fput(file); | |
1010 | return ret; | |
1011 | } | |
1012 | EXPORT_SYMBOL_GPL(kernel_read_file_from_path); | |
1013 | ||
901cff7c TM |
1014 | int kernel_read_file_from_path_initns(const char *path, void **buf, |
1015 | loff_t *size, loff_t max_size, | |
1016 | enum kernel_read_file_id id) | |
1017 | { | |
1018 | struct file *file; | |
1019 | struct path root; | |
1020 | int ret; | |
1021 | ||
1022 | if (!path || !*path) | |
1023 | return -EINVAL; | |
1024 | ||
1025 | task_lock(&init_task); | |
1026 | get_fs_root(init_task.fs, &root); | |
1027 | task_unlock(&init_task); | |
1028 | ||
1029 | file = file_open_root(root.dentry, root.mnt, path, O_RDONLY, 0); | |
1030 | path_put(&root); | |
1031 | if (IS_ERR(file)) | |
1032 | return PTR_ERR(file); | |
1033 | ||
1034 | ret = kernel_read_file(file, buf, size, max_size, id); | |
1035 | fput(file); | |
1036 | return ret; | |
1037 | } | |
1038 | EXPORT_SYMBOL_GPL(kernel_read_file_from_path_initns); | |
1039 | ||
b844f0ec MZ |
1040 | int kernel_read_file_from_fd(int fd, void **buf, loff_t *size, loff_t max_size, |
1041 | enum kernel_read_file_id id) | |
1042 | { | |
1043 | struct fd f = fdget(fd); | |
1044 | int ret = -EBADF; | |
1045 | ||
1046 | if (!f.file) | |
1047 | goto out; | |
1048 | ||
1049 | ret = kernel_read_file(f.file, buf, size, max_size, id); | |
1050 | out: | |
1051 | fdput(f); | |
1052 | return ret; | |
1053 | } | |
1054 | EXPORT_SYMBOL_GPL(kernel_read_file_from_fd); | |
1055 | ||
48304f79 CH |
1056 | #if defined(CONFIG_HAVE_AOUT) || defined(CONFIG_BINFMT_FLAT) || \ |
1057 | defined(CONFIG_BINFMT_ELF_FDPIC) | |
3dc20cb2 AV |
1058 | ssize_t read_code(struct file *file, unsigned long addr, loff_t pos, size_t len) |
1059 | { | |
ec695579 | 1060 | ssize_t res = vfs_read(file, (void __user *)addr, len, &pos); |
3dc20cb2 | 1061 | if (res > 0) |
bce2b68b | 1062 | flush_icache_user_range(addr, addr + len); |
3dc20cb2 AV |
1063 | return res; |
1064 | } | |
1065 | EXPORT_SYMBOL(read_code); | |
48304f79 | 1066 | #endif |
3dc20cb2 | 1067 | |
eea96732 EB |
1068 | /* |
1069 | * Maps the mm_struct mm into the current task struct. | |
1070 | * On success, this function returns with the mutex | |
1071 | * exec_update_mutex locked. | |
1072 | */ | |
1da177e4 LT |
1073 | static int exec_mmap(struct mm_struct *mm) |
1074 | { | |
1075 | struct task_struct *tsk; | |
615d6e87 | 1076 | struct mm_struct *old_mm, *active_mm; |
eea96732 | 1077 | int ret; |
1da177e4 LT |
1078 | |
1079 | /* Notify parent that we're no longer interested in the old VM */ | |
1080 | tsk = current; | |
1081 | old_mm = current->mm; | |
4610ba7a | 1082 | exec_mm_release(tsk, old_mm); |
a28bf136 EB |
1083 | if (old_mm) |
1084 | sync_mm_rss(old_mm); | |
1da177e4 | 1085 | |
eea96732 EB |
1086 | ret = mutex_lock_killable(&tsk->signal->exec_update_mutex); |
1087 | if (ret) | |
1088 | return ret; | |
1089 | ||
1da177e4 LT |
1090 | if (old_mm) { |
1091 | /* | |
1092 | * Make sure that if there is a core dump in progress | |
1093 | * for the old mm, we get out and die instead of going | |
c1e8d7c6 | 1094 | * through with the exec. We must hold mmap_lock around |
999d9fc1 | 1095 | * checking core_state and changing tsk->mm. |
1da177e4 | 1096 | */ |
d8ed45c5 | 1097 | mmap_read_lock(old_mm); |
999d9fc1 | 1098 | if (unlikely(old_mm->core_state)) { |
d8ed45c5 | 1099 | mmap_read_unlock(old_mm); |
eea96732 | 1100 | mutex_unlock(&tsk->signal->exec_update_mutex); |
1da177e4 LT |
1101 | return -EINTR; |
1102 | } | |
1103 | } | |
eea96732 | 1104 | |
1da177e4 LT |
1105 | task_lock(tsk); |
1106 | active_mm = tsk->active_mm; | |
227a4aad | 1107 | membarrier_exec_mmap(mm); |
1da177e4 LT |
1108 | tsk->mm = mm; |
1109 | tsk->active_mm = mm; | |
1110 | activate_mm(active_mm, mm); | |
615d6e87 DB |
1111 | tsk->mm->vmacache_seqnum = 0; |
1112 | vmacache_flush(tsk); | |
1da177e4 | 1113 | task_unlock(tsk); |
1da177e4 | 1114 | if (old_mm) { |
d8ed45c5 | 1115 | mmap_read_unlock(old_mm); |
7dddb12c | 1116 | BUG_ON(active_mm != old_mm); |
701085b2 | 1117 | setmax_mm_hiwater_rss(&tsk->signal->maxrss, old_mm); |
31a78f23 | 1118 | mm_update_next_owner(old_mm); |
1da177e4 LT |
1119 | mmput(old_mm); |
1120 | return 0; | |
1121 | } | |
1122 | mmdrop(active_mm); | |
1123 | return 0; | |
1124 | } | |
1125 | ||
858119e1 | 1126 | static int de_thread(struct task_struct *tsk) |
1da177e4 LT |
1127 | { |
1128 | struct signal_struct *sig = tsk->signal; | |
b2c903b8 | 1129 | struct sighand_struct *oldsighand = tsk->sighand; |
1da177e4 | 1130 | spinlock_t *lock = &oldsighand->siglock; |
1da177e4 | 1131 | |
aafe6c2a | 1132 | if (thread_group_empty(tsk)) |
1da177e4 LT |
1133 | goto no_thread_group; |
1134 | ||
1135 | /* | |
1136 | * Kill all other threads in the thread group. | |
1da177e4 | 1137 | */ |
1da177e4 | 1138 | spin_lock_irq(lock); |
ed5d2cac | 1139 | if (signal_group_exit(sig)) { |
1da177e4 LT |
1140 | /* |
1141 | * Another group action in progress, just | |
1142 | * return so that the signal is processed. | |
1143 | */ | |
1144 | spin_unlock_irq(lock); | |
1da177e4 LT |
1145 | return -EAGAIN; |
1146 | } | |
d344193a | 1147 | |
ed5d2cac | 1148 | sig->group_exit_task = tsk; |
d344193a ON |
1149 | sig->notify_count = zap_other_threads(tsk); |
1150 | if (!thread_group_leader(tsk)) | |
1151 | sig->notify_count--; | |
1da177e4 | 1152 | |
d344193a | 1153 | while (sig->notify_count) { |
d5bbd43d | 1154 | __set_current_state(TASK_KILLABLE); |
1da177e4 | 1155 | spin_unlock_irq(lock); |
a72173ec | 1156 | schedule(); |
08d405c8 | 1157 | if (__fatal_signal_pending(tsk)) |
d5bbd43d | 1158 | goto killed; |
1da177e4 LT |
1159 | spin_lock_irq(lock); |
1160 | } | |
1da177e4 LT |
1161 | spin_unlock_irq(lock); |
1162 | ||
1163 | /* | |
1164 | * At this point all other threads have exited, all we have to | |
1165 | * do is to wait for the thread group leader to become inactive, | |
1166 | * and to assume its PID: | |
1167 | */ | |
aafe6c2a | 1168 | if (!thread_group_leader(tsk)) { |
8187926b | 1169 | struct task_struct *leader = tsk->group_leader; |
6db840fa | 1170 | |
6db840fa | 1171 | for (;;) { |
780de9dd | 1172 | cgroup_threadgroup_change_begin(tsk); |
6db840fa | 1173 | write_lock_irq(&tasklist_lock); |
dfcce791 KT |
1174 | /* |
1175 | * Do this under tasklist_lock to ensure that | |
1176 | * exit_notify() can't miss ->group_exit_task | |
1177 | */ | |
1178 | sig->notify_count = -1; | |
6db840fa ON |
1179 | if (likely(leader->exit_state)) |
1180 | break; | |
d5bbd43d | 1181 | __set_current_state(TASK_KILLABLE); |
6db840fa | 1182 | write_unlock_irq(&tasklist_lock); |
780de9dd | 1183 | cgroup_threadgroup_change_end(tsk); |
a72173ec | 1184 | schedule(); |
08d405c8 | 1185 | if (__fatal_signal_pending(tsk)) |
d5bbd43d | 1186 | goto killed; |
6db840fa | 1187 | } |
1da177e4 | 1188 | |
f5e90281 RM |
1189 | /* |
1190 | * The only record we have of the real-time age of a | |
1191 | * process, regardless of execs it's done, is start_time. | |
1192 | * All the past CPU time is accumulated in signal_struct | |
1193 | * from sister threads now dead. But in this non-leader | |
1194 | * exec, nothing survives from the original leader thread, | |
1195 | * whose birth marks the true age of this process now. | |
1196 | * When we take on its identity by switching to its PID, we | |
1197 | * also take its birthdate (always earlier than our own). | |
1198 | */ | |
aafe6c2a | 1199 | tsk->start_time = leader->start_time; |
cf25e24d | 1200 | tsk->start_boottime = leader->start_boottime; |
f5e90281 | 1201 | |
bac0abd6 | 1202 | BUG_ON(!same_thread_group(leader, tsk)); |
1da177e4 LT |
1203 | /* |
1204 | * An exec() starts a new thread group with the | |
1205 | * TGID of the previous thread group. Rehash the | |
1206 | * two threads with a switched PID, and release | |
1207 | * the former thread group leader: | |
1208 | */ | |
d73d6529 EB |
1209 | |
1210 | /* Become a process group leader with the old leader's pid. | |
c18258c6 | 1211 | * The old leader becomes a thread of the this thread group. |
d73d6529 | 1212 | */ |
6b03d130 | 1213 | exchange_tids(tsk, leader); |
6883f81a | 1214 | transfer_pid(leader, tsk, PIDTYPE_TGID); |
aafe6c2a EB |
1215 | transfer_pid(leader, tsk, PIDTYPE_PGID); |
1216 | transfer_pid(leader, tsk, PIDTYPE_SID); | |
9cd80bbb | 1217 | |
aafe6c2a | 1218 | list_replace_rcu(&leader->tasks, &tsk->tasks); |
9cd80bbb | 1219 | list_replace_init(&leader->sibling, &tsk->sibling); |
1da177e4 | 1220 | |
aafe6c2a EB |
1221 | tsk->group_leader = tsk; |
1222 | leader->group_leader = tsk; | |
de12a787 | 1223 | |
aafe6c2a | 1224 | tsk->exit_signal = SIGCHLD; |
087806b1 | 1225 | leader->exit_signal = -1; |
962b564c ON |
1226 | |
1227 | BUG_ON(leader->exit_state != EXIT_ZOMBIE); | |
1228 | leader->exit_state = EXIT_DEAD; | |
eac1b5e5 ON |
1229 | |
1230 | /* | |
1231 | * We are going to release_task()->ptrace_unlink() silently, | |
1232 | * the tracer can sleep in do_wait(). EXIT_DEAD guarantees | |
1233 | * the tracer wont't block again waiting for this thread. | |
1234 | */ | |
1235 | if (unlikely(leader->ptrace)) | |
1236 | __wake_up_parent(leader, leader->parent); | |
1da177e4 | 1237 | write_unlock_irq(&tasklist_lock); |
780de9dd | 1238 | cgroup_threadgroup_change_end(tsk); |
8187926b ON |
1239 | |
1240 | release_task(leader); | |
ed5d2cac | 1241 | } |
1da177e4 | 1242 | |
6db840fa ON |
1243 | sig->group_exit_task = NULL; |
1244 | sig->notify_count = 0; | |
1da177e4 LT |
1245 | |
1246 | no_thread_group: | |
e6368253 ON |
1247 | /* we have changed execution domain */ |
1248 | tsk->exit_signal = SIGCHLD; | |
1249 | ||
02169155 EB |
1250 | BUG_ON(!thread_group_leader(tsk)); |
1251 | return 0; | |
1252 | ||
1253 | killed: | |
1254 | /* protects against exit_notify() and __exit_signal() */ | |
1255 | read_lock(&tasklist_lock); | |
1256 | sig->group_exit_task = NULL; | |
1257 | sig->notify_count = 0; | |
1258 | read_unlock(&tasklist_lock); | |
1259 | return -EAGAIN; | |
1260 | } | |
1261 | ||
1262 | ||
7a60ef48 EB |
1263 | /* |
1264 | * This function makes sure the current process has its own signal table, | |
1265 | * so that flush_signal_handlers can later reset the handlers without | |
1266 | * disturbing other processes. (Other processes might share the signal | |
1267 | * table via the CLONE_SIGHAND option to clone().) | |
1268 | */ | |
02169155 EB |
1269 | static int unshare_sighand(struct task_struct *me) |
1270 | { | |
1271 | struct sighand_struct *oldsighand = me->sighand; | |
329f7dba | 1272 | |
d036bda7 | 1273 | if (refcount_read(&oldsighand->count) != 1) { |
b2c903b8 | 1274 | struct sighand_struct *newsighand; |
1da177e4 | 1275 | /* |
b2c903b8 ON |
1276 | * This ->sighand is shared with the CLONE_SIGHAND |
1277 | * but not CLONE_THREAD task, switch to the new one. | |
1da177e4 | 1278 | */ |
b2c903b8 ON |
1279 | newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL); |
1280 | if (!newsighand) | |
1281 | return -ENOMEM; | |
1282 | ||
d036bda7 | 1283 | refcount_set(&newsighand->count, 1); |
1da177e4 LT |
1284 | memcpy(newsighand->action, oldsighand->action, |
1285 | sizeof(newsighand->action)); | |
1286 | ||
1287 | write_lock_irq(&tasklist_lock); | |
1288 | spin_lock(&oldsighand->siglock); | |
02169155 | 1289 | rcu_assign_pointer(me->sighand, newsighand); |
1da177e4 LT |
1290 | spin_unlock(&oldsighand->siglock); |
1291 | write_unlock_irq(&tasklist_lock); | |
1292 | ||
fba2afaa | 1293 | __cleanup_sighand(oldsighand); |
1da177e4 | 1294 | } |
1da177e4 LT |
1295 | return 0; |
1296 | } | |
0840a90d | 1297 | |
3756f640 | 1298 | char *__get_task_comm(char *buf, size_t buf_size, struct task_struct *tsk) |
1da177e4 | 1299 | { |
1da177e4 | 1300 | task_lock(tsk); |
3756f640 | 1301 | strncpy(buf, tsk->comm, buf_size); |
1da177e4 | 1302 | task_unlock(tsk); |
59714d65 | 1303 | return buf; |
1da177e4 | 1304 | } |
3756f640 | 1305 | EXPORT_SYMBOL_GPL(__get_task_comm); |
1da177e4 | 1306 | |
6a6d27de AV |
1307 | /* |
1308 | * These functions flushes out all traces of the currently running executable | |
1309 | * so that a new one can be started | |
1310 | */ | |
1311 | ||
82b89778 | 1312 | void __set_task_comm(struct task_struct *tsk, const char *buf, bool exec) |
1da177e4 LT |
1313 | { |
1314 | task_lock(tsk); | |
43d2b113 | 1315 | trace_task_rename(tsk, buf); |
1da177e4 LT |
1316 | strlcpy(tsk->comm, buf, sizeof(tsk->comm)); |
1317 | task_unlock(tsk); | |
82b89778 | 1318 | perf_event_comm(tsk, exec); |
1da177e4 LT |
1319 | } |
1320 | ||
a9208e42 KC |
1321 | /* |
1322 | * Calling this is the point of no return. None of the failures will be | |
1323 | * seen by userspace since either the process is already taking a fatal | |
1324 | * signal (via de_thread() or coredump), or will have SEGV raised | |
13c432b5 | 1325 | * (after exec_mmap()) by search_binary_handler (see below). |
a9208e42 | 1326 | */ |
2388777a | 1327 | int begin_new_exec(struct linux_binprm * bprm) |
1da177e4 | 1328 | { |
2ca7be7d | 1329 | struct task_struct *me = current; |
221af7f8 | 1330 | int retval; |
1da177e4 | 1331 | |
56305aa9 EB |
1332 | /* Once we are committed compute the creds */ |
1333 | retval = bprm_creds_from_file(bprm); | |
1334 | if (retval) | |
1335 | return retval; | |
1336 | ||
6834e0bb EB |
1337 | /* |
1338 | * Ensure all future errors are fatal. | |
1339 | */ | |
1340 | bprm->point_of_no_return = true; | |
1341 | ||
1da177e4 | 1342 | /* |
02169155 | 1343 | * Make this the only thread in the thread group. |
1da177e4 | 1344 | */ |
2ca7be7d | 1345 | retval = de_thread(me); |
1da177e4 LT |
1346 | if (retval) |
1347 | goto out; | |
1348 | ||
6e399cd1 DB |
1349 | /* |
1350 | * Must be called _before_ exec_mmap() as bprm->mm is | |
1351 | * not visibile until then. This also enables the update | |
1352 | * to be lockless. | |
1353 | */ | |
925d1c40 | 1354 | set_mm_exe_file(bprm->mm, bprm->file); |
6e399cd1 | 1355 | |
b8a61c9e | 1356 | /* If the binary is not readable then enforce mm->dumpable=0 */ |
f87d1c95 | 1357 | would_dump(bprm, bprm->file); |
b8a61c9e EB |
1358 | if (bprm->have_execfd) |
1359 | would_dump(bprm, bprm->executable); | |
f87d1c95 | 1360 | |
1da177e4 LT |
1361 | /* |
1362 | * Release all of the old mmap stuff | |
1363 | */ | |
3c77f845 | 1364 | acct_arg_size(bprm, 0); |
1da177e4 LT |
1365 | retval = exec_mmap(bprm->mm); |
1366 | if (retval) | |
fd8328be | 1367 | goto out; |
1da177e4 | 1368 | |
a9208e42 | 1369 | bprm->mm = NULL; |
7ab02af4 | 1370 | |
ccf0fa6b EB |
1371 | #ifdef CONFIG_POSIX_TIMERS |
1372 | exit_itimers(me->signal); | |
1373 | flush_itimer_signals(); | |
1374 | #endif | |
1375 | ||
1376 | /* | |
1377 | * Make the signal table private. | |
1378 | */ | |
1379 | retval = unshare_sighand(me); | |
1380 | if (retval) | |
89826cce | 1381 | goto out_unlock; |
ccf0fa6b | 1382 | |
dac853ae | 1383 | set_fs(USER_DS); |
2ca7be7d | 1384 | me->flags &= ~(PF_RANDOMIZE | PF_FORKNOEXEC | PF_KTHREAD | |
b88fae64 | 1385 | PF_NOFREEZE | PF_NO_SETAFFINITY); |
7ab02af4 | 1386 | flush_thread(); |
2ca7be7d | 1387 | me->personality &= ~bprm->per_clear; |
7ab02af4 | 1388 | |
613cc2b6 AS |
1389 | /* |
1390 | * We have to apply CLOEXEC before we change whether the process is | |
1391 | * dumpable (in setup_new_exec) to avoid a race with a process in userspace | |
1392 | * trying to access the should-be-closed file descriptors of a process | |
1393 | * undergoing exec(2). | |
1394 | */ | |
2ca7be7d | 1395 | do_close_on_exec(me->files); |
f84df2a6 | 1396 | |
64701dee | 1397 | if (bprm->secureexec) { |
fe8993b3 | 1398 | /* Make sure parent cannot signal privileged process. */ |
7d503feb | 1399 | me->pdeath_signal = 0; |
fe8993b3 | 1400 | |
64701dee KC |
1401 | /* |
1402 | * For secureexec, reset the stack limit to sane default to | |
1403 | * avoid bad behavior from the prior rlimits. This has to | |
1404 | * happen before arch_pick_mmap_layout(), which examines | |
1405 | * RLIMIT_STACK, but after the point of no return to avoid | |
779f4e1c | 1406 | * needing to clean up the change on failure. |
64701dee | 1407 | */ |
c31dbb14 KC |
1408 | if (bprm->rlim_stack.rlim_cur > _STK_LIM) |
1409 | bprm->rlim_stack.rlim_cur = _STK_LIM; | |
64701dee KC |
1410 | } |
1411 | ||
7d503feb | 1412 | me->sas_ss_sp = me->sas_ss_size = 0; |
1da177e4 | 1413 | |
e816c201 KC |
1414 | /* |
1415 | * Figure out dumpability. Note that this checking only of current | |
1416 | * is wrong, but userspace depends on it. This should be testing | |
1417 | * bprm->secureexec instead. | |
1418 | */ | |
473d8963 | 1419 | if (bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP || |
e816c201 KC |
1420 | !(uid_eq(current_euid(), current_uid()) && |
1421 | gid_eq(current_egid(), current_gid()))) | |
6c5d5238 | 1422 | set_dumpable(current->mm, suid_dumpable); |
473d8963 KC |
1423 | else |
1424 | set_dumpable(current->mm, SUID_DUMP_USER); | |
d6e71144 | 1425 | |
e041e328 | 1426 | perf_event_exec(); |
7d503feb | 1427 | __set_task_comm(me, kbasename(bprm->filename), true); |
1da177e4 | 1428 | |
1da177e4 LT |
1429 | /* An exec changes our domain. We are no longer part of the thread |
1430 | group */ | |
7d503feb EB |
1431 | WRITE_ONCE(me->self_exec_id, me->self_exec_id + 1); |
1432 | flush_signal_handlers(me, 0); | |
96ecee29 EB |
1433 | |
1434 | /* | |
1435 | * install the new credentials for this executable | |
1436 | */ | |
1437 | security_bprm_committing_creds(bprm); | |
1438 | ||
1439 | commit_creds(bprm->cred); | |
1440 | bprm->cred = NULL; | |
1441 | ||
1442 | /* | |
1443 | * Disable monitoring for regular users | |
1444 | * when executing setuid binaries. Must | |
1445 | * wait until new credentials are committed | |
1446 | * by commit_creds() above | |
1447 | */ | |
7d503feb EB |
1448 | if (get_dumpable(me->mm) != SUID_DUMP_USER) |
1449 | perf_event_exit_task(me); | |
96ecee29 EB |
1450 | /* |
1451 | * cred_guard_mutex must be held at least to this point to prevent | |
1452 | * ptrace_attach() from altering our determination of the task's | |
1453 | * credentials; any time after this it may be unlocked. | |
1454 | */ | |
1455 | security_bprm_committed_creds(bprm); | |
b8a61c9e EB |
1456 | |
1457 | /* Pass the opened binary to the interpreter. */ | |
1458 | if (bprm->have_execfd) { | |
1459 | retval = get_unused_fd_flags(0); | |
1460 | if (retval < 0) | |
1461 | goto out_unlock; | |
1462 | fd_install(retval, bprm->executable); | |
1463 | bprm->executable = NULL; | |
1464 | bprm->execfd = retval; | |
1465 | } | |
221af7f8 LT |
1466 | return 0; |
1467 | ||
df9e4d2c EB |
1468 | out_unlock: |
1469 | mutex_unlock(&me->signal->exec_update_mutex); | |
221af7f8 LT |
1470 | out: |
1471 | return retval; | |
1472 | } | |
2388777a | 1473 | EXPORT_SYMBOL(begin_new_exec); |
221af7f8 | 1474 | |
1b5d783c AV |
1475 | void would_dump(struct linux_binprm *bprm, struct file *file) |
1476 | { | |
f84df2a6 EB |
1477 | struct inode *inode = file_inode(file); |
1478 | if (inode_permission(inode, MAY_READ) < 0) { | |
1479 | struct user_namespace *old, *user_ns; | |
1b5d783c | 1480 | bprm->interp_flags |= BINPRM_FLAGS_ENFORCE_NONDUMP; |
f84df2a6 EB |
1481 | |
1482 | /* Ensure mm->user_ns contains the executable */ | |
1483 | user_ns = old = bprm->mm->user_ns; | |
1484 | while ((user_ns != &init_user_ns) && | |
1485 | !privileged_wrt_inode_uidgid(user_ns, inode)) | |
1486 | user_ns = user_ns->parent; | |
1487 | ||
1488 | if (old != user_ns) { | |
1489 | bprm->mm->user_ns = get_user_ns(user_ns); | |
1490 | put_user_ns(old); | |
1491 | } | |
1492 | } | |
1b5d783c AV |
1493 | } |
1494 | EXPORT_SYMBOL(would_dump); | |
1495 | ||
221af7f8 LT |
1496 | void setup_new_exec(struct linux_binprm * bprm) |
1497 | { | |
df9e4d2c EB |
1498 | /* Setup things that can depend upon the personality */ |
1499 | struct task_struct *me = current; | |
1da177e4 | 1500 | |
df9e4d2c | 1501 | arch_pick_mmap_layout(me->mm, &bprm->rlim_stack); |
d6e71144 | 1502 | |
e9ea1e7f | 1503 | arch_setup_new_exec(); |
1da177e4 | 1504 | |
0551fbd2 BH |
1505 | /* Set the new mm task size. We have to do that late because it may |
1506 | * depend on TIF_32BIT which is only updated in flush_thread() on | |
1507 | * some architectures like powerpc | |
1508 | */ | |
df9e4d2c | 1509 | me->mm->task_size = TASK_SIZE; |
7d503feb EB |
1510 | mutex_unlock(&me->signal->exec_update_mutex); |
1511 | mutex_unlock(&me->signal->cred_guard_mutex); | |
1da177e4 | 1512 | } |
221af7f8 | 1513 | EXPORT_SYMBOL(setup_new_exec); |
1da177e4 | 1514 | |
b8383831 KC |
1515 | /* Runs immediately before start_thread() takes over. */ |
1516 | void finalize_exec(struct linux_binprm *bprm) | |
1517 | { | |
c31dbb14 KC |
1518 | /* Store any stack rlimit changes before starting thread. */ |
1519 | task_lock(current->group_leader); | |
1520 | current->signal->rlim[RLIMIT_STACK] = bprm->rlim_stack; | |
1521 | task_unlock(current->group_leader); | |
b8383831 KC |
1522 | } |
1523 | EXPORT_SYMBOL(finalize_exec); | |
1524 | ||
a2a8474c ON |
1525 | /* |
1526 | * Prepare credentials and lock ->cred_guard_mutex. | |
96ecee29 | 1527 | * setup_new_exec() commits the new creds and drops the lock. |
a2a8474c ON |
1528 | * Or, if exec fails before, free_bprm() should release ->cred and |
1529 | * and unlock. | |
1530 | */ | |
4addd264 | 1531 | static int prepare_bprm_creds(struct linux_binprm *bprm) |
a2a8474c | 1532 | { |
9b1bf12d | 1533 | if (mutex_lock_interruptible(¤t->signal->cred_guard_mutex)) |
a2a8474c ON |
1534 | return -ERESTARTNOINTR; |
1535 | ||
1536 | bprm->cred = prepare_exec_creds(); | |
1537 | if (likely(bprm->cred)) | |
1538 | return 0; | |
1539 | ||
9b1bf12d | 1540 | mutex_unlock(¤t->signal->cred_guard_mutex); |
a2a8474c ON |
1541 | return -ENOMEM; |
1542 | } | |
1543 | ||
c4ad8f98 | 1544 | static void free_bprm(struct linux_binprm *bprm) |
a2a8474c ON |
1545 | { |
1546 | free_arg_pages(bprm); | |
1547 | if (bprm->cred) { | |
9b1bf12d | 1548 | mutex_unlock(¤t->signal->cred_guard_mutex); |
a2a8474c ON |
1549 | abort_creds(bprm->cred); |
1550 | } | |
63e46b95 ON |
1551 | if (bprm->file) { |
1552 | allow_write_access(bprm->file); | |
1553 | fput(bprm->file); | |
1554 | } | |
b8a61c9e EB |
1555 | if (bprm->executable) |
1556 | fput(bprm->executable); | |
b66c5984 KC |
1557 | /* If a binfmt changed the interp, free it. */ |
1558 | if (bprm->interp != bprm->filename) | |
1559 | kfree(bprm->interp); | |
a2a8474c ON |
1560 | kfree(bprm); |
1561 | } | |
1562 | ||
c2315c18 | 1563 | int bprm_change_interp(const char *interp, struct linux_binprm *bprm) |
b66c5984 KC |
1564 | { |
1565 | /* If a binfmt changed the interp, free it first. */ | |
1566 | if (bprm->interp != bprm->filename) | |
1567 | kfree(bprm->interp); | |
1568 | bprm->interp = kstrdup(interp, GFP_KERNEL); | |
1569 | if (!bprm->interp) | |
1570 | return -ENOMEM; | |
1571 | return 0; | |
1572 | } | |
1573 | EXPORT_SYMBOL(bprm_change_interp); | |
1574 | ||
a6f76f23 DH |
1575 | /* |
1576 | * determine how safe it is to execute the proposed program | |
9b1bf12d | 1577 | * - the caller must hold ->cred_guard_mutex to protect against |
c2e1f2e3 | 1578 | * PTRACE_ATTACH or seccomp thread-sync |
a6f76f23 | 1579 | */ |
9e00cdb0 | 1580 | static void check_unsafe_exec(struct linux_binprm *bprm) |
a6f76f23 | 1581 | { |
0bf2f3ae | 1582 | struct task_struct *p = current, *t; |
f1191b50 | 1583 | unsigned n_fs; |
a6f76f23 | 1584 | |
9227dd2a EB |
1585 | if (p->ptrace) |
1586 | bprm->unsafe |= LSM_UNSAFE_PTRACE; | |
a6f76f23 | 1587 | |
259e5e6c AL |
1588 | /* |
1589 | * This isn't strictly necessary, but it makes it harder for LSMs to | |
1590 | * mess up. | |
1591 | */ | |
1d4457f9 | 1592 | if (task_no_new_privs(current)) |
259e5e6c AL |
1593 | bprm->unsafe |= LSM_UNSAFE_NO_NEW_PRIVS; |
1594 | ||
83f62a2e | 1595 | t = p; |
0bf2f3ae | 1596 | n_fs = 1; |
2a4419b5 | 1597 | spin_lock(&p->fs->lock); |
437f7fdb | 1598 | rcu_read_lock(); |
83f62a2e | 1599 | while_each_thread(p, t) { |
0bf2f3ae DH |
1600 | if (t->fs == p->fs) |
1601 | n_fs++; | |
0bf2f3ae | 1602 | } |
437f7fdb | 1603 | rcu_read_unlock(); |
0bf2f3ae | 1604 | |
9e00cdb0 | 1605 | if (p->fs->users > n_fs) |
a6f76f23 | 1606 | bprm->unsafe |= LSM_UNSAFE_SHARE; |
9e00cdb0 ON |
1607 | else |
1608 | p->fs->in_exec = 1; | |
2a4419b5 | 1609 | spin_unlock(&p->fs->lock); |
a6f76f23 DH |
1610 | } |
1611 | ||
56305aa9 | 1612 | static void bprm_fill_uid(struct linux_binprm *bprm, struct file *file) |
8b01fc86 | 1613 | { |
56305aa9 | 1614 | /* Handle suid and sgid on files */ |
8b01fc86 JH |
1615 | struct inode *inode; |
1616 | unsigned int mode; | |
1617 | kuid_t uid; | |
1618 | kgid_t gid; | |
1619 | ||
56305aa9 | 1620 | if (!mnt_may_suid(file->f_path.mnt)) |
8b01fc86 JH |
1621 | return; |
1622 | ||
1623 | if (task_no_new_privs(current)) | |
1624 | return; | |
1625 | ||
56305aa9 | 1626 | inode = file->f_path.dentry->d_inode; |
8b01fc86 JH |
1627 | mode = READ_ONCE(inode->i_mode); |
1628 | if (!(mode & (S_ISUID|S_ISGID))) | |
1629 | return; | |
1630 | ||
1631 | /* Be careful if suid/sgid is set */ | |
5955102c | 1632 | inode_lock(inode); |
8b01fc86 JH |
1633 | |
1634 | /* reload atomically mode/uid/gid now that lock held */ | |
1635 | mode = inode->i_mode; | |
1636 | uid = inode->i_uid; | |
1637 | gid = inode->i_gid; | |
5955102c | 1638 | inode_unlock(inode); |
8b01fc86 JH |
1639 | |
1640 | /* We ignore suid/sgid if there are no mappings for them in the ns */ | |
1641 | if (!kuid_has_mapping(bprm->cred->user_ns, uid) || | |
1642 | !kgid_has_mapping(bprm->cred->user_ns, gid)) | |
1643 | return; | |
1644 | ||
1645 | if (mode & S_ISUID) { | |
1646 | bprm->per_clear |= PER_CLEAR_ON_SETID; | |
1647 | bprm->cred->euid = uid; | |
1648 | } | |
1649 | ||
1650 | if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) { | |
1651 | bprm->per_clear |= PER_CLEAR_ON_SETID; | |
1652 | bprm->cred->egid = gid; | |
1653 | } | |
1654 | } | |
1655 | ||
56305aa9 EB |
1656 | /* |
1657 | * Compute brpm->cred based upon the final binary. | |
1658 | */ | |
1659 | static int bprm_creds_from_file(struct linux_binprm *bprm) | |
1660 | { | |
1661 | /* Compute creds based on which file? */ | |
1662 | struct file *file = bprm->execfd_creds ? bprm->executable : bprm->file; | |
1663 | ||
1664 | bprm_fill_uid(bprm, file); | |
1665 | return security_bprm_creds_from_file(bprm, file); | |
1666 | } | |
1667 | ||
9e00cdb0 ON |
1668 | /* |
1669 | * Fill the binprm structure from the inode. | |
56305aa9 | 1670 | * Read the first BINPRM_BUF_SIZE bytes |
a6f76f23 DH |
1671 | * |
1672 | * This may be called multiple times for binary chains (scripts for example). | |
1da177e4 | 1673 | */ |
8b72ca90 | 1674 | static int prepare_binprm(struct linux_binprm *bprm) |
1da177e4 | 1675 | { |
bdd1d2d3 | 1676 | loff_t pos = 0; |
1da177e4 | 1677 | |
a6f76f23 | 1678 | memset(bprm->buf, 0, BINPRM_BUF_SIZE); |
bdd1d2d3 | 1679 | return kernel_read(bprm->file, bprm->buf, BINPRM_BUF_SIZE, &pos); |
1da177e4 LT |
1680 | } |
1681 | ||
4fc75ff4 NP |
1682 | /* |
1683 | * Arguments are '\0' separated strings found at the location bprm->p | |
1684 | * points to; chop off the first by relocating brpm->p to right after | |
1685 | * the first '\0' encountered. | |
1686 | */ | |
b6a2fea3 | 1687 | int remove_arg_zero(struct linux_binprm *bprm) |
1da177e4 | 1688 | { |
b6a2fea3 OW |
1689 | int ret = 0; |
1690 | unsigned long offset; | |
1691 | char *kaddr; | |
1692 | struct page *page; | |
4fc75ff4 | 1693 | |
b6a2fea3 OW |
1694 | if (!bprm->argc) |
1695 | return 0; | |
1da177e4 | 1696 | |
b6a2fea3 OW |
1697 | do { |
1698 | offset = bprm->p & ~PAGE_MASK; | |
1699 | page = get_arg_page(bprm, bprm->p, 0); | |
1700 | if (!page) { | |
1701 | ret = -EFAULT; | |
1702 | goto out; | |
1703 | } | |
e8e3c3d6 | 1704 | kaddr = kmap_atomic(page); |
4fc75ff4 | 1705 | |
b6a2fea3 OW |
1706 | for (; offset < PAGE_SIZE && kaddr[offset]; |
1707 | offset++, bprm->p++) | |
1708 | ; | |
4fc75ff4 | 1709 | |
e8e3c3d6 | 1710 | kunmap_atomic(kaddr); |
b6a2fea3 | 1711 | put_arg_page(page); |
b6a2fea3 | 1712 | } while (offset == PAGE_SIZE); |
4fc75ff4 | 1713 | |
b6a2fea3 OW |
1714 | bprm->p++; |
1715 | bprm->argc--; | |
1716 | ret = 0; | |
4fc75ff4 | 1717 | |
b6a2fea3 OW |
1718 | out: |
1719 | return ret; | |
1da177e4 | 1720 | } |
1da177e4 LT |
1721 | EXPORT_SYMBOL(remove_arg_zero); |
1722 | ||
cb7b6b1c | 1723 | #define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e)) |
1da177e4 LT |
1724 | /* |
1725 | * cycle the list of binary formats handler, until one recognizes the image | |
1726 | */ | |
bc2bf338 | 1727 | static int search_binary_handler(struct linux_binprm *bprm) |
1da177e4 | 1728 | { |
cb7b6b1c | 1729 | bool need_retry = IS_ENABLED(CONFIG_MODULES); |
1da177e4 | 1730 | struct linux_binfmt *fmt; |
cb7b6b1c | 1731 | int retval; |
1da177e4 | 1732 | |
8b72ca90 EB |
1733 | retval = prepare_binprm(bprm); |
1734 | if (retval < 0) | |
1735 | return retval; | |
d7402698 | 1736 | |
1da177e4 LT |
1737 | retval = security_bprm_check(bprm); |
1738 | if (retval) | |
1739 | return retval; | |
1740 | ||
1da177e4 | 1741 | retval = -ENOENT; |
cb7b6b1c ON |
1742 | retry: |
1743 | read_lock(&binfmt_lock); | |
1744 | list_for_each_entry(fmt, &formats, lh) { | |
1745 | if (!try_module_get(fmt->module)) | |
1746 | continue; | |
1747 | read_unlock(&binfmt_lock); | |
d53ddd01 | 1748 | |
cb7b6b1c | 1749 | retval = fmt->load_binary(bprm); |
d53ddd01 | 1750 | |
19d860a1 AV |
1751 | read_lock(&binfmt_lock); |
1752 | put_binfmt(fmt); | |
bc2bf338 | 1753 | if (bprm->point_of_no_return || (retval != -ENOEXEC)) { |
19d860a1 | 1754 | read_unlock(&binfmt_lock); |
cb7b6b1c | 1755 | return retval; |
1da177e4 | 1756 | } |
1da177e4 | 1757 | } |
cb7b6b1c ON |
1758 | read_unlock(&binfmt_lock); |
1759 | ||
19d860a1 | 1760 | if (need_retry) { |
cb7b6b1c ON |
1761 | if (printable(bprm->buf[0]) && printable(bprm->buf[1]) && |
1762 | printable(bprm->buf[2]) && printable(bprm->buf[3])) | |
1763 | return retval; | |
4e0621a0 ON |
1764 | if (request_module("binfmt-%04x", *(ushort *)(bprm->buf + 2)) < 0) |
1765 | return retval; | |
cb7b6b1c ON |
1766 | need_retry = false; |
1767 | goto retry; | |
1768 | } | |
1769 | ||
1da177e4 LT |
1770 | return retval; |
1771 | } | |
1da177e4 | 1772 | |
5d1baf3b ON |
1773 | static int exec_binprm(struct linux_binprm *bprm) |
1774 | { | |
1775 | pid_t old_pid, old_vpid; | |
bc2bf338 | 1776 | int ret, depth; |
5d1baf3b ON |
1777 | |
1778 | /* Need to fetch pid before load_binary changes it */ | |
1779 | old_pid = current->pid; | |
1780 | rcu_read_lock(); | |
1781 | old_vpid = task_pid_nr_ns(current, task_active_pid_ns(current->parent)); | |
1782 | rcu_read_unlock(); | |
1783 | ||
bc2bf338 EB |
1784 | /* This allows 4 levels of binfmt rewrites before failing hard. */ |
1785 | for (depth = 0;; depth++) { | |
1786 | struct file *exec; | |
1787 | if (depth > 5) | |
1788 | return -ELOOP; | |
1789 | ||
1790 | ret = search_binary_handler(bprm); | |
1791 | if (ret < 0) | |
1792 | return ret; | |
1793 | if (!bprm->interpreter) | |
1794 | break; | |
1795 | ||
1796 | exec = bprm->file; | |
1797 | bprm->file = bprm->interpreter; | |
1798 | bprm->interpreter = NULL; | |
1799 | ||
1800 | allow_write_access(exec); | |
1801 | if (unlikely(bprm->have_execfd)) { | |
1802 | if (bprm->executable) { | |
1803 | fput(exec); | |
1804 | return -ENOEXEC; | |
1805 | } | |
1806 | bprm->executable = exec; | |
1807 | } else | |
1808 | fput(exec); | |
5d1baf3b ON |
1809 | } |
1810 | ||
bc2bf338 EB |
1811 | audit_bprm(bprm); |
1812 | trace_sched_process_exec(current, old_pid, bprm); | |
1813 | ptrace_event(PTRACE_EVENT_EXEC, old_vpid); | |
1814 | proc_exec_connector(current); | |
1815 | return 0; | |
5d1baf3b ON |
1816 | } |
1817 | ||
1da177e4 LT |
1818 | /* |
1819 | * sys_execve() executes a new program. | |
1820 | */ | |
449325b5 AS |
1821 | static int __do_execve_file(int fd, struct filename *filename, |
1822 | struct user_arg_ptr argv, | |
1823 | struct user_arg_ptr envp, | |
1824 | int flags, struct file *file) | |
1da177e4 | 1825 | { |
51f39a1f | 1826 | char *pathbuf = NULL; |
1da177e4 | 1827 | struct linux_binprm *bprm; |
3b125388 | 1828 | struct files_struct *displaced; |
1da177e4 | 1829 | int retval; |
72fa5997 | 1830 | |
c4ad8f98 LT |
1831 | if (IS_ERR(filename)) |
1832 | return PTR_ERR(filename); | |
1833 | ||
72fa5997 VK |
1834 | /* |
1835 | * We move the actual failure in case of RLIMIT_NPROC excess from | |
1836 | * set*uid() to execve() because too many poorly written programs | |
1837 | * don't check setuid() return code. Here we additionally recheck | |
1838 | * whether NPROC limit is still exceeded. | |
1839 | */ | |
1840 | if ((current->flags & PF_NPROC_EXCEEDED) && | |
bd9d43f4 | 1841 | atomic_read(¤t_user()->processes) > rlimit(RLIMIT_NPROC)) { |
72fa5997 VK |
1842 | retval = -EAGAIN; |
1843 | goto out_ret; | |
1844 | } | |
1845 | ||
1846 | /* We're below the limit (still or again), so we don't want to make | |
1847 | * further execve() calls fail. */ | |
1848 | current->flags &= ~PF_NPROC_EXCEEDED; | |
1da177e4 | 1849 | |
3b125388 | 1850 | retval = unshare_files(&displaced); |
fd8328be AV |
1851 | if (retval) |
1852 | goto out_ret; | |
1853 | ||
1da177e4 | 1854 | retval = -ENOMEM; |
11b0b5ab | 1855 | bprm = kzalloc(sizeof(*bprm), GFP_KERNEL); |
1da177e4 | 1856 | if (!bprm) |
fd8328be | 1857 | goto out_files; |
1da177e4 | 1858 | |
a2a8474c ON |
1859 | retval = prepare_bprm_creds(bprm); |
1860 | if (retval) | |
a6f76f23 | 1861 | goto out_free; |
498052bb | 1862 | |
9e00cdb0 | 1863 | check_unsafe_exec(bprm); |
a2a8474c | 1864 | current->in_execve = 1; |
a6f76f23 | 1865 | |
449325b5 AS |
1866 | if (!file) |
1867 | file = do_open_execat(fd, filename, flags); | |
1da177e4 LT |
1868 | retval = PTR_ERR(file); |
1869 | if (IS_ERR(file)) | |
498052bb | 1870 | goto out_unmark; |
1da177e4 LT |
1871 | |
1872 | sched_exec(); | |
1873 | ||
1da177e4 | 1874 | bprm->file = file; |
449325b5 AS |
1875 | if (!filename) { |
1876 | bprm->filename = "none"; | |
1877 | } else if (fd == AT_FDCWD || filename->name[0] == '/') { | |
51f39a1f DD |
1878 | bprm->filename = filename->name; |
1879 | } else { | |
1880 | if (filename->name[0] == '\0') | |
0ee931c4 | 1881 | pathbuf = kasprintf(GFP_KERNEL, "/dev/fd/%d", fd); |
51f39a1f | 1882 | else |
0ee931c4 | 1883 | pathbuf = kasprintf(GFP_KERNEL, "/dev/fd/%d/%s", |
51f39a1f DD |
1884 | fd, filename->name); |
1885 | if (!pathbuf) { | |
1886 | retval = -ENOMEM; | |
1887 | goto out_unmark; | |
1888 | } | |
1889 | /* | |
1890 | * Record that a name derived from an O_CLOEXEC fd will be | |
1891 | * inaccessible after exec. Relies on having exclusive access to | |
1892 | * current->files (due to unshare_files above). | |
1893 | */ | |
1894 | if (close_on_exec(fd, rcu_dereference_raw(current->files->fdt))) | |
1895 | bprm->interp_flags |= BINPRM_FLAGS_PATH_INACCESSIBLE; | |
1896 | bprm->filename = pathbuf; | |
1897 | } | |
1898 | bprm->interp = bprm->filename; | |
1da177e4 | 1899 | |
b6a2fea3 OW |
1900 | retval = bprm_mm_init(bprm); |
1901 | if (retval) | |
63e46b95 | 1902 | goto out_unmark; |
1da177e4 | 1903 | |
655c16a8 ON |
1904 | retval = prepare_arg_pages(bprm, argv, envp); |
1905 | if (retval < 0) | |
1da177e4 LT |
1906 | goto out; |
1907 | ||
b8bff599 EB |
1908 | /* Set the unchanging part of bprm->cred */ |
1909 | retval = security_bprm_creds_for_exec(bprm); | |
1910 | if (retval) | |
1da177e4 LT |
1911 | goto out; |
1912 | ||
986db2d1 | 1913 | retval = copy_string_kernel(bprm->filename, bprm); |
1da177e4 LT |
1914 | if (retval < 0) |
1915 | goto out; | |
1916 | ||
1917 | bprm->exec = bprm->p; | |
1918 | retval = copy_strings(bprm->envc, envp, bprm); | |
1919 | if (retval < 0) | |
1920 | goto out; | |
1921 | ||
1922 | retval = copy_strings(bprm->argc, argv, bprm); | |
1923 | if (retval < 0) | |
1924 | goto out; | |
1925 | ||
5d1baf3b | 1926 | retval = exec_binprm(bprm); |
a6f76f23 DH |
1927 | if (retval < 0) |
1928 | goto out; | |
1da177e4 | 1929 | |
a6f76f23 | 1930 | /* execve succeeded */ |
498052bb | 1931 | current->fs->in_exec = 0; |
f9ce1f1c | 1932 | current->in_execve = 0; |
d7822b1e | 1933 | rseq_execve(current); |
a6f76f23 | 1934 | acct_update_integrals(current); |
16d51a59 | 1935 | task_numa_free(current, false); |
a6f76f23 | 1936 | free_bprm(bprm); |
51f39a1f | 1937 | kfree(pathbuf); |
449325b5 AS |
1938 | if (filename) |
1939 | putname(filename); | |
a6f76f23 DH |
1940 | if (displaced) |
1941 | put_files_struct(displaced); | |
1942 | return retval; | |
1da177e4 | 1943 | |
a6f76f23 | 1944 | out: |
8890b293 EB |
1945 | /* |
1946 | * If past the point of no return ensure the the code never | |
1947 | * returns to the userspace process. Use an existing fatal | |
1948 | * signal if present otherwise terminate the process with | |
1949 | * SIGSEGV. | |
1950 | */ | |
1951 | if (bprm->point_of_no_return && !fatal_signal_pending(current)) | |
1952 | force_sigsegv(SIGSEGV); | |
3c77f845 ON |
1953 | if (bprm->mm) { |
1954 | acct_arg_size(bprm, 0); | |
1955 | mmput(bprm->mm); | |
1956 | } | |
1da177e4 | 1957 | |
498052bb | 1958 | out_unmark: |
9e00cdb0 | 1959 | current->fs->in_exec = 0; |
f9ce1f1c | 1960 | current->in_execve = 0; |
a6f76f23 DH |
1961 | |
1962 | out_free: | |
08a6fac1 | 1963 | free_bprm(bprm); |
51f39a1f | 1964 | kfree(pathbuf); |
1da177e4 | 1965 | |
fd8328be | 1966 | out_files: |
3b125388 AV |
1967 | if (displaced) |
1968 | reset_files_struct(displaced); | |
1da177e4 | 1969 | out_ret: |
449325b5 AS |
1970 | if (filename) |
1971 | putname(filename); | |
1da177e4 LT |
1972 | return retval; |
1973 | } | |
1974 | ||
449325b5 AS |
1975 | static int do_execveat_common(int fd, struct filename *filename, |
1976 | struct user_arg_ptr argv, | |
1977 | struct user_arg_ptr envp, | |
1978 | int flags) | |
1979 | { | |
1980 | return __do_execve_file(fd, filename, argv, envp, flags, NULL); | |
1981 | } | |
1982 | ||
1983 | int do_execve_file(struct file *file, void *__argv, void *__envp) | |
1984 | { | |
1985 | struct user_arg_ptr argv = { .ptr.native = __argv }; | |
1986 | struct user_arg_ptr envp = { .ptr.native = __envp }; | |
1987 | ||
1988 | return __do_execve_file(AT_FDCWD, NULL, argv, envp, 0, file); | |
1989 | } | |
1990 | ||
c4ad8f98 | 1991 | int do_execve(struct filename *filename, |
ba2d0162 | 1992 | const char __user *const __user *__argv, |
da3d4c5f | 1993 | const char __user *const __user *__envp) |
ba2d0162 | 1994 | { |
0e028465 ON |
1995 | struct user_arg_ptr argv = { .ptr.native = __argv }; |
1996 | struct user_arg_ptr envp = { .ptr.native = __envp }; | |
51f39a1f DD |
1997 | return do_execveat_common(AT_FDCWD, filename, argv, envp, 0); |
1998 | } | |
1999 | ||
2000 | int do_execveat(int fd, struct filename *filename, | |
2001 | const char __user *const __user *__argv, | |
2002 | const char __user *const __user *__envp, | |
2003 | int flags) | |
2004 | { | |
2005 | struct user_arg_ptr argv = { .ptr.native = __argv }; | |
2006 | struct user_arg_ptr envp = { .ptr.native = __envp }; | |
2007 | ||
2008 | return do_execveat_common(fd, filename, argv, envp, flags); | |
0e028465 ON |
2009 | } |
2010 | ||
2011 | #ifdef CONFIG_COMPAT | |
c4ad8f98 | 2012 | static int compat_do_execve(struct filename *filename, |
38b983b3 | 2013 | const compat_uptr_t __user *__argv, |
d03d26e5 | 2014 | const compat_uptr_t __user *__envp) |
0e028465 ON |
2015 | { |
2016 | struct user_arg_ptr argv = { | |
2017 | .is_compat = true, | |
2018 | .ptr.compat = __argv, | |
2019 | }; | |
2020 | struct user_arg_ptr envp = { | |
2021 | .is_compat = true, | |
2022 | .ptr.compat = __envp, | |
2023 | }; | |
51f39a1f DD |
2024 | return do_execveat_common(AT_FDCWD, filename, argv, envp, 0); |
2025 | } | |
2026 | ||
2027 | static int compat_do_execveat(int fd, struct filename *filename, | |
2028 | const compat_uptr_t __user *__argv, | |
2029 | const compat_uptr_t __user *__envp, | |
2030 | int flags) | |
2031 | { | |
2032 | struct user_arg_ptr argv = { | |
2033 | .is_compat = true, | |
2034 | .ptr.compat = __argv, | |
2035 | }; | |
2036 | struct user_arg_ptr envp = { | |
2037 | .is_compat = true, | |
2038 | .ptr.compat = __envp, | |
2039 | }; | |
2040 | return do_execveat_common(fd, filename, argv, envp, flags); | |
ba2d0162 | 2041 | } |
0e028465 | 2042 | #endif |
ba2d0162 | 2043 | |
964ee7df | 2044 | void set_binfmt(struct linux_binfmt *new) |
1da177e4 | 2045 | { |
801460d0 HS |
2046 | struct mm_struct *mm = current->mm; |
2047 | ||
2048 | if (mm->binfmt) | |
2049 | module_put(mm->binfmt->module); | |
1da177e4 | 2050 | |
801460d0 | 2051 | mm->binfmt = new; |
964ee7df ON |
2052 | if (new) |
2053 | __module_get(new->module); | |
1da177e4 | 2054 | } |
1da177e4 LT |
2055 | EXPORT_SYMBOL(set_binfmt); |
2056 | ||
6c5d5238 | 2057 | /* |
7288e118 | 2058 | * set_dumpable stores three-value SUID_DUMP_* into mm->flags. |
6c5d5238 KH |
2059 | */ |
2060 | void set_dumpable(struct mm_struct *mm, int value) | |
2061 | { | |
7288e118 ON |
2062 | if (WARN_ON((unsigned)value > SUID_DUMP_ROOT)) |
2063 | return; | |
2064 | ||
26e15225 | 2065 | set_mask_bits(&mm->flags, MMF_DUMPABLE_MASK, value); |
6c5d5238 | 2066 | } |
6c5d5238 | 2067 | |
38b983b3 AV |
2068 | SYSCALL_DEFINE3(execve, |
2069 | const char __user *, filename, | |
2070 | const char __user *const __user *, argv, | |
2071 | const char __user *const __user *, envp) | |
2072 | { | |
c4ad8f98 | 2073 | return do_execve(getname(filename), argv, envp); |
38b983b3 | 2074 | } |
51f39a1f DD |
2075 | |
2076 | SYSCALL_DEFINE5(execveat, | |
2077 | int, fd, const char __user *, filename, | |
2078 | const char __user *const __user *, argv, | |
2079 | const char __user *const __user *, envp, | |
2080 | int, flags) | |
2081 | { | |
2082 | int lookup_flags = (flags & AT_EMPTY_PATH) ? LOOKUP_EMPTY : 0; | |
2083 | ||
2084 | return do_execveat(fd, | |
2085 | getname_flags(filename, lookup_flags, NULL), | |
2086 | argv, envp, flags); | |
2087 | } | |
2088 | ||
38b983b3 | 2089 | #ifdef CONFIG_COMPAT |
625b1d7e HC |
2090 | COMPAT_SYSCALL_DEFINE3(execve, const char __user *, filename, |
2091 | const compat_uptr_t __user *, argv, | |
2092 | const compat_uptr_t __user *, envp) | |
38b983b3 | 2093 | { |
c4ad8f98 | 2094 | return compat_do_execve(getname(filename), argv, envp); |
38b983b3 | 2095 | } |
51f39a1f DD |
2096 | |
2097 | COMPAT_SYSCALL_DEFINE5(execveat, int, fd, | |
2098 | const char __user *, filename, | |
2099 | const compat_uptr_t __user *, argv, | |
2100 | const compat_uptr_t __user *, envp, | |
2101 | int, flags) | |
2102 | { | |
2103 | int lookup_flags = (flags & AT_EMPTY_PATH) ? LOOKUP_EMPTY : 0; | |
2104 | ||
2105 | return compat_do_execveat(fd, | |
2106 | getname_flags(filename, lookup_flags, NULL), | |
2107 | argv, envp, flags); | |
2108 | } | |
38b983b3 | 2109 | #endif |