blob: 89d788ca782967266e16abc8012274aaec9b7bf9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/exec.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * #!-checking implemented by tytso.
9 */
10/*
11 * Demand-loading implemented 01.12.91 - no need to read anything but
12 * the header into memory. The inode of the executable is put into
13 * "current->executable", and page faults do the actual loading. Clean.
14 *
15 * Once more I can proudly say that linux stood up to being changed: it
16 * was less than 2 hours work to get demand-loading completely implemented.
17 *
18 * Demand loading changed July 1993 by Eric Youngdale. Use mmap instead,
19 * current->executable is only used by the procfs. This allows a dispatch
20 * table to check for several different types of binary formats. We keep
21 * trying until we recognize the file or we run out of supported binary
22 * formats.
23 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/slab.h>
26#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040027#include <linux/fdtable.h>
Hugh Dickinsba92a432008-07-25 01:45:43 -070028#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/stat.h>
30#include <linux/fcntl.h>
Hugh Dickinsba92a432008-07-25 01:45:43 -070031#include <linux/swap.h>
Neil Horman74aadce2007-10-16 23:26:35 -070032#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/init.h>
Hugh Dickinsca5b1722008-07-28 15:46:18 -070034#include <linux/pagemap.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020035#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/highmem.h>
37#include <linux/spinlock.h>
38#include <linux/key.h>
39#include <linux/personality.h>
40#include <linux/binfmts.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/utsname.h>
Sukadev Bhattiprolu84d73782006-12-08 02:38:01 -080042#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/module.h>
44#include <linux/namei.h>
45#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/mount.h>
47#include <linux/security.h>
48#include <linux/syscalls.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070049#include <linux/tsacct_kern.h>
Matt Helsley9f460802005-11-07 00:59:16 -080050#include <linux/cn_proc.h>
Al Viro473ae302006-04-26 14:04:08 -040051#include <linux/audit.h>
Roland McGrath6341c392008-07-25 19:45:44 -070052#include <linux/tracehook.h>
Johannes Berg5f4123b2008-07-09 10:28:40 +020053#include <linux/kmod.h>
Eric Paris6110e3a2008-12-17 13:53:20 -050054#include <linux/fsnotify.h>
Al Viro5ad4e532009-03-29 19:50:06 -040055#include <linux/fs_struct.h>
Neil Horman61be2282009-09-23 15:56:58 -070056#include <linux/pipe_fs_i.h>
Ying Han3d5992d2010-10-26 14:21:23 -070057#include <linux/oom.h>
Oleg Nesterov0e028462011-03-06 18:02:54 +010058#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#include <asm/uaccess.h>
61#include <asm/mmu_context.h>
Ollie Wildb6a2fea2007-07-19 01:48:16 -070062#include <asm/tlb.h>
David Howellsa6f76f22008-11-14 10:39:24 +110063#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065int core_uses_pid;
Dan Aloni71ce92f2007-05-16 22:11:16 -070066char core_pattern[CORENAME_MAX_SIZE] = "core";
Neil Hormana2939802009-09-23 15:56:56 -070067unsigned int core_pipe_limit;
Alan Coxd6e71142005-06-23 00:09:43 -070068int suid_dumpable = 0;
69
Xiaotian Feng1b0d3002010-10-27 15:34:08 -070070struct core_name {
71 char *corename;
72 int used, size;
73};
74static atomic_t call_count = ATOMIC_INIT(1);
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* The maximal length of core_pattern is also specified in sysctl.c */
77
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070078static LIST_HEAD(formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static DEFINE_RWLOCK(binfmt_lock);
80
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070081int __register_binfmt(struct linux_binfmt * fmt, int insert)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 if (!fmt)
84 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 write_lock(&binfmt_lock);
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070086 insert ? list_add(&fmt->lh, &formats) :
87 list_add_tail(&fmt->lh, &formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 write_unlock(&binfmt_lock);
89 return 0;
90}
91
Ivan Kokshaysky74641f52009-04-30 15:08:49 -070092EXPORT_SYMBOL(__register_binfmt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Alexey Dobriyanf6b450d2007-10-16 23:26:04 -070094void unregister_binfmt(struct linux_binfmt * fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 write_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070097 list_del(&fmt->lh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 write_unlock(&binfmt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
101EXPORT_SYMBOL(unregister_binfmt);
102
103static inline void put_binfmt(struct linux_binfmt * fmt)
104{
105 module_put(fmt->module);
106}
107
108/*
109 * Note that a shared library must be both readable and executable due to
110 * security reasons.
111 *
112 * Also note that we take the address to load from from the file itself.
113 */
Heiko Carstens1e7bfb22009-01-14 14:14:29 +0100114SYSCALL_DEFINE1(uselib, const char __user *, library)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Al Viro964bd182008-07-26 03:33:14 -0400116 struct file *file;
Al Viro964bd182008-07-26 03:33:14 -0400117 char *tmp = getname(library);
118 int error = PTR_ERR(tmp);
Al Viro47c805d2011-02-23 17:44:09 -0500119 static const struct open_flags uselib_flags = {
120 .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC,
121 .acc_mode = MAY_READ | MAY_EXEC | MAY_OPEN,
122 .intent = LOOKUP_OPEN
123 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Al Viro6e8341a2009-04-06 11:16:22 -0400125 if (IS_ERR(tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 goto out;
127
Al Viro47c805d2011-02-23 17:44:09 -0500128 file = do_filp_open(AT_FDCWD, tmp, &uselib_flags, LOOKUP_FOLLOW);
Al Viro6e8341a2009-04-06 11:16:22 -0400129 putname(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 error = PTR_ERR(file);
131 if (IS_ERR(file))
132 goto out;
133
Al Viro6e8341a2009-04-06 11:16:22 -0400134 error = -EINVAL;
135 if (!S_ISREG(file->f_path.dentry->d_inode->i_mode))
136 goto exit;
137
138 error = -EACCES;
139 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
140 goto exit;
141
Eric Paris2a12a9d2009-12-17 21:24:21 -0500142 fsnotify_open(file);
Eric Paris6110e3a2008-12-17 13:53:20 -0500143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 error = -ENOEXEC;
145 if(file->f_op) {
146 struct linux_binfmt * fmt;
147
148 read_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -0700149 list_for_each_entry(fmt, &formats, lh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (!fmt->load_shlib)
151 continue;
152 if (!try_module_get(fmt->module))
153 continue;
154 read_unlock(&binfmt_lock);
155 error = fmt->load_shlib(file);
156 read_lock(&binfmt_lock);
157 put_binfmt(fmt);
158 if (error != -ENOEXEC)
159 break;
160 }
161 read_unlock(&binfmt_lock);
162 }
Al Viro6e8341a2009-04-06 11:16:22 -0400163exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 fput(file);
165out:
166 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700169#ifdef CONFIG_MMU
170
Oleg Nesterov0e028462011-03-06 18:02:54 +0100171static void acct_arg_size(struct linux_binprm *bprm, unsigned long pages)
Oleg Nesterov3c77f842010-11-30 20:55:34 +0100172{
173 struct mm_struct *mm = current->mm;
174 long diff = (long)(pages - bprm->vma_pages);
175
176 if (!mm || !diff)
177 return;
178
179 bprm->vma_pages = pages;
180
181#ifdef SPLIT_RSS_COUNTING
182 add_mm_counter(mm, MM_ANONPAGES, diff);
183#else
184 spin_lock(&mm->page_table_lock);
185 add_mm_counter(mm, MM_ANONPAGES, diff);
186 spin_unlock(&mm->page_table_lock);
187#endif
188}
189
Oleg Nesterov0e028462011-03-06 18:02:54 +0100190static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700191 int write)
192{
193 struct page *page;
194 int ret;
195
196#ifdef CONFIG_STACK_GROWSUP
197 if (write) {
198 ret = expand_stack_downwards(bprm->vma, pos);
199 if (ret < 0)
200 return NULL;
201 }
202#endif
203 ret = get_user_pages(current, bprm->mm, pos,
204 1, write, 1, &page, NULL);
205 if (ret <= 0)
206 return NULL;
207
208 if (write) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700209 unsigned long size = bprm->vma->vm_end - bprm->vma->vm_start;
Linus Torvaldsa64e7152008-03-03 10:12:14 -0800210 struct rlimit *rlim;
211
Oleg Nesterov3c77f842010-11-30 20:55:34 +0100212 acct_arg_size(bprm, size / PAGE_SIZE);
213
Linus Torvaldsa64e7152008-03-03 10:12:14 -0800214 /*
215 * We've historically supported up to 32 pages (ARG_MAX)
216 * of argument strings even with small stacks
217 */
218 if (size <= ARG_MAX)
219 return page;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700220
221 /*
222 * Limit to 1/4-th the stack size for the argv+env strings.
223 * This ensures that:
224 * - the remaining binfmt code will not run out of stack space,
225 * - the program will have a reasonable amount of stack left
226 * to work from.
227 */
Linus Torvaldsa64e7152008-03-03 10:12:14 -0800228 rlim = current->signal->rlim;
Jiri Slabyd554ed892010-03-05 13:42:42 -0800229 if (size > ACCESS_ONCE(rlim[RLIMIT_STACK].rlim_cur) / 4) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700230 put_page(page);
231 return NULL;
232 }
233 }
234
235 return page;
236}
237
238static void put_arg_page(struct page *page)
239{
240 put_page(page);
241}
242
243static void free_arg_page(struct linux_binprm *bprm, int i)
244{
245}
246
247static void free_arg_pages(struct linux_binprm *bprm)
248{
249}
250
251static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
252 struct page *page)
253{
254 flush_cache_page(bprm->vma, pos, page_to_pfn(page));
255}
256
257static int __bprm_mm_init(struct linux_binprm *bprm)
258{
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800259 int err;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700260 struct vm_area_struct *vma = NULL;
261 struct mm_struct *mm = bprm->mm;
262
263 bprm->vma = vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
264 if (!vma)
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800265 return -ENOMEM;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700266
267 down_write(&mm->mmap_sem);
268 vma->vm_mm = mm;
269
270 /*
271 * Place the stack at the largest stack address the architecture
272 * supports. Later, we'll move this to an appropriate place. We don't
273 * use STACK_TOP because that can depend on attributes which aren't
274 * configured yet.
275 */
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700276 BUG_ON(VM_STACK_FLAGS & VM_STACK_INCOMPLETE_SETUP);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700277 vma->vm_end = STACK_TOP_MAX;
278 vma->vm_start = vma->vm_end - PAGE_SIZE;
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700279 vma->vm_flags = VM_STACK_FLAGS | VM_STACK_INCOMPLETE_SETUP;
Coly Li3ed75eb2007-10-18 23:39:15 -0700280 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Rik van Riel5beb4932010-03-05 13:42:07 -0800281 INIT_LIST_HEAD(&vma->anon_vma_chain);
Tavis Ormandy462e635e2010-12-09 15:29:42 +0100282
283 err = security_file_mmap(NULL, 0, 0, 0, vma->vm_start, 1);
284 if (err)
285 goto err;
286
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700287 err = insert_vm_struct(mm, vma);
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800288 if (err)
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700289 goto err;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700290
291 mm->stack_vm = mm->total_vm = 1;
292 up_write(&mm->mmap_sem);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700293 bprm->p = vma->vm_end - sizeof(void *);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700294 return 0;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700295err:
Luiz Fernando N. Capitulinoeaccbfa2009-01-06 14:40:44 -0800296 up_write(&mm->mmap_sem);
297 bprm->vma = NULL;
298 kmem_cache_free(vm_area_cachep, vma);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700299 return err;
300}
301
302static bool valid_arg_len(struct linux_binprm *bprm, long len)
303{
304 return len <= MAX_ARG_STRLEN;
305}
306
307#else
308
Oleg Nesterov0e028462011-03-06 18:02:54 +0100309static inline void acct_arg_size(struct linux_binprm *bprm, unsigned long pages)
Oleg Nesterov3c77f842010-11-30 20:55:34 +0100310{
311}
312
Oleg Nesterov0e028462011-03-06 18:02:54 +0100313static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700314 int write)
315{
316 struct page *page;
317
318 page = bprm->page[pos / PAGE_SIZE];
319 if (!page && write) {
320 page = alloc_page(GFP_HIGHUSER|__GFP_ZERO);
321 if (!page)
322 return NULL;
323 bprm->page[pos / PAGE_SIZE] = page;
324 }
325
326 return page;
327}
328
329static void put_arg_page(struct page *page)
330{
331}
332
333static void free_arg_page(struct linux_binprm *bprm, int i)
334{
335 if (bprm->page[i]) {
336 __free_page(bprm->page[i]);
337 bprm->page[i] = NULL;
338 }
339}
340
341static void free_arg_pages(struct linux_binprm *bprm)
342{
343 int i;
344
345 for (i = 0; i < MAX_ARG_PAGES; i++)
346 free_arg_page(bprm, i);
347}
348
349static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
350 struct page *page)
351{
352}
353
354static int __bprm_mm_init(struct linux_binprm *bprm)
355{
356 bprm->p = PAGE_SIZE * MAX_ARG_PAGES - sizeof(void *);
357 return 0;
358}
359
360static bool valid_arg_len(struct linux_binprm *bprm, long len)
361{
362 return len <= bprm->p;
363}
364
365#endif /* CONFIG_MMU */
366
367/*
368 * Create a new mm_struct and populate it with a temporary stack
369 * vm_area_struct. We don't have enough context at this point to set the stack
370 * flags, permissions, and offset, so we use temporary values. We'll update
371 * them later in setup_arg_pages().
372 */
373int bprm_mm_init(struct linux_binprm *bprm)
374{
375 int err;
376 struct mm_struct *mm = NULL;
377
378 bprm->mm = mm = mm_alloc();
379 err = -ENOMEM;
380 if (!mm)
381 goto err;
382
383 err = init_new_context(current, mm);
384 if (err)
385 goto err;
386
387 err = __bprm_mm_init(bprm);
388 if (err)
389 goto err;
390
391 return 0;
392
393err:
394 if (mm) {
395 bprm->mm = NULL;
396 mmdrop(mm);
397 }
398
399 return err;
400}
401
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100402struct user_arg_ptr {
Oleg Nesterov0e028462011-03-06 18:02:54 +0100403#ifdef CONFIG_COMPAT
404 bool is_compat;
405#endif
406 union {
407 const char __user *const __user *native;
408#ifdef CONFIG_COMPAT
409 compat_uptr_t __user *compat;
410#endif
411 } ptr;
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100412};
413
414static const char __user *get_user_arg_ptr(struct user_arg_ptr argv, int nr)
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100415{
Oleg Nesterov0e028462011-03-06 18:02:54 +0100416 const char __user *native;
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100417
Oleg Nesterov0e028462011-03-06 18:02:54 +0100418#ifdef CONFIG_COMPAT
419 if (unlikely(argv.is_compat)) {
420 compat_uptr_t compat;
421
422 if (get_user(compat, argv.ptr.compat + nr))
423 return ERR_PTR(-EFAULT);
424
425 return compat_ptr(compat);
426 }
427#endif
428
429 if (get_user(native, argv.ptr.native + nr))
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100430 return ERR_PTR(-EFAULT);
431
Oleg Nesterov0e028462011-03-06 18:02:54 +0100432 return native;
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100433}
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435/*
436 * count() counts the number of strings in array ARGV.
437 */
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100438static int count(struct user_arg_ptr argv, int max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 int i = 0;
441
Oleg Nesterov0e028462011-03-06 18:02:54 +0100442 if (argv.ptr.native != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 for (;;) {
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100444 const char __user *p = get_user_arg_ptr(argv, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (!p)
447 break;
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100448
449 if (IS_ERR(p))
450 return -EFAULT;
451
Jason Baron362e6662008-10-15 22:01:52 -0700452 if (i++ >= max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return -E2BIG;
Roland McGrath9aea5a62010-09-07 19:37:06 -0700454
455 if (fatal_signal_pending(current))
456 return -ERESTARTNOHAND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 cond_resched();
458 }
459 }
460 return i;
461}
462
463/*
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700464 * 'copy_strings()' copies argument/environment strings from the old
465 * processes's memory to the new process's stack. The call to get_user_pages()
466 * ensures the destination page is created and not swapped out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 */
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100468static int copy_strings(int argc, struct user_arg_ptr argv,
Adrian Bunk75c96f82005-05-05 16:16:09 -0700469 struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 struct page *kmapped_page = NULL;
472 char *kaddr = NULL;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700473 unsigned long kpos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 int ret;
475
476 while (argc-- > 0) {
David Howellsd7627462010-08-17 23:52:56 +0100477 const char __user *str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int len;
479 unsigned long pos;
480
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100481 ret = -EFAULT;
482 str = get_user_arg_ptr(argv, argc);
483 if (IS_ERR(str))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100486 len = strnlen_user(str, MAX_ARG_STRLEN);
487 if (!len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 goto out;
Oleg Nesterov1d1dbf82011-03-06 18:02:21 +0100489
490 ret = -E2BIG;
491 if (!valid_arg_len(bprm, len))
492 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700494 /* We're going to work our way backwords. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 pos = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700496 str += len;
497 bprm->p -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 while (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 int offset, bytes_to_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Roland McGrath9aea5a62010-09-07 19:37:06 -0700502 if (fatal_signal_pending(current)) {
503 ret = -ERESTARTNOHAND;
504 goto out;
505 }
Roland McGrath7993bc12010-09-07 19:36:28 -0700506 cond_resched();
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 offset = pos % PAGE_SIZE;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700509 if (offset == 0)
510 offset = PAGE_SIZE;
511
512 bytes_to_copy = offset;
513 if (bytes_to_copy > len)
514 bytes_to_copy = len;
515
516 offset -= bytes_to_copy;
517 pos -= bytes_to_copy;
518 str -= bytes_to_copy;
519 len -= bytes_to_copy;
520
521 if (!kmapped_page || kpos != (pos & PAGE_MASK)) {
522 struct page *page;
523
524 page = get_arg_page(bprm, pos, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (!page) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700526 ret = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 goto out;
528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700530 if (kmapped_page) {
531 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700533 put_arg_page(kmapped_page);
534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 kmapped_page = page;
536 kaddr = kmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700537 kpos = pos & PAGE_MASK;
538 flush_arg_page(bprm, kpos, kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700540 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 ret = -EFAULT;
542 goto out;
543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545 }
546 ret = 0;
547out:
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700548 if (kmapped_page) {
549 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700551 put_arg_page(kmapped_page);
552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return ret;
554}
555
556/*
557 * Like copy_strings, but get argv and its values from kernel memory.
558 */
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100559int copy_strings_kernel(int argc, const char *const *__argv,
David Howellsd7627462010-08-17 23:52:56 +0100560 struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 int r;
563 mm_segment_t oldfs = get_fs();
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100564 struct user_arg_ptr argv = {
Oleg Nesterov0e028462011-03-06 18:02:54 +0100565 .ptr.native = (const char __user *const __user *)__argv,
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100566 };
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 set_fs(KERNEL_DS);
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100569 r = copy_strings(argc, argv, bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 set_fs(oldfs);
Oleg Nesterovba2d01622011-03-06 18:02:37 +0100571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return r;
573}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574EXPORT_SYMBOL(copy_strings_kernel);
575
576#ifdef CONFIG_MMU
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578/*
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700579 * During bprm_mm_init(), we create a temporary stack at STACK_TOP_MAX. Once
580 * the binfmt code determines where the new stack should reside, we shift it to
581 * its final location. The process proceeds as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 *
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700583 * 1) Use shift to calculate the new vma endpoints.
584 * 2) Extend vma to cover both the old and new ranges. This ensures the
585 * arguments passed to subsequent functions are consistent.
586 * 3) Move vma's page tables to the new range.
587 * 4) Free up any cleared pgd range.
588 * 5) Shrink the vma to cover only the new range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700590static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
592 struct mm_struct *mm = vma->vm_mm;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700593 unsigned long old_start = vma->vm_start;
594 unsigned long old_end = vma->vm_end;
595 unsigned long length = old_end - old_start;
596 unsigned long new_start = old_start - shift;
597 unsigned long new_end = old_end - shift;
598 struct mmu_gather *tlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700600 BUG_ON(new_start > new_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700602 /*
603 * ensure there are no vmas between where we want to go
604 * and where we are
605 */
606 if (vma != find_vma(mm, new_start))
607 return -EFAULT;
608
609 /*
610 * cover the whole range: [new_start, old_end)
611 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800612 if (vma_adjust(vma, new_start, old_end, vma->vm_pgoff, NULL))
613 return -ENOMEM;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700614
615 /*
616 * move the page tables downwards, on failure we rely on
617 * process cleanup to remove whatever mess we made.
618 */
619 if (length != move_page_tables(vma, old_start,
620 vma, new_start, length))
621 return -ENOMEM;
622
623 lru_add_drain();
624 tlb = tlb_gather_mmu(mm, 0);
625 if (new_end > old_start) {
626 /*
627 * when the old and new regions overlap clear from new_end.
628 */
Jan Beulich42b77722008-07-23 21:27:10 -0700629 free_pgd_range(tlb, new_end, old_end, new_end,
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700630 vma->vm_next ? vma->vm_next->vm_start : 0);
631 } else {
632 /*
633 * otherwise, clean from old_start; this is done to not touch
634 * the address space in [new_end, old_start) some architectures
635 * have constraints on va-space that make this illegal (IA64) -
636 * for the others its just a little faster.
637 */
Jan Beulich42b77722008-07-23 21:27:10 -0700638 free_pgd_range(tlb, old_start, old_end, new_end,
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700639 vma->vm_next ? vma->vm_next->vm_start : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700641 tlb_finish_mmu(tlb, new_end, old_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700643 /*
Rik van Riel5beb4932010-03-05 13:42:07 -0800644 * Shrink the vma to just the new range. Always succeeds.
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700645 */
646 vma_adjust(vma, new_start, new_end, vma->vm_pgoff, NULL);
647
648 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700651/*
652 * Finalizes the stack vm_area_struct. The flags and permissions are updated,
653 * the stack is optionally relocated, and some extra space is added.
654 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655int setup_arg_pages(struct linux_binprm *bprm,
656 unsigned long stack_top,
657 int executable_stack)
658{
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700659 unsigned long ret;
660 unsigned long stack_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 struct mm_struct *mm = current->mm;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700662 struct vm_area_struct *vma = bprm->vma;
663 struct vm_area_struct *prev = NULL;
664 unsigned long vm_flags;
665 unsigned long stack_base;
Michael Neuling803bf5e2010-02-10 13:56:42 -0800666 unsigned long stack_size;
667 unsigned long stack_expand;
668 unsigned long rlim_stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670#ifdef CONFIG_STACK_GROWSUP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /* Limit stack size to 1GB */
Jiri Slabyd554ed892010-03-05 13:42:42 -0800672 stack_base = rlimit_max(RLIMIT_STACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (stack_base > (1 << 30))
674 stack_base = 1 << 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700676 /* Make sure we didn't let the argument array grow too large. */
677 if (vma->vm_end - vma->vm_start > stack_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return -ENOMEM;
679
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700680 stack_base = PAGE_ALIGN(stack_top - stack_base);
681
682 stack_shift = vma->vm_start - stack_base;
683 mm->arg_start = bprm->p - stack_shift;
684 bprm->p = vma->vm_end - stack_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685#else
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700686 stack_top = arch_align_stack(stack_top);
687 stack_top = PAGE_ALIGN(stack_top);
Roland McGrath1b528182010-09-07 19:35:49 -0700688
689 if (unlikely(stack_top < mmap_min_addr) ||
690 unlikely(vma->vm_end - vma->vm_start >= stack_top - mmap_min_addr))
691 return -ENOMEM;
692
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700693 stack_shift = vma->vm_end - stack_top;
694
695 bprm->p -= stack_shift;
696 mm->arg_start = bprm->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697#endif
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700698
699 if (bprm->loader)
700 bprm->loader -= stack_shift;
701 bprm->exec -= stack_shift;
702
703 down_write(&mm->mmap_sem);
Hugh Dickins96a8e132008-07-10 21:19:20 +0100704 vm_flags = VM_STACK_FLAGS;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700705
706 /*
707 * Adjust stack execute permissions; explicitly enable for
708 * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone
709 * (arch default) otherwise.
710 */
711 if (unlikely(executable_stack == EXSTACK_ENABLE_X))
712 vm_flags |= VM_EXEC;
713 else if (executable_stack == EXSTACK_DISABLE_X)
714 vm_flags &= ~VM_EXEC;
715 vm_flags |= mm->def_flags;
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700716 vm_flags |= VM_STACK_INCOMPLETE_SETUP;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700717
718 ret = mprotect_fixup(vma, &prev, vma->vm_start, vma->vm_end,
719 vm_flags);
720 if (ret)
721 goto out_unlock;
722 BUG_ON(prev != vma);
723
724 /* Move stack pages down in memory. */
725 if (stack_shift) {
726 ret = shift_arg_pages(vma, stack_shift);
Anton Blanchardfc63cf22009-11-11 14:26:48 -0800727 if (ret)
728 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730
Mel Gormana8bef8ff2010-05-24 14:32:24 -0700731 /* mprotect_fixup is overkill to remove the temporary stack flags */
732 vma->vm_flags &= ~VM_STACK_INCOMPLETE_SETUP;
733
Michael Neuling5ef097d2010-03-05 13:42:57 -0800734 stack_expand = 131072UL; /* randomly 32*4k (or 2*64k) pages */
Michael Neuling803bf5e2010-02-10 13:56:42 -0800735 stack_size = vma->vm_end - vma->vm_start;
736 /*
737 * Align this down to a page boundary as expand_stack
738 * will align it up.
739 */
740 rlim_stack = rlimit(RLIMIT_STACK) & PAGE_MASK;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700741#ifdef CONFIG_STACK_GROWSUP
Michael Neuling803bf5e2010-02-10 13:56:42 -0800742 if (stack_size + stack_expand > rlim_stack)
743 stack_base = vma->vm_start + rlim_stack;
744 else
745 stack_base = vma->vm_end + stack_expand;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700746#else
Michael Neuling803bf5e2010-02-10 13:56:42 -0800747 if (stack_size + stack_expand > rlim_stack)
748 stack_base = vma->vm_end - rlim_stack;
749 else
750 stack_base = vma->vm_start - stack_expand;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700751#endif
Eric B Munson3af9e852010-05-18 15:30:49 +0100752 current->mm->start_stack = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700753 ret = expand_stack(vma, stack_base);
754 if (ret)
755 ret = -EFAULT;
756
757out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 up_write(&mm->mmap_sem);
Anton Blanchardfc63cf22009-11-11 14:26:48 -0800759 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761EXPORT_SYMBOL(setup_arg_pages);
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763#endif /* CONFIG_MMU */
764
765struct file *open_exec(const char *name)
766{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 struct file *file;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200768 int err;
Al Viro47c805d2011-02-23 17:44:09 -0500769 static const struct open_flags open_exec_flags = {
770 .open_flag = O_LARGEFILE | O_RDONLY | __FMODE_EXEC,
771 .acc_mode = MAY_EXEC | MAY_OPEN,
772 .intent = LOOKUP_OPEN
773 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Al Viro47c805d2011-02-23 17:44:09 -0500775 file = do_filp_open(AT_FDCWD, name, &open_exec_flags, LOOKUP_FOLLOW);
Al Viro6e8341a2009-04-06 11:16:22 -0400776 if (IS_ERR(file))
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200777 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200779 err = -EACCES;
Al Viro6e8341a2009-04-06 11:16:22 -0400780 if (!S_ISREG(file->f_path.dentry->d_inode->i_mode))
781 goto exit;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200782
Al Viro6e8341a2009-04-06 11:16:22 -0400783 if (file->f_path.mnt->mnt_flags & MNT_NOEXEC)
784 goto exit;
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200785
Eric Paris2a12a9d2009-12-17 21:24:21 -0500786 fsnotify_open(file);
Eric Paris6110e3a2008-12-17 13:53:20 -0500787
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200788 err = deny_write_access(file);
Al Viro6e8341a2009-04-06 11:16:22 -0400789 if (err)
790 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Al Viro6e8341a2009-04-06 11:16:22 -0400792out:
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200793 return file;
794
Al Viro6e8341a2009-04-06 11:16:22 -0400795exit:
796 fput(file);
Christoph Hellwige56b6a52008-05-19 07:53:34 +0200797 return ERR_PTR(err);
798}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799EXPORT_SYMBOL(open_exec);
800
Mimi Zohar6777d772009-08-21 14:32:48 -0400801int kernel_read(struct file *file, loff_t offset,
802 char *addr, unsigned long count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804 mm_segment_t old_fs;
805 loff_t pos = offset;
806 int result;
807
808 old_fs = get_fs();
809 set_fs(get_ds());
810 /* The cast to a user pointer is valid due to the set_fs() */
811 result = vfs_read(file, (void __user *)addr, count, &pos);
812 set_fs(old_fs);
813 return result;
814}
815
816EXPORT_SYMBOL(kernel_read);
817
818static int exec_mmap(struct mm_struct *mm)
819{
820 struct task_struct *tsk;
821 struct mm_struct * old_mm, *active_mm;
822
823 /* Notify parent that we're no longer interested in the old VM */
824 tsk = current;
825 old_mm = current->mm;
KAMEZAWA Hiroyuki34e55232010-03-05 13:41:40 -0800826 sync_mm_rss(tsk, old_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 mm_release(tsk, old_mm);
828
829 if (old_mm) {
830 /*
831 * Make sure that if there is a core dump in progress
832 * for the old mm, we get out and die instead of going
833 * through with the exec. We must hold mmap_sem around
Oleg Nesterov999d9fc2008-07-25 01:47:41 -0700834 * checking core_state and changing tsk->mm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 */
836 down_read(&old_mm->mmap_sem);
Oleg Nesterov999d9fc2008-07-25 01:47:41 -0700837 if (unlikely(old_mm->core_state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 up_read(&old_mm->mmap_sem);
839 return -EINTR;
840 }
841 }
842 task_lock(tsk);
843 active_mm = tsk->active_mm;
844 tsk->mm = mm;
845 tsk->active_mm = mm;
846 activate_mm(active_mm, mm);
Ying Han3d5992d2010-10-26 14:21:23 -0700847 if (old_mm && tsk->signal->oom_score_adj == OOM_SCORE_ADJ_MIN) {
848 atomic_dec(&old_mm->oom_disable_count);
849 atomic_inc(&tsk->mm->oom_disable_count);
850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 task_unlock(tsk);
852 arch_pick_mmap_layout(mm);
853 if (old_mm) {
854 up_read(&old_mm->mmap_sem);
Eric Sesterhenn7dddb122006-04-01 01:13:38 +0200855 BUG_ON(active_mm != old_mm);
Balbir Singh31a78f22008-09-28 23:09:31 +0100856 mm_update_next_owner(old_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 mmput(old_mm);
858 return 0;
859 }
860 mmdrop(active_mm);
861 return 0;
862}
863
864/*
865 * This function makes sure the current process has its own signal table,
866 * so that flush_signal_handlers can later reset the handlers without
867 * disturbing other processes. (Other processes might share the signal
868 * table via the CLONE_SIGHAND option to clone().)
869 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800870static int de_thread(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
872 struct signal_struct *sig = tsk->signal;
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700873 struct sighand_struct *oldsighand = tsk->sighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 spinlock_t *lock = &oldsighand->siglock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700876 if (thread_group_empty(tsk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 goto no_thread_group;
878
879 /*
880 * Kill all other threads in the thread group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 spin_lock_irq(lock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -0800883 if (signal_group_exit(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 /*
885 * Another group action in progress, just
886 * return so that the signal is processed.
887 */
888 spin_unlock_irq(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return -EAGAIN;
890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Oleg Nesterovd3441932010-05-26 14:43:11 -0700892 sig->group_exit_task = tsk;
893 sig->notify_count = zap_other_threads(tsk);
894 if (!thread_group_leader(tsk))
895 sig->notify_count--;
896
897 while (sig->notify_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 __set_current_state(TASK_UNINTERRUPTIBLE);
899 spin_unlock_irq(lock);
900 schedule();
901 spin_lock_irq(lock);
902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 spin_unlock_irq(lock);
904
905 /*
906 * At this point all other threads have exited, all we have to
907 * do is to wait for the thread group leader to become inactive,
908 * and to assume its PID:
909 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700910 if (!thread_group_leader(tsk)) {
Oleg Nesterov81879262008-12-01 14:18:16 -0800911 struct task_struct *leader = tsk->group_leader;
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700912
Oleg Nesterov2800d8d2008-04-30 00:53:12 -0700913 sig->notify_count = -1; /* for exit_notify() */
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700914 for (;;) {
915 write_lock_irq(&tasklist_lock);
916 if (likely(leader->exit_state))
917 break;
918 __set_current_state(TASK_UNINTERRUPTIBLE);
919 write_unlock_irq(&tasklist_lock);
920 schedule();
921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Roland McGrathf5e90282006-04-10 22:54:16 -0700923 /*
924 * The only record we have of the real-time age of a
925 * process, regardless of execs it's done, is start_time.
926 * All the past CPU time is accumulated in signal_struct
927 * from sister threads now dead. But in this non-leader
928 * exec, nothing survives from the original leader thread,
929 * whose birth marks the true age of this process now.
930 * When we take on its identity by switching to its PID, we
931 * also take its birthdate (always earlier than our own).
932 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700933 tsk->start_time = leader->start_time;
Roland McGrathf5e90282006-04-10 22:54:16 -0700934
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -0700935 BUG_ON(!same_thread_group(leader, tsk));
936 BUG_ON(has_group_leader_pid(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 /*
938 * An exec() starts a new thread group with the
939 * TGID of the previous thread group. Rehash the
940 * two threads with a switched PID, and release
941 * the former thread group leader:
942 */
Eric W. Biedermand73d6522006-03-28 16:11:03 -0800943
944 /* Become a process group leader with the old leader's pid.
Eric W. Biedermanc18258c2006-09-27 01:51:06 -0700945 * The old leader becomes a thread of the this thread group.
946 * Note: The old leader also uses this pid until release_task
Eric W. Biedermand73d6522006-03-28 16:11:03 -0800947 * is called. Odd but simple and correct.
948 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700949 detach_pid(tsk, PIDTYPE_PID);
950 tsk->pid = leader->pid;
Sukadev Bhattiprolu3743ca02007-10-18 23:39:51 -0700951 attach_pid(tsk, PIDTYPE_PID, task_pid(leader));
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700952 transfer_pid(leader, tsk, PIDTYPE_PGID);
953 transfer_pid(leader, tsk, PIDTYPE_SID);
Oleg Nesterov9cd80bb2009-12-17 15:27:15 -0800954
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700955 list_replace_rcu(&leader->tasks, &tsk->tasks);
Oleg Nesterov9cd80bb2009-12-17 15:27:15 -0800956 list_replace_init(&leader->sibling, &tsk->sibling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700958 tsk->group_leader = tsk;
959 leader->group_leader = tsk;
Eric W. Biedermande12a782006-04-10 17:16:49 -0600960
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700961 tsk->exit_signal = SIGCHLD;
Oleg Nesterov962b5642005-11-23 13:37:43 -0800962
963 BUG_ON(leader->exit_state != EXIT_ZOMBIE);
964 leader->exit_state = EXIT_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 write_unlock_irq(&tasklist_lock);
Oleg Nesterov81879262008-12-01 14:18:16 -0800966
967 release_task(leader);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -0800968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700970 sig->group_exit_task = NULL;
971 sig->notify_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973no_thread_group:
Jiri Pirko1f102062009-09-22 16:44:10 -0700974 if (current->mm)
975 setmax_mm_hiwater_rss(&sig->maxrss, current->mm);
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 exit_itimers(sig);
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400978 flush_itimer_signals();
Oleg Nesterov329f7db2005-11-07 21:12:43 +0300979
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700980 if (atomic_read(&oldsighand->count) != 1) {
981 struct sighand_struct *newsighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 /*
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700983 * This ->sighand is shared with the CLONE_SIGHAND
984 * but not CLONE_THREAD task, switch to the new one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 */
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700986 newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
987 if (!newsighand)
988 return -ENOMEM;
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 atomic_set(&newsighand->count, 1);
991 memcpy(newsighand->action, oldsighand->action,
992 sizeof(newsighand->action));
993
994 write_lock_irq(&tasklist_lock);
995 spin_lock(&oldsighand->siglock);
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700996 rcu_assign_pointer(tsk->sighand, newsighand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 spin_unlock(&oldsighand->siglock);
998 write_unlock_irq(&tasklist_lock);
999
Davide Libenzifba2afa2007-05-10 22:23:13 -07001000 __cleanup_sighand(oldsighand);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
1002
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -07001003 BUG_ON(!thread_group_leader(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return 0;
1005}
Oleg Nesterov0840a902007-10-16 23:27:22 -07001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007/*
1008 * These functions flushes out all traces of the currently running executable
1009 * so that a new one can be started
1010 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001011static void flush_old_files(struct files_struct * files)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 long j = -1;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001014 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 spin_lock(&files->file_lock);
1017 for (;;) {
1018 unsigned long set, i;
1019
1020 j++;
1021 i = j * __NFDBITS;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001022 fdt = files_fdtable(files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -08001023 if (i >= fdt->max_fds)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 break;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001025 set = fdt->close_on_exec->fds_bits[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (!set)
1027 continue;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07001028 fdt->close_on_exec->fds_bits[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 spin_unlock(&files->file_lock);
1030 for ( ; set ; i++,set >>= 1) {
1031 if (set & 1) {
1032 sys_close(i);
1033 }
1034 }
1035 spin_lock(&files->file_lock);
1036
1037 }
1038 spin_unlock(&files->file_lock);
1039}
1040
Andrew Morton59714d62008-02-04 22:27:21 -08001041char *get_task_comm(char *buf, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
1043 /* buf must be at least sizeof(tsk->comm) in size */
1044 task_lock(tsk);
1045 strncpy(buf, tsk->comm, sizeof(tsk->comm));
1046 task_unlock(tsk);
Andrew Morton59714d62008-02-04 22:27:21 -08001047 return buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
1050void set_task_comm(struct task_struct *tsk, char *buf)
1051{
1052 task_lock(tsk);
john stultz4614a696b2009-12-14 18:00:05 -08001053
1054 /*
1055 * Threads may access current->comm without holding
1056 * the task lock, so write the string carefully.
1057 * Readers without a lock may see incomplete new
1058 * names but are safe from non-terminating string reads.
1059 */
1060 memset(tsk->comm, 0, TASK_COMM_LEN);
1061 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 strlcpy(tsk->comm, buf, sizeof(tsk->comm));
1063 task_unlock(tsk);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001064 perf_event_comm(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
1067int flush_old_exec(struct linux_binprm * bprm)
1068{
Linus Torvalds221af7f2010-01-28 22:14:42 -08001069 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 /*
1072 * Make sure we have a private signal table and that
1073 * we are unassociated from the previous thread group.
1074 */
1075 retval = de_thread(current);
1076 if (retval)
1077 goto out;
1078
Matt Helsley925d1c42008-04-29 01:01:36 -07001079 set_mm_exe_file(bprm->mm, bprm->file);
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 * Release all of the old mmap stuff
1083 */
Oleg Nesterov3c77f842010-11-30 20:55:34 +01001084 acct_arg_size(bprm, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 retval = exec_mmap(bprm->mm);
1086 if (retval)
Al Virofd8328b2008-04-22 05:11:59 -04001087 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 bprm->mm = NULL; /* We're using it now */
Linus Torvalds7ab02af2010-02-02 12:37:44 -08001090
KOSAKI Motohiro98391cf2010-10-27 15:34:16 -07001091 current->flags &= ~(PF_RANDOMIZE | PF_KTHREAD);
Linus Torvalds7ab02af2010-02-02 12:37:44 -08001092 flush_thread();
1093 current->personality &= ~bprm->per_clear;
1094
Linus Torvalds221af7f2010-01-28 22:14:42 -08001095 return 0;
1096
1097out:
1098 return retval;
1099}
1100EXPORT_SYMBOL(flush_old_exec);
1101
1102void setup_new_exec(struct linux_binprm * bprm)
1103{
1104 int i, ch;
David Howellsd7627462010-08-17 23:52:56 +01001105 const char *name;
Linus Torvalds221af7f2010-01-28 22:14:42 -08001106 char tcomm[sizeof(current->comm)];
1107
1108 arch_pick_mmap_layout(current->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 /* This is the point of no return */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 current->sas_ss_sp = current->sas_ss_size = 0;
1112
David Howellsda9592e2008-11-14 10:39:05 +11001113 if (current_euid() == current_uid() && current_egid() == current_gid())
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001114 set_dumpable(current->mm, 1);
Alan Coxd6e71142005-06-23 00:09:43 -07001115 else
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001116 set_dumpable(current->mm, suid_dumpable);
Alan Coxd6e71142005-06-23 00:09:43 -07001117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 name = bprm->filename;
Paolo 'Blaisorblade' Giarrusso36772092005-05-05 16:16:12 -07001119
1120 /* Copies the binary name from after last slash */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 for (i=0; (ch = *(name++)) != '\0';) {
1122 if (ch == '/')
Paolo 'Blaisorblade' Giarrusso36772092005-05-05 16:16:12 -07001123 i = 0; /* overwrite what we wrote */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 else
1125 if (i < (sizeof(tcomm) - 1))
1126 tcomm[i++] = ch;
1127 }
1128 tcomm[i] = '\0';
1129 set_task_comm(current, tcomm);
1130
Benjamin Herrenschmidt0551fbd2006-02-28 16:59:19 -08001131 /* Set the new mm task size. We have to do that late because it may
1132 * depend on TIF_32BIT which is only updated in flush_thread() on
1133 * some architectures like powerpc
1134 */
1135 current->mm->task_size = TASK_SIZE;
1136
David Howellsa6f76f22008-11-14 10:39:24 +11001137 /* install the new credentials */
1138 if (bprm->cred->uid != current_euid() ||
1139 bprm->cred->gid != current_egid()) {
Marcel Holtmannd2d56c52007-08-17 21:47:58 +02001140 current->pdeath_signal = 0;
1141 } else if (file_permission(bprm->file, MAY_READ) ||
David Howellsa6f76f22008-11-14 10:39:24 +11001142 bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP) {
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001143 set_dumpable(current->mm, suid_dumpable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145
Ingo Molnarf65cb452008-12-16 13:40:44 +01001146 /*
1147 * Flush performance counters when crossing a
1148 * security domain:
1149 */
1150 if (!get_dumpable(current->mm))
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001151 perf_event_exit_task(current);
Ingo Molnarf65cb452008-12-16 13:40:44 +01001152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 /* An exec changes our domain. We are no longer part of the thread
1154 group */
1155
1156 current->self_exec_id++;
1157
1158 flush_signal_handlers(current, 0);
1159 flush_old_files(current->files);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
Linus Torvalds221af7f2010-01-28 22:14:42 -08001161EXPORT_SYMBOL(setup_new_exec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
David Howellsa6f76f22008-11-14 10:39:24 +11001163/*
Oleg Nesterova2a84742009-09-05 11:17:13 -07001164 * Prepare credentials and lock ->cred_guard_mutex.
1165 * install_exec_creds() commits the new creds and drops the lock.
1166 * Or, if exec fails before, free_bprm() should release ->cred and
1167 * and unlock.
1168 */
1169int prepare_bprm_creds(struct linux_binprm *bprm)
1170{
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07001171 if (mutex_lock_interruptible(&current->signal->cred_guard_mutex))
Oleg Nesterova2a84742009-09-05 11:17:13 -07001172 return -ERESTARTNOINTR;
1173
1174 bprm->cred = prepare_exec_creds();
1175 if (likely(bprm->cred))
1176 return 0;
1177
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07001178 mutex_unlock(&current->signal->cred_guard_mutex);
Oleg Nesterova2a84742009-09-05 11:17:13 -07001179 return -ENOMEM;
1180}
1181
1182void free_bprm(struct linux_binprm *bprm)
1183{
1184 free_arg_pages(bprm);
1185 if (bprm->cred) {
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07001186 mutex_unlock(&current->signal->cred_guard_mutex);
Oleg Nesterova2a84742009-09-05 11:17:13 -07001187 abort_creds(bprm->cred);
1188 }
1189 kfree(bprm);
1190}
1191
1192/*
David Howellsa6f76f22008-11-14 10:39:24 +11001193 * install the new credentials for this executable
1194 */
1195void install_exec_creds(struct linux_binprm *bprm)
1196{
1197 security_bprm_committing_creds(bprm);
1198
1199 commit_creds(bprm->cred);
1200 bprm->cred = NULL;
Oleg Nesterova2a84742009-09-05 11:17:13 -07001201 /*
1202 * cred_guard_mutex must be held at least to this point to prevent
David Howellsa6f76f22008-11-14 10:39:24 +11001203 * ptrace_attach() from altering our determination of the task's
Oleg Nesterova2a84742009-09-05 11:17:13 -07001204 * credentials; any time after this it may be unlocked.
1205 */
David Howellsa6f76f22008-11-14 10:39:24 +11001206 security_bprm_committed_creds(bprm);
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07001207 mutex_unlock(&current->signal->cred_guard_mutex);
David Howellsa6f76f22008-11-14 10:39:24 +11001208}
1209EXPORT_SYMBOL(install_exec_creds);
1210
1211/*
1212 * determine how safe it is to execute the proposed program
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -07001213 * - the caller must hold ->cred_guard_mutex to protect against
David Howellsa6f76f22008-11-14 10:39:24 +11001214 * PTRACE_ATTACH
1215 */
Al Viro498052b2009-03-30 07:20:30 -04001216int check_unsafe_exec(struct linux_binprm *bprm)
David Howellsa6f76f22008-11-14 10:39:24 +11001217{
David Howells0bf2f3a2009-02-06 11:45:46 +00001218 struct task_struct *p = current, *t;
Al Virof1191b52009-03-30 07:35:18 -04001219 unsigned n_fs;
Al Viro498052b2009-03-30 07:20:30 -04001220 int res = 0;
David Howellsa6f76f22008-11-14 10:39:24 +11001221
1222 bprm->unsafe = tracehook_unsafe_exec(p);
1223
David Howells0bf2f3a2009-02-06 11:45:46 +00001224 n_fs = 1;
Nick Piggin2a4419b2010-08-18 04:37:33 +10001225 spin_lock(&p->fs->lock);
Oleg Nesterov437f7fd2009-04-24 01:02:45 +02001226 rcu_read_lock();
David Howells0bf2f3a2009-02-06 11:45:46 +00001227 for (t = next_thread(p); t != p; t = next_thread(t)) {
1228 if (t->fs == p->fs)
1229 n_fs++;
David Howells0bf2f3a2009-02-06 11:45:46 +00001230 }
Oleg Nesterov437f7fd2009-04-24 01:02:45 +02001231 rcu_read_unlock();
David Howells0bf2f3a2009-02-06 11:45:46 +00001232
Al Virof1191b52009-03-30 07:35:18 -04001233 if (p->fs->users > n_fs) {
David Howellsa6f76f22008-11-14 10:39:24 +11001234 bprm->unsafe |= LSM_UNSAFE_SHARE;
Al Viro498052b2009-03-30 07:20:30 -04001235 } else {
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001236 res = -EAGAIN;
1237 if (!p->fs->in_exec) {
1238 p->fs->in_exec = 1;
1239 res = 1;
1240 }
Al Viro498052b2009-03-30 07:20:30 -04001241 }
Nick Piggin2a4419b2010-08-18 04:37:33 +10001242 spin_unlock(&p->fs->lock);
Al Viro498052b2009-03-30 07:20:30 -04001243
1244 return res;
David Howellsa6f76f22008-11-14 10:39:24 +11001245}
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247/*
1248 * Fill the binprm structure from the inode.
1249 * Check permissions, then read the first 128 (BINPRM_BUF_SIZE) bytes
David Howellsa6f76f22008-11-14 10:39:24 +11001250 *
1251 * This may be called multiple times for binary chains (scripts for example).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 */
1253int prepare_binprm(struct linux_binprm *bprm)
1254{
David Howellsa6f76f22008-11-14 10:39:24 +11001255 umode_t mode;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001256 struct inode * inode = bprm->file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 int retval;
1258
1259 mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (bprm->file->f_op == NULL)
1261 return -EACCES;
1262
David Howellsa6f76f22008-11-14 10:39:24 +11001263 /* clear any previous set[ug]id data from a previous binary */
1264 bprm->cred->euid = current_euid();
1265 bprm->cred->egid = current_egid();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
David Howellsa6f76f22008-11-14 10:39:24 +11001267 if (!(bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /* Set-uid? */
1269 if (mode & S_ISUID) {
David Howellsa6f76f22008-11-14 10:39:24 +11001270 bprm->per_clear |= PER_CLEAR_ON_SETID;
1271 bprm->cred->euid = inode->i_uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273
1274 /* Set-gid? */
1275 /*
1276 * If setgid is set but no group execute bit then this
1277 * is a candidate for mandatory locking, not a setgid
1278 * executable.
1279 */
1280 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
David Howellsa6f76f22008-11-14 10:39:24 +11001281 bprm->per_clear |= PER_CLEAR_ON_SETID;
1282 bprm->cred->egid = inode->i_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
1284 }
1285
1286 /* fill in binprm security blob */
David Howellsa6f76f22008-11-14 10:39:24 +11001287 retval = security_bprm_set_creds(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (retval)
1289 return retval;
David Howellsa6f76f22008-11-14 10:39:24 +11001290 bprm->cred_prepared = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
David Howellsa6f76f22008-11-14 10:39:24 +11001292 memset(bprm->buf, 0, BINPRM_BUF_SIZE);
1293 return kernel_read(bprm->file, 0, bprm->buf, BINPRM_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
1296EXPORT_SYMBOL(prepare_binprm);
1297
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001298/*
1299 * Arguments are '\0' separated strings found at the location bprm->p
1300 * points to; chop off the first by relocating brpm->p to right after
1301 * the first '\0' encountered.
1302 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001303int remove_arg_zero(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001305 int ret = 0;
1306 unsigned long offset;
1307 char *kaddr;
1308 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001310 if (!bprm->argc)
1311 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001313 do {
1314 offset = bprm->p & ~PAGE_MASK;
1315 page = get_arg_page(bprm, bprm->p, 0);
1316 if (!page) {
1317 ret = -EFAULT;
1318 goto out;
1319 }
1320 kaddr = kmap_atomic(page, KM_USER0);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001321
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001322 for (; offset < PAGE_SIZE && kaddr[offset];
1323 offset++, bprm->p++)
1324 ;
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001325
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001326 kunmap_atomic(kaddr, KM_USER0);
1327 put_arg_page(page);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001328
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001329 if (offset == PAGE_SIZE)
1330 free_arg_page(bprm, (bprm->p >> PAGE_SHIFT) - 1);
1331 } while (offset == PAGE_SIZE);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001332
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001333 bprm->p++;
1334 bprm->argc--;
1335 ret = 0;
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001336
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001337out:
1338 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340EXPORT_SYMBOL(remove_arg_zero);
1341
1342/*
1343 * cycle the list of binary formats handler, until one recognizes the image
1344 */
1345int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs)
1346{
Roland McGrath85f33462008-12-09 19:36:38 -08001347 unsigned int depth = bprm->recursion_depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 int try,retval;
1349 struct linux_binfmt *fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 retval = security_bprm_check(bprm);
1352 if (retval)
1353 return retval;
1354
1355 /* kernel module loader fixup */
1356 /* so we don't try to load run modprobe in kernel space. */
1357 set_fs(USER_DS);
Al Viro473ae302006-04-26 14:04:08 -04001358
1359 retval = audit_bprm(bprm);
1360 if (retval)
1361 return retval;
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 retval = -ENOENT;
1364 for (try=0; try<2; try++) {
1365 read_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -07001366 list_for_each_entry(fmt, &formats, lh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary;
1368 if (!fn)
1369 continue;
1370 if (!try_module_get(fmt->module))
1371 continue;
1372 read_unlock(&binfmt_lock);
1373 retval = fn(bprm, regs);
Roland McGrath85f33462008-12-09 19:36:38 -08001374 /*
1375 * Restore the depth counter to its starting value
1376 * in this call, so we don't have to rely on every
1377 * load_binary function to restore it on return.
1378 */
1379 bprm->recursion_depth = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (retval >= 0) {
Roland McGrath85f33462008-12-09 19:36:38 -08001381 if (depth == 0)
1382 tracehook_report_exec(fmt, bprm, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 put_binfmt(fmt);
1384 allow_write_access(bprm->file);
1385 if (bprm->file)
1386 fput(bprm->file);
1387 bprm->file = NULL;
1388 current->did_exec = 1;
Matt Helsley9f460802005-11-07 00:59:16 -08001389 proc_exec_connector(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 return retval;
1391 }
1392 read_lock(&binfmt_lock);
1393 put_binfmt(fmt);
1394 if (retval != -ENOEXEC || bprm->mm == NULL)
1395 break;
1396 if (!bprm->file) {
1397 read_unlock(&binfmt_lock);
1398 return retval;
1399 }
1400 }
1401 read_unlock(&binfmt_lock);
1402 if (retval != -ENOEXEC || bprm->mm == NULL) {
1403 break;
Johannes Berg5f4123b2008-07-09 10:28:40 +02001404#ifdef CONFIG_MODULES
1405 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406#define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
1407 if (printable(bprm->buf[0]) &&
1408 printable(bprm->buf[1]) &&
1409 printable(bprm->buf[2]) &&
1410 printable(bprm->buf[3]))
1411 break; /* -ENOEXEC */
1412 request_module("binfmt-%04x", *(unsigned short *)(&bprm->buf[2]));
1413#endif
1414 }
1415 }
1416 return retval;
1417}
1418
1419EXPORT_SYMBOL(search_binary_handler);
1420
1421/*
1422 * sys_execve() executes a new program.
1423 */
Oleg Nesterovba2d01622011-03-06 18:02:37 +01001424static int do_execve_common(const char *filename,
1425 struct user_arg_ptr argv,
1426 struct user_arg_ptr envp,
1427 struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{
1429 struct linux_binprm *bprm;
1430 struct file *file;
Al Viro3b125382008-04-22 05:31:30 -04001431 struct files_struct *displaced;
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001432 bool clear_in_exec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Al Viro3b125382008-04-22 05:31:30 -04001435 retval = unshare_files(&displaced);
Al Virofd8328b2008-04-22 05:11:59 -04001436 if (retval)
1437 goto out_ret;
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 retval = -ENOMEM;
Oliver Neukum11b0b5a2006-03-25 03:08:13 -08001440 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (!bprm)
Al Virofd8328b2008-04-22 05:11:59 -04001442 goto out_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Oleg Nesterova2a84742009-09-05 11:17:13 -07001444 retval = prepare_bprm_creds(bprm);
1445 if (retval)
David Howellsa6f76f22008-11-14 10:39:24 +11001446 goto out_free;
Al Viro498052b2009-03-30 07:20:30 -04001447
1448 retval = check_unsafe_exec(bprm);
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001449 if (retval < 0)
Oleg Nesterova2a84742009-09-05 11:17:13 -07001450 goto out_free;
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001451 clear_in_exec = retval;
Oleg Nesterova2a84742009-09-05 11:17:13 -07001452 current->in_execve = 1;
David Howellsa6f76f22008-11-14 10:39:24 +11001453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 file = open_exec(filename);
1455 retval = PTR_ERR(file);
1456 if (IS_ERR(file))
Al Viro498052b2009-03-30 07:20:30 -04001457 goto out_unmark;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 sched_exec();
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 bprm->file = file;
1462 bprm->filename = filename;
1463 bprm->interp = filename;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001464
1465 retval = bprm_mm_init(bprm);
1466 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 goto out_file;
1468
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001469 bprm->argc = count(argv, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if ((retval = bprm->argc) < 0)
David Howellsa6f76f22008-11-14 10:39:24 +11001471 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001473 bprm->envc = count(envp, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if ((retval = bprm->envc) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 goto out;
1476
1477 retval = prepare_binprm(bprm);
1478 if (retval < 0)
1479 goto out;
1480
1481 retval = copy_strings_kernel(1, &bprm->filename, bprm);
1482 if (retval < 0)
1483 goto out;
1484
1485 bprm->exec = bprm->p;
1486 retval = copy_strings(bprm->envc, envp, bprm);
1487 if (retval < 0)
1488 goto out;
1489
1490 retval = copy_strings(bprm->argc, argv, bprm);
1491 if (retval < 0)
1492 goto out;
1493
1494 retval = search_binary_handler(bprm,regs);
David Howellsa6f76f22008-11-14 10:39:24 +11001495 if (retval < 0)
1496 goto out;
1497
1498 /* execve succeeded */
Al Viro498052b2009-03-30 07:20:30 -04001499 current->fs->in_exec = 0;
Kentaro Takedaf9ce1f12009-02-05 17:18:11 +09001500 current->in_execve = 0;
David Howellsa6f76f22008-11-14 10:39:24 +11001501 acct_update_integrals(current);
1502 free_bprm(bprm);
1503 if (displaced)
1504 put_files_struct(displaced);
1505 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507out:
Oleg Nesterov3c77f842010-11-30 20:55:34 +01001508 if (bprm->mm) {
1509 acct_arg_size(bprm, 0);
1510 mmput(bprm->mm);
1511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513out_file:
1514 if (bprm->file) {
1515 allow_write_access(bprm->file);
1516 fput(bprm->file);
1517 }
David Howellsa6f76f22008-11-14 10:39:24 +11001518
Al Viro498052b2009-03-30 07:20:30 -04001519out_unmark:
Oleg Nesterov8c652f92009-04-24 01:01:56 +02001520 if (clear_in_exec)
1521 current->fs->in_exec = 0;
Kentaro Takedaf9ce1f12009-02-05 17:18:11 +09001522 current->in_execve = 0;
David Howellsa6f76f22008-11-14 10:39:24 +11001523
1524out_free:
Al Viro08a6fac2008-05-10 16:38:25 -04001525 free_bprm(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Al Virofd8328b2008-04-22 05:11:59 -04001527out_files:
Al Viro3b125382008-04-22 05:31:30 -04001528 if (displaced)
1529 reset_files_struct(displaced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530out_ret:
1531 return retval;
1532}
1533
Oleg Nesterovba2d01622011-03-06 18:02:37 +01001534int do_execve(const char *filename,
1535 const char __user *const __user *__argv,
1536 const char __user *const __user *__envp,
1537 struct pt_regs *regs)
1538{
Oleg Nesterov0e028462011-03-06 18:02:54 +01001539 struct user_arg_ptr argv = { .ptr.native = __argv };
1540 struct user_arg_ptr envp = { .ptr.native = __envp };
Oleg Nesterovba2d01622011-03-06 18:02:37 +01001541 return do_execve_common(filename, argv, envp, regs);
1542}
1543
Oleg Nesterov0e028462011-03-06 18:02:54 +01001544#ifdef CONFIG_COMPAT
1545int compat_do_execve(char *filename,
1546 compat_uptr_t __user *__argv,
1547 compat_uptr_t __user *__envp,
1548 struct pt_regs *regs)
1549{
1550 struct user_arg_ptr argv = {
1551 .is_compat = true,
1552 .ptr.compat = __argv,
1553 };
1554 struct user_arg_ptr envp = {
1555 .is_compat = true,
1556 .ptr.compat = __envp,
1557 };
1558 return do_execve_common(filename, argv, envp, regs);
1559}
1560#endif
1561
Oleg Nesterov964ee7d2009-09-23 15:56:59 -07001562void set_binfmt(struct linux_binfmt *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07001564 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07001566 if (mm->binfmt)
1567 module_put(mm->binfmt->module);
1568
1569 mm->binfmt = new;
Oleg Nesterov964ee7d2009-09-23 15:56:59 -07001570 if (new)
1571 __module_get(new->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
1574EXPORT_SYMBOL(set_binfmt);
1575
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001576static int expand_corename(struct core_name *cn)
1577{
1578 char *old_corename = cn->corename;
1579
1580 cn->size = CORENAME_MAX_SIZE * atomic_inc_return(&call_count);
1581 cn->corename = krealloc(old_corename, cn->size, GFP_KERNEL);
1582
1583 if (!cn->corename) {
1584 kfree(old_corename);
1585 return -ENOMEM;
1586 }
1587
1588 return 0;
1589}
1590
1591static int cn_printf(struct core_name *cn, const char *fmt, ...)
1592{
1593 char *cur;
1594 int need;
1595 int ret;
1596 va_list arg;
1597
1598 va_start(arg, fmt);
1599 need = vsnprintf(NULL, 0, fmt, arg);
1600 va_end(arg);
1601
1602 if (likely(need < cn->size - cn->used - 1))
1603 goto out_printf;
1604
1605 ret = expand_corename(cn);
1606 if (ret)
1607 goto expand_fail;
1608
1609out_printf:
1610 cur = cn->corename + cn->used;
1611 va_start(arg, fmt);
1612 vsnprintf(cur, need + 1, fmt, arg);
1613 va_end(arg);
1614 cn->used += need;
1615 return 0;
1616
1617expand_fail:
1618 return ret;
1619}
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621/* format_corename will inspect the pattern parameter, and output a
1622 * name into corename, which must have space for at least
1623 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
1624 */
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001625static int format_corename(struct core_name *cn, long signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
David Howells86a264a2008-11-14 10:39:18 +11001627 const struct cred *cred = current_cred();
Oleg Nesterov565b9b12008-07-25 01:47:47 -07001628 const char *pat_ptr = core_pattern;
1629 int ispipe = (*pat_ptr == '|');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 int pid_in_pattern = 0;
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001631 int err = 0;
1632
1633 cn->size = CORENAME_MAX_SIZE * atomic_read(&call_count);
1634 cn->corename = kmalloc(cn->size, GFP_KERNEL);
1635 cn->used = 0;
1636
1637 if (!cn->corename)
1638 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640 /* Repeat as long as we have more pattern to process and more output
1641 space */
1642 while (*pat_ptr) {
1643 if (*pat_ptr != '%') {
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001644 if (*pat_ptr == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 goto out;
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001646 err = cn_printf(cn, "%c", *pat_ptr++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 } else {
1648 switch (*++pat_ptr) {
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001649 /* single % at the end, drop that */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 case 0:
1651 goto out;
1652 /* Double percent, output one percent */
1653 case '%':
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001654 err = cn_printf(cn, "%c", '%');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 break;
1656 /* pid */
1657 case 'p':
1658 pid_in_pattern = 1;
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001659 err = cn_printf(cn, "%d",
1660 task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 break;
1662 /* uid */
1663 case 'u':
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001664 err = cn_printf(cn, "%d", cred->uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 break;
1666 /* gid */
1667 case 'g':
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001668 err = cn_printf(cn, "%d", cred->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 break;
1670 /* signal that caused the coredump */
1671 case 's':
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001672 err = cn_printf(cn, "%ld", signr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 break;
1674 /* UNIX time of coredump */
1675 case 't': {
1676 struct timeval tv;
1677 do_gettimeofday(&tv);
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001678 err = cn_printf(cn, "%lu", tv.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 break;
1680 }
1681 /* hostname */
1682 case 'h':
1683 down_read(&uts_sem);
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001684 err = cn_printf(cn, "%s",
1685 utsname()->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 up_read(&uts_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 break;
1688 /* executable */
1689 case 'e':
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001690 err = cn_printf(cn, "%s", current->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 break;
Neil Horman74aadce2007-10-16 23:26:35 -07001692 /* core limit size */
1693 case 'c':
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001694 err = cn_printf(cn, "%lu",
1695 rlimit(RLIMIT_CORE));
Neil Horman74aadce2007-10-16 23:26:35 -07001696 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 default:
1698 break;
1699 }
1700 ++pat_ptr;
1701 }
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001702
1703 if (err)
1704 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 /* Backward compatibility with core_uses_pid:
1708 *
1709 * If core_pattern does not include a %p (as is the default)
1710 * and core_uses_pid is set, then .%pid will be appended to
Alan Coxc4bbafd2007-04-16 22:53:13 -07001711 * the filename. Do not do this for piped commands. */
Oleg Nesterov64093242008-10-18 20:28:22 -07001712 if (!ispipe && !pid_in_pattern && core_uses_pid) {
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001713 err = cn_printf(cn, ".%d", task_tgid_vnr(current));
1714 if (err)
1715 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
Alan Coxc4bbafd2007-04-16 22:53:13 -07001717out:
Alan Coxc4bbafd2007-04-16 22:53:13 -07001718 return ispipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
1720
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001721static int zap_process(struct task_struct *start, int exit_code)
Oleg Nesterovaceecc02006-06-26 00:26:05 -07001722{
1723 struct task_struct *t;
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001724 int nr = 0;
Oleg Nesterov281de332006-06-26 00:26:06 -07001725
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001726 start->signal->flags = SIGNAL_GROUP_EXIT;
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001727 start->signal->group_exit_code = exit_code;
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001728 start->signal->group_stop_count = 0;
Oleg Nesterovaceecc02006-06-26 00:26:05 -07001729
1730 t = start;
1731 do {
1732 if (t != current && t->mm) {
Oleg Nesterov281de332006-06-26 00:26:06 -07001733 sigaddset(&t->pending.signal, SIGKILL);
1734 signal_wake_up(t, 1);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001735 nr++;
Oleg Nesterovaceecc02006-06-26 00:26:05 -07001736 }
Oleg Nesterove4901f92008-07-25 01:47:31 -07001737 } while_each_thread(start, t);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001738
1739 return nr;
Oleg Nesterovaceecc02006-06-26 00:26:05 -07001740}
1741
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001742static inline int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001743 struct core_state *core_state, int exit_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
1745 struct task_struct *g, *p;
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001746 unsigned long flags;
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001747 int nr = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001749 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -08001750 if (!signal_group_exit(tsk->signal)) {
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001751 mm->core_state = core_state;
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001752 nr = zap_process(tsk, exit_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001754 spin_unlock_irq(&tsk->sighand->siglock);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001755 if (unlikely(nr < 0))
1756 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001758 if (atomic_read(&mm->mm_users) == nr + 1)
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001759 goto done;
Oleg Nesterove4901f92008-07-25 01:47:31 -07001760 /*
1761 * We should find and kill all tasks which use this mm, and we should
Oleg Nesterov999d9fc2008-07-25 01:47:41 -07001762 * count them correctly into ->nr_threads. We don't take tasklist
Oleg Nesterove4901f92008-07-25 01:47:31 -07001763 * lock, but this is safe wrt:
1764 *
1765 * fork:
1766 * None of sub-threads can fork after zap_process(leader). All
1767 * processes which were created before this point should be
1768 * visible to zap_threads() because copy_process() adds the new
1769 * process to the tail of init_task.tasks list, and lock/unlock
1770 * of ->siglock provides a memory barrier.
1771 *
1772 * do_exit:
1773 * The caller holds mm->mmap_sem. This means that the task which
1774 * uses this mm can't pass exit_mm(), so it can't exit or clear
1775 * its ->mm.
1776 *
1777 * de_thread:
1778 * It does list_replace_rcu(&leader->tasks, &current->tasks),
1779 * we must see either old or new leader, this does not matter.
1780 * However, it can change p->sighand, so lock_task_sighand(p)
1781 * must be used. Since p->mm != NULL and we hold ->mmap_sem
1782 * it can't fail.
1783 *
1784 * Note also that "g" can be the old leader with ->mm == NULL
1785 * and already unhashed and thus removed from ->thread_group.
1786 * This is OK, __unhash_process()->list_del_rcu() does not
1787 * clear the ->next pointer, we will find the new leader via
1788 * next_thread().
1789 */
Oleg Nesterov7b1c6152006-06-26 00:26:08 -07001790 rcu_read_lock();
Oleg Nesterovaceecc02006-06-26 00:26:05 -07001791 for_each_process(g) {
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001792 if (g == tsk->group_leader)
1793 continue;
Oleg Nesterov15b9f362008-07-25 01:47:39 -07001794 if (g->flags & PF_KTHREAD)
1795 continue;
Oleg Nesterovaceecc02006-06-26 00:26:05 -07001796 p = g;
1797 do {
1798 if (p->mm) {
Oleg Nesterov15b9f362008-07-25 01:47:39 -07001799 if (unlikely(p->mm == mm)) {
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001800 lock_task_sighand(p, &flags);
Oleg Nesterov5c99cbf2010-03-05 13:44:14 -08001801 nr += zap_process(p, exit_code);
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001802 unlock_task_sighand(p, &flags);
1803 }
Oleg Nesterovaceecc02006-06-26 00:26:05 -07001804 break;
1805 }
Oleg Nesterove4901f92008-07-25 01:47:31 -07001806 } while_each_thread(g, p);
Oleg Nesterovaceecc02006-06-26 00:26:05 -07001807 }
Oleg Nesterov7b1c6152006-06-26 00:26:08 -07001808 rcu_read_unlock();
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001809done:
Oleg Nesterovc5f1cc82008-07-25 01:47:42 -07001810 atomic_set(&core_state->nr_threads, nr);
Oleg Nesterov8cd9c242008-07-25 01:47:42 -07001811 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
1813
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001814static int coredump_wait(int exit_code, struct core_state *core_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001816 struct task_struct *tsk = current;
1817 struct mm_struct *mm = tsk->mm;
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001818 struct completion *vfork_done;
Oleg Nesterov269b0052010-05-26 14:43:08 -07001819 int core_waiters = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001821 init_completion(&core_state->startup);
Oleg Nesterovb564daf2008-07-25 01:47:44 -07001822 core_state->dumper.task = tsk;
1823 core_state->dumper.next = NULL;
Oleg Nesterov269b0052010-05-26 14:43:08 -07001824
1825 down_write(&mm->mmap_sem);
1826 if (!mm->core_state)
1827 core_waiters = zap_threads(tsk, mm, core_state, exit_code);
Oleg Nesterov2384f552005-10-30 15:02:47 -08001828 up_write(&mm->mmap_sem);
1829
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001830 if (unlikely(core_waiters < 0))
1831 goto fail;
1832
1833 /*
1834 * Make sure nobody is waiting for us to release the VM,
1835 * otherwise we can deadlock when we wait on each other
1836 */
1837 vfork_done = tsk->vfork_done;
1838 if (vfork_done) {
1839 tsk->vfork_done = NULL;
1840 complete(vfork_done);
1841 }
1842
Oleg Nesterov2384f552005-10-30 15:02:47 -08001843 if (core_waiters)
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001844 wait_for_completion(&core_state->startup);
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001845fail:
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001846 return core_waiters;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
Oleg Nesterova94e2d42008-07-25 01:47:46 -07001849static void coredump_finish(struct mm_struct *mm)
1850{
1851 struct core_thread *curr, *next;
1852 struct task_struct *task;
1853
1854 next = mm->core_state->dumper.next;
1855 while ((curr = next) != NULL) {
1856 next = curr->next;
1857 task = curr->task;
1858 /*
1859 * see exit_mm(), curr->task must not see
1860 * ->task == NULL before we read ->next.
1861 */
1862 smp_mb();
1863 curr->task = NULL;
1864 wake_up_process(task);
1865 }
1866
1867 mm->core_state = NULL;
1868}
1869
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001870/*
1871 * set_dumpable converts traditional three-value dumpable to two flags and
1872 * stores them into mm->flags. It modifies lower two bits of mm->flags, but
1873 * these bits are not changed atomically. So get_dumpable can observe the
1874 * intermediate state. To avoid doing unexpected behavior, get get_dumpable
1875 * return either old dumpable or new one by paying attention to the order of
1876 * modifying the bits.
1877 *
1878 * dumpable | mm->flags (binary)
1879 * old new | initial interim final
1880 * ---------+-----------------------
1881 * 0 1 | 00 01 01
1882 * 0 2 | 00 10(*) 11
1883 * 1 0 | 01 00 00
1884 * 1 2 | 01 11 11
1885 * 2 0 | 11 10(*) 00
1886 * 2 1 | 11 11 01
1887 *
1888 * (*) get_dumpable regards interim value of 10 as 11.
1889 */
1890void set_dumpable(struct mm_struct *mm, int value)
1891{
1892 switch (value) {
1893 case 0:
1894 clear_bit(MMF_DUMPABLE, &mm->flags);
1895 smp_wmb();
1896 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1897 break;
1898 case 1:
1899 set_bit(MMF_DUMPABLE, &mm->flags);
1900 smp_wmb();
1901 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1902 break;
1903 case 2:
1904 set_bit(MMF_DUMP_SECURELY, &mm->flags);
1905 smp_wmb();
1906 set_bit(MMF_DUMPABLE, &mm->flags);
1907 break;
1908 }
1909}
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001910
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001911static int __get_dumpable(unsigned long mm_flags)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001912{
1913 int ret;
1914
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001915 ret = mm_flags & MMF_DUMPABLE_MASK;
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001916 return (ret >= 2) ? 2 : ret;
1917}
1918
Masami Hiramatsu30736a42010-03-05 13:44:12 -08001919int get_dumpable(struct mm_struct *mm)
1920{
1921 return __get_dumpable(mm->flags);
1922}
1923
Neil Horman61be2282009-09-23 15:56:58 -07001924static void wait_for_dump_helpers(struct file *file)
1925{
1926 struct pipe_inode_info *pipe;
1927
1928 pipe = file->f_path.dentry->d_inode->i_pipe;
1929
1930 pipe_lock(pipe);
1931 pipe->readers++;
1932 pipe->writers--;
1933
1934 while ((pipe->readers > 1) && (!signal_pending(current))) {
1935 wake_up_interruptible_sync(&pipe->wait);
1936 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1937 pipe_wait(pipe);
1938 }
1939
1940 pipe->readers--;
1941 pipe->writers++;
1942 pipe_unlock(pipe);
1943
1944}
1945
1946
Neil Horman898b3742010-05-26 14:42:59 -07001947/*
Holger Hans Peter Freyther1bef8292011-02-24 17:46:49 +01001948 * umh_pipe_setup
Neil Horman898b3742010-05-26 14:42:59 -07001949 * helper function to customize the process used
1950 * to collect the core in userspace. Specifically
1951 * it sets up a pipe and installs it as fd 0 (stdin)
1952 * for the process. Returns 0 on success, or
1953 * PTR_ERR on failure.
1954 * Note that it also sets the core limit to 1. This
1955 * is a special value that we use to trap recursive
1956 * core dumps
1957 */
1958static int umh_pipe_setup(struct subprocess_info *info)
1959{
1960 struct file *rp, *wp;
1961 struct fdtable *fdt;
1962 struct coredump_params *cp = (struct coredump_params *)info->data;
1963 struct files_struct *cf = current->files;
1964
1965 wp = create_write_pipe(0);
1966 if (IS_ERR(wp))
1967 return PTR_ERR(wp);
1968
1969 rp = create_read_pipe(wp, 0);
1970 if (IS_ERR(rp)) {
1971 free_write_pipe(wp);
1972 return PTR_ERR(rp);
1973 }
1974
1975 cp->file = wp;
1976
1977 sys_close(0);
1978 fd_install(0, rp);
1979 spin_lock(&cf->file_lock);
1980 fdt = files_fdtable(cf);
1981 FD_SET(0, fdt->open_fds);
1982 FD_CLR(0, fdt->close_on_exec);
1983 spin_unlock(&cf->file_lock);
1984
1985 /* and disallow core files too */
1986 current->signal->rlim[RLIMIT_CORE] = (struct rlimit){1, 1};
1987
1988 return 0;
1989}
1990
WANG Cong8cd3ac32009-01-06 14:42:48 -08001991void do_coredump(long signr, int exit_code, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07001993 struct core_state core_state;
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07001994 struct core_name cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 struct mm_struct *mm = current->mm;
1996 struct linux_binfmt * binfmt;
David Howellsd84f4f92008-11-14 10:39:23 +11001997 const struct cred *old_cred;
1998 struct cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 int retval = 0;
Alan Coxd6e71142005-06-23 00:09:43 -07002000 int flag = 0;
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002001 int ispipe;
Neil Hormana2939802009-09-23 15:56:56 -07002002 static atomic_t core_dump_count = ATOMIC_INIT(0);
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002003 struct coredump_params cprm = {
2004 .signr = signr,
2005 .regs = regs,
Jiri Slabyd554ed892010-03-05 13:42:42 -08002006 .limit = rlimit(RLIMIT_CORE),
Masami Hiramatsu30736a42010-03-05 13:44:12 -08002007 /*
2008 * We must use the same mm->flags while dumping core to avoid
2009 * inconsistency of bit flags, since this flag is not protected
2010 * by any locks.
2011 */
2012 .mm_flags = mm->flags,
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002013 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04002015 audit_core_dumps(signr);
2016
Hiroshi Shimamoto801460d2009-09-23 15:57:41 -07002017 binfmt = mm->binfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 if (!binfmt || !binfmt->core_dump)
2019 goto fail;
Oleg Nesterov269b0052010-05-26 14:43:08 -07002020 if (!__get_dumpable(cprm.mm_flags))
2021 goto fail;
David Howellsd84f4f92008-11-14 10:39:23 +11002022
2023 cred = prepare_creds();
Oleg Nesterov5e43aef2010-05-26 14:43:07 -07002024 if (!cred)
David Howellsd84f4f92008-11-14 10:39:23 +11002025 goto fail;
Alan Coxd6e71142005-06-23 00:09:43 -07002026 /*
2027 * We cannot trust fsuid as being the "true" uid of the
2028 * process nor do we know its entire history. We only know it
2029 * was tainted so we dump it as root in mode 2.
2030 */
Masami Hiramatsu30736a42010-03-05 13:44:12 -08002031 if (__get_dumpable(cprm.mm_flags) == 2) {
2032 /* Setuid core dump mode */
Alan Coxd6e71142005-06-23 00:09:43 -07002033 flag = O_EXCL; /* Stop rewrite attacks */
David Howellsd84f4f92008-11-14 10:39:23 +11002034 cred->fsuid = 0; /* Dump root private */
Alan Coxd6e71142005-06-23 00:09:43 -07002035 }
Oleg Nesterov1291cf42005-10-30 15:02:54 -08002036
Oleg Nesterov9d5b3272008-07-25 01:47:43 -07002037 retval = coredump_wait(exit_code, &core_state);
Oleg Nesterov5e43aef2010-05-26 14:43:07 -07002038 if (retval < 0)
2039 goto fail_creds;
David Howellsd84f4f92008-11-14 10:39:23 +11002040
2041 old_cred = override_creds(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043 /*
2044 * Clear any false indication of pending signals that might
2045 * be seen by the filesystem code called to write the core file.
2046 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 clear_thread_flag(TIF_SIGPENDING);
2048
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07002049 ispipe = format_corename(&cn, signr);
2050
2051 if (ispipe == -ENOMEM) {
2052 printk(KERN_WARNING "format_corename failed\n");
2053 printk(KERN_WARNING "Aborting core\n");
2054 goto fail_corename;
2055 }
Neil Horman725eae32009-09-23 15:56:54 -07002056
Alan Coxc4bbafd2007-04-16 22:53:13 -07002057 if (ispipe) {
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002058 int dump_count;
2059 char **helper_argv;
2060
Neil Horman898b3742010-05-26 14:42:59 -07002061 if (cprm.limit == 1) {
Neil Horman725eae32009-09-23 15:56:54 -07002062 /*
2063 * Normally core limits are irrelevant to pipes, since
2064 * we're not writing to the file system, but we use
Neil Horman898b3742010-05-26 14:42:59 -07002065 * cprm.limit of 1 here as a speacial value. Any
2066 * non-1 limit gets set to RLIM_INFINITY below, but
Neil Horman725eae32009-09-23 15:56:54 -07002067 * a limit of 0 skips the dump. This is a consistent
2068 * way to catch recursive crashes. We can still crash
Neil Horman898b3742010-05-26 14:42:59 -07002069 * if the core_pattern binary sets RLIM_CORE = !1
Neil Horman725eae32009-09-23 15:56:54 -07002070 * but it runs as root, and can do lots of stupid things
2071 * Note that we use task_tgid_vnr here to grab the pid
2072 * of the process group leader. That way we get the
2073 * right pid if a thread in a multi-threaded
2074 * core_pattern process dies.
2075 */
2076 printk(KERN_WARNING
Neil Horman898b3742010-05-26 14:42:59 -07002077 "Process %d(%s) has RLIMIT_CORE set to 1\n",
Neil Horman725eae32009-09-23 15:56:54 -07002078 task_tgid_vnr(current), current->comm);
2079 printk(KERN_WARNING "Aborting core\n");
2080 goto fail_unlock;
2081 }
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002082 cprm.limit = RLIM_INFINITY;
Neil Horman725eae32009-09-23 15:56:54 -07002083
Neil Hormana2939802009-09-23 15:56:56 -07002084 dump_count = atomic_inc_return(&core_dump_count);
2085 if (core_pipe_limit && (core_pipe_limit < dump_count)) {
2086 printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n",
2087 task_tgid_vnr(current), current->comm);
2088 printk(KERN_WARNING "Skipping core dump\n");
2089 goto fail_dropcount;
2090 }
2091
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07002092 helper_argv = argv_split(GFP_KERNEL, cn.corename+1, NULL);
Tetsuo Handa350eaf72009-01-06 14:41:11 -08002093 if (!helper_argv) {
2094 printk(KERN_WARNING "%s failed to allocate memory\n",
2095 __func__);
Neil Hormana2939802009-09-23 15:56:56 -07002096 goto fail_dropcount;
Tetsuo Handa350eaf72009-01-06 14:41:11 -08002097 }
Neil Horman32321132007-10-16 23:26:36 -07002098
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002099 retval = call_usermodehelper_fns(helper_argv[0], helper_argv,
2100 NULL, UMH_WAIT_EXEC, umh_pipe_setup,
2101 NULL, &cprm);
2102 argv_free(helper_argv);
2103 if (retval) {
Andi Kleend025c9d2006-09-30 23:29:28 -07002104 printk(KERN_INFO "Core dump to %s pipe failed\n",
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07002105 cn.corename);
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002106 goto close_fail;
Andi Kleend025c9d2006-09-30 23:29:28 -07002107 }
Oleg Nesterovc7135412010-05-26 14:43:05 -07002108 } else {
2109 struct inode *inode;
2110
2111 if (cprm.limit < binfmt->min_coredump)
2112 goto fail_unlock;
2113
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07002114 cprm.file = filp_open(cn.corename,
Alexey Dobriyan6d4df672006-12-06 20:40:39 -08002115 O_CREAT | 2 | O_NOFOLLOW | O_LARGEFILE | flag,
2116 0600);
Oleg Nesterovc7135412010-05-26 14:43:05 -07002117 if (IS_ERR(cprm.file))
2118 goto fail_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Oleg Nesterovc7135412010-05-26 14:43:05 -07002120 inode = cprm.file->f_path.dentry->d_inode;
2121 if (inode->i_nlink > 1)
2122 goto close_fail;
2123 if (d_unhashed(cprm.file->f_path.dentry))
2124 goto close_fail;
2125 /*
2126 * AK: actually i see no reason to not allow this for named
2127 * pipes etc, but keep the previous behaviour for now.
2128 */
2129 if (!S_ISREG(inode->i_mode))
2130 goto close_fail;
2131 /*
2132 * Dont allow local users get cute and trick others to coredump
2133 * into their pre-created files.
2134 */
2135 if (inode->i_uid != current_fsuid())
2136 goto close_fail;
2137 if (!cprm.file->f_op || !cprm.file->f_op->write)
2138 goto close_fail;
2139 if (do_truncate(cprm.file->f_path.dentry, 0, 0, cprm.file))
2140 goto close_fail;
2141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002143 retval = binfmt->core_dump(&cprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 if (retval)
2145 current->signal->group_exit_code |= 0x80;
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002146
Neil Horman61be2282009-09-23 15:56:58 -07002147 if (ispipe && core_pipe_limit)
Masami Hiramatsuf6151df2009-12-17 15:27:16 -08002148 wait_for_dump_helpers(cprm.file);
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002149close_fail:
2150 if (cprm.file)
2151 filp_close(cprm.file, NULL);
Neil Hormana2939802009-09-23 15:56:56 -07002152fail_dropcount:
Oleg Nesterovd5bf4c42010-05-26 14:43:06 -07002153 if (ispipe)
Neil Hormana2939802009-09-23 15:56:56 -07002154 atomic_dec(&core_dump_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155fail_unlock:
Xiaotian Feng1b0d3002010-10-27 15:34:08 -07002156 kfree(cn.corename);
2157fail_corename:
Oleg Nesterova94e2d42008-07-25 01:47:46 -07002158 coredump_finish(mm);
Oleg Nesterov5e43aef2010-05-26 14:43:07 -07002159 revert_creds(old_cred);
2160fail_creds:
2161 put_cred(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162fail:
WANG Cong8cd3ac32009-01-06 14:42:48 -08002163 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164}
Linus Torvalds3aa0ce82010-10-14 14:32:06 -07002165
2166/*
2167 * Core dumping helper functions. These are the only things you should
2168 * do on a core-file: use only these functions to write out all the
2169 * necessary info.
2170 */
2171int dump_write(struct file *file, const void *addr, int nr)
2172{
2173 return access_ok(VERIFY_READ, addr, nr) && file->f_op->write(file, addr, nr, &file->f_pos) == nr;
2174}
Linus Torvalds8fd01d62010-10-14 19:15:28 -07002175EXPORT_SYMBOL(dump_write);
Linus Torvalds3aa0ce82010-10-14 14:32:06 -07002176
2177int dump_seek(struct file *file, loff_t off)
2178{
2179 int ret = 1;
2180
2181 if (file->f_op->llseek && file->f_op->llseek != no_llseek) {
2182 if (file->f_op->llseek(file, off, SEEK_CUR) < 0)
2183 return 0;
2184 } else {
2185 char *buf = (char *)get_zeroed_page(GFP_KERNEL);
2186
2187 if (!buf)
2188 return 0;
2189 while (off > 0) {
2190 unsigned long n = off;
2191
2192 if (n > PAGE_SIZE)
2193 n = PAGE_SIZE;
2194 if (!dump_write(file, buf, n)) {
2195 ret = 0;
2196 break;
2197 }
2198 off -= n;
2199 }
2200 free_page((unsigned long)buf);
2201 }
2202 return ret;
2203}
Linus Torvalds8fd01d62010-10-14 19:15:28 -07002204EXPORT_SYMBOL(dump_seek);