exec.c 31.6 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/*
 *  linux/fs/exec.c
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 */

/*
 * #!-checking implemented by tytso.
 */
/*
 * Demand-loading implemented 01.12.91 - no need to read anything but
 * the header into memory. The inode of the executable is put into
 * "current->executable", and page faults do the actual loading. Clean.
 *
 * Once more I can proudly say that linux stood up to being changed: it
 * was less than 2 hours work to get demand-loading completely implemented.
 *
 * Demand loading changed July 1993 by Eric Youngdale.   Use mmap instead,
 * current->executable is only used by the procfs.  This allows a dispatch
 * table to check for several different types  of binary formats.  We keep
 * trying until we recognize the file or we run out of supported binary
 * formats. 
 */

#include <linux/config.h>
#include <linux/slab.h>
#include <linux/file.h>
#include <linux/mman.h>
#include <linux/a.out.h>
#include <linux/stat.h>
#include <linux/fcntl.h>
#include <linux/smp_lock.h>
#include <linux/init.h>
#include <linux/pagemap.h>
#include <linux/highmem.h>
#include <linux/spinlock.h>
37
#include <linux/key.h>
Linus Torvalds's avatar
Linus Torvalds committed
38
#include <linux/personality.h>
39
#include <linux/binfmts.h>
Andrew Morton's avatar
Andrew Morton committed
40
#include <linux/swap.h>
Alan Cox's avatar
Alan Cox committed
41
#include <linux/utsname.h>
Linus Torvalds's avatar
Linus Torvalds committed
42
#include <linux/module.h>
43
#include <linux/namei.h>
44
#include <linux/proc_fs.h>
45
#include <linux/ptrace.h>
46
#include <linux/mount.h>
47
#include <linux/security.h>
Andrew Morton's avatar
Andrew Morton committed
48
#include <linux/syscalls.h>
Andrew Morton's avatar
Andrew Morton committed
49
#include <linux/rmap.h>
Linus Torvalds's avatar
Linus Torvalds committed
50 51 52 53 54 55 56 57

#include <asm/uaccess.h>
#include <asm/mmu_context.h>

#ifdef CONFIG_KMOD
#include <linux/kmod.h>
#endif

Linus Torvalds's avatar
Linus Torvalds committed
58
int core_uses_pid;
Alan Cox's avatar
Alan Cox committed
59
char core_pattern[65] = "core";
60
/* The maximal length of core_pattern is also specified in sysctl.c */
Linus Torvalds's avatar
Linus Torvalds committed
61

Linus Torvalds's avatar
Linus Torvalds committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
static struct linux_binfmt *formats;
static rwlock_t binfmt_lock = RW_LOCK_UNLOCKED;

int register_binfmt(struct linux_binfmt * fmt)
{
	struct linux_binfmt ** tmp = &formats;

	if (!fmt)
		return -EINVAL;
	if (fmt->next)
		return -EBUSY;
	write_lock(&binfmt_lock);
	while (*tmp) {
		if (fmt == *tmp) {
			write_unlock(&binfmt_lock);
			return -EBUSY;
		}
		tmp = &(*tmp)->next;
	}
	fmt->next = formats;
	formats = fmt;
	write_unlock(&binfmt_lock);
	return 0;	
}

87 88
EXPORT_SYMBOL(register_binfmt);

Linus Torvalds's avatar
Linus Torvalds committed
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
int unregister_binfmt(struct linux_binfmt * fmt)
{
	struct linux_binfmt ** tmp = &formats;

	write_lock(&binfmt_lock);
	while (*tmp) {
		if (fmt == *tmp) {
			*tmp = fmt->next;
			write_unlock(&binfmt_lock);
			return 0;
		}
		tmp = &(*tmp)->next;
	}
	write_unlock(&binfmt_lock);
	return -EINVAL;
}

106 107
EXPORT_SYMBOL(unregister_binfmt);

Linus Torvalds's avatar
Linus Torvalds committed
108 109
static inline void put_binfmt(struct linux_binfmt * fmt)
{
110
	module_put(fmt->module);
Linus Torvalds's avatar
Linus Torvalds committed
111 112 113 114 115 116 117 118
}

/*
 * Note that a shared library must be both readable and executable due to
 * security reasons.
 *
 * Also note that we take the address to load from from the file itself.
 */
119
asmlinkage long sys_uselib(const char __user * library)
Linus Torvalds's avatar
Linus Torvalds committed
120 121 122 123 124
{
	struct file * file;
	struct nameidata nd;
	int error;

125
	nd.intent.open.flags = FMODE_READ;
126
	error = __user_walk(library, LOOKUP_FOLLOW|LOOKUP_OPEN, &nd);
Linus Torvalds's avatar
Linus Torvalds committed
127 128 129 130 131 132 133
	if (error)
		goto out;

	error = -EINVAL;
	if (!S_ISREG(nd.dentry->d_inode->i_mode))
		goto exit;

134
	error = permission(nd.dentry->d_inode, MAY_READ | MAY_EXEC, &nd);
Linus Torvalds's avatar
Linus Torvalds committed
135 136 137 138 139 140 141 142 143
	if (error)
		goto exit;

	file = dentry_open(nd.dentry, nd.mnt, O_RDONLY);
	error = PTR_ERR(file);
	if (IS_ERR(file))
		goto out;

	error = -ENOEXEC;
144
	if(file->f_op) {
Linus Torvalds's avatar
Linus Torvalds committed
145 146 147 148 149 150
		struct linux_binfmt * fmt;

		read_lock(&binfmt_lock);
		for (fmt = formats ; fmt ; fmt = fmt->next) {
			if (!fmt->load_shlib)
				continue;
151
			if (!try_module_get(fmt->module))
Linus Torvalds's avatar
Linus Torvalds committed
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
				continue;
			read_unlock(&binfmt_lock);
			error = fmt->load_shlib(file);
			read_lock(&binfmt_lock);
			put_binfmt(fmt);
			if (error != -ENOEXEC)
				break;
		}
		read_unlock(&binfmt_lock);
	}
	fput(file);
out:
  	return error;
exit:
	path_release(&nd);
	goto out;
}

/*
David Mosberger's avatar
David Mosberger committed
171
 * count() counts the number of strings in array ARGV.
Linus Torvalds's avatar
Linus Torvalds committed
172
 */
173
static int count(char __user * __user * argv, int max)
Linus Torvalds's avatar
Linus Torvalds committed
174 175 176 177 178
{
	int i = 0;

	if (argv != NULL) {
		for (;;) {
179
			char __user * p;
Linus Torvalds's avatar
Linus Torvalds committed
180

Linus Torvalds's avatar
Linus Torvalds committed
181 182
			if (get_user(p, argv))
				return -EFAULT;
Linus Torvalds's avatar
Linus Torvalds committed
183 184 185 186 187 188 189 190 191 192 193
			if (!p)
				break;
			argv++;
			if(++i > max)
				return -E2BIG;
		}
	}
	return i;
}

/*
David Mosberger's avatar
David Mosberger committed
194
 * 'copy_strings()' copies argument/environment strings from user
Linus Torvalds's avatar
Linus Torvalds committed
195 196 197
 * memory to free pages in kernel mem. These are in a format ready
 * to be put directly into the top of new user memory.
 */
198
int copy_strings(int argc,char __user * __user * argv, struct linux_binprm *bprm)
Linus Torvalds's avatar
Linus Torvalds committed
199
{
Andrew Morton's avatar
Andrew Morton committed
200 201 202 203
	struct page *kmapped_page = NULL;
	char *kaddr = NULL;
	int ret;

Linus Torvalds's avatar
Linus Torvalds committed
204
	while (argc-- > 0) {
205
		char __user *str;
Linus Torvalds's avatar
Linus Torvalds committed
206 207 208
		int len;
		unsigned long pos;

Andrew Morton's avatar
Andrew Morton committed
209 210 211 212 213 214 215 216 217 218
		if (get_user(str, argv+argc) ||
				!(len = strnlen_user(str, bprm->p))) {
			ret = -EFAULT;
			goto out;
		}

		if (bprm->p < len)  {
			ret = -E2BIG;
			goto out;
		}
Linus Torvalds's avatar
Linus Torvalds committed
219 220

		bprm->p -= len;
221
		/* XXX: add architecture specific overflow check here. */
Linus Torvalds's avatar
Linus Torvalds committed
222
		pos = bprm->p;
Andrew Morton's avatar
Andrew Morton committed
223

Linus Torvalds's avatar
Linus Torvalds committed
224 225 226
		while (len > 0) {
			int i, new, err;
			int offset, bytes_to_copy;
Andrew Morton's avatar
Andrew Morton committed
227
			struct page *page;
Linus Torvalds's avatar
Linus Torvalds committed
228 229 230 231 232 233 234 235

			offset = pos % PAGE_SIZE;
			i = pos/PAGE_SIZE;
			page = bprm->page[i];
			new = 0;
			if (!page) {
				page = alloc_page(GFP_HIGHUSER);
				bprm->page[i] = page;
Andrew Morton's avatar
Andrew Morton committed
236 237 238 239
				if (!page) {
					ret = -ENOMEM;
					goto out;
				}
Linus Torvalds's avatar
Linus Torvalds committed
240 241 242
				new = 1;
			}

Andrew Morton's avatar
Andrew Morton committed
243 244 245 246 247 248
			if (page != kmapped_page) {
				if (kmapped_page)
					kunmap(kmapped_page);
				kmapped_page = page;
				kaddr = kmap(kmapped_page);
			}
Linus Torvalds's avatar
Linus Torvalds committed
249 250 251 252 253 254
			if (new && offset)
				memset(kaddr, 0, offset);
			bytes_to_copy = PAGE_SIZE - offset;
			if (bytes_to_copy > len) {
				bytes_to_copy = len;
				if (new)
Andrew Morton's avatar
Andrew Morton committed
255 256 257 258 259 260 261
					memset(kaddr+offset+len, 0,
						PAGE_SIZE-offset-len);
			}
			err = copy_from_user(kaddr+offset, str, bytes_to_copy);
			if (err) {
				ret = -EFAULT;
				goto out;
Linus Torvalds's avatar
Linus Torvalds committed
262 263 264 265 266 267 268
			}

			pos += bytes_to_copy;
			str += bytes_to_copy;
			len -= bytes_to_copy;
		}
	}
Andrew Morton's avatar
Andrew Morton committed
269 270 271 272 273
	ret = 0;
out:
	if (kmapped_page)
		kunmap(kmapped_page);
	return ret;
Linus Torvalds's avatar
Linus Torvalds committed
274 275 276 277 278 279 280 281 282
}

/*
 * Like copy_strings, but get argv and its values from kernel memory.
 */
int copy_strings_kernel(int argc,char ** argv, struct linux_binprm *bprm)
{
	int r;
	mm_segment_t oldfs = get_fs();
283
	set_fs(KERNEL_DS);
284
	r = copy_strings(argc, (char __user * __user *)argv, bprm);
Linus Torvalds's avatar
Linus Torvalds committed
285
	set_fs(oldfs);
286
	return r;
Linus Torvalds's avatar
Linus Torvalds committed
287 288
}

289 290
EXPORT_SYMBOL(copy_strings_kernel);

291
#ifdef CONFIG_MMU
Linus Torvalds's avatar
Linus Torvalds committed
292 293 294
/*
 * This routine is used to map in a page into an address space: needed by
 * execve() for the initial stack and environment pages.
Linus Torvalds's avatar
Linus Torvalds committed
295
 *
296
 * vma->vm_mm->mmap_sem is held for writing.
Linus Torvalds's avatar
Linus Torvalds committed
297
 */
298 299
void install_arg_page(struct vm_area_struct *vma,
			struct page *page, unsigned long address)
Linus Torvalds's avatar
Linus Torvalds committed
300
{
301
	struct mm_struct *mm = vma->vm_mm;
Linus Torvalds's avatar
Linus Torvalds committed
302 303 304
	pgd_t * pgd;
	pmd_t * pmd;
	pte_t * pte;
305

306 307 308
	if (unlikely(anon_vma_prepare(vma)))
		goto out_sig;

309
	flush_dcache_page(page);
310
	pgd = pgd_offset(mm, address);
311

312 313
	spin_lock(&mm->page_table_lock);
	pmd = pmd_alloc(mm, pgd, address);
Linus Torvalds's avatar
Linus Torvalds committed
314 315
	if (!pmd)
		goto out;
316
	pte = pte_alloc_map(mm, pmd, address);
Linus Torvalds's avatar
Linus Torvalds committed
317 318
	if (!pte)
		goto out;
319 320
	if (!pte_none(*pte)) {
		pte_unmap(pte);
Linus Torvalds's avatar
Linus Torvalds committed
321
		goto out;
322
	}
323
	mm->rss++;
324
	lru_cache_add_active(page);
325 326
	set_pte(pte, pte_mkdirty(pte_mkwrite(mk_pte(
					page, vma->vm_page_prot))));
327
	page_add_anon_rmap(page, vma, address);
328
	pte_unmap(pte);
329
	spin_unlock(&mm->page_table_lock);
Linus Torvalds's avatar
Linus Torvalds committed
330 331 332 333

	/* no need for flush_tlb */
	return;
out:
334
	spin_unlock(&mm->page_table_lock);
335
out_sig:
Linus Torvalds's avatar
Linus Torvalds committed
336
	__free_page(page);
337
	force_sig(SIGKILL, current);
Linus Torvalds's avatar
Linus Torvalds committed
338 339
}

Andrew Morton's avatar
Andrew Morton committed
340
int setup_arg_pages(struct linux_binprm *bprm, int executable_stack)
Linus Torvalds's avatar
Linus Torvalds committed
341 342 343
{
	unsigned long stack_base;
	struct vm_area_struct *mpnt;
344
	struct mm_struct *mm = current->mm;
Linus Torvalds's avatar
Linus Torvalds committed
345
	int i;
346
	long arg_size;
Linus Torvalds's avatar
Linus Torvalds committed
347

Matthew Wilcox's avatar
Matthew Wilcox committed
348
#ifdef CONFIG_STACK_GROWSUP
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
	/* Move the argument and environment strings to the bottom of the
	 * stack space.
	 */
	int offset, j;
	char *to, *from;

	/* Start by shifting all the pages down */
	i = 0;
	for (j = 0; j < MAX_ARG_PAGES; j++) {
		struct page *page = bprm->page[j];
		if (!page)
			continue;
		bprm->page[i++] = page;
	}

	/* Now move them within their pages */
	offset = bprm->p % PAGE_SIZE;
	to = kmap(bprm->page[0]);
	for (j = 1; j < i; j++) {
		memmove(to, to + offset, PAGE_SIZE - offset);
		from = kmap(bprm->page[j]);
		memcpy(to + PAGE_SIZE - offset, from, offset);
371
		kunmap(bprm->page[j - 1]);
372 373 374
		to = from;
	}
	memmove(to, to + offset, PAGE_SIZE - offset);
375
	kunmap(bprm->page[j - 1]);
376 377 378

	/* Adjust bprm->p to point to the end of the strings. */
	bprm->p = PAGE_SIZE * i - offset;
379 380

	/* Limit stack size to 1GB */
381
	stack_base = current->signal->rlim[RLIMIT_STACK].rlim_max;
382 383 384 385
	if (stack_base > (1 << 30))
		stack_base = 1 << 30;
	stack_base = PAGE_ALIGN(STACK_TOP - stack_base);

386
	mm->arg_start = stack_base;
387
	arg_size = i << PAGE_SHIFT;
388 389 390 391 392 393 394

	/* zero pages that were copied above */
	while (i < MAX_ARG_PAGES)
		bprm->page[i++] = NULL;
#else
	stack_base = STACK_TOP - MAX_ARG_PAGES * PAGE_SIZE;
	mm->arg_start = bprm->p + stack_base;
395
	arg_size = STACK_TOP - (PAGE_MASK & (unsigned long) mm->arg_start);
396
#endif
Linus Torvalds's avatar
Linus Torvalds committed
397 398 399 400 401 402 403

	bprm->p += stack_base;
	if (bprm->loader)
		bprm->loader += stack_base;
	bprm->exec += stack_base;

	mpnt = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
404
	if (!mpnt)
Andrew Morton's avatar
Andrew Morton committed
405 406
		return -ENOMEM;

407
	if (security_vm_enough_memory(arg_size >> PAGE_SHIFT)) {
Andrew Morton's avatar
Andrew Morton committed
408 409 410 411
		kmem_cache_free(vm_area_cachep, mpnt);
		return -ENOMEM;
	}

Andrew Morton's avatar
Andrew Morton committed
412 413
	memset(mpnt, 0, sizeof(*mpnt));

414
	down_write(&mm->mmap_sem);
Linus Torvalds's avatar
Linus Torvalds committed
415
	{
416
		mpnt->vm_mm = mm;
Matthew Wilcox's avatar
Matthew Wilcox committed
417
#ifdef CONFIG_STACK_GROWSUP
418 419 420 421
		mpnt->vm_start = stack_base;
		mpnt->vm_end = PAGE_MASK &
			(PAGE_SIZE - 1 + (unsigned long) bprm->p);
#else
Linus Torvalds's avatar
Linus Torvalds committed
422 423
		mpnt->vm_start = PAGE_MASK & (unsigned long) bprm->p;
		mpnt->vm_end = STACK_TOP;
424
#endif
Andrew Morton's avatar
Andrew Morton committed
425 426 427 428 429 430 431 432 433
		/* Adjust stack execute permissions; explicitly enable
		 * for EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X
		 * and leave alone (arch default) otherwise. */
		if (unlikely(executable_stack == EXSTACK_ENABLE_X))
			mpnt->vm_flags = VM_STACK_FLAGS |  VM_EXEC;
		else if (executable_stack == EXSTACK_DISABLE_X)
			mpnt->vm_flags = VM_STACK_FLAGS & ~VM_EXEC;
		else
			mpnt->vm_flags = VM_STACK_FLAGS;
434
		mpnt->vm_flags |= mm->def_flags;
Andrew Morton's avatar
Andrew Morton committed
435
		mpnt->vm_page_prot = protection_map[mpnt->vm_flags & 0x7];
436
		insert_vm_struct(mm, mpnt);
437
		mm->stack_vm = mm->total_vm = vma_pages(mpnt);
438
	}
Linus Torvalds's avatar
Linus Torvalds committed
439 440 441 442 443

	for (i = 0 ; i < MAX_ARG_PAGES ; i++) {
		struct page *page = bprm->page[i];
		if (page) {
			bprm->page[i] = NULL;
444
			install_arg_page(mpnt, page, stack_base);
Linus Torvalds's avatar
Linus Torvalds committed
445 446 447
		}
		stack_base += PAGE_SIZE;
	}
448
	up_write(&mm->mmap_sem);
Linus Torvalds's avatar
Linus Torvalds committed
449 450 451 452
	
	return 0;
}

453 454
EXPORT_SYMBOL(setup_arg_pages);

455 456 457 458 459 460 461 462
#define free_arg_pages(bprm) do { } while (0)

#else

static inline void free_arg_pages(struct linux_binprm *bprm)
{
	int i;

463
	for (i = 0; i < MAX_ARG_PAGES; i++) {
464
		if (bprm->page[i])
465
			__free_page(bprm->page[i]);
466 467 468 469 470 471
		bprm->page[i] = NULL;
	}
}

#endif /* CONFIG_MMU */

Linus Torvalds's avatar
Linus Torvalds committed
472 473 474
struct file *open_exec(const char *name)
{
	struct nameidata nd;
475 476 477 478 479 480
	int err;
	struct file *file;

	nd.intent.open.flags = FMODE_READ;
	err = path_lookup(name, LOOKUP_FOLLOW|LOOKUP_OPEN, &nd);
	file = ERR_PTR(err);
Linus Torvalds's avatar
Linus Torvalds committed
481 482

	if (!err) {
Alexander Viro's avatar
Alexander Viro committed
483
		struct inode *inode = nd.dentry->d_inode;
Linus Torvalds's avatar
Linus Torvalds committed
484
		file = ERR_PTR(-EACCES);
Linus Torvalds's avatar
Linus Torvalds committed
485 486
		if (!(nd.mnt->mnt_flags & MNT_NOEXEC) &&
		    S_ISREG(inode->i_mode)) {
487
			int err = permission(inode, MAY_EXEC, &nd);
Linus Torvalds's avatar
Linus Torvalds committed
488 489
			if (!err && !(inode->i_mode & 0111))
				err = -EACCES;
Linus Torvalds's avatar
Linus Torvalds committed
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
			file = ERR_PTR(err);
			if (!err) {
				file = dentry_open(nd.dentry, nd.mnt, O_RDONLY);
				if (!IS_ERR(file)) {
					err = deny_write_access(file);
					if (err) {
						fput(file);
						file = ERR_PTR(err);
					}
				}
out:
				return file;
			}
		}
		path_release(&nd);
	}
	goto out;
}

509 510
EXPORT_SYMBOL(open_exec);

Linus Torvalds's avatar
Linus Torvalds committed
511
int kernel_read(struct file *file, unsigned long offset,
512
	char *addr, unsigned long count)
Linus Torvalds's avatar
Linus Torvalds committed
513 514 515
{
	mm_segment_t old_fs;
	loff_t pos = offset;
516
	int result;
Linus Torvalds's avatar
Linus Torvalds committed
517 518 519

	old_fs = get_fs();
	set_fs(get_ds());
520 521
	/* The cast to a user pointer is valid due to the set_fs() */
	result = vfs_read(file, (void __user *)addr, count, &pos);
Linus Torvalds's avatar
Linus Torvalds committed
522 523 524 525
	set_fs(old_fs);
	return result;
}

526 527
EXPORT_SYMBOL(kernel_read);

528
static int exec_mmap(struct mm_struct *mm)
Linus Torvalds's avatar
Linus Torvalds committed
529
{
530
	struct task_struct *tsk;
531
	struct mm_struct * old_mm, *active_mm;
Linus Torvalds's avatar
Linus Torvalds committed
532

533 534 535 536 537
	/* Add it to the list of mm's */
	spin_lock(&mmlist_lock);
	list_add(&mm->mmlist, &init_mm.mmlist);
	mmlist_nr++;
	spin_unlock(&mmlist_lock);
Linus Torvalds's avatar
Linus Torvalds committed
538

539 540
	/* Notify parent that we're no longer interested in the old VM */
	tsk = current;
541
	old_mm = current->mm;
542 543 544 545 546 547
	mm_release(tsk, old_mm);

	task_lock(tsk);
	active_mm = tsk->active_mm;
	tsk->mm = mm;
	tsk->active_mm = mm;
548
	activate_mm(active_mm, mm);
549
	task_unlock(tsk);
550
	arch_pick_mmap_layout(mm);
551 552 553
	if (old_mm) {
		if (active_mm != old_mm) BUG();
		mmput(old_mm);
Linus Torvalds's avatar
Linus Torvalds committed
554 555
		return 0;
	}
556 557
	mmdrop(active_mm);
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
558 559 560 561 562 563
}

/*
 * This function makes sure the current process has its own signal table,
 * so that flush_signal_handlers can later reset the handlers without
 * disturbing other processes.  (Other processes might share the signal
564
 * table via the CLONE_SIGHAND option to clone().)
Linus Torvalds's avatar
Linus Torvalds committed
565
 */
566
static inline int de_thread(struct task_struct *tsk)
Linus Torvalds's avatar
Linus Torvalds committed
567
{
568
	struct signal_struct *sig = tsk->signal;
569 570
	struct sighand_struct *newsighand, *oldsighand = tsk->sighand;
	spinlock_t *lock = &oldsighand->siglock;
571
	int count;
Ingo Molnar's avatar
Ingo Molnar committed
572

573 574 575 576
	/*
	 * If we don't share sighandlers, then we aren't sharing anything
	 * and we can just re-use it all.
	 */
577 578 579
	if (atomic_read(&oldsighand->count) <= 1) {
		BUG_ON(atomic_read(&sig->count) != 1);
		exit_itimers(sig);
Linus Torvalds's avatar
Linus Torvalds committed
580
		return 0;
581
	}
582

583 584
	newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
	if (!newsighand)
Linus Torvalds's avatar
Linus Torvalds committed
585
		return -ENOMEM;
586

587
	if (thread_group_empty(current))
588
		goto no_thread_group;
589

590
	/*
591 592
	 * Kill all other threads in the thread group.
	 * We must hold tasklist_lock to call zap_other_threads.
593
	 */
594
	read_lock(&tasklist_lock);
595
	spin_lock_irq(lock);
596
	if (sig->group_exit) {
597 598 599 600
		/*
		 * Another group action in progress, just
		 * return so that the signal is processed.
		 */
601
		spin_unlock_irq(lock);
602
		read_unlock(&tasklist_lock);
603
		kmem_cache_free(sighand_cachep, newsighand);
604 605
		return -EAGAIN;
	}
606
	sig->group_exit = 1;
Ingo Molnar's avatar
Ingo Molnar committed
607
	zap_other_threads(current);
608
	read_unlock(&tasklist_lock);
609 610 611 612 613 614 615

	/*
	 * Account for the thread group leader hanging around:
	 */
	count = 2;
	if (current->pid == current->tgid)
		count = 1;
616 617 618
	while (atomic_read(&sig->count) > count) {
		sig->group_exit_task = current;
		sig->notify_count = count;
619
		__set_current_state(TASK_UNINTERRUPTIBLE);
620
		spin_unlock_irq(lock);
621
		schedule();
622
		spin_lock_irq(lock);
623
	}
624 625
	sig->group_exit_task = NULL;
	sig->notify_count = 0;
626
	spin_unlock_irq(lock);
627 628 629 630 631 632 633

	/*
	 * At this point all other threads have exited, all we have to
	 * do is to wait for the thread group leader to become inactive,
	 * and to assume its PID:
	 */
	if (current->pid != current->tgid) {
634
		struct task_struct *leader = current->group_leader, *parent;
635
		struct dentry *proc_dentry1, *proc_dentry2;
636
		unsigned long exit_state, ptrace;
637

638 639 640 641 642
		/*
		 * Wait for the thread group leader to be a zombie.
		 * It should already be zombie at this point, most
		 * of the time.
		 */
643
		while (leader->exit_state != EXIT_ZOMBIE)
644
			yield();
645

646 647 648 649
		spin_lock(&leader->proc_lock);
		spin_lock(&current->proc_lock);
		proc_dentry1 = proc_pid_unhash(current);
		proc_dentry2 = proc_pid_unhash(leader);
650 651 652 653 654 655 656 657 658 659 660 661
		write_lock_irq(&tasklist_lock);

		if (leader->tgid != current->tgid)
			BUG();
		if (current->pid == current->tgid)
			BUG();
		/*
		 * An exec() starts a new thread group with the
		 * TGID of the previous thread group. Rehash the
		 * two threads with a switched PID, and release
		 * the former thread group leader:
		 */
662 663 664 665
		ptrace = leader->ptrace;
		parent = leader->parent;

		ptrace_unlink(current);
666
		ptrace_unlink(leader);
667 668 669
		remove_parent(current);
		remove_parent(leader);

670 671
		switch_exec_pids(leader, current);

672 673
		current->parent = current->real_parent = leader->real_parent;
		leader->parent = leader->real_parent = child_reaper;
674 675
		current->group_leader = current;
		leader->group_leader = leader;
676 677 678 679 680 681 682

		add_parent(current, current->parent);
		add_parent(leader, leader->parent);
		if (ptrace) {
			current->ptrace = ptrace;
			__ptrace_link(current, parent);
		}
Ingo Molnar's avatar
Ingo Molnar committed
683 684

		list_del(&current->tasks);
685
		list_add_tail(&current->tasks, &init_task.tasks);
686
		current->exit_signal = SIGCHLD;
687
		exit_state = leader->exit_state;
688

689
		write_unlock_irq(&tasklist_lock);
690 691 692 693
		spin_unlock(&leader->proc_lock);
		spin_unlock(&current->proc_lock);
		proc_pid_flush(proc_dentry1);
		proc_pid_flush(proc_dentry2);
694

695
		if (exit_state != EXIT_ZOMBIE)
696 697
			BUG();
		release_task(leader);
698 699
        }

700 701 702 703 704 705
	/*
	 * Now there are really no other threads at all,
	 * so it's safe to stop telling them to kill themselves.
	 */
	sig->group_exit = 0;

706
no_thread_group:
707 708
	BUG_ON(atomic_read(&sig->count) != 1);
	exit_itimers(sig);
709

710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
	if (atomic_read(&oldsighand->count) == 1) {
		/*
		 * Now that we nuked the rest of the thread group,
		 * it turns out we are not sharing sighand any more either.
		 * So we can just keep it.
		 */
		kmem_cache_free(sighand_cachep, newsighand);
	} else {
		/*
		 * Move our state over to newsighand and switch it in.
		 */
		spin_lock_init(&newsighand->siglock);
		atomic_set(&newsighand->count, 1);
		memcpy(newsighand->action, oldsighand->action,
		       sizeof(newsighand->action));
725

726 727 728 729 730 731 732 733 734 735 736 737 738 739
		write_lock_irq(&tasklist_lock);
		spin_lock(&oldsighand->siglock);
		spin_lock(&newsighand->siglock);

		current->sighand = newsighand;
		recalc_sigpending();

		spin_unlock(&newsighand->siglock);
		spin_unlock(&oldsighand->siglock);
		write_unlock_irq(&tasklist_lock);

		if (atomic_dec_and_test(&oldsighand->count))
			kmem_cache_free(sighand_cachep, oldsighand);
	}
Linus Torvalds's avatar
Linus Torvalds committed
740

741
	if (!thread_group_empty(current))
742 743 744 745 746 747
		BUG();
	if (current->tgid != current->pid)
		BUG();
	return 0;
}
	
Linus Torvalds's avatar
Linus Torvalds committed
748 749 750 751 752 753 754 755 756
/*
 * These functions flushes out all traces of the currently running executable
 * so that a new one can be started
 */

static inline void flush_old_files(struct files_struct * files)
{
	long j = -1;

757
	spin_lock(&files->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
758 759 760 761 762 763 764 765 766 767 768
	for (;;) {
		unsigned long set, i;

		j++;
		i = j * __NFDBITS;
		if (i >= files->max_fds || i >= files->max_fdset)
			break;
		set = files->close_on_exec->fds_bits[j];
		if (!set)
			continue;
		files->close_on_exec->fds_bits[j] = 0;
769
		spin_unlock(&files->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
770 771 772 773 774
		for ( ; set ; i++,set >>= 1) {
			if (set & 1) {
				sys_close(i);
			}
		}
775
		spin_lock(&files->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
776 777

	}
778
	spin_unlock(&files->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
779 780
}

781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
void get_task_comm(char *buf, struct task_struct *tsk)
{
	/* buf must be at least sizeof(tsk->comm) in size */
	task_lock(tsk);
	memcpy(buf, tsk->comm, sizeof(tsk->comm));
	task_unlock(tsk);
}

void set_task_comm(struct task_struct *tsk, char *buf)
{
	task_lock(tsk);
	strlcpy(tsk->comm, buf, sizeof(tsk->comm));
	task_unlock(tsk);
}

Linus Torvalds's avatar
Linus Torvalds committed
796 797 798 799
int flush_old_exec(struct linux_binprm * bprm)
{
	char * name;
	int i, ch, retval;
800
	struct files_struct *files;
801
	char tcomm[sizeof(current->comm)];
Linus Torvalds's avatar
Linus Torvalds committed
802

803 804 805 806
	/*
	 * Make sure we have a private signal table and that
	 * we are unassociated from the previous thread group.
	 */
807
	retval = de_thread(current);
808
	if (retval)
809
		goto out;
Linus Torvalds's avatar
Linus Torvalds committed
810

811 812 813 814 815 816 817 818 819
	/*
	 * Make sure we have private file handles. Ask the
	 * fork helper to do the work for us and the exit
	 * helper to do the cleanup of the old one.
	 */
	files = current->files;		/* refcounted so safe to hold */
	retval = unshare_files();
	if (retval)
		goto out;
820 821 822 823 824
	/*
	 * Release all of the old mmap stuff
	 */
	retval = exec_mmap(bprm->mm);
	if (retval)
825
		goto mmap_failed;
826

827 828
	bprm->mm = NULL;		/* We're using it now */

Linus Torvalds's avatar
Linus Torvalds committed
829
	/* This is the point of no return */
830
	steal_locks(files);
831
	put_files_struct(files);
Linus Torvalds's avatar
Linus Torvalds committed
832 833 834 835

	current->sas_ss_sp = current->sas_ss_size = 0;

	if (current->euid == current->uid && current->egid == current->gid)
Linus Torvalds's avatar
Linus Torvalds committed
836
		current->mm->dumpable = 1;
Linus Torvalds's avatar
Linus Torvalds committed
837 838 839 840 841
	name = bprm->filename;
	for (i=0; (ch = *(name++)) != '\0';) {
		if (ch == '/')
			i = 0;
		else
842 843
			if (i < (sizeof(tcomm) - 1))
				tcomm[i++] = ch;
Linus Torvalds's avatar
Linus Torvalds committed
844
	}
845 846
	tcomm[i] = '\0';
	set_task_comm(current, tcomm);
Linus Torvalds's avatar
Linus Torvalds committed
847 848 849 850

	flush_thread();

	if (bprm->e_uid != current->euid || bprm->e_gid != current->egid || 
851
	    permission(bprm->file->f_dentry->d_inode,MAY_READ, NULL) ||
852 853
	    (bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP)) {
		suid_keys(current);
Linus Torvalds's avatar
Linus Torvalds committed
854
		current->mm->dumpable = 0;
855
	}
Linus Torvalds's avatar
Linus Torvalds committed
856 857 858

	/* An exec changes our domain. We are no longer part of the thread
	   group */
859

Linus Torvalds's avatar
Linus Torvalds committed
860 861
	current->self_exec_id++;
			
862
	flush_signal_handlers(current, 0);
Linus Torvalds's avatar
Linus Torvalds committed
863 864 865 866
	flush_old_files(current->files);

	return 0;

867 868 869
mmap_failed:
	put_files_struct(current->files);
	current->files = files;
870
out:
Linus Torvalds's avatar
Linus Torvalds committed
871 872 873
	return retval;
}

874 875
EXPORT_SYMBOL(flush_old_exec);

Linus Torvalds's avatar
Linus Torvalds committed
876 877 878 879 880 881 882 883
/* 
 * Fill the binprm structure from the inode. 
 * Check permissions, then read the first 128 (BINPRM_BUF_SIZE) bytes
 */
int prepare_binprm(struct linux_binprm *bprm)
{
	int mode;
	struct inode * inode = bprm->file->f_dentry->d_inode;
884
	int retval;
Linus Torvalds's avatar
Linus Torvalds committed
885 886

	mode = inode->i_mode;
Linus Torvalds's avatar
Linus Torvalds committed
887 888 889 890
	/*
	 * Check execute perms again - if the caller has CAP_DAC_OVERRIDE,
	 * vfs_permission lets a non-executable through
	 */
Linus Torvalds's avatar
Linus Torvalds committed
891 892 893 894 895 896 897 898
	if (!(mode & 0111))	/* with at least _one_ execute bit set */
		return -EACCES;
	if (bprm->file->f_op == NULL)
		return -EACCES;

	bprm->e_uid = current->euid;
	bprm->e_gid = current->egid;

Linus Torvalds's avatar
Linus Torvalds committed
899
	if(!(bprm->file->f_vfsmnt->mnt_flags & MNT_NOSUID)) {
Linus Torvalds's avatar
Linus Torvalds committed
900
		/* Set-uid? */
901 902
		if (mode & S_ISUID) {
			current->personality &= ~PER_CLEAR_ON_SETID;
Linus Torvalds's avatar
Linus Torvalds committed
903
			bprm->e_uid = inode->i_uid;
904
		}
Linus Torvalds's avatar
Linus Torvalds committed
905 906 907 908 909 910 911

		/* Set-gid? */
		/*
		 * If setgid is set but no group execute bit then this
		 * is a candidate for mandatory locking, not a setgid
		 * executable.
		 */
912 913
		if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
			current->personality &= ~PER_CLEAR_ON_SETID;
Linus Torvalds's avatar
Linus Torvalds committed
914
			bprm->e_gid = inode->i_gid;
915
		}
Linus Torvalds's avatar
Linus Torvalds committed
916 917
	}

918
	/* fill in binprm security blob */
919 920
	retval = security_bprm_set(bprm);
	if (retval)
921
		return retval;
Linus Torvalds's avatar
Linus Torvalds committed
922 923 924 925 926

	memset(bprm->buf,0,BINPRM_BUF_SIZE);
	return kernel_read(bprm->file,0,bprm->buf,BINPRM_BUF_SIZE);
}

927 928
EXPORT_SYMBOL(prepare_binprm);

929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944
static inline int unsafe_exec(struct task_struct *p)
{
	int unsafe = 0;
	if (p->ptrace & PT_PTRACED) {
		if (p->ptrace & PT_PTRACE_CAP)
			unsafe |= LSM_UNSAFE_PTRACE_CAP;
		else
			unsafe |= LSM_UNSAFE_PTRACE;
	}
	if (atomic_read(&p->fs->count) > 1 ||
	    atomic_read(&p->files->count) > 1 ||
	    atomic_read(&p->sighand->count) > 1)
		unsafe |= LSM_UNSAFE_SHARE;

	return unsafe;
}
Linus Torvalds's avatar
Linus Torvalds committed
945

946
void compute_creds(struct linux_binprm *bprm)
Linus Torvalds's avatar
Linus Torvalds committed
947
{
948
	int unsafe;
949 950 951 952 953

	if (bprm->e_uid != current->uid)
		suid_keys(current);
	exec_keys(current);

954 955 956 957
	task_lock(current);
	unsafe = unsafe_exec(current);
	security_bprm_apply_creds(bprm, unsafe);
	task_unlock(current);
Linus Torvalds's avatar
Linus Torvalds committed
958 959
}

960 961
EXPORT_SYMBOL(compute_creds);

Linus Torvalds's avatar
Linus Torvalds committed
962 963 964 965 966 967 968 969 970 971 972 973 974 975
void remove_arg_zero(struct linux_binprm *bprm)
{
	if (bprm->argc) {
		unsigned long offset;
		char * kaddr;
		struct page *page;

		offset = bprm->p % PAGE_SIZE;
		goto inside;

		while (bprm->p++, *(kaddr+offset++)) {
			if (offset != PAGE_SIZE)
				continue;
			offset = 0;
976
			kunmap_atomic(kaddr, KM_USER0);
Linus Torvalds's avatar
Linus Torvalds committed
977 978
inside:
			page = bprm->page[bprm->p/PAGE_SIZE];
979
			kaddr = kmap_atomic(page, KM_USER0);
Linus Torvalds's avatar
Linus Torvalds committed
980
		}
981
		kunmap_atomic(kaddr, KM_USER0);
Linus Torvalds's avatar
Linus Torvalds committed
982 983 984 985
		bprm->argc--;
	}
}

986 987
EXPORT_SYMBOL(remove_arg_zero);

Linus Torvalds's avatar
Linus Torvalds committed
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
/*
 * cycle the list of binary formats handler, until one recognizes the image
 */
int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs)
{
	int try,retval=0;
	struct linux_binfmt *fmt;
#ifdef __alpha__
	/* handle /sbin/loader.. */
	{
	    struct exec * eh = (struct exec *) bprm->buf;

	    if (!bprm->loader && eh->fh.f_magic == 0x183 &&
		(eh->fh.f_flags & 0x3000) == 0x3000)
	    {
		struct file * file;
		unsigned long loader;

		allow_write_access(bprm->file);
		fput(bprm->file);
		bprm->file = NULL;

	        loader = PAGE_SIZE*MAX_ARG_PAGES-sizeof(void *);

Linus Torvalds's avatar
Linus Torvalds committed
1012
		file = open_exec("/sbin/loader");
Linus Torvalds's avatar
Linus Torvalds committed
1013 1014 1015
		retval = PTR_ERR(file);
		if (IS_ERR(file))
			return retval;
Linus Torvalds's avatar
Linus Torvalds committed
1016 1017

		/* Remember if the application is TASO.  */
1018
		bprm->sh_bang = eh->ah.entry < 0x100000000UL;
Linus Torvalds's avatar
Linus Torvalds committed
1019

Linus Torvalds's avatar
Linus Torvalds committed
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
		bprm->file = file;
		bprm->loader = loader;
		retval = prepare_binprm(bprm);
		if (retval<0)
			return retval;
		/* should call search_binary_handler recursively here,
		   but it does not matter */
	    }
	}
#endif
1030 1031
	retval = security_bprm_check(bprm);
	if (retval)
1032 1033
		return retval;

Linus Torvalds's avatar
Linus Torvalds committed
1034 1035 1036
	/* kernel module loader fixup */
	/* so we don't try to load run modprobe in kernel space. */
	set_fs(USER_DS);
Linus Torvalds's avatar
Linus Torvalds committed
1037 1038 1039 1040 1041 1042
	for (try=0; try<2; try++) {
		read_lock(&binfmt_lock);
		for (fmt = formats ; fmt ; fmt = fmt->next) {
			int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary;
			if (!fn)
				continue;
1043
			if (!try_module_get(fmt->module))
Linus Torvalds's avatar
Linus Torvalds committed
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
				continue;
			read_unlock(&binfmt_lock);
			retval = fn(bprm, regs);
			if (retval >= 0) {
				put_binfmt(fmt);
				allow_write_access(bprm->file);
				if (bprm->file)
					fput(bprm->file);
				bprm->file = NULL;
				current->did_exec = 1;
				return retval;
			}
			read_lock(&binfmt_lock);
			put_binfmt(fmt);
1058
			if (retval != -ENOEXEC || bprm->mm == NULL)
Linus Torvalds's avatar
Linus Torvalds committed
1059 1060 1061 1062 1063 1064 1065
				break;
			if (!bprm->file) {
				read_unlock(&binfmt_lock);
				return retval;
			}
		}
		read_unlock(&binfmt_lock);
1066
		if (retval != -ENOEXEC || bprm->mm == NULL) {
Linus Torvalds's avatar
Linus Torvalds committed
1067 1068 1069 1070 1071 1072 1073 1074 1075
			break;
#ifdef CONFIG_KMOD
		}else{
#define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
			if (printable(bprm->buf[0]) &&
			    printable(bprm->buf[1]) &&
			    printable(bprm->buf[2]) &&
			    printable(bprm->buf[3]))
				break; /* -ENOEXEC */
1076
			request_module("binfmt-%04x", *(unsigned short *)(&bprm->buf[2]));
Linus Torvalds's avatar
Linus Torvalds committed
1077 1078 1079 1080 1081 1082
#endif
		}
	}
	return retval;
}

1083 1084
EXPORT_SYMBOL(search_binary_handler);

Linus Torvalds's avatar
Linus Torvalds committed
1085 1086 1087
/*
 * sys_execve() executes a new program.
 */
1088 1089 1090 1091
int do_execve(char * filename,
	char __user *__user *argv,
	char __user *__user *envp,
	struct pt_regs * regs)
Linus Torvalds's avatar
Linus Torvalds committed
1092
{
1093
	struct linux_binprm *bprm;
Linus Torvalds's avatar
Linus Torvalds committed
1094 1095
	struct file *file;
	int retval;
1096
	int i;
Linus Torvalds's avatar
Linus Torvalds committed
1097 1098 1099 1100 1101 1102 1103

	file = open_exec(filename);

	retval = PTR_ERR(file);
	if (IS_ERR(file))
		return retval;

1104
	sched_exec();
1105

1106
	retval = -ENOMEM;
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
	bprm = kmalloc(sizeof(*bprm), GFP_KERNEL);
	if (!bprm)
		goto out_ret;
	memset(bprm, 0, sizeof(*bprm));

	bprm->p = PAGE_SIZE*MAX_ARG_PAGES-sizeof(void *);

	bprm->file = file;
	bprm->filename = filename;
	bprm->interp = filename;
	bprm->mm = mm_alloc();
	if (!bprm->mm)
1119 1120
		goto out_file;

1121
	retval = init_new_context(current, bprm->mm);
1122 1123 1124
	if (retval < 0)
		goto out_mm;

1125 1126
	bprm->argc = count(argv, bprm->p / sizeof(void *));
	if ((retval = bprm->argc) < 0)
1127 1128
		goto out_mm;

1129 1130
	bprm->envc = count(envp, bprm->p / sizeof(void *));
	if ((retval = bprm->envc) < 0)
1131
		goto out_mm;
Linus Torvalds's avatar
Linus Torvalds committed
1132

1133
	retval = security_bprm_alloc(bprm);
1134
	if (retval)
1135 1136
		goto out;

1137
	retval = prepare_binprm(bprm);
1138 1139
	if (retval < 0)
		goto out;
Linus Torvalds's avatar
Linus Torvalds committed
1140

1141
	retval = copy_strings_kernel(1, &bprm->filename, bprm);
1142 1143
	if (retval < 0)
		goto out;
Linus Torvalds's avatar
Linus Torvalds committed
1144

1145 1146
	bprm->exec = bprm->p;
	retval = copy_strings(bprm->envc, envp, bprm);
1147 1148
	if (retval < 0)
		goto out;
Linus Torvalds's avatar
Linus Torvalds committed
1149

1150
	retval = copy_strings(bprm->argc, argv, bprm);
1151 1152
	if (retval < 0)
		goto out;
Linus Torvalds's avatar
Linus Torvalds committed
1153

1154
	retval = search_binary_handler(bprm,regs);
1155
	if (retval >= 0) {
1156
		free_arg_pages(bprm);
1157

Linus Torvalds's avatar
Linus Torvalds committed
1158
		/* execve success */
1159 1160
		security_bprm_free(bprm);
		kfree(bprm);
Linus Torvalds's avatar
Linus Torvalds committed
1161
		return retval;
1162
	}
Linus Torvalds's avatar
Linus Torvalds committed
1163 1164 1165

out:
	/* Something went wrong, return the inode and free the argument pages*/
1166
	for (i = 0 ; i < MAX_ARG_PAGES ; i++) {
1167
		struct page * page = bprm->page[i];
1168 1169 1170
		if (page)
			__free_page(page);
	}
Linus Torvalds's avatar
Linus Torvalds committed
1171

1172 1173
	if (bprm->security)
		security_bprm_free(bprm);
1174

1175
out_mm:
1176 1177
	if (bprm->mm)
		mmdrop(bprm->mm);
1178 1179

out_file:
1180 1181 1182
	if (bprm->file) {
		allow_write_access(bprm->file);
		fput(bprm->file);
1183
	}
1184 1185 1186
	kfree(bprm);

out_ret:
Linus Torvalds's avatar
Linus Torvalds committed
1187 1188 1189
	return retval;
}

1190 1191
EXPORT_SYMBOL(do_execve);

1192
int set_binfmt(struct linux_binfmt *new)
Linus Torvalds's avatar
Linus Torvalds committed
1193 1194
{
	struct linux_binfmt *old = current->binfmt;
1195 1196 1197 1198 1199

	if (new) {
		if (!try_module_get(new->module))
			return -1;
	}
Linus Torvalds's avatar
Linus Torvalds committed
1200
	current->binfmt = new;
1201 1202 1203
	if (old)
		module_put(old->module);
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
1204 1205
}

1206 1207
EXPORT_SYMBOL(set_binfmt);

Alan Cox's avatar
Alan Cox committed
1208 1209 1210 1211 1212 1213
#define CORENAME_MAX_SIZE 64

/* format_corename will inspect the pattern parameter, and output a
 * name into corename, which must have space for at least
 * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
 */
1214
static void format_corename(char *corename, const char *pattern, long signr)
Alan Cox's avatar
Alan Cox committed
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
{
	const char *pat_ptr = pattern;
	char *out_ptr = corename;
	char *const out_end = corename + CORENAME_MAX_SIZE;
	int rc;
	int pid_in_pattern = 0;

	/* Repeat as long as we have more pattern to process and more output
	   space */
	while (*pat_ptr) {
		if (*pat_ptr != '%') {
			if (out_ptr == out_end)
				goto out;
			*out_ptr++ = *pat_ptr++;
		} else {
			switch (*++pat_ptr) {
			case 0:
				goto out;
			/* Double percent, output one percent */
			case '%':
				if (out_ptr == out_end)
					goto out;
				*out_ptr++ = '%';
				break;
			/* pid */
			case 'p':
				pid_in_pattern = 1;
				rc = snprintf(out_ptr, out_end - out_ptr,
1243
					      "%d", current->tgid);
Alan Cox's avatar
Alan Cox committed
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276
				if (rc > out_end - out_ptr)
					goto out;
				out_ptr += rc;
				break;
			/* uid */
			case 'u':
				rc = snprintf(out_ptr, out_end - out_ptr,
					      "%d", current->uid);
				if (rc > out_end - out_ptr)
					goto out;
				out_ptr += rc;
				break;
			/* gid */
			case 'g':
				rc = snprintf(out_ptr, out_end - out_ptr,
					      "%d", current->gid);
				if (rc > out_end - out_ptr)
					goto out;
				out_ptr += rc;
				break;
			/* signal that caused the coredump */
			case 's':
				rc = snprintf(out_ptr, out_end - out_ptr,
					      "%ld", signr);
				if (rc > out_end - out_ptr)
					goto out;
				out_ptr += rc;
				break;
			/* UNIX time of coredump */
			case 't': {
				struct timeval tv;
				do_gettimeofday(&tv);
				rc = snprintf(out_ptr, out_end - out_ptr,
Linus Torvalds's avatar
Linus Torvalds committed
1277
					      "%lu", tv.tv_sec);
Alan Cox's avatar
Alan Cox committed
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
				if (rc > out_end - out_ptr)
					goto out;
				out_ptr += rc;
				break;
			}
			/* hostname */
			case 'h':
				down_read(&uts_sem);
				rc = snprintf(out_ptr, out_end - out_ptr,
					      "%s", system_utsname.nodename);
				up_read(&uts_sem);
				if (rc > out_end - out_ptr)
					goto out;
				out_ptr += rc;
				break;
			/* executable */
			case 'e':
				rc = snprintf(out_ptr, out_end - out_ptr,
					      "%s", current->comm);
				if (rc > out_end - out_ptr)
					goto out;
				out_ptr += rc;
				break;
			default:
				break;
			}
			++pat_ptr;
		}
	}
	/* Backward compatibility with core_uses_pid:
	 *
	 * If core_pattern does not include a %p (as is the default)
	 * and core_uses_pid is set, then .%pid will be appended to
	 * the filename */
	if (!pid_in_pattern
            && (core_uses_pid || atomic_read(&current->mm->mm_users) != 1)) {
		rc = snprintf(out_ptr, out_end - out_ptr,
1315
			      ".%d", current->tgid);
Alan Cox's avatar
Alan Cox committed
1316 1317 1318 1319 1320 1321 1322 1323
		if (rc > out_end - out_ptr)
			goto out;
		out_ptr += rc;
	}
      out:
	*out_ptr = 0;
}

1324 1325 1326
static void zap_threads (struct mm_struct *mm)
{
	struct task_struct *g, *p;
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
	struct task_struct *tsk = current;
	struct completion *vfork_done = tsk->vfork_done;

	/*
	 * Make sure nobody is waiting for us to release the VM,
	 * otherwise we can deadlock when we wait on each other
	 */
	if (vfork_done) {
		tsk->vfork_done = NULL;
		complete(vfork_done);
	}
1338 1339 1340

	read_lock(&tasklist_lock);
	do_each_thread(g,p)
1341
		if (mm == p->mm && p != tsk) {
1342
			force_sig_specific(SIGKILL, p);
Ingo Molnar's avatar
Ingo Molnar committed
1343 1344
			mm->core_waiters++;
		}
1345
	while_each_thread(g,p);
Ingo Molnar's avatar
Ingo Molnar committed
1346

1347 1348 1349 1350 1351
	read_unlock(&tasklist_lock);
}

static void coredump_wait(struct mm_struct *mm)
{
Ingo Molnar's avatar
Ingo Molnar committed
1352 1353 1354 1355 1356 1357 1358
	DECLARE_COMPLETION(startup_done);

	mm->core_waiters++; /* let other threads block */
	mm->core_startup_done = &startup_done;

	/* give other threads a chance to run: */
	yield();
1359 1360

	zap_threads(mm);
Ingo Molnar's avatar
Ingo Molnar committed
1361 1362 1363 1364 1365 1366
	if (--mm->core_waiters) {
		up_write(&mm->mmap_sem);
		wait_for_completion(&startup_done);
	} else
		up_write(&mm->mmap_sem);
	BUG_ON(mm->core_waiters);
1367 1368
}

1369
int do_coredump(long signr, int exit_code, struct pt_regs * regs)
Linus Torvalds's avatar
Linus Torvalds committed
1370
{
Alan Cox's avatar
Alan Cox committed
1371
	char corename[CORENAME_MAX_SIZE + 1];
Ingo Molnar's avatar
Ingo Molnar committed
1372 1373
	struct mm_struct *mm = current->mm;
	struct linux_binfmt * binfmt;
Linus Torvalds's avatar
Linus Torvalds committed
1374
	struct inode * inode;
Ingo Molnar's avatar
Ingo Molnar committed
1375
	struct file * file;
Linus Torvalds's avatar
Linus Torvalds committed
1376
	int retval = 0;
Linus Torvalds's avatar
Linus Torvalds committed
1377 1378 1379 1380

	binfmt = current->binfmt;
	if (!binfmt || !binfmt->core_dump)
		goto fail;
Ingo Molnar's avatar
Ingo Molnar committed
1381 1382 1383
	down_write(&mm->mmap_sem);
	if (!mm->dumpable) {
		up_write(&mm->mmap_sem);
Linus Torvalds's avatar
Linus Torvalds committed
1384
		goto fail;
Ingo Molnar's avatar
Ingo Molnar committed
1385 1386 1387
	}
	mm->dumpable = 0;
	init_completion(&mm->core_done);
1388 1389
	current->signal->group_exit = 1;
	current->signal->group_exit_code = exit_code;
Ingo Molnar's avatar
Ingo Molnar committed
1390 1391
	coredump_wait(mm);

1392
	if (current->signal->rlim[RLIMIT_CORE].rlim_cur < binfmt->min_coredump)
1393
		goto fail_unlock;
Linus Torvalds's avatar
Linus Torvalds committed
1394

1395 1396 1397 1398 1399 1400 1401
	/*
	 * lock_kernel() because format_corename() is controlled by sysctl, which
	 * uses lock_kernel()
	 */
 	lock_kernel();
	format_corename(corename, core_pattern, signr);
	unlock_kernel();
Andrew Morton's avatar
Andrew Morton committed
1402
	file = filp_open(corename, O_CREAT | 2 | O_NOFOLLOW | O_LARGEFILE, 0600);
Linus Torvalds's avatar
Linus Torvalds committed
1403
	if (IS_ERR(file))
1404
		goto fail_unlock;
Linus Torvalds's avatar
Linus Torvalds committed
1405 1406 1407
	inode = file->f_dentry->d_inode;
	if (inode->i_nlink > 1)
		goto close_fail;	/* multiple links - don't dump */
Linus Torvalds's avatar
Linus Torvalds committed
1408 1409
	if (d_unhashed(file->f_dentry))
		goto close_fail;
Linus Torvalds's avatar
Linus Torvalds committed
1410 1411 1412 1413 1414 1415 1416

	if (!S_ISREG(inode->i_mode))
		goto close_fail;
	if (!file->f_op)
		goto close_fail;
	if (!file->f_op->write)
		goto close_fail;
Linus Torvalds's avatar
Linus Torvalds committed
1417 1418
	if (do_truncate(file->f_dentry, 0) != 0)
		goto close_fail;
Linus Torvalds's avatar
Linus Torvalds committed
1419 1420

	retval = binfmt->core_dump(signr, regs, file);
Linus Torvalds's avatar
Linus Torvalds committed
1421

1422
	current->signal->group_exit_code |= 0x80;
Linus Torvalds's avatar
Linus Torvalds committed
1423 1424
close_fail:
	filp_close(file, NULL);
1425
fail_unlock:
Ingo Molnar's avatar
Ingo Molnar committed
1426
	complete_all(&mm->core_done);
Linus Torvalds's avatar
Linus Torvalds committed
1427
fail:
Linus Torvalds's avatar
Linus Torvalds committed
1428
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
1429
}