fork.c 31.7 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10
/*
 *  linux/kernel/fork.c
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 */

/*
 *  'fork.c' contains the help-routines for the 'fork' system call
 * (see also entry.S and others).
 * Fork is rather simple, once you get the hang of it, but the memory
Linus Torvalds's avatar
Linus Torvalds committed
11
 * management can be a bitch. See 'mm/memory.c': 'copy_page_range()'
Linus Torvalds's avatar
Linus Torvalds committed
12 13 14
 */

#include <linux/config.h>
Linus Torvalds's avatar
Linus Torvalds committed
15
#include <linux/slab.h>
Linus Torvalds's avatar
Linus Torvalds committed
16 17 18 19 20
#include <linux/init.h>
#include <linux/unistd.h>
#include <linux/smp_lock.h>
#include <linux/module.h>
#include <linux/vmalloc.h>
Linus Torvalds's avatar
Linus Torvalds committed
21
#include <linux/completion.h>
Linus Torvalds's avatar
Linus Torvalds committed
22
#include <linux/namespace.h>
Linus Torvalds's avatar
Linus Torvalds committed
23
#include <linux/personality.h>
24
#include <linux/mempolicy.h>
25
#include <linux/sem.h>
Linus Torvalds's avatar
Linus Torvalds committed
26
#include <linux/file.h>
27
#include <linux/binfmts.h>
Andrew Morton's avatar
Andrew Morton committed
28
#include <linux/mman.h>
29
#include <linux/fs.h>
30
#include <linux/cpu.h>
31
#include <linux/security.h>
32
#include <linux/swap.h>
Andrew Morton's avatar
Andrew Morton committed
33
#include <linux/syscalls.h>
34
#include <linux/jiffies.h>
35
#include <linux/futex.h>
36
#include <linux/ptrace.h>
37
#include <linux/mount.h>
38
#include <linux/audit.h>
39
#include <linux/rmap.h>
Linus Torvalds's avatar
Linus Torvalds committed
40 41 42 43 44

#include <asm/pgtable.h>
#include <asm/pgalloc.h>
#include <asm/uaccess.h>
#include <asm/mmu_context.h>
45 46
#include <asm/cacheflush.h>
#include <asm/tlbflush.h>
Linus Torvalds's avatar
Linus Torvalds committed
47

48 49 50
/* The idle threads do not count..
 * Protected by write_lock_irq(&tasklist_lock)
 */
Linus Torvalds's avatar
Linus Torvalds committed
51 52 53 54
int nr_threads;

int max_threads;
unsigned long total_forks;	/* Handle normal Linux uptimes. */
Ingo Molnar's avatar
Ingo Molnar committed
55

56 57
DEFINE_PER_CPU(unsigned long, process_counts) = 0;

Linus Torvalds's avatar
Linus Torvalds committed
58 59
rwlock_t tasklist_lock __cacheline_aligned = RW_LOCK_UNLOCKED;  /* outer */

60 61
EXPORT_SYMBOL(tasklist_lock);

62 63 64 65 66
int nr_processes(void)
{
	int cpu;
	int total = 0;

67
	for_each_online_cpu(cpu)
68 69
		total += per_cpu(process_counts, cpu);

70 71 72
	return total;
}

73 74 75 76 77 78 79
#ifndef __HAVE_ARCH_TASK_STRUCT_ALLOCATOR
# define alloc_task_struct()	kmem_cache_alloc(task_struct_cachep, GFP_KERNEL)
# define free_task_struct(tsk)	kmem_cache_free(task_struct_cachep, (tsk))
static kmem_cache_t *task_struct_cachep;
#endif

static void free_task(struct task_struct *tsk)
80
{
81 82
	free_thread_info(tsk->thread_info);
	free_task_struct(tsk);
83 84
}

85 86 87 88 89 90
void __put_task_struct(struct task_struct *tsk)
{
	WARN_ON(!(tsk->state & (TASK_DEAD | TASK_ZOMBIE)));
	WARN_ON(atomic_read(&tsk->usage));
	WARN_ON(tsk == current);

91 92
	if (unlikely(tsk->audit_context))
		audit_free(tsk);
93 94
	security_task_free(tsk);
	free_uid(tsk->user);
95
	put_group_info(tsk->group_info);
96
	free_task(tsk);
97 98
}

99
void fastcall add_wait_queue(wait_queue_head_t *q, wait_queue_t * wait)
Linus Torvalds's avatar
Linus Torvalds committed
100 101 102
{
	unsigned long flags;

Linus Torvalds's avatar
Linus Torvalds committed
103
	wait->flags &= ~WQ_FLAG_EXCLUSIVE;
Robert Love's avatar
Robert Love committed
104
	spin_lock_irqsave(&q->lock, flags);
Linus Torvalds's avatar
Linus Torvalds committed
105
	__add_wait_queue(q, wait);
Robert Love's avatar
Robert Love committed
106
	spin_unlock_irqrestore(&q->lock, flags);
Linus Torvalds's avatar
Linus Torvalds committed
107 108
}

109 110
EXPORT_SYMBOL(add_wait_queue);

111
void fastcall add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t * wait)
Linus Torvalds's avatar
Linus Torvalds committed
112 113 114
{
	unsigned long flags;

Linus Torvalds's avatar
Linus Torvalds committed
115
	wait->flags |= WQ_FLAG_EXCLUSIVE;
Robert Love's avatar
Robert Love committed
116
	spin_lock_irqsave(&q->lock, flags);
Linus Torvalds's avatar
Linus Torvalds committed
117
	__add_wait_queue_tail(q, wait);
Robert Love's avatar
Robert Love committed
118
	spin_unlock_irqrestore(&q->lock, flags);
Linus Torvalds's avatar
Linus Torvalds committed
119 120
}

121 122
EXPORT_SYMBOL(add_wait_queue_exclusive);

123
void fastcall remove_wait_queue(wait_queue_head_t *q, wait_queue_t * wait)
Linus Torvalds's avatar
Linus Torvalds committed
124 125 126
{
	unsigned long flags;

Robert Love's avatar
Robert Love committed
127
	spin_lock_irqsave(&q->lock, flags);
Linus Torvalds's avatar
Linus Torvalds committed
128
	__remove_wait_queue(q, wait);
Robert Love's avatar
Robert Love committed
129
	spin_unlock_irqrestore(&q->lock, flags);
Linus Torvalds's avatar
Linus Torvalds committed
130 131
}

132 133
EXPORT_SYMBOL(remove_wait_queue);

134 135 136 137 138 139 140 141 142 143 144 145 146

/*
 * Note: we use "set_current_state()" _after_ the wait-queue add,
 * because we need a memory barrier there on SMP, so that any
 * wake-function that tests for the wait-queue being active
 * will be guaranteed to see waitqueue addition _or_ subsequent
 * tests in this thread will see the wakeup having taken place.
 *
 * The spin_unlock() itself is semi-permeable and only protects
 * one way (it only protects stuff inside the critical region and
 * stops them from bleeding out - it would still allow subsequent
 * loads to move into the the critical region).
 */
147
void fastcall prepare_to_wait(wait_queue_head_t *q, wait_queue_t *wait, int state)
148 149 150 151 152 153 154
{
	unsigned long flags;

	wait->flags &= ~WQ_FLAG_EXCLUSIVE;
	spin_lock_irqsave(&q->lock, flags);
	if (list_empty(&wait->task_list))
		__add_wait_queue(q, wait);
155
	set_current_state(state);
156 157 158
	spin_unlock_irqrestore(&q->lock, flags);
}

159 160
EXPORT_SYMBOL(prepare_to_wait);

161
void fastcall
162 163 164 165 166 167 168 169
prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_t *wait, int state)
{
	unsigned long flags;

	wait->flags |= WQ_FLAG_EXCLUSIVE;
	spin_lock_irqsave(&q->lock, flags);
	if (list_empty(&wait->task_list))
		__add_wait_queue_tail(q, wait);
170
	set_current_state(state);
171 172 173
	spin_unlock_irqrestore(&q->lock, flags);
}

174 175
EXPORT_SYMBOL(prepare_to_wait_exclusive);

176
void fastcall finish_wait(wait_queue_head_t *q, wait_queue_t *wait)
177 178 179 180
{
	unsigned long flags;

	__set_current_state(TASK_RUNNING);
181 182 183 184 185 186 187 188 189 190 191 192 193 194
	/*
	 * We can check for list emptiness outside the lock
	 * IFF:
	 *  - we use the "careful" check that verifies both
	 *    the next and prev pointers, so that there cannot
	 *    be any half-pending updates in progress on other
	 *    CPU's that we haven't seen yet (and that might
	 *    still change the stack area.
	 * and
	 *  - all other users take the lock (ie we can only
	 *    have _one_ other CPU that looks at or modifies
	 *    the list).
	 */
	if (!list_empty_careful(&wait->task_list)) {
195 196 197 198 199 200
		spin_lock_irqsave(&q->lock, flags);
		list_del_init(&wait->task_list);
		spin_unlock_irqrestore(&q->lock, flags);
	}
}

201 202
EXPORT_SYMBOL(finish_wait);

Andrew Morton's avatar
Andrew Morton committed
203
int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key)
204
{
Andrew Morton's avatar
Andrew Morton committed
205
	int ret = default_wake_function(wait, mode, sync, key);
206 207 208 209 210 211

	if (ret)
		list_del_init(&wait->task_list);
	return ret;
}

212 213
EXPORT_SYMBOL(autoremove_wake_function);

Linus Torvalds's avatar
Linus Torvalds committed
214 215
void __init fork_init(unsigned long mempages)
{
216
#ifndef __HAVE_ARCH_TASK_STRUCT_ALLOCATOR
217
#ifndef ARCH_MIN_TASKALIGN
218
#define ARCH_MIN_TASKALIGN	L1_CACHE_BYTES
219
#endif
220 221
	/* create a slab on which task_structs can be allocated */
	task_struct_cachep =
222 223
		kmem_cache_create("task_struct", sizeof(struct task_struct),
			ARCH_MIN_TASKALIGN, SLAB_PANIC, NULL, NULL);
224
#endif
225

Linus Torvalds's avatar
Linus Torvalds committed
226 227 228 229 230
	/*
	 * The default maximum number of threads is set to a safe
	 * value: the thread structures can take up at most half
	 * of memory.
	 */
Linus Torvalds's avatar
Linus Torvalds committed
231
	max_threads = mempages / (THREAD_SIZE/PAGE_SIZE) / 8;
Alan Cox's avatar
Alan Cox committed
232
	/*
233
	 * we need to allow at least 20 threads to boot a system
Alan Cox's avatar
Alan Cox committed
234
	 */
235 236 237 238 239
	if(max_threads < 20)
		max_threads = 20;

	init_task.rlim[RLIMIT_NPROC].rlim_cur = max_threads/2;
	init_task.rlim[RLIMIT_NPROC].rlim_max = max_threads/2;
Linus Torvalds's avatar
Linus Torvalds committed
240 241
}

242
static struct task_struct *dup_task_struct(struct task_struct *orig)
243 244 245 246
{
	struct task_struct *tsk;
	struct thread_info *ti;

247 248
	prepare_to_copy(orig);

249 250 251 252 253 254 255 256 257
	tsk = alloc_task_struct();
	if (!tsk)
		return NULL;

	ti = alloc_thread_info(tsk);
	if (!ti) {
		free_task_struct(tsk);
		return NULL;
	}
258 259 260 261 262

	*ti = *orig->thread_info;
	*tsk = *orig;
	tsk->thread_info = ti;
	ti->task = tsk;
263 264 265

	/* One for us, one for whoever does the "release_task()" (usually parent) */
	atomic_set(&tsk->usage,2);
266 267 268
	return tsk;
}

269 270
#ifdef CONFIG_MMU
static inline int dup_mmap(struct mm_struct * mm, struct mm_struct * oldmm)
Linus Torvalds's avatar
Linus Torvalds committed
271 272
{
	struct vm_area_struct * mpnt, *tmp, **pprev;
Andrew Morton's avatar
Andrew Morton committed
273
	struct rb_node **rb_link, *rb_parent;
Linus Torvalds's avatar
Linus Torvalds committed
274
	int retval;
275
	unsigned long charge;
276
	struct mempolicy *pol;
Linus Torvalds's avatar
Linus Torvalds committed
277

278
	down_write(&oldmm->mmap_sem);
Linus Torvalds's avatar
Linus Torvalds committed
279 280 281 282
	flush_cache_mm(current->mm);
	mm->locked_vm = 0;
	mm->mmap = NULL;
	mm->mmap_cache = NULL;
283
	mm->free_area_cache = TASK_UNMAPPED_BASE;
Linus Torvalds's avatar
Linus Torvalds committed
284
	mm->map_count = 0;
Linus Torvalds's avatar
Linus Torvalds committed
285
	mm->rss = 0;
286
	cpus_clear(mm->cpu_vm_mask);
Andrew Morton's avatar
Andrew Morton committed
287 288 289
	mm->mm_rb = RB_ROOT;
	rb_link = &mm->mm_rb.rb_node;
	rb_parent = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
290
	pprev = &mm->mmap;
Linus Torvalds's avatar
Linus Torvalds committed
291 292 293 294 295 296 297 298 299 300 301 302

	/*
	 * Add it to the mmlist after the parent.
	 * Doing it this way means that we can order the list,
	 * and fork() won't mess up the ordering significantly.
	 * Add it first so that swapoff can see any swap entries.
	 */
	spin_lock(&mmlist_lock);
	list_add(&mm->mmlist, &current->mm->mmlist);
	mmlist_nr++;
	spin_unlock(&mmlist_lock);

Linus Torvalds's avatar
Linus Torvalds committed
303 304 305 306 307
	for (mpnt = current->mm->mmap ; mpnt ; mpnt = mpnt->vm_next) {
		struct file *file;

		if(mpnt->vm_flags & VM_DONTCOPY)
			continue;
308
		charge = 0;
Andrew Morton's avatar
Andrew Morton committed
309 310
		if (mpnt->vm_flags & VM_ACCOUNT) {
			unsigned int len = (mpnt->vm_end - mpnt->vm_start) >> PAGE_SHIFT;
311
			if (security_vm_enough_memory(len))
Andrew Morton's avatar
Andrew Morton committed
312
				goto fail_nomem;
313
			charge = len;
Andrew Morton's avatar
Andrew Morton committed
314
		}
Linus Torvalds's avatar
Linus Torvalds committed
315 316 317 318
		tmp = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
		if (!tmp)
			goto fail_nomem;
		*tmp = *mpnt;
319 320 321 322 323
		pol = mpol_copy(vma_policy(mpnt));
		retval = PTR_ERR(pol);
		if (IS_ERR(pol))
			goto fail_nomem_policy;
		vma_set_policy(tmp, pol);
Linus Torvalds's avatar
Linus Torvalds committed
324 325 326
		tmp->vm_flags &= ~VM_LOCKED;
		tmp->vm_mm = mm;
		tmp->vm_next = NULL;
327 328
		anon_vma_link(tmp);
		file = tmp->vm_file;
Linus Torvalds's avatar
Linus Torvalds committed
329 330 331 332 333 334 335
		if (file) {
			struct inode *inode = file->f_dentry->d_inode;
			get_file(file);
			if (tmp->vm_flags & VM_DENYWRITE)
				atomic_dec(&inode->i_writecount);
      
			/* insert tmp into the share list, just after mpnt */
336
			spin_lock(&file->f_mapping->i_mmap_lock);
337
			flush_dcache_mmap_lock(file->f_mapping);
338
			vma_prio_tree_add(tmp, mpnt);
339
			flush_dcache_mmap_unlock(file->f_mapping);
340
			spin_unlock(&file->f_mapping->i_mmap_lock);
Linus Torvalds's avatar
Linus Torvalds committed
341 342 343
		}

		/*
Linus Torvalds's avatar
Linus Torvalds committed
344
		 * Link in the new vma and copy the page table entries:
Andrew Morton's avatar
Andrew Morton committed
345 346
		 * link in first so that swapoff can see swap entries,
		 * and try_to_unmap_one's find_vma find the new vma.
Linus Torvalds's avatar
Linus Torvalds committed
347
		 */
Linus Torvalds's avatar
Linus Torvalds committed
348
		spin_lock(&mm->page_table_lock);
Linus Torvalds's avatar
Linus Torvalds committed
349 350
		*pprev = tmp;
		pprev = &tmp->vm_next;
Andrew Morton's avatar
Andrew Morton committed
351 352 353 354 355

		__vma_link_rb(mm, tmp, rb_link, rb_parent);
		rb_link = &tmp->vm_rb.rb_right;
		rb_parent = &tmp->vm_rb;

Linus Torvalds's avatar
Linus Torvalds committed
356 357 358 359 360 361
		mm->map_count++;
		retval = copy_page_range(mm, current->mm, tmp);
		spin_unlock(&mm->page_table_lock);

		if (tmp->vm_ops && tmp->vm_ops->open)
			tmp->vm_ops->open(tmp);
Linus Torvalds's avatar
Linus Torvalds committed
362 363

		if (retval)
364
			goto out;
Linus Torvalds's avatar
Linus Torvalds committed
365 366 367
	}
	retval = 0;

Andrew Morton's avatar
Andrew Morton committed
368
out:
Linus Torvalds's avatar
Linus Torvalds committed
369
	flush_tlb_mm(current->mm);
370
	up_write(&oldmm->mmap_sem);
Linus Torvalds's avatar
Linus Torvalds committed
371
	return retval;
372 373
fail_nomem_policy:
	kmem_cache_free(vm_area_cachep, tmp);
Andrew Morton's avatar
Andrew Morton committed
374
fail_nomem:
375
	retval = -ENOMEM;
376
	vm_unacct_memory(charge);
Andrew Morton's avatar
Andrew Morton committed
377
	goto out;
Linus Torvalds's avatar
Linus Torvalds committed
378
}
379

380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
static inline int mm_alloc_pgd(struct mm_struct * mm)
{
	mm->pgd = pgd_alloc(mm);
	if (unlikely(!mm->pgd))
		return -ENOMEM;
	return 0;
}

static inline void mm_free_pgd(struct mm_struct * mm)
{
	pgd_free(mm->pgd);
}
#else
#define dup_mmap(mm, oldmm)	(0)
#define mm_alloc_pgd(mm)	(0)
#define mm_free_pgd(mm)
#endif /* CONFIG_MMU */
Linus Torvalds's avatar
Linus Torvalds committed
397

Linus Torvalds's avatar
Linus Torvalds committed
398
spinlock_t mmlist_lock __cacheline_aligned_in_smp = SPIN_LOCK_UNLOCKED;
Linus Torvalds's avatar
Linus Torvalds committed
399
int mmlist_nr;
Linus Torvalds's avatar
Linus Torvalds committed
400 401 402 403

#define allocate_mm()	(kmem_cache_alloc(mm_cachep, SLAB_KERNEL))
#define free_mm(mm)	(kmem_cache_free(mm_cachep, (mm)))

404 405
#include <linux/init_task.h>

Linus Torvalds's avatar
Linus Torvalds committed
406 407 408 409
static struct mm_struct * mm_init(struct mm_struct * mm)
{
	atomic_set(&mm->mm_users, 1);
	atomic_set(&mm->mm_count, 1);
Linus Torvalds's avatar
Linus Torvalds committed
410
	init_rwsem(&mm->mmap_sem);
Ingo Molnar's avatar
Ingo Molnar committed
411
	mm->core_waiters = 0;
Linus Torvalds's avatar
Linus Torvalds committed
412
	mm->page_table_lock = SPIN_LOCK_UNLOCKED;
413
	mm->ioctx_list_lock = RW_LOCK_UNLOCKED;
414
	mm->ioctx_list = NULL;
415
	mm->default_kioctx = (struct kioctx)INIT_KIOCTX(mm->default_kioctx, *mm);
416 417
	mm->free_area_cache = TASK_UNMAPPED_BASE;

418 419
	if (likely(!mm_alloc_pgd(mm))) {
		mm->def_flags = 0;
Linus Torvalds's avatar
Linus Torvalds committed
420
		return mm;
421
	}
Linus Torvalds's avatar
Linus Torvalds committed
422 423 424 425 426 427 428 429 430 431 432 433 434 435
	free_mm(mm);
	return NULL;
}

/*
 * Allocate and initialize an mm_struct.
 */
struct mm_struct * mm_alloc(void)
{
	struct mm_struct * mm;

	mm = allocate_mm();
	if (mm) {
		memset(mm, 0, sizeof(*mm));
436
		mm = mm_init(mm);
Linus Torvalds's avatar
Linus Torvalds committed
437
	}
438
	return mm;
Linus Torvalds's avatar
Linus Torvalds committed
439 440 441 442 443 444 445
}

/*
 * Called when the last reference to the mm
 * is dropped: either by a lazy thread or by
 * mmput. Free the page directory and the mm.
 */
446
void fastcall __mmdrop(struct mm_struct *mm)
Linus Torvalds's avatar
Linus Torvalds committed
447
{
448 449
	BUG_ON(mm == &init_mm);
	mm_free_pgd(mm);
Linus Torvalds's avatar
Linus Torvalds committed
450 451 452 453 454 455 456 457 458 459 460
	destroy_context(mm);
	free_mm(mm);
}

/*
 * Decrement the use count and release all resources for an mm.
 */
void mmput(struct mm_struct *mm)
{
	if (atomic_dec_and_lock(&mm->mm_users, &mmlist_lock)) {
		list_del(&mm->mmlist);
Linus Torvalds's avatar
Linus Torvalds committed
461
		mmlist_nr--;
Linus Torvalds's avatar
Linus Torvalds committed
462
		spin_unlock(&mmlist_lock);
Andrew Morton's avatar
Andrew Morton committed
463
		exit_aio(mm);
Linus Torvalds's avatar
Linus Torvalds committed
464
		exit_mmap(mm);
465
		put_swap_token(mm);
Linus Torvalds's avatar
Linus Torvalds committed
466 467 468 469
		mmdrop(mm);
	}
}

470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
/*
 * Checks if the use count of an mm is non-zero and if so
 * returns a reference to it after bumping up the use count.
 * If the use count is zero, it means this mm is going away,
 * so return NULL.
 */
struct mm_struct *mmgrab(struct mm_struct *mm)
{
	spin_lock(&mmlist_lock);
	if (!atomic_read(&mm->mm_users))
		mm = NULL;
	else
		atomic_inc(&mm->mm_users);
	spin_unlock(&mmlist_lock);
	return mm;
}

Linus Torvalds's avatar
Linus Torvalds committed
487 488 489 490 491 492 493 494 495 496 497 498 499
/* Please note the differences between mmput and mm_release.
 * mmput is called whenever we stop holding onto a mm_struct,
 * error success whatever.
 *
 * mm_release is called after a mm_struct has been removed
 * from the current process.
 *
 * This difference is important for error handling, when we
 * only half set up a mm_struct for a new process and need to restore
 * the old one.  Because we mmput the new mm_struct before
 * restoring the old one. . .
 * Eric Biederman 10 January 1998
 */
500
void mm_release(struct task_struct *tsk, struct mm_struct *mm)
Linus Torvalds's avatar
Linus Torvalds committed
501
{
Linus Torvalds's avatar
Linus Torvalds committed
502
	struct completion *vfork_done = tsk->vfork_done;
Linus Torvalds's avatar
Linus Torvalds committed
503

504 505 506
	/* Get rid of any cached register state */
	deactivate_mm(tsk, mm);

Linus Torvalds's avatar
Linus Torvalds committed
507
	/* notify parent sleeping on vfork() */
Linus Torvalds's avatar
Linus Torvalds committed
508 509 510
	if (vfork_done) {
		tsk->vfork_done = NULL;
		complete(vfork_done);
Linus Torvalds's avatar
Linus Torvalds committed
511
	}
512
	if (tsk->clear_child_tid && atomic_read(&mm->mm_users) > 1) {
513
		u32 __user * tidptr = tsk->clear_child_tid;
514
		tsk->clear_child_tid = NULL;
515

516
		/*
517
		 * We don't check the error code - if userspace has
518 519
		 * not set up a proper pointer then tough luck.
		 */
520
		put_user(0, tidptr);
521
		sys_futex(tidptr, FUTEX_WAKE, 1, NULL, NULL, 0);
522
	}
Linus Torvalds's avatar
Linus Torvalds committed
523 524 525 526 527 528 529 530 531
}

static int copy_mm(unsigned long clone_flags, struct task_struct * tsk)
{
	struct mm_struct * mm, *oldmm;
	int retval;

	tsk->min_flt = tsk->maj_flt = 0;
	tsk->cmin_flt = tsk->cmaj_flt = 0;
532
	tsk->nvcsw = tsk->nivcsw = tsk->cnvcsw = tsk->cnivcsw = 0;
Linus Torvalds's avatar
Linus Torvalds committed
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548

	tsk->mm = NULL;
	tsk->active_mm = NULL;

	/*
	 * Are we cloning a kernel thread?
	 *
	 * We need to steal a active VM for that..
	 */
	oldmm = current->mm;
	if (!oldmm)
		return 0;

	if (clone_flags & CLONE_VM) {
		atomic_inc(&oldmm->mm_users);
		mm = oldmm;
549 550 551 552 553 554 555
		/*
		 * There are cases where the PTL is held to ensure no
		 * new threads start up in user mode using an mm, which
		 * allows optimizing out ipis; the tlb_gather_mmu code
		 * is an example.
		 */
		spin_unlock_wait(&oldmm->page_table_lock);
Linus Torvalds's avatar
Linus Torvalds committed
556 557 558 559 560 561 562 563 564 565 566 567 568
		goto good_mm;
	}

	retval = -ENOMEM;
	mm = allocate_mm();
	if (!mm)
		goto fail_nomem;

	/* Copy the current MM stuff.. */
	memcpy(mm, oldmm, sizeof(*mm));
	if (!mm_init(mm))
		goto fail_nomem;

Colin Gibbs's avatar
Colin Gibbs committed
569
	if (init_new_context(tsk,mm))
570
		goto fail_nocontext;
Colin Gibbs's avatar
Colin Gibbs committed
571

572
	retval = dup_mmap(mm, oldmm);
Linus Torvalds's avatar
Linus Torvalds committed
573 574 575 576 577 578 579 580 581 582 583 584
	if (retval)
		goto free_pt;

good_mm:
	tsk->mm = mm;
	tsk->active_mm = mm;
	return 0;

free_pt:
	mmput(mm);
fail_nomem:
	return retval;
585 586 587 588 589 590 591 592 593

fail_nocontext:
	/*
	 * If init_new_context() failed, we cannot use mmput() to free the mm
	 * because it calls destroy_context()
	 */
	mm_free_pgd(mm);
	free_mm(mm);
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
}

static inline struct fs_struct *__copy_fs_struct(struct fs_struct *old)
{
	struct fs_struct *fs = kmem_cache_alloc(fs_cachep, GFP_KERNEL);
	/* We don't need to lock fs - think why ;-) */
	if (fs) {
		atomic_set(&fs->count, 1);
		fs->lock = RW_LOCK_UNLOCKED;
		fs->umask = old->umask;
		read_lock(&old->lock);
		fs->rootmnt = mntget(old->rootmnt);
		fs->root = dget(old->root);
		fs->pwdmnt = mntget(old->pwdmnt);
		fs->pwd = dget(old->pwd);
		if (old->altroot) {
			fs->altrootmnt = mntget(old->altrootmnt);
			fs->altroot = dget(old->altroot);
		} else {
			fs->altrootmnt = NULL;
			fs->altroot = NULL;
615
		}
Linus Torvalds's avatar
Linus Torvalds committed
616 617 618 619 620 621 622 623 624 625
		read_unlock(&old->lock);
	}
	return fs;
}

struct fs_struct *copy_fs_struct(struct fs_struct *old)
{
	return __copy_fs_struct(old);
}

626 627
EXPORT_SYMBOL_GPL(copy_fs_struct);

Linus Torvalds's avatar
Linus Torvalds committed
628 629 630 631 632 633 634 635
static inline int copy_fs(unsigned long clone_flags, struct task_struct * tsk)
{
	if (clone_flags & CLONE_FS) {
		atomic_inc(&current->fs->count);
		return 0;
	}
	tsk->fs = __copy_fs_struct(current->fs);
	if (!tsk->fs)
636
		return -ENOMEM;
Linus Torvalds's avatar
Linus Torvalds committed
637 638 639 640 641 642
	return 0;
}

static int count_open_files(struct files_struct *files, int size)
{
	int i;
643

Linus Torvalds's avatar
Linus Torvalds committed
644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
	/* Find the last open fd */
	for (i = size/(8*sizeof(long)); i > 0; ) {
		if (files->open_fds->fds_bits[--i])
			break;
	}
	i = (i+1) * 8 * sizeof(long);
	return i;
}

static int copy_files(unsigned long clone_flags, struct task_struct * tsk)
{
	struct files_struct *oldf, *newf;
	struct file **old_fds, **new_fds;
	int open_files, nfds, size, i, error = 0;

	/*
	 * A background process may not have any files ...
	 */
	oldf = current->files;
	if (!oldf)
		goto out;

	if (clone_flags & CLONE_FILES) {
		atomic_inc(&oldf->count);
		goto out;
	}

Andrew Morton's avatar
Andrew Morton committed
671 672 673 674 675
	/*
	 * Note: we may be using current for both targets (See exec.c)
	 * This works because we cache current->files (old) as oldf. Don't
	 * break this.
	 */
Linus Torvalds's avatar
Linus Torvalds committed
676 677 678 679 680 681 682 683
	tsk->files = NULL;
	error = -ENOMEM;
	newf = kmem_cache_alloc(files_cachep, SLAB_KERNEL);
	if (!newf) 
		goto out;

	atomic_set(&newf->count, 1);

684
	newf->file_lock	    = SPIN_LOCK_UNLOCKED;
Linus Torvalds's avatar
Linus Torvalds committed
685 686 687 688 689 690 691 692 693 694 695 696
	newf->next_fd	    = 0;
	newf->max_fds	    = NR_OPEN_DEFAULT;
	newf->max_fdset	    = __FD_SETSIZE;
	newf->close_on_exec = &newf->close_on_exec_init;
	newf->open_fds	    = &newf->open_fds_init;
	newf->fd	    = &newf->fd_array[0];

	/* We don't yet have the oldf readlock, but even if the old
           fdset gets grown now, we'll only copy up to "size" fds */
	size = oldf->max_fdset;
	if (size > __FD_SETSIZE) {
		newf->max_fdset = 0;
697
		spin_lock(&newf->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
698
		error = expand_fdset(newf, size-1);
699
		spin_unlock(&newf->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
700 701 702
		if (error)
			goto out_release;
	}
703
	spin_lock(&oldf->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
704 705 706 707 708 709 710 711 712 713

	open_files = count_open_files(oldf, size);

	/*
	 * Check whether we need to allocate a larger fd array.
	 * Note: we're not a clone task, so the open count won't
	 * change.
	 */
	nfds = NR_OPEN_DEFAULT;
	if (open_files > nfds) {
714
		spin_unlock(&oldf->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
715
		newf->max_fds = 0;
716
		spin_lock(&newf->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
717
		error = expand_fd_array(newf, open_files-1);
718
		spin_unlock(&newf->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
719 720 721
		if (error) 
			goto out_release;
		nfds = newf->max_fds;
722
		spin_lock(&oldf->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
723 724 725 726 727 728 729 730 731 732 733 734 735 736
	}

	old_fds = oldf->fd;
	new_fds = newf->fd;

	memcpy(newf->open_fds->fds_bits, oldf->open_fds->fds_bits, open_files/8);
	memcpy(newf->close_on_exec->fds_bits, oldf->close_on_exec->fds_bits, open_files/8);

	for (i = open_files; i != 0; i--) {
		struct file *f = *old_fds++;
		if (f)
			get_file(f);
		*new_fds++ = f;
	}
737
	spin_unlock(&oldf->file_lock);
Linus Torvalds's avatar
Linus Torvalds committed
738 739 740 741 742 743 744 745 746 747

	/* compute the remainder to be cleared */
	size = (newf->max_fds - open_files) * sizeof(struct file *);

	/* This is long word aligned thus could use a optimized version */ 
	memset(new_fds, 0, size); 

	if (newf->max_fdset > open_files) {
		int left = (newf->max_fdset-open_files)/8;
		int start = open_files / (8 * sizeof(unsigned long));
748

Linus Torvalds's avatar
Linus Torvalds committed
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764
		memset(&newf->open_fds->fds_bits[start], 0, left);
		memset(&newf->close_on_exec->fds_bits[start], 0, left);
	}

	tsk->files = newf;
	error = 0;
out:
	return error;

out_release:
	free_fdset (newf->close_on_exec, newf->max_fdset);
	free_fdset (newf->open_fds, newf->max_fdset);
	kmem_cache_free(files_cachep, newf);
	goto out;
}

Andrew Morton's avatar
Andrew Morton committed
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
/*
 *	Helper to unshare the files of the current task.
 *	We don't want to expose copy_files internals to
 *	the exec layer of the kernel.
 */

int unshare_files(void)
{
	struct files_struct *files  = current->files;
	int rc;

	if(!files)
		BUG();

	/* This can race but the race causes us to copy when we don't
	   need to and drop the copy */
	if(atomic_read(&files->count) == 1)
	{
		atomic_inc(&files->count);
		return 0;
	}
	rc = copy_files(0, current);
	if(rc)
		current->files = files;
	return rc;
}

EXPORT_SYMBOL(unshare_files);

Linus Torvalds's avatar
Linus Torvalds committed
794 795
static inline int copy_sighand(unsigned long clone_flags, struct task_struct * tsk)
{
796
	struct sighand_struct *sig;
Linus Torvalds's avatar
Linus Torvalds committed
797

798 799
	if (clone_flags & (CLONE_SIGHAND | CLONE_THREAD)) {
		atomic_inc(&current->sighand->count);
Linus Torvalds's avatar
Linus Torvalds committed
800 801
		return 0;
	}
802 803
	sig = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
	tsk->sighand = sig;
Linus Torvalds's avatar
Linus Torvalds committed
804
	if (!sig)
805
		return -ENOMEM;
Linus Torvalds's avatar
Linus Torvalds committed
806 807
	spin_lock_init(&sig->siglock);
	atomic_set(&sig->count, 1);
808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
	memcpy(sig->action, current->sighand->action, sizeof(sig->action));
	return 0;
}

static inline int copy_signal(unsigned long clone_flags, struct task_struct * tsk)
{
	struct signal_struct *sig;

	if (clone_flags & CLONE_THREAD) {
		atomic_inc(&current->signal->count);
		return 0;
	}
	sig = kmem_cache_alloc(signal_cachep, GFP_KERNEL);
	tsk->signal = sig;
	if (!sig)
823
		return -ENOMEM;
824
	atomic_set(&sig->count, 1);
825 826
	sig->group_exit = 0;
	sig->group_exit_code = 0;
827
	sig->group_exit_task = NULL;
Ingo Molnar's avatar
Ingo Molnar committed
828
	sig->group_stop_count = 0;
Ingo Molnar's avatar
Ingo Molnar committed
829 830
	sig->curr_target = NULL;
	init_sigpending(&sig->shared_pending);
831
	INIT_LIST_HEAD(&sig->posix_timers);
Ingo Molnar's avatar
Ingo Molnar committed
832

833 834 835 836 837 838
	sig->tty = current->signal->tty;
	sig->pgrp = process_group(current);
	sig->session = current->signal->session;
	sig->leader = 0;	/* session leadership doesn't inherit */
	sig->tty_old_pgrp = 0;

Linus Torvalds's avatar
Linus Torvalds committed
839 840 841 842 843 844 845
	return 0;
}

static inline void copy_flags(unsigned long clone_flags, struct task_struct *p)
{
	unsigned long new_flags = p->flags;

846
	new_flags &= ~PF_SUPERPRIV;
Linus Torvalds's avatar
Linus Torvalds committed
847 848 849 850 851 852
	new_flags |= PF_FORKNOEXEC;
	if (!(clone_flags & CLONE_PTRACE))
		p->ptrace = 0;
	p->flags = new_flags;
}

853
asmlinkage long sys_set_tid_address(int __user *tidptr)
854
{
855
	current->clear_child_tid = tidptr;
856 857 858 859

	return current->pid;
}

Linus Torvalds's avatar
Linus Torvalds committed
860
/*
861 862 863 864 865 866
 * This creates a new process as a copy of the old one,
 * but does not actually start it yet.
 *
 * It copies the registers, and all the appropriate
 * parts of the process environment (as per the clone
 * flags). The actual kick-off is left to the caller.
Linus Torvalds's avatar
Linus Torvalds committed
867
 */
868
static task_t *copy_process(unsigned long clone_flags,
869 870 871 872 873
				 unsigned long stack_start,
				 struct pt_regs *regs,
				 unsigned long stack_size,
				 int __user *parent_tidptr,
				 int __user *child_tidptr)
Linus Torvalds's avatar
Linus Torvalds committed
874
{
Linus Torvalds's avatar
Linus Torvalds committed
875
	int retval;
Rusty Russell's avatar
Rusty Russell committed
876
	struct task_struct *p = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
877

Linus Torvalds's avatar
Linus Torvalds committed
878
	if ((clone_flags & (CLONE_NEWNS|CLONE_FS)) == (CLONE_NEWNS|CLONE_FS))
Rusty Russell's avatar
Rusty Russell committed
879
		return ERR_PTR(-EINVAL);
Linus Torvalds's avatar
Linus Torvalds committed
880

Ingo Molnar's avatar
Ingo Molnar committed
881
	/*
882 883
	 * Thread groups must share signals as well, and detached threads
	 * can only be started up within the thread group.
Ingo Molnar's avatar
Ingo Molnar committed
884
	 */
885
	if ((clone_flags & CLONE_THREAD) && !(clone_flags & CLONE_SIGHAND))
886
		return ERR_PTR(-EINVAL);
887

888 889 890 891 892 893 894 895
	/*
	 * Shared signal handlers imply shared VM. By way of the above,
	 * thread groups also imply shared VM. Blocking this case allows
	 * for various simplifications in other code.
	 */
	if ((clone_flags & CLONE_SIGHAND) && !(clone_flags & CLONE_VM))
		return ERR_PTR(-EINVAL);

896 897
	retval = security_task_create(clone_flags);
	if (retval)
898 899
		goto fork_out;

Linus Torvalds's avatar
Linus Torvalds committed
900
	retval = -ENOMEM;
901
	p = dup_task_struct(current);
Linus Torvalds's avatar
Linus Torvalds committed
902 903 904 905
	if (!p)
		goto fork_out;

	retval = -EAGAIN;
906 907 908 909
	if (atomic_read(&p->user->processes) >=
			p->rlim[RLIMIT_NPROC].rlim_cur) {
		if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_RESOURCE) &&
				p->user != &root_user)
Linus Torvalds's avatar
Linus Torvalds committed
910 911
			goto bad_fork_free;
	}
Linus Torvalds's avatar
Linus Torvalds committed
912

Linus Torvalds's avatar
Linus Torvalds committed
913 914
	atomic_inc(&p->user->__count);
	atomic_inc(&p->user->processes);
915
	get_group_info(p->group_info);
Linus Torvalds's avatar
Linus Torvalds committed
916 917

	/*
918 919 920
	 * If multiple threads are within copy_process(), then this check
	 * triggers too late. This doesn't hurt, the check is only there
	 * to stop root fork bombs.
Linus Torvalds's avatar
Linus Torvalds committed
921 922 923
	 */
	if (nr_threads >= max_threads)
		goto bad_fork_cleanup_count;
924

925 926
	if (!try_module_get(p->thread_info->exec_domain->module))
		goto bad_fork_cleanup_count;
Linus Torvalds's avatar
Linus Torvalds committed
927

928 929
	if (p->binfmt && !try_module_get(p->binfmt->module))
		goto bad_fork_cleanup_put_domain;
Linus Torvalds's avatar
Linus Torvalds committed
930 931 932

	p->did_exec = 0;
	copy_flags(clone_flags, p);
933 934 935 936 937 938 939
	if (clone_flags & CLONE_IDLETASK)
		p->pid = 0;
	else {
		p->pid = alloc_pidmap();
		if (p->pid == -1)
			goto bad_fork_cleanup;
	}
940 941 942 943 944
	retval = -EFAULT;
	if (clone_flags & CLONE_PARENT_SETTID)
		if (put_user(p->pid, parent_tidptr))
			goto bad_fork_cleanup;

945
	p->proc_dentry = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
946

947 948
	INIT_LIST_HEAD(&p->children);
	INIT_LIST_HEAD(&p->sibling);
Linus Torvalds's avatar
Linus Torvalds committed
949
	init_waitqueue_head(&p->wait_chldexit);
Linus Torvalds's avatar
Linus Torvalds committed
950
	p->vfork_done = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
951
	spin_lock_init(&p->alloc_lock);
952
	spin_lock_init(&p->proc_lock);
Linus Torvalds's avatar
Linus Torvalds committed
953

Ingo Molnar's avatar
Ingo Molnar committed
954
	clear_tsk_thread_flag(p, TIF_SIGPENDING);
Linus Torvalds's avatar
Linus Torvalds committed
955 956 957 958 959 960 961
	init_sigpending(&p->pending);

	p->it_real_value = p->it_virt_value = p->it_prof_value = 0;
	p->it_real_incr = p->it_virt_incr = p->it_prof_incr = 0;
	init_timer(&p->real_timer);
	p->real_timer.data = (unsigned long) p;

962 963
	p->utime = p->stime = 0;
	p->cutime = p->cstime = 0;
Linus Torvalds's avatar
Linus Torvalds committed
964
	p->lock_depth = -1;		/* -1 = no lock */
965
	p->start_time = get_jiffies_64();
966
	p->security = NULL;
Andrew Morton's avatar
Andrew Morton committed
967
	p->io_context = NULL;
968
	p->audit_context = NULL;
969
#ifdef CONFIG_NUMA
970 971 972 973 974 975
 	p->mempolicy = mpol_copy(p->mempolicy);
 	if (IS_ERR(p->mempolicy)) {
 		retval = PTR_ERR(p->mempolicy);
 		p->mempolicy = NULL;
 		goto bad_fork_cleanup;
 	}
976
#endif
Linus Torvalds's avatar
Linus Torvalds committed
977

978
	if ((retval = security_task_alloc(p)))
979
		goto bad_fork_cleanup_policy;
980 981
	if ((retval = audit_alloc(p)))
		goto bad_fork_cleanup_security;
Linus Torvalds's avatar
Linus Torvalds committed
982
	/* copy all the process information */
983
	if ((retval = copy_semundo(clone_flags, p)))
984
		goto bad_fork_cleanup_audit;
985
	if ((retval = copy_files(clone_flags, p)))
Dave Olien's avatar
Dave Olien committed
986
		goto bad_fork_cleanup_semundo;
987
	if ((retval = copy_fs(clone_flags, p)))
Linus Torvalds's avatar
Linus Torvalds committed
988
		goto bad_fork_cleanup_files;
989
	if ((retval = copy_sighand(clone_flags, p)))
Linus Torvalds's avatar
Linus Torvalds committed
990
		goto bad_fork_cleanup_fs;
991
	if ((retval = copy_signal(clone_flags, p)))
Linus Torvalds's avatar
Linus Torvalds committed
992
		goto bad_fork_cleanup_sighand;
993
	if ((retval = copy_mm(clone_flags, p)))
994
		goto bad_fork_cleanup_signal;
995
	if ((retval = copy_namespace(clone_flags, p)))
Linus Torvalds's avatar
Linus Torvalds committed
996
		goto bad_fork_cleanup_mm;
Linus Torvalds's avatar
Linus Torvalds committed
997 998
	retval = copy_thread(0, clone_flags, stack_start, stack_size, p, regs);
	if (retval)
Linus Torvalds's avatar
Linus Torvalds committed
999
		goto bad_fork_cleanup_namespace;
1000

1001
	p->set_child_tid = (clone_flags & CLONE_CHILD_SETTID) ? child_tidptr : NULL;
1002
	/*
1003
	 * Clear TID on mm_release()?
1004
	 */
1005
	p->clear_child_tid = (clone_flags & CLONE_CHILD_CLEARTID) ? child_tidptr: NULL;
1006

1007 1008 1009 1010 1011 1012
	/*
	 * Syscall tracing should be turned off in the child regardless
	 * of CLONE_PTRACE.
	 */
	clear_tsk_thread_flag(p, TIF_SYSCALL_TRACE);

Linus Torvalds's avatar
Linus Torvalds committed
1013 1014 1015 1016 1017 1018
	/* Our parent execution domain becomes current domain
	   These must match for thread signalling to apply */
	   
	p->parent_exec_id = p->self_exec_id;

	/* ok, now we should be set up.. */
1019
	p->exit_signal = (clone_flags & CLONE_THREAD) ? -1 : (clone_flags & CSIGNAL);
Linus Torvalds's avatar
Linus Torvalds committed
1020 1021
	p->pdeath_signal = 0;

1022
	/* Perform scheduler related setup */
1023
	sched_fork(p);
1024

Linus Torvalds's avatar
Linus Torvalds committed
1025
	/*
1026 1027
	 * Ok, make it visible to the rest of the system.
	 * We dont wake it up yet.
Linus Torvalds's avatar
Linus Torvalds committed
1028
	 */
Rusty Russell's avatar
Rusty Russell committed
1029
	p->tgid = p->pid;
1030
	p->group_leader = p;
1031 1032
	INIT_LIST_HEAD(&p->ptrace_children);
	INIT_LIST_HEAD(&p->ptrace_list);
Linus Torvalds's avatar
Linus Torvalds committed
1033 1034

	/* Need tasklist lock for parent etc handling! */
Linus Torvalds's avatar
Linus Torvalds committed
1035
	write_lock_irq(&tasklist_lock);
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046

	/*
	 * The task hasn't been attached yet, so cpus_allowed mask cannot
	 * have changed. The cpus_allowed mask of the parent may have
	 * changed after it was copied first time, and it may then move to
	 * another CPU - so we re-copy it here and set the child's CPU to
	 * the parent's CPU. This avoids alot of nasty races.
	 */
	p->cpus_allowed = current->cpus_allowed;
	set_task_cpu(p, smp_processor_id());

1047 1048 1049 1050 1051 1052
	/*
	 * Check for pending SIGKILL! The new thread should not be allowed
	 * to slip out of an OOM kill. (or normal SIGKILL.)
	 */
	if (sigismember(&current->pending.signal, SIGKILL)) {
		write_unlock_irq(&tasklist_lock);
Ingo Molnar's avatar
Ingo Molnar committed
1053
		retval = -EINTR;
1054 1055
		goto bad_fork_cleanup_namespace;
	}
Linus Torvalds's avatar
Linus Torvalds committed
1056

1057
	/* CLONE_PARENT re-uses the old parent */
1058 1059 1060
	if (clone_flags & CLONE_PARENT)
		p->real_parent = current->real_parent;
	else
1061
		p->real_parent = current;
1062
	p->parent = p->real_parent;
Linus Torvalds's avatar
Linus Torvalds committed
1063

Linus Torvalds's avatar
Linus Torvalds committed
1064
	if (clone_flags & CLONE_THREAD) {
1065
		spin_lock(&current->sighand->siglock);
1066 1067 1068 1069 1070
		/*
		 * Important: if an exit-all has been started then
		 * do not create this new thread - the whole thread
		 * group is supposed to exit anyway.
		 */
1071 1072
		if (current->signal->group_exit) {
			spin_unlock(&current->sighand->siglock);
1073
			write_unlock_irq(&tasklist_lock);
1074
			retval = -EAGAIN;
1075 1076
			goto bad_fork_cleanup_namespace;
		}
Linus Torvalds's avatar
Linus Torvalds committed
1077
		p->tgid = current->tgid;
1078
		p->group_leader = current->group_leader;
Ingo Molnar's avatar
Ingo Molnar committed
1079

1080
		if (current->signal->group_stop_count > 0) {
Ingo Molnar's avatar
Ingo Molnar committed
1081 1082 1083 1084 1085
			/*
			 * There is an all-stop in progress for the group.
			 * We ourselves will stop as soon as we check signals.
			 * Make the new thread part of that group stop too.
			 */
1086
			current->signal->group_stop_count++;
Ingo Molnar's avatar
Ingo Molnar committed
1087 1088 1089
			set_tsk_thread_flag(p, TIF_SIGPENDING);
		}

1090
		spin_unlock(&current->sighand->siglock);
Linus Torvalds's avatar
Linus Torvalds committed
1091
	}
Linus Torvalds's avatar
Linus Torvalds committed
1092

Linus Torvalds's avatar
Linus Torvalds committed
1093
	SET_LINKS(p);
1094 1095
	if (p->ptrace & PT_PTRACED)
		__ptrace_link(p, current->parent);
1096 1097 1098

	attach_pid(p, PIDTYPE_PID, p->pid);
	if (thread_group_leader(p)) {
1099
		attach_pid(p, PIDTYPE_TGID, p->tgid);
1100
		attach_pid(p, PIDTYPE_PGID, process_group(p));
1101
		attach_pid(p, PIDTYPE_SID, p->signal->session);
1102
		if (p->pid)
1103
			__get_cpu_var(process_counts)++;
1104 1105
	} else
		link_pid(p, p->pids + PIDTYPE_TGID, &p->group_leader->pids[PIDTYPE_TGID].pid);
1106

Linus Torvalds's avatar
Linus Torvalds committed
1107 1108
	nr_threads++;
	write_unlock_irq(&tasklist_lock);
Rusty Russell's avatar
Rusty Russell committed
1109
	retval = 0;
Linus Torvalds's avatar
Linus Torvalds committed
1110 1111

fork_out:
Rusty Russell's avatar
Rusty Russell committed
1112 1113 1114
	if (retval)
		return ERR_PTR(retval);
	return p;
Linus Torvalds's avatar
Linus Torvalds committed
1115

Linus Torvalds's avatar
Linus Torvalds committed
1116 1117
bad_fork_cleanup_namespace:
	exit_namespace(p);
Linus Torvalds's avatar
Linus Torvalds committed
1118 1119
bad_fork_cleanup_mm:
	exit_mm(p);
1120 1121
	if (p->active_mm)
		mmdrop(p->active_mm);
1122 1123
bad_fork_cleanup_signal:
	exit_signal(p);
Linus Torvalds's avatar
Linus Torvalds committed
1124 1125 1126 1127 1128 1129
bad_fork_cleanup_sighand:
	exit_sighand(p);
bad_fork_cleanup_fs:
	exit_fs(p); /* blocking */
bad_fork_cleanup_files:
	exit_files(p); /* blocking */
Dave Olien's avatar
Dave Olien committed
1130
bad_fork_cleanup_semundo:
Andrew Morton's avatar
Andrew Morton committed
1131
	exit_sem(p);
1132 1133
bad_fork_cleanup_audit:
	audit_free(p);
1134
bad_fork_cleanup_security:
1135
	security_task_free(p);
1136
bad_fork_cleanup_policy:
1137
#ifdef CONFIG_NUMA
1138
	mpol_free(p->mempolicy);
1139
#endif
Linus Torvalds's avatar
Linus Torvalds committed
1140
bad_fork_cleanup:
1141 1142
	if (p->pid > 0)
		free_pidmap(p->pid);
1143 1144 1145 1146
	if (p->binfmt)
		module_put(p->binfmt->module);
bad_fork_cleanup_put_domain:
	module_put(p->thread_info->exec_domain->module);
Linus Torvalds's avatar
Linus Torvalds committed
1147
bad_fork_cleanup_count:
1148
	put_group_info(p->group_info);
Linus Torvalds's avatar
Linus Torvalds committed
1149 1150 1151
	atomic_dec(&p->user->processes);
	free_uid(p->user);
bad_fork_free:
1152
	free_task(p);
Linus Torvalds's avatar
Linus Torvalds committed
1153 1154 1155
	goto fork_out;
}

1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
task_t * __init fork_idle(int cpu)
{
	task_t *task;
	struct pt_regs regs;

	memset(&regs, 0, sizeof(struct pt_regs));
	task = copy_process(CLONE_VM|CLONE_IDLETASK, 0, &regs, 0, NULL, NULL);
	if (!task)
		return ERR_PTR(-ENOMEM);
	init_idle(task, cpu);
	unhash_process(task);
	return task;
}

1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
static inline int fork_traceflag (unsigned clone_flags)
{
	if (clone_flags & (CLONE_UNTRACED | CLONE_IDLETASK))
		return 0;
	else if (clone_flags & CLONE_VFORK) {
		if (current->ptrace & PT_TRACE_VFORK)
			return PTRACE_EVENT_VFORK;
	} else if ((clone_flags & CSIGNAL) != SIGCHLD) {
		if (current->ptrace & PT_TRACE_CLONE)
			return PTRACE_EVENT_CLONE;
	} else if (current->ptrace & PT_TRACE_FORK)
		return PTRACE_EVENT_FORK;

	return 0;
}

1186 1187 1188 1189 1190 1191
/*
 *  Ok, this is the main fork-routine.
 *
 * It copies the process, and if successful kick-starts
 * it and waits for it to finish using the VM if required.
 */
1192 1193 1194 1195 1196 1197
long do_fork(unsigned long clone_flags,
	      unsigned long stack_start,
	      struct pt_regs *regs,
	      unsigned long stack_size,
	      int __user *parent_tidptr,
	      int __user *child_tidptr)
1198 1199
{
	struct task_struct *p;
1200
	int trace = 0;
1201
	long pid;
1202 1203 1204 1205 1206 1207

	if (unlikely(current->ptrace)) {
		trace = fork_traceflag (clone_flags);
		if (trace)
			clone_flags |= CLONE_PTRACE;
	}
1208

1209
	p = copy_process(clone_flags, stack_start, regs, stack_size, parent_tidptr, child_tidptr);
1210 1211 1212 1213 1214 1215
	/*
	 * Do this prior waking up the new thread - the thread pointer
	 * might get invalid after that point, if the thread exits quickly.
	 */
	pid = IS_ERR(p) ? PTR_ERR(p) : p->pid;

1216 1217 1218 1219 1220 1221 1222 1223
	if (!IS_ERR(p)) {
		struct completion vfork;

		if (clone_flags & CLONE_VFORK) {
			p->vfork_done = &vfork;
			init_completion(&vfork);
		}

Andrew Morton's avatar
Andrew Morton committed
1224
		if ((p->ptrace & PT_PTRACED) || (clone_flags & CLONE_STOPPED)) {
Ingo Molnar's avatar
Ingo Molnar committed
1225 1226 1227 1228 1229 1230
			/*
			 * We'll start up with an immediate SIGSTOP.
			 */
			sigaddset(&p->pending.signal, SIGSTOP);
			set_tsk_thread_flag(p, TIF_SIGPENDING);
		}
1231

Nick Piggin's avatar
Nick Piggin committed
1232 1233 1234 1235 1236 1237 1238
		if (likely(!(clone_flags & CLONE_IDLETASK))) {
			if (!(clone_flags & CLONE_STOPPED))
				wake_up_new_task(p, clone_flags);
			else
				p->state = TASK_STOPPED;
			++total_forks;
		}
1239 1240

		if (unlikely (trace)) {
1241
			current->ptrace_message = pid;
1242 1243 1244
			ptrace_notify ((trace << 8) | SIGTRAP);
		}

1245
		if (clone_flags & CLONE_VFORK) {
1246
			wait_for_completion(&vfork);
1247 1248
			if (unlikely (current->ptrace & PT_TRACE_VFORK_DONE))
				ptrace_notify ((PTRACE_EVENT_VFORK_DONE << 8) | SIGTRAP);
1249
		}
1250
	}
1251
	return pid;
1252 1253
}

1254 1255 1256 1257 1258
/* SLAB cache for signal_struct structures (tsk->signal) */
kmem_cache_t *signal_cachep;

/* SLAB cache for sighand_struct structures (tsk->sighand) */
kmem_cache_t *sighand_cachep;
Linus Torvalds's avatar
Linus Torvalds committed
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273

/* SLAB cache for files_struct structures (tsk->files) */
kmem_cache_t *files_cachep;

/* SLAB cache for fs_struct structures (tsk->fs) */
kmem_cache_t *fs_cachep;

/* SLAB cache for vm_area_struct structures */
kmem_cache_t *vm_area_cachep;

/* SLAB cache for mm_struct structures (tsk->mm) */
kmem_cache_t *mm_cachep;

void __init proc_caches_init(void)
{
1274 1275
	sighand_cachep = kmem_cache_create("sighand_cache",
			sizeof(struct sighand_struct), 0,
1276
			SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL, NULL);
1277
	signal_cachep = kmem_cache_create("signal_cache",
Linus Torvalds's avatar
Linus Torvalds committed
1278
			sizeof(struct signal_struct), 0,
1279
			SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL, NULL);
Linus Torvalds's avatar
Linus Torvalds committed
1280
	files_cachep = kmem_cache_create("files_cache", 
1281 1282
			sizeof(struct files_struct), 0,
			SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL, NULL);
Linus Torvalds's avatar
Linus Torvalds committed
1283
	fs_cachep = kmem_cache_create("fs_cache", 
1284 1285
			sizeof(struct fs_struct), 0,
			SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL, NULL);
Linus Torvalds's avatar
Linus Torvalds committed
1286 1287
	vm_area_cachep = kmem_cache_create("vm_area_struct",
			sizeof(struct vm_area_struct), 0,
1288
			SLAB_PANIC, NULL, NULL);
Linus Torvalds's avatar
Linus Torvalds committed
1289 1290
	mm_cachep = kmem_cache_create("mm_struct",
			sizeof(struct mm_struct), 0,
1291
			SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL, NULL);
Linus Torvalds's avatar
Linus Torvalds committed
1292
}