blob: da94a6f05df3ef6dfd9db450e8f813c513b6a47d [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/stat.h>
30#include <linux/fcntl.h>
31#include <linux/smp_lock.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>
34#include <linux/pagemap.h>
35#include <linux/highmem.h>
36#include <linux/spinlock.h>
37#include <linux/key.h>
38#include <linux/personality.h>
39#include <linux/binfmts.h>
40#include <linux/swap.h>
41#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>
46#include <linux/ptrace.h>
47#include <linux/mount.h>
48#include <linux/security.h>
49#include <linux/syscalls.h>
50#include <linux/rmap.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070051#include <linux/tsacct_kern.h>
Matt Helsley9f460802005-11-07 00:59:16 -080052#include <linux/cn_proc.h>
Al Viro473ae302006-04-26 14:04:08 -040053#include <linux/audit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#include <asm/uaccess.h>
56#include <asm/mmu_context.h>
Ollie Wildb6a2fea2007-07-19 01:48:16 -070057#include <asm/tlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#ifdef CONFIG_KMOD
60#include <linux/kmod.h>
61#endif
62
David Woodhouse702773b2008-06-16 12:11:54 +010063#ifdef __alpha__
64/* for /sbin/loader handling in search_binary_handler() */
65#include <linux/a.out.h>
66#endif
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068int core_uses_pid;
Dan Aloni71ce92f2007-05-16 22:11:16 -070069char core_pattern[CORENAME_MAX_SIZE] = "core";
Alan Coxd6e71142005-06-23 00:09:43 -070070int suid_dumpable = 0;
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* The maximal length of core_pattern is also specified in sysctl.c */
73
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070074static LIST_HEAD(formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static DEFINE_RWLOCK(binfmt_lock);
76
77int register_binfmt(struct linux_binfmt * fmt)
78{
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (!fmt)
80 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 write_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070082 list_add(&fmt->lh, &formats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 write_unlock(&binfmt_lock);
84 return 0;
85}
86
87EXPORT_SYMBOL(register_binfmt);
88
Alexey Dobriyanf6b450d2007-10-16 23:26:04 -070089void unregister_binfmt(struct linux_binfmt * fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 write_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -070092 list_del(&fmt->lh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 write_unlock(&binfmt_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96EXPORT_SYMBOL(unregister_binfmt);
97
98static inline void put_binfmt(struct linux_binfmt * fmt)
99{
100 module_put(fmt->module);
101}
102
103/*
104 * Note that a shared library must be both readable and executable due to
105 * security reasons.
106 *
107 * Also note that we take the address to load from from the file itself.
108 */
109asmlinkage long sys_uselib(const char __user * library)
110{
111 struct file * file;
112 struct nameidata nd;
113 int error;
114
Oleg Drokinb5005312006-03-25 03:07:01 -0800115 error = __user_path_lookup_open(library, LOOKUP_FOLLOW, &nd, FMODE_READ|FMODE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (error)
117 goto out;
118
119 error = -EINVAL;
Jan Blunck4ac91372008-02-14 19:34:32 -0800120 if (!S_ISREG(nd.path.dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 goto exit;
122
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800123 error = vfs_permission(&nd, MAY_READ | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (error)
125 goto exit;
126
Andi Kleenabe8be32008-02-08 04:20:23 -0800127 file = nameidata_to_filp(&nd, O_RDONLY|O_LARGEFILE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 error = PTR_ERR(file);
129 if (IS_ERR(file))
130 goto out;
131
132 error = -ENOEXEC;
133 if(file->f_op) {
134 struct linux_binfmt * fmt;
135
136 read_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -0700137 list_for_each_entry(fmt, &formats, lh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (!fmt->load_shlib)
139 continue;
140 if (!try_module_get(fmt->module))
141 continue;
142 read_unlock(&binfmt_lock);
143 error = fmt->load_shlib(file);
144 read_lock(&binfmt_lock);
145 put_binfmt(fmt);
146 if (error != -ENOEXEC)
147 break;
148 }
149 read_unlock(&binfmt_lock);
150 }
151 fput(file);
152out:
153 return error;
154exit:
Trond Myklebust834f2a42005-10-18 14:20:16 -0700155 release_open_intent(&nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800156 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 goto out;
158}
159
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700160#ifdef CONFIG_MMU
161
162static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
163 int write)
164{
165 struct page *page;
166 int ret;
167
168#ifdef CONFIG_STACK_GROWSUP
169 if (write) {
170 ret = expand_stack_downwards(bprm->vma, pos);
171 if (ret < 0)
172 return NULL;
173 }
174#endif
175 ret = get_user_pages(current, bprm->mm, pos,
176 1, write, 1, &page, NULL);
177 if (ret <= 0)
178 return NULL;
179
180 if (write) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700181 unsigned long size = bprm->vma->vm_end - bprm->vma->vm_start;
Linus Torvaldsa64e7152008-03-03 10:12:14 -0800182 struct rlimit *rlim;
183
184 /*
185 * We've historically supported up to 32 pages (ARG_MAX)
186 * of argument strings even with small stacks
187 */
188 if (size <= ARG_MAX)
189 return page;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700190
191 /*
192 * Limit to 1/4-th the stack size for the argv+env strings.
193 * This ensures that:
194 * - the remaining binfmt code will not run out of stack space,
195 * - the program will have a reasonable amount of stack left
196 * to work from.
197 */
Linus Torvaldsa64e7152008-03-03 10:12:14 -0800198 rlim = current->signal->rlim;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700199 if (size > rlim[RLIMIT_STACK].rlim_cur / 4) {
200 put_page(page);
201 return NULL;
202 }
203 }
204
205 return page;
206}
207
208static void put_arg_page(struct page *page)
209{
210 put_page(page);
211}
212
213static void free_arg_page(struct linux_binprm *bprm, int i)
214{
215}
216
217static void free_arg_pages(struct linux_binprm *bprm)
218{
219}
220
221static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
222 struct page *page)
223{
224 flush_cache_page(bprm->vma, pos, page_to_pfn(page));
225}
226
227static int __bprm_mm_init(struct linux_binprm *bprm)
228{
229 int err = -ENOMEM;
230 struct vm_area_struct *vma = NULL;
231 struct mm_struct *mm = bprm->mm;
232
233 bprm->vma = vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
234 if (!vma)
235 goto err;
236
237 down_write(&mm->mmap_sem);
238 vma->vm_mm = mm;
239
240 /*
241 * Place the stack at the largest stack address the architecture
242 * supports. Later, we'll move this to an appropriate place. We don't
243 * use STACK_TOP because that can depend on attributes which aren't
244 * configured yet.
245 */
246 vma->vm_end = STACK_TOP_MAX;
247 vma->vm_start = vma->vm_end - PAGE_SIZE;
248
249 vma->vm_flags = VM_STACK_FLAGS;
Coly Li3ed75eb2007-10-18 23:39:15 -0700250 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700251 err = insert_vm_struct(mm, vma);
252 if (err) {
253 up_write(&mm->mmap_sem);
254 goto err;
255 }
256
257 mm->stack_vm = mm->total_vm = 1;
258 up_write(&mm->mmap_sem);
259
260 bprm->p = vma->vm_end - sizeof(void *);
261
262 return 0;
263
264err:
265 if (vma) {
266 bprm->vma = NULL;
267 kmem_cache_free(vm_area_cachep, vma);
268 }
269
270 return err;
271}
272
273static bool valid_arg_len(struct linux_binprm *bprm, long len)
274{
275 return len <= MAX_ARG_STRLEN;
276}
277
278#else
279
280static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
281 int write)
282{
283 struct page *page;
284
285 page = bprm->page[pos / PAGE_SIZE];
286 if (!page && write) {
287 page = alloc_page(GFP_HIGHUSER|__GFP_ZERO);
288 if (!page)
289 return NULL;
290 bprm->page[pos / PAGE_SIZE] = page;
291 }
292
293 return page;
294}
295
296static void put_arg_page(struct page *page)
297{
298}
299
300static void free_arg_page(struct linux_binprm *bprm, int i)
301{
302 if (bprm->page[i]) {
303 __free_page(bprm->page[i]);
304 bprm->page[i] = NULL;
305 }
306}
307
308static void free_arg_pages(struct linux_binprm *bprm)
309{
310 int i;
311
312 for (i = 0; i < MAX_ARG_PAGES; i++)
313 free_arg_page(bprm, i);
314}
315
316static void flush_arg_page(struct linux_binprm *bprm, unsigned long pos,
317 struct page *page)
318{
319}
320
321static int __bprm_mm_init(struct linux_binprm *bprm)
322{
323 bprm->p = PAGE_SIZE * MAX_ARG_PAGES - sizeof(void *);
324 return 0;
325}
326
327static bool valid_arg_len(struct linux_binprm *bprm, long len)
328{
329 return len <= bprm->p;
330}
331
332#endif /* CONFIG_MMU */
333
334/*
335 * Create a new mm_struct and populate it with a temporary stack
336 * vm_area_struct. We don't have enough context at this point to set the stack
337 * flags, permissions, and offset, so we use temporary values. We'll update
338 * them later in setup_arg_pages().
339 */
340int bprm_mm_init(struct linux_binprm *bprm)
341{
342 int err;
343 struct mm_struct *mm = NULL;
344
345 bprm->mm = mm = mm_alloc();
346 err = -ENOMEM;
347 if (!mm)
348 goto err;
349
350 err = init_new_context(current, mm);
351 if (err)
352 goto err;
353
354 err = __bprm_mm_init(bprm);
355 if (err)
356 goto err;
357
358 return 0;
359
360err:
361 if (mm) {
362 bprm->mm = NULL;
363 mmdrop(mm);
364 }
365
366 return err;
367}
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369/*
370 * count() counts the number of strings in array ARGV.
371 */
372static int count(char __user * __user * argv, int max)
373{
374 int i = 0;
375
376 if (argv != NULL) {
377 for (;;) {
378 char __user * p;
379
380 if (get_user(p, argv))
381 return -EFAULT;
382 if (!p)
383 break;
384 argv++;
385 if(++i > max)
386 return -E2BIG;
387 cond_resched();
388 }
389 }
390 return i;
391}
392
393/*
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700394 * 'copy_strings()' copies argument/environment strings from the old
395 * processes's memory to the new process's stack. The call to get_user_pages()
396 * ensures the destination page is created and not swapped out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 */
Adrian Bunk75c96f82005-05-05 16:16:09 -0700398static int copy_strings(int argc, char __user * __user * argv,
399 struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 struct page *kmapped_page = NULL;
402 char *kaddr = NULL;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700403 unsigned long kpos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 int ret;
405
406 while (argc-- > 0) {
407 char __user *str;
408 int len;
409 unsigned long pos;
410
411 if (get_user(str, argv+argc) ||
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700412 !(len = strnlen_user(str, MAX_ARG_STRLEN))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 ret = -EFAULT;
414 goto out;
415 }
416
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700417 if (!valid_arg_len(bprm, len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 ret = -E2BIG;
419 goto out;
420 }
421
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700422 /* We're going to work our way backwords. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 pos = bprm->p;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700424 str += len;
425 bprm->p -= len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 while (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 int offset, bytes_to_copy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 offset = pos % PAGE_SIZE;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700431 if (offset == 0)
432 offset = PAGE_SIZE;
433
434 bytes_to_copy = offset;
435 if (bytes_to_copy > len)
436 bytes_to_copy = len;
437
438 offset -= bytes_to_copy;
439 pos -= bytes_to_copy;
440 str -= bytes_to_copy;
441 len -= bytes_to_copy;
442
443 if (!kmapped_page || kpos != (pos & PAGE_MASK)) {
444 struct page *page;
445
446 page = get_arg_page(bprm, pos, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (!page) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700448 ret = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 goto out;
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700452 if (kmapped_page) {
453 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700455 put_arg_page(kmapped_page);
456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 kmapped_page = page;
458 kaddr = kmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700459 kpos = pos & PAGE_MASK;
460 flush_arg_page(bprm, kpos, kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700462 if (copy_from_user(kaddr+offset, str, bytes_to_copy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 ret = -EFAULT;
464 goto out;
465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467 }
468 ret = 0;
469out:
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700470 if (kmapped_page) {
471 flush_kernel_dcache_page(kmapped_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 kunmap(kmapped_page);
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700473 put_arg_page(kmapped_page);
474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return ret;
476}
477
478/*
479 * Like copy_strings, but get argv and its values from kernel memory.
480 */
481int copy_strings_kernel(int argc,char ** argv, struct linux_binprm *bprm)
482{
483 int r;
484 mm_segment_t oldfs = get_fs();
485 set_fs(KERNEL_DS);
486 r = copy_strings(argc, (char __user * __user *)argv, bprm);
487 set_fs(oldfs);
488 return r;
489}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490EXPORT_SYMBOL(copy_strings_kernel);
491
492#ifdef CONFIG_MMU
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494/*
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700495 * During bprm_mm_init(), we create a temporary stack at STACK_TOP_MAX. Once
496 * the binfmt code determines where the new stack should reside, we shift it to
497 * its final location. The process proceeds as follows:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 *
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700499 * 1) Use shift to calculate the new vma endpoints.
500 * 2) Extend vma to cover both the old and new ranges. This ensures the
501 * arguments passed to subsequent functions are consistent.
502 * 3) Move vma's page tables to the new range.
503 * 4) Free up any cleared pgd range.
504 * 5) Shrink the vma to cover only the new range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700506static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 struct mm_struct *mm = vma->vm_mm;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700509 unsigned long old_start = vma->vm_start;
510 unsigned long old_end = vma->vm_end;
511 unsigned long length = old_end - old_start;
512 unsigned long new_start = old_start - shift;
513 unsigned long new_end = old_end - shift;
514 struct mmu_gather *tlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700516 BUG_ON(new_start > new_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700518 /*
519 * ensure there are no vmas between where we want to go
520 * and where we are
521 */
522 if (vma != find_vma(mm, new_start))
523 return -EFAULT;
524
525 /*
526 * cover the whole range: [new_start, old_end)
527 */
528 vma_adjust(vma, new_start, old_end, vma->vm_pgoff, NULL);
529
530 /*
531 * move the page tables downwards, on failure we rely on
532 * process cleanup to remove whatever mess we made.
533 */
534 if (length != move_page_tables(vma, old_start,
535 vma, new_start, length))
536 return -ENOMEM;
537
538 lru_add_drain();
539 tlb = tlb_gather_mmu(mm, 0);
540 if (new_end > old_start) {
541 /*
542 * when the old and new regions overlap clear from new_end.
543 */
544 free_pgd_range(&tlb, new_end, old_end, new_end,
545 vma->vm_next ? vma->vm_next->vm_start : 0);
546 } else {
547 /*
548 * otherwise, clean from old_start; this is done to not touch
549 * the address space in [new_end, old_start) some architectures
550 * have constraints on va-space that make this illegal (IA64) -
551 * for the others its just a little faster.
552 */
553 free_pgd_range(&tlb, old_start, old_end, new_end,
554 vma->vm_next ? vma->vm_next->vm_start : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700556 tlb_finish_mmu(tlb, new_end, old_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700558 /*
559 * shrink the vma to just the new range.
560 */
561 vma_adjust(vma, new_start, new_end, vma->vm_pgoff, NULL);
562
563 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566#define EXTRA_STACK_VM_PAGES 20 /* random */
567
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700568/*
569 * Finalizes the stack vm_area_struct. The flags and permissions are updated,
570 * the stack is optionally relocated, and some extra space is added.
571 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572int setup_arg_pages(struct linux_binprm *bprm,
573 unsigned long stack_top,
574 int executable_stack)
575{
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700576 unsigned long ret;
577 unsigned long stack_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 struct mm_struct *mm = current->mm;
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700579 struct vm_area_struct *vma = bprm->vma;
580 struct vm_area_struct *prev = NULL;
581 unsigned long vm_flags;
582 unsigned long stack_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584#ifdef CONFIG_STACK_GROWSUP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* Limit stack size to 1GB */
586 stack_base = current->signal->rlim[RLIMIT_STACK].rlim_max;
587 if (stack_base > (1 << 30))
588 stack_base = 1 << 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700590 /* Make sure we didn't let the argument array grow too large. */
591 if (vma->vm_end - vma->vm_start > stack_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return -ENOMEM;
593
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700594 stack_base = PAGE_ALIGN(stack_top - stack_base);
595
596 stack_shift = vma->vm_start - stack_base;
597 mm->arg_start = bprm->p - stack_shift;
598 bprm->p = vma->vm_end - stack_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599#else
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700600 stack_top = arch_align_stack(stack_top);
601 stack_top = PAGE_ALIGN(stack_top);
602 stack_shift = vma->vm_end - stack_top;
603
604 bprm->p -= stack_shift;
605 mm->arg_start = bprm->p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606#endif
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700607
608 if (bprm->loader)
609 bprm->loader -= stack_shift;
610 bprm->exec -= stack_shift;
611
612 down_write(&mm->mmap_sem);
613 vm_flags = vma->vm_flags;
614
615 /*
616 * Adjust stack execute permissions; explicitly enable for
617 * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone
618 * (arch default) otherwise.
619 */
620 if (unlikely(executable_stack == EXSTACK_ENABLE_X))
621 vm_flags |= VM_EXEC;
622 else if (executable_stack == EXSTACK_DISABLE_X)
623 vm_flags &= ~VM_EXEC;
624 vm_flags |= mm->def_flags;
625
626 ret = mprotect_fixup(vma, &prev, vma->vm_start, vma->vm_end,
627 vm_flags);
628 if (ret)
629 goto out_unlock;
630 BUG_ON(prev != vma);
631
632 /* Move stack pages down in memory. */
633 if (stack_shift) {
634 ret = shift_arg_pages(vma, stack_shift);
635 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 up_write(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return ret;
638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
640
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700641#ifdef CONFIG_STACK_GROWSUP
642 stack_base = vma->vm_end + EXTRA_STACK_VM_PAGES * PAGE_SIZE;
643#else
644 stack_base = vma->vm_start - EXTRA_STACK_VM_PAGES * PAGE_SIZE;
645#endif
646 ret = expand_stack(vma, stack_base);
647 if (ret)
648 ret = -EFAULT;
649
650out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 up_write(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return 0;
653}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654EXPORT_SYMBOL(setup_arg_pages);
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656#endif /* CONFIG_MMU */
657
658struct file *open_exec(const char *name)
659{
660 struct nameidata nd;
661 int err;
662 struct file *file;
663
Oleg Drokinb5005312006-03-25 03:07:01 -0800664 err = path_lookup_open(AT_FDCWD, name, LOOKUP_FOLLOW, &nd, FMODE_READ|FMODE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 file = ERR_PTR(err);
666
667 if (!err) {
Jan Blunck4ac91372008-02-14 19:34:32 -0800668 struct inode *inode = nd.path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 file = ERR_PTR(-EACCES);
Miklos Szeredi1a159dd2007-10-16 23:27:08 -0700670 if (S_ISREG(inode->i_mode)) {
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800671 int err = vfs_permission(&nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 file = ERR_PTR(err);
673 if (!err) {
Andi Kleenabe8be32008-02-08 04:20:23 -0800674 file = nameidata_to_filp(&nd,
675 O_RDONLY|O_LARGEFILE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (!IS_ERR(file)) {
677 err = deny_write_access(file);
678 if (err) {
679 fput(file);
680 file = ERR_PTR(err);
681 }
682 }
683out:
684 return file;
685 }
686 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700687 release_open_intent(&nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800688 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690 goto out;
691}
692
693EXPORT_SYMBOL(open_exec);
694
695int kernel_read(struct file *file, unsigned long offset,
696 char *addr, unsigned long count)
697{
698 mm_segment_t old_fs;
699 loff_t pos = offset;
700 int result;
701
702 old_fs = get_fs();
703 set_fs(get_ds());
704 /* The cast to a user pointer is valid due to the set_fs() */
705 result = vfs_read(file, (void __user *)addr, count, &pos);
706 set_fs(old_fs);
707 return result;
708}
709
710EXPORT_SYMBOL(kernel_read);
711
712static int exec_mmap(struct mm_struct *mm)
713{
714 struct task_struct *tsk;
715 struct mm_struct * old_mm, *active_mm;
716
717 /* Notify parent that we're no longer interested in the old VM */
718 tsk = current;
719 old_mm = current->mm;
720 mm_release(tsk, old_mm);
721
722 if (old_mm) {
723 /*
724 * Make sure that if there is a core dump in progress
725 * for the old mm, we get out and die instead of going
726 * through with the exec. We must hold mmap_sem around
727 * checking core_waiters and changing tsk->mm. The
728 * core-inducing thread will increment core_waiters for
729 * each thread whose ->mm == old_mm.
730 */
731 down_read(&old_mm->mmap_sem);
732 if (unlikely(old_mm->core_waiters)) {
733 up_read(&old_mm->mmap_sem);
734 return -EINTR;
735 }
736 }
737 task_lock(tsk);
738 active_mm = tsk->active_mm;
739 tsk->mm = mm;
740 tsk->active_mm = mm;
741 activate_mm(active_mm, mm);
742 task_unlock(tsk);
KOSAKI Motohiro4cd1a8f2008-05-12 14:02:31 -0700743 mm_update_next_owner(old_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 arch_pick_mmap_layout(mm);
745 if (old_mm) {
746 up_read(&old_mm->mmap_sem);
Eric Sesterhenn7dddb122006-04-01 01:13:38 +0200747 BUG_ON(active_mm != old_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 mmput(old_mm);
749 return 0;
750 }
751 mmdrop(active_mm);
752 return 0;
753}
754
755/*
756 * This function makes sure the current process has its own signal table,
757 * so that flush_signal_handlers can later reset the handlers without
758 * disturbing other processes. (Other processes might share the signal
759 * table via the CLONE_SIGHAND option to clone().)
760 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800761static int de_thread(struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
763 struct signal_struct *sig = tsk->signal;
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700764 struct sighand_struct *oldsighand = tsk->sighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 spinlock_t *lock = &oldsighand->siglock;
Oleg Nesterov329f7db2005-11-07 21:12:43 +0300766 struct task_struct *leader = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 int count;
768
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700769 if (thread_group_empty(tsk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 goto no_thread_group;
771
772 /*
773 * Kill all other threads in the thread group.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 spin_lock_irq(lock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -0800776 if (signal_group_exit(sig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /*
778 * Another group action in progress, just
779 * return so that the signal is processed.
780 */
781 spin_unlock_irq(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return -EAGAIN;
783 }
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -0800784 sig->group_exit_task = tsk;
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700785 zap_other_threads(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Oleg Nesterovfea9d172008-02-08 04:19:19 -0800787 /* Account for the thread group leader hanging around: */
788 count = thread_group_leader(tsk) ? 1 : 2;
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700789 sig->notify_count = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 while (atomic_read(&sig->count) > count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 __set_current_state(TASK_UNINTERRUPTIBLE);
792 spin_unlock_irq(lock);
793 schedule();
794 spin_lock_irq(lock);
795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 spin_unlock_irq(lock);
797
798 /*
799 * At this point all other threads have exited, all we have to
800 * do is to wait for the thread group leader to become inactive,
801 * and to assume its PID:
802 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700803 if (!thread_group_leader(tsk)) {
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700804 leader = tsk->group_leader;
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700805
Oleg Nesterov2800d8d2008-04-30 00:53:12 -0700806 sig->notify_count = -1; /* for exit_notify() */
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700807 for (;;) {
808 write_lock_irq(&tasklist_lock);
809 if (likely(leader->exit_state))
810 break;
811 __set_current_state(TASK_UNINTERRUPTIBLE);
812 write_unlock_irq(&tasklist_lock);
813 schedule();
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Oleg Nesterov7a5e8732008-04-30 00:53:04 -0700816 if (unlikely(task_child_reaper(tsk) == leader))
817 task_active_pid_ns(tsk)->child_reaper = tsk;
Roland McGrathf5e90282006-04-10 22:54:16 -0700818 /*
819 * The only record we have of the real-time age of a
820 * process, regardless of execs it's done, is start_time.
821 * All the past CPU time is accumulated in signal_struct
822 * from sister threads now dead. But in this non-leader
823 * exec, nothing survives from the original leader thread,
824 * whose birth marks the true age of this process now.
825 * When we take on its identity by switching to its PID, we
826 * also take its birthdate (always earlier than our own).
827 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700828 tsk->start_time = leader->start_time;
Roland McGrathf5e90282006-04-10 22:54:16 -0700829
Pavel Emelyanovbac0abd2007-10-18 23:40:18 -0700830 BUG_ON(!same_thread_group(leader, tsk));
831 BUG_ON(has_group_leader_pid(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /*
833 * An exec() starts a new thread group with the
834 * TGID of the previous thread group. Rehash the
835 * two threads with a switched PID, and release
836 * the former thread group leader:
837 */
Eric W. Biedermand73d6522006-03-28 16:11:03 -0800838
839 /* Become a process group leader with the old leader's pid.
Eric W. Biedermanc18258c2006-09-27 01:51:06 -0700840 * The old leader becomes a thread of the this thread group.
841 * Note: The old leader also uses this pid until release_task
Eric W. Biedermand73d6522006-03-28 16:11:03 -0800842 * is called. Odd but simple and correct.
843 */
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700844 detach_pid(tsk, PIDTYPE_PID);
845 tsk->pid = leader->pid;
Sukadev Bhattiprolu3743ca02007-10-18 23:39:51 -0700846 attach_pid(tsk, PIDTYPE_PID, task_pid(leader));
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700847 transfer_pid(leader, tsk, PIDTYPE_PGID);
848 transfer_pid(leader, tsk, PIDTYPE_SID);
849 list_replace_rcu(&leader->tasks, &tsk->tasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700851 tsk->group_leader = tsk;
852 leader->group_leader = tsk;
Eric W. Biedermande12a782006-04-10 17:16:49 -0600853
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700854 tsk->exit_signal = SIGCHLD;
Oleg Nesterov962b5642005-11-23 13:37:43 -0800855
856 BUG_ON(leader->exit_state != EXIT_ZOMBIE);
857 leader->exit_state = EXIT_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 write_unlock_irq(&tasklist_lock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -0800860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Oleg Nesterov6db840f2007-10-16 23:27:23 -0700862 sig->group_exit_task = NULL;
863 sig->notify_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865no_thread_group:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 exit_itimers(sig);
Oleg Nesterovcbaffba2008-05-26 20:55:42 +0400867 flush_itimer_signals();
Oleg Nesterov329f7db2005-11-07 21:12:43 +0300868 if (leader)
869 release_task(leader);
870
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700871 if (atomic_read(&oldsighand->count) != 1) {
872 struct sighand_struct *newsighand;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /*
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700874 * This ->sighand is shared with the CLONE_SIGHAND
875 * but not CLONE_THREAD task, switch to the new one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 */
Oleg Nesterovb2c903b2007-10-16 23:27:22 -0700877 newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
878 if (!newsighand)
879 return -ENOMEM;
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 atomic_set(&newsighand->count, 1);
882 memcpy(newsighand->action, oldsighand->action,
883 sizeof(newsighand->action));
884
885 write_lock_irq(&tasklist_lock);
886 spin_lock(&oldsighand->siglock);
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700887 rcu_assign_pointer(tsk->sighand, newsighand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 spin_unlock(&oldsighand->siglock);
889 write_unlock_irq(&tasklist_lock);
890
Davide Libenzifba2afa2007-05-10 22:23:13 -0700891 __cleanup_sighand(oldsighand);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
Eric W. Biedermanaafe6c22006-09-27 01:51:13 -0700894 BUG_ON(!thread_group_leader(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return 0;
896}
Oleg Nesterov0840a902007-10-16 23:27:22 -0700897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898/*
899 * These functions flushes out all traces of the currently running executable
900 * so that a new one can be started
901 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800902static void flush_old_files(struct files_struct * files)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 long j = -1;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700905 struct fdtable *fdt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 spin_lock(&files->file_lock);
908 for (;;) {
909 unsigned long set, i;
910
911 j++;
912 i = j * __NFDBITS;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700913 fdt = files_fdtable(files);
Vadim Lobanovbbea9f62006-12-10 02:21:12 -0800914 if (i >= fdt->max_fds)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 break;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700916 set = fdt->close_on_exec->fds_bits[j];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (!set)
918 continue;
Dipankar Sarmabadf1662005-09-09 13:04:10 -0700919 fdt->close_on_exec->fds_bits[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 spin_unlock(&files->file_lock);
921 for ( ; set ; i++,set >>= 1) {
922 if (set & 1) {
923 sys_close(i);
924 }
925 }
926 spin_lock(&files->file_lock);
927
928 }
929 spin_unlock(&files->file_lock);
930}
931
Andrew Morton59714d62008-02-04 22:27:21 -0800932char *get_task_comm(char *buf, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
934 /* buf must be at least sizeof(tsk->comm) in size */
935 task_lock(tsk);
936 strncpy(buf, tsk->comm, sizeof(tsk->comm));
937 task_unlock(tsk);
Andrew Morton59714d62008-02-04 22:27:21 -0800938 return buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
941void set_task_comm(struct task_struct *tsk, char *buf)
942{
943 task_lock(tsk);
944 strlcpy(tsk->comm, buf, sizeof(tsk->comm));
945 task_unlock(tsk);
946}
947
948int flush_old_exec(struct linux_binprm * bprm)
949{
950 char * name;
951 int i, ch, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 char tcomm[sizeof(current->comm)];
953
954 /*
955 * Make sure we have a private signal table and that
956 * we are unassociated from the previous thread group.
957 */
958 retval = de_thread(current);
959 if (retval)
960 goto out;
961
Matt Helsley925d1c42008-04-29 01:01:36 -0700962 set_mm_exe_file(bprm->mm, bprm->file);
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 * Release all of the old mmap stuff
966 */
967 retval = exec_mmap(bprm->mm);
968 if (retval)
Al Virofd8328b2008-04-22 05:11:59 -0400969 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 bprm->mm = NULL; /* We're using it now */
972
973 /* This is the point of no return */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 current->sas_ss_sp = current->sas_ss_size = 0;
975
976 if (current->euid == current->uid && current->egid == current->gid)
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -0700977 set_dumpable(current->mm, 1);
Alan Coxd6e71142005-06-23 00:09:43 -0700978 else
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -0700979 set_dumpable(current->mm, suid_dumpable);
Alan Coxd6e71142005-06-23 00:09:43 -0700980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 name = bprm->filename;
Paolo 'Blaisorblade' Giarrusso36772092005-05-05 16:16:12 -0700982
983 /* Copies the binary name from after last slash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 for (i=0; (ch = *(name++)) != '\0';) {
985 if (ch == '/')
Paolo 'Blaisorblade' Giarrusso36772092005-05-05 16:16:12 -0700986 i = 0; /* overwrite what we wrote */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 else
988 if (i < (sizeof(tcomm) - 1))
989 tcomm[i++] = ch;
990 }
991 tcomm[i] = '\0';
992 set_task_comm(current, tcomm);
993
994 current->flags &= ~PF_RANDOMIZE;
995 flush_thread();
996
Benjamin Herrenschmidt0551fbd2006-02-28 16:59:19 -0800997 /* Set the new mm task size. We have to do that late because it may
998 * depend on TIF_32BIT which is only updated in flush_thread() on
999 * some architectures like powerpc
1000 */
1001 current->mm->task_size = TASK_SIZE;
1002
Marcel Holtmannd2d56c52007-08-17 21:47:58 +02001003 if (bprm->e_uid != current->euid || bprm->e_gid != current->egid) {
1004 suid_keys(current);
1005 set_dumpable(current->mm, suid_dumpable);
1006 current->pdeath_signal = 0;
1007 } else if (file_permission(bprm->file, MAY_READ) ||
1008 (bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 suid_keys(current);
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001010 set_dumpable(current->mm, suid_dumpable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 }
1012
1013 /* An exec changes our domain. We are no longer part of the thread
1014 group */
1015
1016 current->self_exec_id++;
1017
1018 flush_signal_handlers(current, 0);
1019 flush_old_files(current->files);
1020
1021 return 0;
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023out:
1024 return retval;
1025}
1026
1027EXPORT_SYMBOL(flush_old_exec);
1028
1029/*
1030 * Fill the binprm structure from the inode.
1031 * Check permissions, then read the first 128 (BINPRM_BUF_SIZE) bytes
1032 */
1033int prepare_binprm(struct linux_binprm *bprm)
1034{
1035 int mode;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001036 struct inode * inode = bprm->file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 int retval;
1038
1039 mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (bprm->file->f_op == NULL)
1041 return -EACCES;
1042
1043 bprm->e_uid = current->euid;
1044 bprm->e_gid = current->egid;
1045
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001046 if(!(bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 /* Set-uid? */
1048 if (mode & S_ISUID) {
1049 current->personality &= ~PER_CLEAR_ON_SETID;
1050 bprm->e_uid = inode->i_uid;
1051 }
1052
1053 /* Set-gid? */
1054 /*
1055 * If setgid is set but no group execute bit then this
1056 * is a candidate for mandatory locking, not a setgid
1057 * executable.
1058 */
1059 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
1060 current->personality &= ~PER_CLEAR_ON_SETID;
1061 bprm->e_gid = inode->i_gid;
1062 }
1063 }
1064
1065 /* fill in binprm security blob */
1066 retval = security_bprm_set(bprm);
1067 if (retval)
1068 return retval;
1069
1070 memset(bprm->buf,0,BINPRM_BUF_SIZE);
1071 return kernel_read(bprm->file,0,bprm->buf,BINPRM_BUF_SIZE);
1072}
1073
1074EXPORT_SYMBOL(prepare_binprm);
1075
Arjan van de Ven858119e2006-01-14 13:20:43 -08001076static int unsafe_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
1078 int unsafe = 0;
1079 if (p->ptrace & PT_PTRACED) {
1080 if (p->ptrace & PT_PTRACE_CAP)
1081 unsafe |= LSM_UNSAFE_PTRACE_CAP;
1082 else
1083 unsafe |= LSM_UNSAFE_PTRACE;
1084 }
1085 if (atomic_read(&p->fs->count) > 1 ||
1086 atomic_read(&p->files->count) > 1 ||
1087 atomic_read(&p->sighand->count) > 1)
1088 unsafe |= LSM_UNSAFE_SHARE;
1089
1090 return unsafe;
1091}
1092
1093void compute_creds(struct linux_binprm *bprm)
1094{
1095 int unsafe;
1096
Marcel Holtmannd2d56c52007-08-17 21:47:58 +02001097 if (bprm->e_uid != current->uid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 suid_keys(current);
Marcel Holtmannd2d56c52007-08-17 21:47:58 +02001099 current->pdeath_signal = 0;
1100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 exec_keys(current);
1102
1103 task_lock(current);
1104 unsafe = unsafe_exec(current);
1105 security_bprm_apply_creds(bprm, unsafe);
1106 task_unlock(current);
1107 security_bprm_post_apply_creds(bprm);
1108}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109EXPORT_SYMBOL(compute_creds);
1110
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001111/*
1112 * Arguments are '\0' separated strings found at the location bprm->p
1113 * points to; chop off the first by relocating brpm->p to right after
1114 * the first '\0' encountered.
1115 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001116int remove_arg_zero(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001118 int ret = 0;
1119 unsigned long offset;
1120 char *kaddr;
1121 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001123 if (!bprm->argc)
1124 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001126 do {
1127 offset = bprm->p & ~PAGE_MASK;
1128 page = get_arg_page(bprm, bprm->p, 0);
1129 if (!page) {
1130 ret = -EFAULT;
1131 goto out;
1132 }
1133 kaddr = kmap_atomic(page, KM_USER0);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001134
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001135 for (; offset < PAGE_SIZE && kaddr[offset];
1136 offset++, bprm->p++)
1137 ;
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001138
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001139 kunmap_atomic(kaddr, KM_USER0);
1140 put_arg_page(page);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001141
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001142 if (offset == PAGE_SIZE)
1143 free_arg_page(bprm, (bprm->p >> PAGE_SHIFT) - 1);
1144 } while (offset == PAGE_SIZE);
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001145
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001146 bprm->p++;
1147 bprm->argc--;
1148 ret = 0;
Nick Piggin4fc75ff2007-05-08 00:25:16 -07001149
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001150out:
1151 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153EXPORT_SYMBOL(remove_arg_zero);
1154
1155/*
1156 * cycle the list of binary formats handler, until one recognizes the image
1157 */
1158int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs)
1159{
1160 int try,retval;
1161 struct linux_binfmt *fmt;
David Woodhouse702773b2008-06-16 12:11:54 +01001162#ifdef __alpha__
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 /* handle /sbin/loader.. */
1164 {
1165 struct exec * eh = (struct exec *) bprm->buf;
1166
1167 if (!bprm->loader && eh->fh.f_magic == 0x183 &&
1168 (eh->fh.f_flags & 0x3000) == 0x3000)
1169 {
1170 struct file * file;
1171 unsigned long loader;
1172
1173 allow_write_access(bprm->file);
1174 fput(bprm->file);
1175 bprm->file = NULL;
1176
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001177 loader = bprm->vma->vm_end - sizeof(void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 file = open_exec("/sbin/loader");
1180 retval = PTR_ERR(file);
1181 if (IS_ERR(file))
1182 return retval;
1183
1184 /* Remember if the application is TASO. */
1185 bprm->sh_bang = eh->ah.entry < 0x100000000UL;
1186
1187 bprm->file = file;
1188 bprm->loader = loader;
1189 retval = prepare_binprm(bprm);
1190 if (retval<0)
1191 return retval;
1192 /* should call search_binary_handler recursively here,
1193 but it does not matter */
1194 }
1195 }
1196#endif
1197 retval = security_bprm_check(bprm);
1198 if (retval)
1199 return retval;
1200
1201 /* kernel module loader fixup */
1202 /* so we don't try to load run modprobe in kernel space. */
1203 set_fs(USER_DS);
Al Viro473ae302006-04-26 14:04:08 -04001204
1205 retval = audit_bprm(bprm);
1206 if (retval)
1207 return retval;
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 retval = -ENOENT;
1210 for (try=0; try<2; try++) {
1211 read_lock(&binfmt_lock);
Alexey Dobriyane4dc1b12007-10-16 23:26:03 -07001212 list_for_each_entry(fmt, &formats, lh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary;
1214 if (!fn)
1215 continue;
1216 if (!try_module_get(fmt->module))
1217 continue;
1218 read_unlock(&binfmt_lock);
1219 retval = fn(bprm, regs);
1220 if (retval >= 0) {
1221 put_binfmt(fmt);
1222 allow_write_access(bprm->file);
1223 if (bprm->file)
1224 fput(bprm->file);
1225 bprm->file = NULL;
1226 current->did_exec = 1;
Matt Helsley9f460802005-11-07 00:59:16 -08001227 proc_exec_connector(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return retval;
1229 }
1230 read_lock(&binfmt_lock);
1231 put_binfmt(fmt);
1232 if (retval != -ENOEXEC || bprm->mm == NULL)
1233 break;
1234 if (!bprm->file) {
1235 read_unlock(&binfmt_lock);
1236 return retval;
1237 }
1238 }
1239 read_unlock(&binfmt_lock);
1240 if (retval != -ENOEXEC || bprm->mm == NULL) {
1241 break;
1242#ifdef CONFIG_KMOD
1243 }else{
1244#define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
1245 if (printable(bprm->buf[0]) &&
1246 printable(bprm->buf[1]) &&
1247 printable(bprm->buf[2]) &&
1248 printable(bprm->buf[3]))
1249 break; /* -ENOEXEC */
1250 request_module("binfmt-%04x", *(unsigned short *)(&bprm->buf[2]));
1251#endif
1252 }
1253 }
1254 return retval;
1255}
1256
1257EXPORT_SYMBOL(search_binary_handler);
1258
Al Viro08a6fac2008-05-10 16:38:25 -04001259void free_bprm(struct linux_binprm *bprm)
1260{
1261 free_arg_pages(bprm);
1262 kfree(bprm);
1263}
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265/*
1266 * sys_execve() executes a new program.
1267 */
1268int do_execve(char * filename,
1269 char __user *__user *argv,
1270 char __user *__user *envp,
1271 struct pt_regs * regs)
1272{
1273 struct linux_binprm *bprm;
1274 struct file *file;
Al Viro3b125382008-04-22 05:31:30 -04001275 struct files_struct *displaced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Al Viro3b125382008-04-22 05:31:30 -04001278 retval = unshare_files(&displaced);
Al Virofd8328b2008-04-22 05:11:59 -04001279 if (retval)
1280 goto out_ret;
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 retval = -ENOMEM;
Oliver Neukum11b0b5a2006-03-25 03:08:13 -08001283 bprm = kzalloc(sizeof(*bprm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if (!bprm)
Al Virofd8328b2008-04-22 05:11:59 -04001285 goto out_files;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 file = open_exec(filename);
1288 retval = PTR_ERR(file);
1289 if (IS_ERR(file))
1290 goto out_kfree;
1291
1292 sched_exec();
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 bprm->file = file;
1295 bprm->filename = filename;
1296 bprm->interp = filename;
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001297
1298 retval = bprm_mm_init(bprm);
1299 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 goto out_file;
1301
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001302 bprm->argc = count(argv, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if ((retval = bprm->argc) < 0)
1304 goto out_mm;
1305
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001306 bprm->envc = count(envp, MAX_ARG_STRINGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if ((retval = bprm->envc) < 0)
1308 goto out_mm;
1309
1310 retval = security_bprm_alloc(bprm);
1311 if (retval)
1312 goto out;
1313
1314 retval = prepare_binprm(bprm);
1315 if (retval < 0)
1316 goto out;
1317
1318 retval = copy_strings_kernel(1, &bprm->filename, bprm);
1319 if (retval < 0)
1320 goto out;
1321
1322 bprm->exec = bprm->p;
1323 retval = copy_strings(bprm->envc, envp, bprm);
1324 if (retval < 0)
1325 goto out;
1326
1327 retval = copy_strings(bprm->argc, argv, bprm);
1328 if (retval < 0)
1329 goto out;
1330
1331 retval = search_binary_handler(bprm,regs);
1332 if (retval >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /* execve success */
1334 security_bprm_free(bprm);
1335 acct_update_integrals(current);
Al Viro08a6fac2008-05-10 16:38:25 -04001336 free_bprm(bprm);
Al Viro3b125382008-04-22 05:31:30 -04001337 if (displaced)
1338 put_files_struct(displaced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return retval;
1340 }
1341
1342out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (bprm->security)
1344 security_bprm_free(bprm);
1345
1346out_mm:
1347 if (bprm->mm)
Ollie Wildb6a2fea2007-07-19 01:48:16 -07001348 mmput (bprm->mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350out_file:
1351 if (bprm->file) {
1352 allow_write_access(bprm->file);
1353 fput(bprm->file);
1354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355out_kfree:
Al Viro08a6fac2008-05-10 16:38:25 -04001356 free_bprm(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Al Virofd8328b2008-04-22 05:11:59 -04001358out_files:
Al Viro3b125382008-04-22 05:31:30 -04001359 if (displaced)
1360 reset_files_struct(displaced);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361out_ret:
1362 return retval;
1363}
1364
1365int set_binfmt(struct linux_binfmt *new)
1366{
1367 struct linux_binfmt *old = current->binfmt;
1368
1369 if (new) {
1370 if (!try_module_get(new->module))
1371 return -1;
1372 }
1373 current->binfmt = new;
1374 if (old)
1375 module_put(old->module);
1376 return 0;
1377}
1378
1379EXPORT_SYMBOL(set_binfmt);
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381/* format_corename will inspect the pattern parameter, and output a
1382 * name into corename, which must have space for at least
1383 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
1384 */
Alan Coxc4bbafd2007-04-16 22:53:13 -07001385static int format_corename(char *corename, const char *pattern, long signr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
1387 const char *pat_ptr = pattern;
1388 char *out_ptr = corename;
1389 char *const out_end = corename + CORENAME_MAX_SIZE;
1390 int rc;
1391 int pid_in_pattern = 0;
Alan Coxc4bbafd2007-04-16 22:53:13 -07001392 int ispipe = 0;
1393
1394 if (*pattern == '|')
1395 ispipe = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 /* Repeat as long as we have more pattern to process and more output
1398 space */
1399 while (*pat_ptr) {
1400 if (*pat_ptr != '%') {
1401 if (out_ptr == out_end)
1402 goto out;
1403 *out_ptr++ = *pat_ptr++;
1404 } else {
1405 switch (*++pat_ptr) {
1406 case 0:
1407 goto out;
1408 /* Double percent, output one percent */
1409 case '%':
1410 if (out_ptr == out_end)
1411 goto out;
1412 *out_ptr++ = '%';
1413 break;
1414 /* pid */
1415 case 'p':
1416 pid_in_pattern = 1;
1417 rc = snprintf(out_ptr, out_end - out_ptr,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001418 "%d", task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (rc > out_end - out_ptr)
1420 goto out;
1421 out_ptr += rc;
1422 break;
1423 /* uid */
1424 case 'u':
1425 rc = snprintf(out_ptr, out_end - out_ptr,
1426 "%d", current->uid);
1427 if (rc > out_end - out_ptr)
1428 goto out;
1429 out_ptr += rc;
1430 break;
1431 /* gid */
1432 case 'g':
1433 rc = snprintf(out_ptr, out_end - out_ptr,
1434 "%d", current->gid);
1435 if (rc > out_end - out_ptr)
1436 goto out;
1437 out_ptr += rc;
1438 break;
1439 /* signal that caused the coredump */
1440 case 's':
1441 rc = snprintf(out_ptr, out_end - out_ptr,
1442 "%ld", signr);
1443 if (rc > out_end - out_ptr)
1444 goto out;
1445 out_ptr += rc;
1446 break;
1447 /* UNIX time of coredump */
1448 case 't': {
1449 struct timeval tv;
1450 do_gettimeofday(&tv);
1451 rc = snprintf(out_ptr, out_end - out_ptr,
1452 "%lu", tv.tv_sec);
1453 if (rc > out_end - out_ptr)
1454 goto out;
1455 out_ptr += rc;
1456 break;
1457 }
1458 /* hostname */
1459 case 'h':
1460 down_read(&uts_sem);
1461 rc = snprintf(out_ptr, out_end - out_ptr,
Serge E. Hallyne9ff3992006-10-02 02:18:11 -07001462 "%s", utsname()->nodename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 up_read(&uts_sem);
1464 if (rc > out_end - out_ptr)
1465 goto out;
1466 out_ptr += rc;
1467 break;
1468 /* executable */
1469 case 'e':
1470 rc = snprintf(out_ptr, out_end - out_ptr,
1471 "%s", current->comm);
1472 if (rc > out_end - out_ptr)
1473 goto out;
1474 out_ptr += rc;
1475 break;
Neil Horman74aadce2007-10-16 23:26:35 -07001476 /* core limit size */
1477 case 'c':
1478 rc = snprintf(out_ptr, out_end - out_ptr,
1479 "%lu", current->signal->rlim[RLIMIT_CORE].rlim_cur);
1480 if (rc > out_end - out_ptr)
1481 goto out;
1482 out_ptr += rc;
1483 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 default:
1485 break;
1486 }
1487 ++pat_ptr;
1488 }
1489 }
1490 /* Backward compatibility with core_uses_pid:
1491 *
1492 * If core_pattern does not include a %p (as is the default)
1493 * and core_uses_pid is set, then .%pid will be appended to
Alan Coxc4bbafd2007-04-16 22:53:13 -07001494 * the filename. Do not do this for piped commands. */
1495 if (!ispipe && !pid_in_pattern
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 && (core_uses_pid || atomic_read(&current->mm->mm_users) != 1)) {
1497 rc = snprintf(out_ptr, out_end - out_ptr,
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001498 ".%d", task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 if (rc > out_end - out_ptr)
1500 goto out;
1501 out_ptr += rc;
1502 }
Alan Coxc4bbafd2007-04-16 22:53:13 -07001503out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 *out_ptr = 0;
Alan Coxc4bbafd2007-04-16 22:53:13 -07001505 return ispipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001508static void zap_process(struct task_struct *start)
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001509{
1510 struct task_struct *t;
Oleg Nesterov281de332006-06-26 00:26:06 -07001511
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001512 start->signal->flags = SIGNAL_GROUP_EXIT;
1513 start->signal->group_stop_count = 0;
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001514
1515 t = start;
1516 do {
1517 if (t != current && t->mm) {
1518 t->mm->core_waiters++;
Oleg Nesterov281de332006-06-26 00:26:06 -07001519 sigaddset(&t->pending.signal, SIGKILL);
1520 signal_wake_up(t, 1);
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001521 }
1522 } while ((t = next_thread(t)) != start);
1523}
1524
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001525static inline int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
1526 int exit_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527{
1528 struct task_struct *g, *p;
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001529 unsigned long flags;
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001530 int err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001532 spin_lock_irq(&tsk->sighand->siglock);
Oleg Nesteroved5d2ca2008-02-04 22:27:24 -08001533 if (!signal_group_exit(tsk->signal)) {
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001534 tsk->signal->group_exit_code = exit_code;
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001535 zap_process(tsk);
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001536 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001538 spin_unlock_irq(&tsk->sighand->siglock);
1539 if (err)
1540 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001542 if (atomic_read(&mm->mm_users) == mm->core_waiters + 1)
1543 goto done;
1544
Oleg Nesterov7b1c6152006-06-26 00:26:08 -07001545 rcu_read_lock();
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001546 for_each_process(g) {
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001547 if (g == tsk->group_leader)
1548 continue;
1549
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001550 p = g;
1551 do {
1552 if (p->mm) {
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001553 if (p->mm == mm) {
1554 /*
1555 * p->sighand can't disappear, but
1556 * may be changed by de_thread()
1557 */
1558 lock_task_sighand(p, &flags);
Oleg Nesterovd5f70c02006-06-26 00:26:07 -07001559 zap_process(p);
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001560 unlock_task_sighand(p, &flags);
1561 }
Oleg Nesterovaceecc042006-06-26 00:26:05 -07001562 break;
1563 }
1564 } while ((p = next_thread(p)) != g);
1565 }
Oleg Nesterov7b1c6152006-06-26 00:26:08 -07001566 rcu_read_unlock();
Oleg Nesterov5debfa62006-06-26 00:26:09 -07001567done:
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001568 return mm->core_waiters;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001571static int coredump_wait(int exit_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001573 struct task_struct *tsk = current;
1574 struct mm_struct *mm = tsk->mm;
1575 struct completion startup_done;
1576 struct completion *vfork_done;
Oleg Nesterov2384f552005-10-30 15:02:47 -08001577 int core_waiters;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001579 init_completion(&mm->core_done);
1580 init_completion(&startup_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 mm->core_startup_done = &startup_done;
1582
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001583 core_waiters = zap_threads(tsk, mm, exit_code);
Oleg Nesterov2384f552005-10-30 15:02:47 -08001584 up_write(&mm->mmap_sem);
1585
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001586 if (unlikely(core_waiters < 0))
1587 goto fail;
1588
1589 /*
1590 * Make sure nobody is waiting for us to release the VM,
1591 * otherwise we can deadlock when we wait on each other
1592 */
1593 vfork_done = tsk->vfork_done;
1594 if (vfork_done) {
1595 tsk->vfork_done = NULL;
1596 complete(vfork_done);
1597 }
1598
Oleg Nesterov2384f552005-10-30 15:02:47 -08001599 if (core_waiters)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 wait_for_completion(&startup_done);
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001601fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 BUG_ON(mm->core_waiters);
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001603 return core_waiters;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}
1605
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001606/*
1607 * set_dumpable converts traditional three-value dumpable to two flags and
1608 * stores them into mm->flags. It modifies lower two bits of mm->flags, but
1609 * these bits are not changed atomically. So get_dumpable can observe the
1610 * intermediate state. To avoid doing unexpected behavior, get get_dumpable
1611 * return either old dumpable or new one by paying attention to the order of
1612 * modifying the bits.
1613 *
1614 * dumpable | mm->flags (binary)
1615 * old new | initial interim final
1616 * ---------+-----------------------
1617 * 0 1 | 00 01 01
1618 * 0 2 | 00 10(*) 11
1619 * 1 0 | 01 00 00
1620 * 1 2 | 01 11 11
1621 * 2 0 | 11 10(*) 00
1622 * 2 1 | 11 11 01
1623 *
1624 * (*) get_dumpable regards interim value of 10 as 11.
1625 */
1626void set_dumpable(struct mm_struct *mm, int value)
1627{
1628 switch (value) {
1629 case 0:
1630 clear_bit(MMF_DUMPABLE, &mm->flags);
1631 smp_wmb();
1632 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1633 break;
1634 case 1:
1635 set_bit(MMF_DUMPABLE, &mm->flags);
1636 smp_wmb();
1637 clear_bit(MMF_DUMP_SECURELY, &mm->flags);
1638 break;
1639 case 2:
1640 set_bit(MMF_DUMP_SECURELY, &mm->flags);
1641 smp_wmb();
1642 set_bit(MMF_DUMPABLE, &mm->flags);
1643 break;
1644 }
1645}
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001646
1647int get_dumpable(struct mm_struct *mm)
1648{
1649 int ret;
1650
1651 ret = mm->flags & 0x3;
1652 return (ret >= 2) ? 2 : ret;
1653}
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655int do_coredump(long signr, int exit_code, struct pt_regs * regs)
1656{
1657 char corename[CORENAME_MAX_SIZE + 1];
1658 struct mm_struct *mm = current->mm;
1659 struct linux_binfmt * binfmt;
1660 struct inode * inode;
1661 struct file * file;
1662 int retval = 0;
Alan Coxd6e71142005-06-23 00:09:43 -07001663 int fsuid = current->fsuid;
1664 int flag = 0;
Andi Kleend025c9d2006-09-30 23:29:28 -07001665 int ispipe = 0;
Neil Horman7dc0b222007-10-16 23:26:34 -07001666 unsigned long core_limit = current->signal->rlim[RLIMIT_CORE].rlim_cur;
Neil Horman74aadce2007-10-16 23:26:35 -07001667 char **helper_argv = NULL;
1668 int helper_argc = 0;
1669 char *delimit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Steve Grubb0a4ff8c2007-04-19 10:28:21 -04001671 audit_core_dumps(signr);
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 binfmt = current->binfmt;
1674 if (!binfmt || !binfmt->core_dump)
1675 goto fail;
1676 down_write(&mm->mmap_sem);
Roland McGrath00ec99d2007-11-11 19:13:43 -08001677 /*
1678 * If another thread got here first, or we are not dumpable, bail out.
1679 */
1680 if (mm->core_waiters || !get_dumpable(mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 up_write(&mm->mmap_sem);
1682 goto fail;
1683 }
Alan Coxd6e71142005-06-23 00:09:43 -07001684
1685 /*
1686 * We cannot trust fsuid as being the "true" uid of the
1687 * process nor do we know its entire history. We only know it
1688 * was tainted so we dump it as root in mode 2.
1689 */
Kawai, Hidehiro6c5d5232007-07-19 01:48:27 -07001690 if (get_dumpable(mm) == 2) { /* Setuid core dump mode */
Alan Coxd6e71142005-06-23 00:09:43 -07001691 flag = O_EXCL; /* Stop rewrite attacks */
1692 current->fsuid = 0; /* Dump root private */
1693 }
Oleg Nesterov1291cf42005-10-30 15:02:54 -08001694
Oleg Nesterovdcf560c2006-06-26 00:26:08 -07001695 retval = coredump_wait(exit_code);
1696 if (retval < 0)
Oleg Nesterov1291cf42005-10-30 15:02:54 -08001697 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 /*
1700 * Clear any false indication of pending signals that might
1701 * be seen by the filesystem code called to write the core file.
1702 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 clear_thread_flag(TIF_SIGPENDING);
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 /*
1706 * lock_kernel() because format_corename() is controlled by sysctl, which
1707 * uses lock_kernel()
1708 */
1709 lock_kernel();
Alan Coxc4bbafd2007-04-16 22:53:13 -07001710 ispipe = format_corename(corename, core_pattern, signr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 unlock_kernel();
Neil Horman7dc0b222007-10-16 23:26:34 -07001712 /*
1713 * Don't bother to check the RLIMIT_CORE value if core_pattern points
1714 * to a pipe. Since we're not writing directly to the filesystem
1715 * RLIMIT_CORE doesn't really apply, as no actual core file will be
1716 * created unless the pipe reader choses to write out the core file
1717 * at which point file size limits and permissions will be imposed
1718 * as it does with any other process
1719 */
Neil Horman74aadce2007-10-16 23:26:35 -07001720 if ((!ispipe) && (core_limit < binfmt->min_coredump))
Neil Horman7dc0b222007-10-16 23:26:34 -07001721 goto fail_unlock;
1722
Alan Coxc4bbafd2007-04-16 22:53:13 -07001723 if (ispipe) {
Neil Horman74aadce2007-10-16 23:26:35 -07001724 helper_argv = argv_split(GFP_KERNEL, corename+1, &helper_argc);
1725 /* Terminate the string before the first option */
1726 delimit = strchr(corename, ' ');
1727 if (delimit)
1728 *delimit = '\0';
Neil Horman32321132007-10-16 23:26:36 -07001729 delimit = strrchr(helper_argv[0], '/');
1730 if (delimit)
1731 delimit++;
1732 else
1733 delimit = helper_argv[0];
1734 if (!strcmp(delimit, current->comm)) {
1735 printk(KERN_NOTICE "Recursive core dump detected, "
1736 "aborting\n");
1737 goto fail_unlock;
1738 }
1739
1740 core_limit = RLIM_INFINITY;
1741
Andi Kleend025c9d2006-09-30 23:29:28 -07001742 /* SIGPIPE can happen, but it's just never processed */
Neil Horman32321132007-10-16 23:26:36 -07001743 if (call_usermodehelper_pipe(corename+1, helper_argv, NULL,
1744 &file)) {
Andi Kleend025c9d2006-09-30 23:29:28 -07001745 printk(KERN_INFO "Core dump to %s pipe failed\n",
1746 corename);
1747 goto fail_unlock;
1748 }
Andi Kleend025c9d2006-09-30 23:29:28 -07001749 } else
1750 file = filp_open(corename,
Alexey Dobriyan6d4df672006-12-06 20:40:39 -08001751 O_CREAT | 2 | O_NOFOLLOW | O_LARGEFILE | flag,
1752 0600);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (IS_ERR(file))
1754 goto fail_unlock;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001755 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (inode->i_nlink > 1)
1757 goto close_fail; /* multiple links - don't dump */
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001758 if (!ispipe && d_unhashed(file->f_path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 goto close_fail;
1760
Andi Kleend025c9d2006-09-30 23:29:28 -07001761 /* AK: actually i see no reason to not allow this for named pipes etc.,
1762 but keep the previous behaviour for now. */
1763 if (!ispipe && !S_ISREG(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 goto close_fail;
Ingo Molnarc46f7392007-11-28 13:59:18 +01001765 /*
1766 * Dont allow local users get cute and trick others to coredump
1767 * into their pre-created files:
1768 */
1769 if (inode->i_uid != current->fsuid)
1770 goto close_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 if (!file->f_op)
1772 goto close_fail;
1773 if (!file->f_op->write)
1774 goto close_fail;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001775 if (!ispipe && do_truncate(file->f_path.dentry, 0, 0, file) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 goto close_fail;
1777
Neil Horman7dc0b222007-10-16 23:26:34 -07001778 retval = binfmt->core_dump(signr, regs, file, core_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780 if (retval)
1781 current->signal->group_exit_code |= 0x80;
1782close_fail:
1783 filp_close(file, NULL);
1784fail_unlock:
Neil Horman74aadce2007-10-16 23:26:35 -07001785 if (helper_argv)
1786 argv_free(helper_argv);
1787
Alan Coxd6e71142005-06-23 00:09:43 -07001788 current->fsuid = fsuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 complete_all(&mm->core_done);
1790fail:
1791 return retval;
1792}