Merge tag 'v3.10.61' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / fork.c
CommitLineData
1da177e4
LT
1/*
2 * linux/kernel/fork.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * 'fork.c' contains the help-routines for the 'fork' system call
9 * (see also entry.S and others).
10 * Fork is rather simple, once you get the hang of it, but the memory
11 * management can be a bitch. See 'mm/memory.c': 'copy_page_range()'
12 */
13
1da177e4
LT
14#include <linux/slab.h>
15#include <linux/init.h>
16#include <linux/unistd.h>
1da177e4
LT
17#include <linux/module.h>
18#include <linux/vmalloc.h>
19#include <linux/completion.h>
1da177e4
LT
20#include <linux/personality.h>
21#include <linux/mempolicy.h>
22#include <linux/sem.h>
23#include <linux/file.h>
9f3acc31 24#include <linux/fdtable.h>
da9cbc87 25#include <linux/iocontext.h>
1da177e4
LT
26#include <linux/key.h>
27#include <linux/binfmts.h>
28#include <linux/mman.h>
cddb8a5c 29#include <linux/mmu_notifier.h>
1da177e4 30#include <linux/fs.h>
ab516013 31#include <linux/nsproxy.h>
c59ede7b 32#include <linux/capability.h>
1da177e4 33#include <linux/cpu.h>
b4f48b63 34#include <linux/cgroup.h>
1da177e4 35#include <linux/security.h>
a1e78772 36#include <linux/hugetlb.h>
e2cfabdf 37#include <linux/seccomp.h>
1da177e4
LT
38#include <linux/swap.h>
39#include <linux/syscalls.h>
40#include <linux/jiffies.h>
41#include <linux/futex.h>
8141c7f3 42#include <linux/compat.h>
207205a2 43#include <linux/kthread.h>
7c3ab738 44#include <linux/task_io_accounting_ops.h>
ab2af1f5 45#include <linux/rcupdate.h>
1da177e4
LT
46#include <linux/ptrace.h>
47#include <linux/mount.h>
48#include <linux/audit.h>
78fb7466 49#include <linux/memcontrol.h>
f201ae23 50#include <linux/ftrace.h>
5e2bf014 51#include <linux/proc_fs.h>
1da177e4
LT
52#include <linux/profile.h>
53#include <linux/rmap.h>
f8af4da3 54#include <linux/ksm.h>
1da177e4 55#include <linux/acct.h>
8f0ab514 56#include <linux/tsacct_kern.h>
9f46080c 57#include <linux/cn_proc.h>
ba96a0c8 58#include <linux/freezer.h>
ca74e92b 59#include <linux/delayacct.h>
ad4ecbcb 60#include <linux/taskstats_kern.h>
0a425405 61#include <linux/random.h>
522ed776 62#include <linux/tty.h>
fd0928df 63#include <linux/blkdev.h>
5ad4e53b 64#include <linux/fs_struct.h>
7c9f8861 65#include <linux/magic.h>
cdd6c482 66#include <linux/perf_event.h>
42c4ab41 67#include <linux/posix-timers.h>
8e7cac79 68#include <linux/user-return-notifier.h>
3d5992d2 69#include <linux/oom.h>
ba76149f 70#include <linux/khugepaged.h>
d80e731e 71#include <linux/signalfd.h>
0326f5a9 72#include <linux/uprobes.h>
a27bb332 73#include <linux/aio.h>
1da177e4
LT
74
75#include <asm/pgtable.h>
76#include <asm/pgalloc.h>
77#include <asm/uaccess.h>
78#include <asm/mmu_context.h>
79#include <asm/cacheflush.h>
80#include <asm/tlbflush.h>
81
ad8d75ff
SR
82#include <trace/events/sched.h>
83
43d2b113
KH
84#define CREATE_TRACE_POINTS
85#include <trace/events/task.h>
86
6fa3eb70
S
87#ifdef CONFIG_MT_PRIO_TRACER
88# include <linux/prio_tracer.h>
89#endif
90
1da177e4
LT
91/*
92 * Protected counters by write_lock_irq(&tasklist_lock)
93 */
94unsigned long total_forks; /* Handle normal Linux uptimes. */
fb0a685c 95int nr_threads; /* The idle threads do not count.. */
1da177e4
LT
96
97int max_threads; /* tunable limit on nr_threads */
98
99DEFINE_PER_CPU(unsigned long, process_counts) = 0;
100
c59923a1 101__cacheline_aligned DEFINE_RWLOCK(tasklist_lock); /* outer */
db1466b3
PM
102
103#ifdef CONFIG_PROVE_RCU
104int lockdep_tasklist_lock_is_held(void)
105{
106 return lockdep_is_held(&tasklist_lock);
107}
108EXPORT_SYMBOL_GPL(lockdep_tasklist_lock_is_held);
109#endif /* #ifdef CONFIG_PROVE_RCU */
1da177e4
LT
110
111int nr_processes(void)
112{
113 int cpu;
114 int total = 0;
115
1d510750 116 for_each_possible_cpu(cpu)
1da177e4
LT
117 total += per_cpu(process_counts, cpu);
118
119 return total;
120}
121
f19b9f74
AM
122void __weak arch_release_task_struct(struct task_struct *tsk)
123{
124}
125
f5e10287 126#ifndef CONFIG_ARCH_TASK_STRUCT_ALLOCATOR
e18b890b 127static struct kmem_cache *task_struct_cachep;
41101809
TG
128
129static inline struct task_struct *alloc_task_struct_node(int node)
130{
131 return kmem_cache_alloc_node(task_struct_cachep, GFP_KERNEL, node);
132}
133
41101809
TG
134static inline void free_task_struct(struct task_struct *tsk)
135{
41101809
TG
136 kmem_cache_free(task_struct_cachep, tsk);
137}
1da177e4
LT
138#endif
139
f19b9f74
AM
140void __weak arch_release_thread_info(struct thread_info *ti)
141{
142}
143
f5e10287 144#ifndef CONFIG_ARCH_THREAD_INFO_ALLOCATOR
41101809 145
0d15d74a
TG
146/*
147 * Allocate pages if THREAD_SIZE is >= PAGE_SIZE, otherwise use a
148 * kmemcache based allocator.
149 */
150# if THREAD_SIZE >= PAGE_SIZE
b6a84016
ED
151static struct thread_info *alloc_thread_info_node(struct task_struct *tsk,
152 int node)
b69c49b7 153{
2ad306b1 154 struct page *page = alloc_pages_node(node, THREADINFO_GFP_ACCOUNTED,
2889f608 155 THREAD_SIZE_ORDER);
b6a84016
ED
156
157 return page ? page_address(page) : NULL;
b69c49b7
FT
158}
159
160static inline void free_thread_info(struct thread_info *ti)
161{
2ad306b1 162 free_memcg_kmem_pages((unsigned long)ti, THREAD_SIZE_ORDER);
b69c49b7 163}
0d15d74a
TG
164# else
165static struct kmem_cache *thread_info_cache;
166
167static struct thread_info *alloc_thread_info_node(struct task_struct *tsk,
168 int node)
169{
170 return kmem_cache_alloc_node(thread_info_cache, THREADINFO_GFP, node);
171}
172
173static void free_thread_info(struct thread_info *ti)
174{
0d15d74a
TG
175 kmem_cache_free(thread_info_cache, ti);
176}
177
178void thread_info_cache_init(void)
179{
180 thread_info_cache = kmem_cache_create("thread_info", THREAD_SIZE,
181 THREAD_SIZE, 0, NULL);
182 BUG_ON(thread_info_cache == NULL);
183}
184# endif
b69c49b7
FT
185#endif
186
1da177e4 187/* SLAB cache for signal_struct structures (tsk->signal) */
e18b890b 188static struct kmem_cache *signal_cachep;
1da177e4
LT
189
190/* SLAB cache for sighand_struct structures (tsk->sighand) */
e18b890b 191struct kmem_cache *sighand_cachep;
1da177e4
LT
192
193/* SLAB cache for files_struct structures (tsk->files) */
e18b890b 194struct kmem_cache *files_cachep;
1da177e4
LT
195
196/* SLAB cache for fs_struct structures (tsk->fs) */
e18b890b 197struct kmem_cache *fs_cachep;
1da177e4
LT
198
199/* SLAB cache for vm_area_struct structures */
e18b890b 200struct kmem_cache *vm_area_cachep;
1da177e4
LT
201
202/* SLAB cache for mm_struct structures (tsk->mm) */
e18b890b 203static struct kmem_cache *mm_cachep;
1da177e4 204
6fa3eb70
S
205/* Notifier list called when a task struct is freed */
206static ATOMIC_NOTIFIER_HEAD(task_free_notifier);
207
c6a7f572
KM
208static void account_kernel_stack(struct thread_info *ti, int account)
209{
210 struct zone *zone = page_zone(virt_to_page(ti));
211
212 mod_zone_page_state(zone, NR_KERNEL_STACK, account);
213}
214
1da177e4
LT
215void free_task(struct task_struct *tsk)
216{
c6a7f572 217 account_kernel_stack(tsk->stack, -1);
f19b9f74 218 arch_release_thread_info(tsk->stack);
f7e4217b 219 free_thread_info(tsk->stack);
23f78d4a 220 rt_mutex_debug_task_free(tsk);
fb52607a 221 ftrace_graph_exit_task(tsk);
e2cfabdf 222 put_seccomp_filter(tsk);
f19b9f74 223 arch_release_task_struct(tsk);
1da177e4
LT
224 free_task_struct(tsk);
225}
226EXPORT_SYMBOL(free_task);
227
ea6d290c
ON
228static inline void free_signal_struct(struct signal_struct *sig)
229{
97101eb4 230 taskstats_tgid_free(sig);
1c5354de 231 sched_autogroup_exit(sig);
ea6d290c
ON
232 kmem_cache_free(signal_cachep, sig);
233}
234
235static inline void put_signal_struct(struct signal_struct *sig)
236{
1c5354de 237 if (atomic_dec_and_test(&sig->sigcnt))
ea6d290c
ON
238 free_signal_struct(sig);
239}
240
6fa3eb70
S
241int task_free_register(struct notifier_block *n)
242{
243 return atomic_notifier_chain_register(&task_free_notifier, n);
244}
245EXPORT_SYMBOL(task_free_register);
246
247int task_free_unregister(struct notifier_block *n)
248{
249 return atomic_notifier_chain_unregister(&task_free_notifier, n);
250}
251EXPORT_SYMBOL(task_free_unregister);
252
158d9ebd 253void __put_task_struct(struct task_struct *tsk)
1da177e4 254{
270f722d 255 WARN_ON(!tsk->exit_state);
1da177e4
LT
256 WARN_ON(atomic_read(&tsk->usage));
257 WARN_ON(tsk == current);
258
1a2a4d06 259 security_task_free(tsk);
e0e81739 260 exit_creds(tsk);
35df17c5 261 delayacct_tsk_free(tsk);
ea6d290c 262 put_signal_struct(tsk->signal);
1da177e4 263
6fa3eb70 264 atomic_notifier_call_chain(&task_free_notifier, 0, tsk);
1da177e4
LT
265 if (!profile_handoff_task(tsk))
266 free_task(tsk);
267}
77c100c8 268EXPORT_SYMBOL_GPL(__put_task_struct);
1da177e4 269
6c0a9fa6 270void __init __weak arch_task_cache_init(void) { }
61c4628b 271
1da177e4
LT
272void __init fork_init(unsigned long mempages)
273{
f5e10287 274#ifndef CONFIG_ARCH_TASK_STRUCT_ALLOCATOR
1da177e4
LT
275#ifndef ARCH_MIN_TASKALIGN
276#define ARCH_MIN_TASKALIGN L1_CACHE_BYTES
277#endif
278 /* create a slab on which task_structs can be allocated */
279 task_struct_cachep =
280 kmem_cache_create("task_struct", sizeof(struct task_struct),
2dff4405 281 ARCH_MIN_TASKALIGN, SLAB_PANIC | SLAB_NOTRACK, NULL);
1da177e4
LT
282#endif
283
61c4628b
SS
284 /* do the arch specific task caches init */
285 arch_task_cache_init();
286
1da177e4
LT
287 /*
288 * The default maximum number of threads is set to a safe
289 * value: the thread structures can take up at most half
290 * of memory.
291 */
292 max_threads = mempages / (8 * THREAD_SIZE / PAGE_SIZE);
293
294 /*
295 * we need to allow at least 20 threads to boot a system
296 */
fb0a685c 297 if (max_threads < 20)
1da177e4
LT
298 max_threads = 20;
299
300 init_task.signal->rlim[RLIMIT_NPROC].rlim_cur = max_threads/2;
301 init_task.signal->rlim[RLIMIT_NPROC].rlim_max = max_threads/2;
302 init_task.signal->rlim[RLIMIT_SIGPENDING] =
303 init_task.signal->rlim[RLIMIT_NPROC];
304}
305
61c4628b
SS
306int __attribute__((weak)) arch_dup_task_struct(struct task_struct *dst,
307 struct task_struct *src)
308{
309 *dst = *src;
310 return 0;
311}
312
1da177e4
LT
313static struct task_struct *dup_task_struct(struct task_struct *orig)
314{
315 struct task_struct *tsk;
316 struct thread_info *ti;
7c9f8861 317 unsigned long *stackend;
207205a2 318 int node = tsk_fork_get_node(orig);
3e26c149 319 int err;
1da177e4 320
504f52b5 321 tsk = alloc_task_struct_node(node);
6fa3eb70
S
322 if (!tsk){
323 printk("[%d:%s] fork fail at alloc_tsk_node, please check kmem_cache_alloc_node()\n", current->pid, current->comm);
1da177e4 324 return NULL;
6fa3eb70 325 }
b6a84016 326 ti = alloc_thread_info_node(tsk, node);
6fa3eb70
S
327 if (!ti) {
328 printk("[%d:%s] fork fail at alloc_t_info_node, please check alloc_pages_node()\n", current->pid, current->comm);
f19b9f74 329 goto free_tsk;
6fa3eb70 330 }
1da177e4 331
fb0a685c 332 err = arch_dup_task_struct(tsk, orig);
6fa3eb70
S
333 if (err){
334 printk("[%d:%s] fork fail at arch_dup_task_struct, err:%d \n", current->pid, current->comm, err);
f19b9f74 335 goto free_ti;
6fa3eb70 336 }
87bec58a 337 tsk->stack = ti;
6fa3eb70
S
338#ifdef CONFIG_SECCOMP
339 /*
340 * We must handle setting up seccomp filters once we're under
341 * the sighand lock in case orig has changed between now and
342 * then. Until then, filter must be NULL to avoid messing up
343 * the usage counts on the error path calling free_task.
344 */
345 tsk->seccomp.filter = NULL;
346#endif
87bec58a
AM
347
348 setup_thread_stack(tsk, orig);
8e7cac79 349 clear_user_return_notifier(tsk);
f26f9aff 350 clear_tsk_need_resched(tsk);
7c9f8861
ES
351 stackend = end_of_stack(tsk);
352 *stackend = STACK_END_MAGIC; /* for overflow detection */
1da177e4 353
0a425405
AV
354#ifdef CONFIG_CC_STACKPROTECTOR
355 tsk->stack_canary = get_random_int();
356#endif
357
fb0a685c
DRO
358 /*
359 * One for us, one for whoever does the "release_task()" (usually
360 * parent)
361 */
362 atomic_set(&tsk->usage, 2);
6c5c9341 363#ifdef CONFIG_BLK_DEV_IO_TRACE
2056a782 364 tsk->btrace_seq = 0;
6c5c9341 365#endif
a0aa7f68 366 tsk->splice_pipe = NULL;
5640f768 367 tsk->task_frag.page = NULL;
c6a7f572
KM
368
369 account_kernel_stack(ti, 1);
370
1da177e4 371 return tsk;
61c4628b 372
f19b9f74 373free_ti:
61c4628b 374 free_thread_info(ti);
f19b9f74 375free_tsk:
61c4628b
SS
376 free_task_struct(tsk);
377 return NULL;
1da177e4
LT
378}
379
380#ifdef CONFIG_MMU
a39bc516 381static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
1da177e4 382{
297c5eee 383 struct vm_area_struct *mpnt, *tmp, *prev, **pprev;
1da177e4
LT
384 struct rb_node **rb_link, *rb_parent;
385 int retval;
386 unsigned long charge;
387 struct mempolicy *pol;
388
32cdba1e 389 uprobe_start_dup_mmap();
1da177e4 390 down_write(&oldmm->mmap_sem);
ec8c0446 391 flush_cache_dup_mm(oldmm);
f8ac4ec9 392 uprobe_dup_mmap(oldmm, mm);
ad339451
IM
393 /*
394 * Not linked in yet - no deadlock potential:
395 */
396 down_write_nested(&mm->mmap_sem, SINGLE_DEPTH_NESTING);
7ee78232 397
1da177e4
LT
398 mm->locked_vm = 0;
399 mm->mmap = NULL;
400 mm->mmap_cache = NULL;
401 mm->free_area_cache = oldmm->mmap_base;
1363c3cd 402 mm->cached_hole_size = ~0UL;
1da177e4 403 mm->map_count = 0;
94894244 404 cpumask_clear(mm_cpumask(mm));
1da177e4
LT
405 mm->mm_rb = RB_ROOT;
406 rb_link = &mm->mm_rb.rb_node;
407 rb_parent = NULL;
408 pprev = &mm->mmap;
f8af4da3 409 retval = ksm_fork(mm, oldmm);
ba76149f
AA
410 if (retval)
411 goto out;
412 retval = khugepaged_fork(mm, oldmm);
f8af4da3
HD
413 if (retval)
414 goto out;
1da177e4 415
297c5eee 416 prev = NULL;
fd3e42fc 417 for (mpnt = oldmm->mmap; mpnt; mpnt = mpnt->vm_next) {
1da177e4
LT
418 struct file *file;
419
420 if (mpnt->vm_flags & VM_DONTCOPY) {
ab50b8ed 421 vm_stat_account(mm, mpnt->vm_flags, mpnt->vm_file,
44de9d0c 422 -vma_pages(mpnt));
1da177e4
LT
423 continue;
424 }
425 charge = 0;
426 if (mpnt->vm_flags & VM_ACCOUNT) {
b2412b7f
HS
427 unsigned long len = vma_pages(mpnt);
428
191c5424 429 if (security_vm_enough_memory_mm(oldmm, len)) /* sic */
1da177e4
LT
430 goto fail_nomem;
431 charge = len;
432 }
e94b1766 433 tmp = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL);
1da177e4
LT
434 if (!tmp)
435 goto fail_nomem;
436 *tmp = *mpnt;
5beb4930 437 INIT_LIST_HEAD(&tmp->anon_vma_chain);
846a16bf 438 pol = mpol_dup(vma_policy(mpnt));
1da177e4
LT
439 retval = PTR_ERR(pol);
440 if (IS_ERR(pol))
441 goto fail_nomem_policy;
442 vma_set_policy(tmp, pol);
a247c3a9 443 tmp->vm_mm = mm;
5beb4930
RR
444 if (anon_vma_fork(tmp, mpnt))
445 goto fail_nomem_anon_vma_fork;
1da177e4 446 tmp->vm_flags &= ~VM_LOCKED;
297c5eee 447 tmp->vm_next = tmp->vm_prev = NULL;
1da177e4
LT
448 file = tmp->vm_file;
449 if (file) {
496ad9aa 450 struct inode *inode = file_inode(file);
b88ed205
HD
451 struct address_space *mapping = file->f_mapping;
452
1da177e4
LT
453 get_file(file);
454 if (tmp->vm_flags & VM_DENYWRITE)
455 atomic_dec(&inode->i_writecount);
3d48ae45 456 mutex_lock(&mapping->i_mmap_mutex);
b88ed205
HD
457 if (tmp->vm_flags & VM_SHARED)
458 mapping->i_mmap_writable++;
b88ed205
HD
459 flush_dcache_mmap_lock(mapping);
460 /* insert tmp into the share list, just after mpnt */
9826a516
ML
461 if (unlikely(tmp->vm_flags & VM_NONLINEAR))
462 vma_nonlinear_insert(tmp,
463 &mapping->i_mmap_nonlinear);
464 else
465 vma_interval_tree_insert_after(tmp, mpnt,
466 &mapping->i_mmap);
b88ed205 467 flush_dcache_mmap_unlock(mapping);
3d48ae45 468 mutex_unlock(&mapping->i_mmap_mutex);
1da177e4
LT
469 }
470
a1e78772
MG
471 /*
472 * Clear hugetlb-related page reserves for children. This only
473 * affects MAP_PRIVATE mappings. Faults generated by the child
474 * are not guaranteed to succeed, even if read-only
475 */
476 if (is_vm_hugetlb_page(tmp))
477 reset_vma_resv_huge_pages(tmp);
478
1da177e4 479 /*
7ee78232 480 * Link in the new vma and copy the page table entries.
1da177e4 481 */
1da177e4
LT
482 *pprev = tmp;
483 pprev = &tmp->vm_next;
297c5eee
LT
484 tmp->vm_prev = prev;
485 prev = tmp;
1da177e4
LT
486
487 __vma_link_rb(mm, tmp, rb_link, rb_parent);
488 rb_link = &tmp->vm_rb.rb_right;
489 rb_parent = &tmp->vm_rb;
490
491 mm->map_count++;
0b0db14c 492 retval = copy_page_range(mm, oldmm, mpnt);
1da177e4
LT
493
494 if (tmp->vm_ops && tmp->vm_ops->open)
495 tmp->vm_ops->open(tmp);
496
497 if (retval)
498 goto out;
499 }
d6dd61c8
JF
500 /* a new mm has just been created */
501 arch_dup_mmap(oldmm, mm);
1da177e4 502 retval = 0;
1da177e4 503out:
7ee78232 504 up_write(&mm->mmap_sem);
fd3e42fc 505 flush_tlb_mm(oldmm);
1da177e4 506 up_write(&oldmm->mmap_sem);
32cdba1e 507 uprobe_end_dup_mmap();
1da177e4 508 return retval;
5beb4930
RR
509fail_nomem_anon_vma_fork:
510 mpol_put(pol);
1da177e4
LT
511fail_nomem_policy:
512 kmem_cache_free(vm_area_cachep, tmp);
513fail_nomem:
514 retval = -ENOMEM;
515 vm_unacct_memory(charge);
516 goto out;
517}
518
fb0a685c 519static inline int mm_alloc_pgd(struct mm_struct *mm)
1da177e4
LT
520{
521 mm->pgd = pgd_alloc(mm);
522 if (unlikely(!mm->pgd))
523 return -ENOMEM;
524 return 0;
525}
526
fb0a685c 527static inline void mm_free_pgd(struct mm_struct *mm)
1da177e4 528{
5e541973 529 pgd_free(mm, mm->pgd);
1da177e4
LT
530}
531#else
532#define dup_mmap(mm, oldmm) (0)
533#define mm_alloc_pgd(mm) (0)
534#define mm_free_pgd(mm)
535#endif /* CONFIG_MMU */
536
23ff4440 537__cacheline_aligned_in_smp DEFINE_SPINLOCK(mmlist_lock);
1da177e4 538
e94b1766 539#define allocate_mm() (kmem_cache_alloc(mm_cachep, GFP_KERNEL))
1da177e4
LT
540#define free_mm(mm) (kmem_cache_free(mm_cachep, (mm)))
541
4cb0e11b
HK
542static unsigned long default_dump_filter = MMF_DUMP_FILTER_DEFAULT;
543
544static int __init coredump_filter_setup(char *s)
545{
546 default_dump_filter =
547 (simple_strtoul(s, NULL, 0) << MMF_DUMP_FILTER_SHIFT) &
548 MMF_DUMP_FILTER_MASK;
549 return 1;
550}
551
552__setup("coredump_filter=", coredump_filter_setup);
553
1da177e4
LT
554#include <linux/init_task.h>
555
858f0993
AD
556static void mm_init_aio(struct mm_struct *mm)
557{
558#ifdef CONFIG_AIO
559 spin_lock_init(&mm->ioctx_lock);
560 INIT_HLIST_HEAD(&mm->ioctx_list);
561#endif
562}
563
fb0a685c 564static struct mm_struct *mm_init(struct mm_struct *mm, struct task_struct *p)
1da177e4
LT
565{
566 atomic_set(&mm->mm_users, 1);
567 atomic_set(&mm->mm_count, 1);
568 init_rwsem(&mm->mmap_sem);
569 INIT_LIST_HEAD(&mm->mmlist);
f8af4da3
HD
570 mm->flags = (current->mm) ?
571 (current->mm->flags & MMF_INIT_MASK) : default_dump_filter;
999d9fc1 572 mm->core_state = NULL;
1da177e4 573 mm->nr_ptes = 0;
d559db08 574 memset(&mm->rss_stat, 0, sizeof(mm->rss_stat));
1da177e4 575 spin_lock_init(&mm->page_table_lock);
1da177e4 576 mm->free_area_cache = TASK_UNMAPPED_BASE;
1363c3cd 577 mm->cached_hole_size = ~0UL;
858f0993 578 mm_init_aio(mm);
cf475ad2 579 mm_init_owner(mm, p);
d303cf46 580 clear_tlb_flush_pending(mm);
1da177e4
LT
581
582 if (likely(!mm_alloc_pgd(mm))) {
583 mm->def_flags = 0;
cddb8a5c 584 mmu_notifier_mm_init(mm);
1da177e4
LT
585 return mm;
586 }
78fb7466 587
1da177e4
LT
588 free_mm(mm);
589 return NULL;
590}
591
c3f0327f
KK
592static void check_mm(struct mm_struct *mm)
593{
594 int i;
595
596 for (i = 0; i < NR_MM_COUNTERS; i++) {
597 long x = atomic_long_read(&mm->rss_stat.count[i]);
598
599 if (unlikely(x))
600 printk(KERN_ALERT "BUG: Bad rss-counter state "
601 "mm:%p idx:%d val:%ld\n", mm, i, x);
602 }
603
604#ifdef CONFIG_TRANSPARENT_HUGEPAGE
605 VM_BUG_ON(mm->pmd_huge_pte);
606#endif
607}
608
1da177e4
LT
609/*
610 * Allocate and initialize an mm_struct.
611 */
fb0a685c 612struct mm_struct *mm_alloc(void)
1da177e4 613{
fb0a685c 614 struct mm_struct *mm;
1da177e4
LT
615
616 mm = allocate_mm();
de03c72c
KM
617 if (!mm)
618 return NULL;
619
620 memset(mm, 0, sizeof(*mm));
6345d24d
LT
621 mm_init_cpumask(mm);
622 return mm_init(mm, current);
1da177e4
LT
623}
624
625/*
626 * Called when the last reference to the mm
627 * is dropped: either by a lazy thread or by
628 * mmput. Free the page directory and the mm.
629 */
7ad5b3a5 630void __mmdrop(struct mm_struct *mm)
1da177e4
LT
631{
632 BUG_ON(mm == &init_mm);
633 mm_free_pgd(mm);
634 destroy_context(mm);
cddb8a5c 635 mmu_notifier_mm_destroy(mm);
c3f0327f 636 check_mm(mm);
1da177e4
LT
637 free_mm(mm);
638}
6d4e4c4f 639EXPORT_SYMBOL_GPL(__mmdrop);
1da177e4
LT
640
641/*
642 * Decrement the use count and release all resources for an mm.
643 */
644void mmput(struct mm_struct *mm)
645{
0ae26f1b
AM
646 might_sleep();
647
1da177e4 648 if (atomic_dec_and_test(&mm->mm_users)) {
d4b3b638 649 uprobe_clear_state(mm);
1da177e4 650 exit_aio(mm);
1c2fb7a4 651 ksm_exit(mm);
ba76149f 652 khugepaged_exit(mm); /* must run before exit_mmap */
1da177e4 653 exit_mmap(mm);
925d1c40 654 set_mm_exe_file(mm, NULL);
1da177e4
LT
655 if (!list_empty(&mm->mmlist)) {
656 spin_lock(&mmlist_lock);
657 list_del(&mm->mmlist);
658 spin_unlock(&mmlist_lock);
659 }
801460d0
HS
660 if (mm->binfmt)
661 module_put(mm->binfmt->module);
1da177e4
LT
662 mmdrop(mm);
663 }
664}
665EXPORT_SYMBOL_GPL(mmput);
666
38646013
JS
667void set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file)
668{
669 if (new_exe_file)
670 get_file(new_exe_file);
671 if (mm->exe_file)
672 fput(mm->exe_file);
673 mm->exe_file = new_exe_file;
38646013
JS
674}
675
676struct file *get_mm_exe_file(struct mm_struct *mm)
677{
678 struct file *exe_file;
679
2dd8ad81 680 /* We need mmap_sem to protect against races with removal of exe_file */
38646013
JS
681 down_read(&mm->mmap_sem);
682 exe_file = mm->exe_file;
683 if (exe_file)
684 get_file(exe_file);
685 up_read(&mm->mmap_sem);
686 return exe_file;
687}
688
689static void dup_mm_exe_file(struct mm_struct *oldmm, struct mm_struct *newmm)
690{
691 /* It's safe to write the exe_file pointer without exe_file_lock because
692 * this is called during fork when the task is not yet in /proc */
693 newmm->exe_file = get_mm_exe_file(oldmm);
694}
695
1da177e4
LT
696/**
697 * get_task_mm - acquire a reference to the task's mm
698 *
246bb0b1 699 * Returns %NULL if the task has no mm. Checks PF_KTHREAD (meaning
1da177e4
LT
700 * this kernel workthread has transiently adopted a user mm with use_mm,
701 * to do its AIO) is not set and if so returns a reference to it, after
702 * bumping up the use count. User must release the mm via mmput()
703 * after use. Typically used by /proc and ptrace.
704 */
705struct mm_struct *get_task_mm(struct task_struct *task)
706{
707 struct mm_struct *mm;
708
709 task_lock(task);
710 mm = task->mm;
711 if (mm) {
246bb0b1 712 if (task->flags & PF_KTHREAD)
1da177e4
LT
713 mm = NULL;
714 else
715 atomic_inc(&mm->mm_users);
716 }
717 task_unlock(task);
718 return mm;
719}
720EXPORT_SYMBOL_GPL(get_task_mm);
721
8cdb878d
CY
722struct mm_struct *mm_access(struct task_struct *task, unsigned int mode)
723{
724 struct mm_struct *mm;
725 int err;
726
727 err = mutex_lock_killable(&task->signal->cred_guard_mutex);
728 if (err)
729 return ERR_PTR(err);
730
731 mm = get_task_mm(task);
732 if (mm && mm != current->mm &&
6fa3eb70
S
733 !ptrace_may_access(task, mode) &&
734 !capable(CAP_SYS_RESOURCE)) {
8cdb878d
CY
735 mmput(mm);
736 mm = ERR_PTR(-EACCES);
737 }
738 mutex_unlock(&task->signal->cred_guard_mutex);
739
740 return mm;
741}
742
57b59c4a 743static void complete_vfork_done(struct task_struct *tsk)
c415c3b4 744{
d68b46fe 745 struct completion *vfork;
c415c3b4 746
d68b46fe
ON
747 task_lock(tsk);
748 vfork = tsk->vfork_done;
749 if (likely(vfork)) {
750 tsk->vfork_done = NULL;
751 complete(vfork);
752 }
753 task_unlock(tsk);
754}
755
756static int wait_for_vfork_done(struct task_struct *child,
757 struct completion *vfork)
758{
759 int killed;
760
761 freezer_do_not_count();
762 killed = wait_for_completion_killable(vfork);
763 freezer_count();
764
765 if (killed) {
766 task_lock(child);
767 child->vfork_done = NULL;
768 task_unlock(child);
769 }
770
771 put_task_struct(child);
772 return killed;
c415c3b4
ON
773}
774
1da177e4
LT
775/* Please note the differences between mmput and mm_release.
776 * mmput is called whenever we stop holding onto a mm_struct,
777 * error success whatever.
778 *
779 * mm_release is called after a mm_struct has been removed
780 * from the current process.
781 *
782 * This difference is important for error handling, when we
783 * only half set up a mm_struct for a new process and need to restore
784 * the old one. Because we mmput the new mm_struct before
785 * restoring the old one. . .
786 * Eric Biederman 10 January 1998
787 */
788void mm_release(struct task_struct *tsk, struct mm_struct *mm)
789{
8141c7f3
LT
790 /* Get rid of any futexes when releasing the mm */
791#ifdef CONFIG_FUTEX
fc6b177d 792 if (unlikely(tsk->robust_list)) {
8141c7f3 793 exit_robust_list(tsk);
fc6b177d
PZ
794 tsk->robust_list = NULL;
795 }
8141c7f3 796#ifdef CONFIG_COMPAT
fc6b177d 797 if (unlikely(tsk->compat_robust_list)) {
8141c7f3 798 compat_exit_robust_list(tsk);
fc6b177d
PZ
799 tsk->compat_robust_list = NULL;
800 }
8141c7f3 801#endif
322a2c10
TG
802 if (unlikely(!list_empty(&tsk->pi_state_list)))
803 exit_pi_state_list(tsk);
8141c7f3
LT
804#endif
805
0326f5a9
SD
806 uprobe_free_utask(tsk);
807
1da177e4
LT
808 /* Get rid of any cached register state */
809 deactivate_mm(tsk, mm);
810
fec1d011
RM
811 /*
812 * If we're exiting normally, clear a user-space tid field if
813 * requested. We leave this alone when dying by signal, to leave
814 * the value intact in a core dump, and to save the unnecessary
d68b46fe
ON
815 * trouble, say, a killed vfork parent shouldn't touch this mm.
816 * Userland only wants this done for a sys_exit.
fec1d011 817 */
9c8a8228
ED
818 if (tsk->clear_child_tid) {
819 if (!(tsk->flags & PF_SIGNALED) &&
820 atomic_read(&mm->mm_users) > 1) {
821 /*
822 * We don't check the error code - if userspace has
823 * not set up a proper pointer then tough luck.
824 */
825 put_user(0, tsk->clear_child_tid);
826 sys_futex(tsk->clear_child_tid, FUTEX_WAKE,
827 1, NULL, NULL, 0);
828 }
1da177e4 829 tsk->clear_child_tid = NULL;
1da177e4 830 }
f7505d64
KK
831
832 /*
833 * All done, finally we can wake up parent and return this mm to him.
834 * Also kthread_stop() uses this completion for synchronization.
835 */
836 if (tsk->vfork_done)
837 complete_vfork_done(tsk);
1da177e4
LT
838}
839
a0a7ec30
JD
840/*
841 * Allocate a new mm structure and copy contents from the
842 * mm structure of the passed in task structure.
843 */
402b0862 844struct mm_struct *dup_mm(struct task_struct *tsk)
a0a7ec30
JD
845{
846 struct mm_struct *mm, *oldmm = current->mm;
847 int err;
848
849 if (!oldmm)
850 return NULL;
851
852 mm = allocate_mm();
853 if (!mm)
854 goto fail_nomem;
855
856 memcpy(mm, oldmm, sizeof(*mm));
6345d24d 857 mm_init_cpumask(mm);
a0a7ec30 858
e7a00c45
AA
859#ifdef CONFIG_TRANSPARENT_HUGEPAGE
860 mm->pmd_huge_pte = NULL;
5bca2303
MG
861#endif
862#ifdef CONFIG_NUMA_BALANCING
863 mm->first_nid = NUMA_PTE_SCAN_INIT;
e7a00c45 864#endif
78fb7466 865 if (!mm_init(mm, tsk))
a0a7ec30
JD
866 goto fail_nomem;
867
868 if (init_new_context(tsk, mm))
869 goto fail_nocontext;
870
925d1c40
MH
871 dup_mm_exe_file(oldmm, mm);
872
a0a7ec30
JD
873 err = dup_mmap(mm, oldmm);
874 if (err)
875 goto free_pt;
876
877 mm->hiwater_rss = get_mm_rss(mm);
878 mm->hiwater_vm = mm->total_vm;
879
801460d0
HS
880 if (mm->binfmt && !try_module_get(mm->binfmt->module))
881 goto free_pt;
882
a0a7ec30
JD
883 return mm;
884
885free_pt:
801460d0
HS
886 /* don't put binfmt in mmput, we haven't got module yet */
887 mm->binfmt = NULL;
a0a7ec30
JD
888 mmput(mm);
889
890fail_nomem:
891 return NULL;
892
893fail_nocontext:
894 /*
895 * If init_new_context() failed, we cannot use mmput() to free the mm
896 * because it calls destroy_context()
897 */
898 mm_free_pgd(mm);
899 free_mm(mm);
900 return NULL;
901}
902
fb0a685c 903static int copy_mm(unsigned long clone_flags, struct task_struct *tsk)
1da177e4 904{
fb0a685c 905 struct mm_struct *mm, *oldmm;
1da177e4
LT
906 int retval;
907
908 tsk->min_flt = tsk->maj_flt = 0;
6fa3eb70
S
909#ifdef CONFIG_ZRAM
910 tsk->fm_flt = tsk->swap_in = tsk->swap_out = 0;
911#endif
1da177e4 912 tsk->nvcsw = tsk->nivcsw = 0;
17406b82
MSB
913#ifdef CONFIG_DETECT_HUNG_TASK
914 tsk->last_switch_count = tsk->nvcsw + tsk->nivcsw;
915#endif
1da177e4
LT
916
917 tsk->mm = NULL;
918 tsk->active_mm = NULL;
919
920 /*
921 * Are we cloning a kernel thread?
922 *
923 * We need to steal a active VM for that..
924 */
925 oldmm = current->mm;
926 if (!oldmm)
927 return 0;
928
929 if (clone_flags & CLONE_VM) {
930 atomic_inc(&oldmm->mm_users);
931 mm = oldmm;
1da177e4
LT
932 goto good_mm;
933 }
934
935 retval = -ENOMEM;
a0a7ec30 936 mm = dup_mm(tsk);
1da177e4
LT
937 if (!mm)
938 goto fail_nomem;
939
1da177e4
LT
940good_mm:
941 tsk->mm = mm;
942 tsk->active_mm = mm;
943 return 0;
944
1da177e4
LT
945fail_nomem:
946 return retval;
1da177e4
LT
947}
948
a39bc516 949static int copy_fs(unsigned long clone_flags, struct task_struct *tsk)
1da177e4 950{
498052bb 951 struct fs_struct *fs = current->fs;
1da177e4 952 if (clone_flags & CLONE_FS) {
498052bb 953 /* tsk->fs is already what we want */
2a4419b5 954 spin_lock(&fs->lock);
498052bb 955 if (fs->in_exec) {
2a4419b5 956 spin_unlock(&fs->lock);
498052bb
AV
957 return -EAGAIN;
958 }
959 fs->users++;
2a4419b5 960 spin_unlock(&fs->lock);
1da177e4
LT
961 return 0;
962 }
498052bb 963 tsk->fs = copy_fs_struct(fs);
1da177e4
LT
964 if (!tsk->fs)
965 return -ENOMEM;
966 return 0;
967}
968
fb0a685c 969static int copy_files(unsigned long clone_flags, struct task_struct *tsk)
a016f338
JD
970{
971 struct files_struct *oldf, *newf;
972 int error = 0;
973
974 /*
975 * A background process may not have any files ...
976 */
977 oldf = current->files;
978 if (!oldf)
979 goto out;
980
981 if (clone_flags & CLONE_FILES) {
982 atomic_inc(&oldf->count);
983 goto out;
984 }
985
a016f338
JD
986 newf = dup_fd(oldf, &error);
987 if (!newf)
988 goto out;
989
990 tsk->files = newf;
991 error = 0;
992out:
993 return error;
994}
995
fadad878 996static int copy_io(unsigned long clone_flags, struct task_struct *tsk)
fd0928df
JA
997{
998#ifdef CONFIG_BLOCK
999 struct io_context *ioc = current->io_context;
6e736be7 1000 struct io_context *new_ioc;
fd0928df
JA
1001
1002 if (!ioc)
1003 return 0;
fadad878
JA
1004 /*
1005 * Share io context with parent, if CLONE_IO is set
1006 */
1007 if (clone_flags & CLONE_IO) {
3d48749d
TH
1008 ioc_task_link(ioc);
1009 tsk->io_context = ioc;
fadad878 1010 } else if (ioprio_valid(ioc->ioprio)) {
6e736be7
TH
1011 new_ioc = get_task_io_context(tsk, GFP_KERNEL, NUMA_NO_NODE);
1012 if (unlikely(!new_ioc))
fd0928df
JA
1013 return -ENOMEM;
1014
6e736be7 1015 new_ioc->ioprio = ioc->ioprio;
11a3122f 1016 put_io_context(new_ioc);
fd0928df
JA
1017 }
1018#endif
1019 return 0;
1020}
1021
a39bc516 1022static int copy_sighand(unsigned long clone_flags, struct task_struct *tsk)
1da177e4
LT
1023{
1024 struct sighand_struct *sig;
1025
60348802 1026 if (clone_flags & CLONE_SIGHAND) {
1da177e4
LT
1027 atomic_inc(&current->sighand->count);
1028 return 0;
1029 }
1030 sig = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
e56d0903 1031 rcu_assign_pointer(tsk->sighand, sig);
1da177e4
LT
1032 if (!sig)
1033 return -ENOMEM;
1da177e4
LT
1034 atomic_set(&sig->count, 1);
1035 memcpy(sig->action, current->sighand->action, sizeof(sig->action));
1036 return 0;
1037}
1038
a7e5328a 1039void __cleanup_sighand(struct sighand_struct *sighand)
c81addc9 1040{
d80e731e
ON
1041 if (atomic_dec_and_test(&sighand->count)) {
1042 signalfd_cleanup(sighand);
c81addc9 1043 kmem_cache_free(sighand_cachep, sighand);
d80e731e 1044 }
c81addc9
ON
1045}
1046
f06febc9
FM
1047
1048/*
1049 * Initialize POSIX timer handling for a thread group.
1050 */
1051static void posix_cpu_timers_init_group(struct signal_struct *sig)
1052{
78d7d407
JS
1053 unsigned long cpu_limit;
1054
f06febc9
FM
1055 /* Thread group counters. */
1056 thread_group_cputime_init(sig);
1057
78d7d407
JS
1058 cpu_limit = ACCESS_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur);
1059 if (cpu_limit != RLIM_INFINITY) {
1060 sig->cputime_expires.prof_exp = secs_to_cputime(cpu_limit);
6279a751
ON
1061 sig->cputimer.running = 1;
1062 }
1063
f06febc9
FM
1064 /* The timer lists. */
1065 INIT_LIST_HEAD(&sig->cpu_timers[0]);
1066 INIT_LIST_HEAD(&sig->cpu_timers[1]);
1067 INIT_LIST_HEAD(&sig->cpu_timers[2]);
1068}
1069
a39bc516 1070static int copy_signal(unsigned long clone_flags, struct task_struct *tsk)
1da177e4
LT
1071{
1072 struct signal_struct *sig;
1da177e4 1073
4ab6c083 1074 if (clone_flags & CLONE_THREAD)
490dea45 1075 return 0;
490dea45 1076
a56704ef 1077 sig = kmem_cache_zalloc(signal_cachep, GFP_KERNEL);
1da177e4
LT
1078 tsk->signal = sig;
1079 if (!sig)
1080 return -ENOMEM;
1081
b3ac022c 1082 sig->nr_threads = 1;
1da177e4 1083 atomic_set(&sig->live, 1);
b3ac022c 1084 atomic_set(&sig->sigcnt, 1);
6fa3eb70
S
1085
1086 /* list_add(thread_node, thread_head) without INIT_LIST_HEAD() */
1087 sig->thread_head = (struct list_head)LIST_HEAD_INIT(tsk->thread_node);
1088 tsk->thread_node = (struct list_head)LIST_HEAD_INIT(sig->thread_head);
1089
1da177e4 1090 init_waitqueue_head(&sig->wait_chldexit);
db51aecc 1091 sig->curr_target = tsk;
1da177e4
LT
1092 init_sigpending(&sig->shared_pending);
1093 INIT_LIST_HEAD(&sig->posix_timers);
1094
c9cb2e3d 1095 hrtimer_init(&sig->real_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1da177e4 1096 sig->real_timer.function = it_real_fn;
1da177e4 1097
1da177e4
LT
1098 task_lock(current->group_leader);
1099 memcpy(sig->rlim, current->signal->rlim, sizeof sig->rlim);
1100 task_unlock(current->group_leader);
1101
6279a751
ON
1102 posix_cpu_timers_init_group(sig);
1103
522ed776 1104 tty_audit_fork(sig);
5091faa4 1105 sched_autogroup_fork(sig);
522ed776 1106
4714d1d3 1107#ifdef CONFIG_CGROUPS
257058ae 1108 init_rwsem(&sig->group_rwsem);
4714d1d3
BB
1109#endif
1110
a63d83f4 1111 sig->oom_score_adj = current->signal->oom_score_adj;
dabb16f6 1112 sig->oom_score_adj_min = current->signal->oom_score_adj_min;
28b83c51 1113
ebec18a6
LP
1114 sig->has_child_subreaper = current->signal->has_child_subreaper ||
1115 current->signal->is_child_subreaper;
1116
9b1bf12d
KM
1117 mutex_init(&sig->cred_guard_mutex);
1118
1da177e4
LT
1119 return 0;
1120}
1121
a39bc516 1122static void copy_flags(unsigned long clone_flags, struct task_struct *p)
1da177e4
LT
1123{
1124 unsigned long new_flags = p->flags;
1125
21aa9af0 1126 new_flags &= ~(PF_SUPERPRIV | PF_WQ_WORKER);
1da177e4 1127 new_flags |= PF_FORKNOEXEC;
1da177e4
LT
1128 p->flags = new_flags;
1129}
1130
6fa3eb70
S
1131static void copy_seccomp(struct task_struct *p)
1132{
1133#ifdef CONFIG_SECCOMP
1134 /*
1135 * Must be called with sighand->lock held, which is common to
1136 * all threads in the group. Holding cred_guard_mutex is not
1137 * needed because this new task is not yet running and cannot
1138 * be racing exec.
1139 */
1140 assert_spin_locked(&current->sighand->siglock);
1141
1142 /* Ref-count the new filter user, and assign it. */
1143 get_seccomp_filter(current);
1144 p->seccomp = current->seccomp;
1145
1146 /*
1147 * Explicitly enable no_new_privs here in case it got set
1148 * between the task_struct being duplicated and holding the
1149 * sighand lock. The seccomp state and nnp must be in sync.
1150 */
1151 if (task_no_new_privs(current))
1152 task_set_no_new_privs(p);
1153
1154 /*
1155 * If the parent gained a seccomp mode after copying thread
1156 * flags and between before we held the sighand lock, we have
1157 * to manually enable the seccomp thread flag here.
1158 */
1159 if (p->seccomp.mode != SECCOMP_MODE_DISABLED)
1160 set_tsk_thread_flag(p, TIF_SECCOMP);
1161#endif
1162}
1163
17da2bd9 1164SYSCALL_DEFINE1(set_tid_address, int __user *, tidptr)
1da177e4
LT
1165{
1166 current->clear_child_tid = tidptr;
1167
b488893a 1168 return task_pid_vnr(current);
1da177e4
LT
1169}
1170
a39bc516 1171static void rt_mutex_init_task(struct task_struct *p)
23f78d4a 1172{
1d615482 1173 raw_spin_lock_init(&p->pi_lock);
e29e175b 1174#ifdef CONFIG_RT_MUTEXES
732375c6 1175 plist_head_init(&p->pi_waiters);
23f78d4a 1176 p->pi_blocked_on = NULL;
23f78d4a
IM
1177#endif
1178}
1179
cf475ad2
BS
1180#ifdef CONFIG_MM_OWNER
1181void mm_init_owner(struct mm_struct *mm, struct task_struct *p)
1182{
1183 mm->owner = p;
1184}
1185#endif /* CONFIG_MM_OWNER */
1186
f06febc9
FM
1187/*
1188 * Initialize POSIX timer handling for a single task.
1189 */
1190static void posix_cpu_timers_init(struct task_struct *tsk)
1191{
64861634
MS
1192 tsk->cputime_expires.prof_exp = 0;
1193 tsk->cputime_expires.virt_exp = 0;
f06febc9
FM
1194 tsk->cputime_expires.sched_exp = 0;
1195 INIT_LIST_HEAD(&tsk->cpu_timers[0]);
1196 INIT_LIST_HEAD(&tsk->cpu_timers[1]);
1197 INIT_LIST_HEAD(&tsk->cpu_timers[2]);
1198}
1199
6fa3eb70
S
1200#ifdef CONFIG_MTK_SCHED_CMP_TGS
1201static void mt_init_thread_group(struct task_struct *p){
1202#ifdef CONFIG_MT_SCHED_INFO
1203 struct task_struct *tg = p->group_leader;
1204#endif
1205
1206 p->thread_group_info[0].cfs_nr_running = 0;
1207 p->thread_group_info[0].nr_running = 0 ;
1208 p->thread_group_info[0].load_avg_ratio = 0;
1209 p->thread_group_info[1].cfs_nr_running = 0;
1210 p->thread_group_info[1].nr_running = 0;
1211 p->thread_group_info[1].load_avg_ratio = 0;
1212
1213#ifdef CONFIG_MT_SCHED_INFO
1214 mt_sched_printf("fork %d:%s %d:%s %lu %lu %lu, %lu %lu %lu",
1215 tg->pid, tg->comm, p->pid, p->comm,
1216 tg->thread_group_info[0].nr_running,
1217 tg->thread_group_info[0].cfs_nr_running,
1218 tg->thread_group_info[0].load_avg_ratio,
1219 tg->thread_group_info[1].cfs_nr_running,
1220 tg->thread_group_info[1].nr_running,
1221 tg->thread_group_info[1].load_avg_ratio);
1222#endif
1223}
1224#endif
1225
1da177e4
LT
1226/*
1227 * This creates a new process as a copy of the old one,
1228 * but does not actually start it yet.
1229 *
1230 * It copies the registers, and all the appropriate
1231 * parts of the process environment (as per the clone
1232 * flags). The actual kick-off is left to the caller.
1233 */
36c8b586
IM
1234static struct task_struct *copy_process(unsigned long clone_flags,
1235 unsigned long stack_start,
36c8b586 1236 unsigned long stack_size,
36c8b586 1237 int __user *child_tidptr,
09a05394
RM
1238 struct pid *pid,
1239 int trace)
1da177e4
LT
1240{
1241 int retval;
a24efe62 1242 struct task_struct *p;
1da177e4 1243
6fa3eb70
S
1244 if ((clone_flags & (CLONE_NEWNS|CLONE_FS)) == (CLONE_NEWNS|CLONE_FS)){
1245 printk("[%d:%s] fork fail at cpp 1, clone_flags:0x%x\n", current->pid, current->comm, (unsigned int)clone_flags);
1da177e4 1246 return ERR_PTR(-EINVAL);
6fa3eb70 1247 }
e66eded8
EB
1248 if ((clone_flags & (CLONE_NEWUSER|CLONE_FS)) == (CLONE_NEWUSER|CLONE_FS))
1249 return ERR_PTR(-EINVAL);
1250
1da177e4
LT
1251 /*
1252 * Thread groups must share signals as well, and detached threads
1253 * can only be started up within the thread group.
1254 */
6fa3eb70
S
1255 if ((clone_flags & CLONE_THREAD) && !(clone_flags & CLONE_SIGHAND)){
1256 printk("[%d:%s] fork fail at cpp 2, clone_flags:0x%x\n", current->pid, current->comm, (unsigned int)clone_flags);
1da177e4 1257 return ERR_PTR(-EINVAL);
6fa3eb70 1258 }
1da177e4
LT
1259 /*
1260 * Shared signal handlers imply shared VM. By way of the above,
1261 * thread groups also imply shared VM. Blocking this case allows
1262 * for various simplifications in other code.
1263 */
6fa3eb70
S
1264 if ((clone_flags & CLONE_SIGHAND) && !(clone_flags & CLONE_VM)){
1265 printk("[%d:%s] fork fail at cpp 3, clone_flags:0x%x\n", current->pid, current->comm, (unsigned int)clone_flags);
1da177e4 1266 return ERR_PTR(-EINVAL);
6fa3eb70 1267 }
123be07b
SB
1268 /*
1269 * Siblings of global init remain as zombies on exit since they are
1270 * not reaped by their parent (swapper). To solve this and to avoid
1271 * multi-rooted process trees, prevent global and container-inits
1272 * from creating siblings.
1273 */
1274 if ((clone_flags & CLONE_PARENT) &&
6fa3eb70
S
1275 current->signal->flags & SIGNAL_UNKILLABLE){
1276 printk("[%d:%s] fork fail at cpp 4, clone_flags:0x%x\n", current->pid, current->comm, (unsigned int)clone_flags);
123be07b 1277 return ERR_PTR(-EINVAL);
6fa3eb70 1278 }
8382fcac 1279 /*
f608ebd7
ON
1280 * If the new process will be in a different pid namespace don't
1281 * allow it to share a thread group or signal handlers with the
1282 * forking task.
8382fcac 1283 */
f608ebd7 1284 if ((clone_flags & (CLONE_SIGHAND | CLONE_NEWPID)) &&
8382fcac
EB
1285 (task_active_pid_ns(current) != current->nsproxy->pid_ns))
1286 return ERR_PTR(-EINVAL);
1287
1da177e4
LT
1288 retval = security_task_create(clone_flags);
1289 if (retval)
1290 goto fork_out;
1291
1292 retval = -ENOMEM;
1293 p = dup_task_struct(current);
6fa3eb70
S
1294 if (!p){
1295 printk("[%d:%s] fork fail at dup_task_struc, p=%p\n", current->pid, current->comm, p);
1da177e4 1296 goto fork_out;
6fa3eb70 1297 }
1da177e4 1298
f7e8b616
SR
1299 ftrace_graph_init_task(p);
1300
bea493a0 1301 rt_mutex_init_task(p);
6fa3eb70
S
1302#ifdef CONFIG_MTK_SCHED_CMP_TGS
1303 raw_spin_lock_init(&p->thread_group_info_lock);
1304#endif
bea493a0 1305
d12c1a37 1306#ifdef CONFIG_PROVE_LOCKING
de30a2b3
IM
1307 DEBUG_LOCKS_WARN_ON(!p->hardirqs_enabled);
1308 DEBUG_LOCKS_WARN_ON(!p->softirqs_enabled);
1309#endif
1da177e4 1310 retval = -EAGAIN;
3b11a1de 1311 if (atomic_read(&p->real_cred->user->processes) >=
78d7d407 1312 task_rlimit(p, RLIMIT_NPROC)) {
1da177e4 1313 if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_RESOURCE) &&
18b6e041 1314 p->real_cred->user != INIT_USER)
1da177e4
LT
1315 goto bad_fork_free;
1316 }
72fa5997 1317 current->flags &= ~PF_NPROC_EXCEEDED;
1da177e4 1318
f1752eec
DH
1319 retval = copy_creds(p, clone_flags);
1320 if (retval < 0)
1321 goto bad_fork_free;
1da177e4
LT
1322
1323 /*
1324 * If multiple threads are within copy_process(), then this check
1325 * triggers too late. This doesn't hurt, the check is only there
1326 * to stop root fork bombs.
1327 */
04ec93fe 1328 retval = -EAGAIN;
1da177e4
LT
1329 if (nr_threads >= max_threads)
1330 goto bad_fork_cleanup_count;
1331
a1261f54 1332 if (!try_module_get(task_thread_info(p)->exec_domain->module))
1da177e4
LT
1333 goto bad_fork_cleanup_count;
1334
1da177e4 1335 p->did_exec = 0;
ca74e92b 1336 delayacct_tsk_init(p); /* Must remain after dup_task_struct() */
1da177e4 1337 copy_flags(clone_flags, p);
1da177e4
LT
1338 INIT_LIST_HEAD(&p->children);
1339 INIT_LIST_HEAD(&p->sibling);
f41d911f 1340 rcu_copy_process(p);
1da177e4
LT
1341 p->vfork_done = NULL;
1342 spin_lock_init(&p->alloc_lock);
1da177e4 1343
1da177e4
LT
1344 init_sigpending(&p->pending);
1345
64861634
MS
1346 p->utime = p->stime = p->gtime = 0;
1347 p->utimescaled = p->stimescaled = 0;
9fbc42ea 1348#ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
d37f761d 1349 p->prev_cputime.utime = p->prev_cputime.stime = 0;
d99ca3b9 1350#endif
6a61671b
FW
1351#ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN
1352 seqlock_init(&p->vtime_seqlock);
1353 p->vtime_snap = 0;
1354 p->vtime_snap_whence = VTIME_SLEEPING;
1355#endif
1356
a3a2e76c
KH
1357#if defined(SPLIT_RSS_COUNTING)
1358 memset(&p->rss_stat, 0, sizeof(p->rss_stat));
1359#endif
172ba844 1360
6976675d
AV
1361 p->default_timer_slack_ns = current->timer_slack_ns;
1362
5995477a 1363 task_io_accounting_init(&p->ioac);
1da177e4
LT
1364 acct_clear_integrals(p);
1365
f06febc9 1366 posix_cpu_timers_init(p);
1da177e4 1367
1da177e4 1368 do_posix_clock_monotonic_gettime(&p->start_time);
924b42d5
TJ
1369 p->real_start_time = p->start_time;
1370 monotonic_to_bootbased(&p->real_start_time);
1da177e4 1371 p->io_context = NULL;
1da177e4 1372 p->audit_context = NULL;
4714d1d3 1373 if (clone_flags & CLONE_THREAD)
257058ae 1374 threadgroup_change_begin(current);
b4f48b63 1375 cgroup_fork(p);
1da177e4 1376#ifdef CONFIG_NUMA
846a16bf 1377 p->mempolicy = mpol_dup(p->mempolicy);
fb0a685c
DRO
1378 if (IS_ERR(p->mempolicy)) {
1379 retval = PTR_ERR(p->mempolicy);
1380 p->mempolicy = NULL;
1381 goto bad_fork_cleanup_cgroup;
1382 }
c61afb18 1383 mpol_fix_fork_child_flag(p);
1da177e4 1384#endif
778d3b0f
MH
1385#ifdef CONFIG_CPUSETS
1386 p->cpuset_mem_spread_rotor = NUMA_NO_NODE;
1387 p->cpuset_slab_spread_rotor = NUMA_NO_NODE;
cc9a6c87 1388 seqcount_init(&p->mems_allowed_seq);
778d3b0f 1389#endif
de30a2b3
IM
1390#ifdef CONFIG_TRACE_IRQFLAGS
1391 p->irq_events = 0;
1392 p->hardirqs_enabled = 0;
1393 p->hardirq_enable_ip = 0;
1394 p->hardirq_enable_event = 0;
1395 p->hardirq_disable_ip = _THIS_IP_;
1396 p->hardirq_disable_event = 0;
1397 p->softirqs_enabled = 1;
1398 p->softirq_enable_ip = _THIS_IP_;
1399 p->softirq_enable_event = 0;
1400 p->softirq_disable_ip = 0;
1401 p->softirq_disable_event = 0;
1402 p->hardirq_context = 0;
1403 p->softirq_context = 0;
1404#endif
fbb9ce95
IM
1405#ifdef CONFIG_LOCKDEP
1406 p->lockdep_depth = 0; /* no locks held yet */
1407 p->curr_chain_key = 0;
1408 p->lockdep_recursion = 0;
1409#endif
1da177e4 1410
408894ee
IM
1411#ifdef CONFIG_DEBUG_MUTEXES
1412 p->blocked_on = NULL; /* not blocked yet */
1413#endif
c255a458 1414#ifdef CONFIG_MEMCG
569b846d
KH
1415 p->memcg_batch.do_batch = 0;
1416 p->memcg_batch.memcg = NULL;
1417#endif
cafe5635
KO
1418#ifdef CONFIG_BCACHE
1419 p->sequential_io = 0;
1420 p->sequential_io_avg = 0;
1421#endif
0f481406 1422
3c90e6e9 1423 /* Perform scheduler related setup. Assign this task to a CPU. */
3e51e3ed 1424 sched_fork(p);
6ab423e0 1425
cdd6c482 1426 retval = perf_event_init_task(p);
6ab423e0
PZ
1427 if (retval)
1428 goto bad_fork_cleanup_policy;
fb0a685c
DRO
1429 retval = audit_alloc(p);
1430 if (retval)
bee870fc 1431 goto bad_fork_cleanup_perf;
1da177e4 1432 /* copy all the process information */
fb0a685c
DRO
1433 retval = copy_semundo(clone_flags, p);
1434 if (retval)
1da177e4 1435 goto bad_fork_cleanup_audit;
fb0a685c
DRO
1436 retval = copy_files(clone_flags, p);
1437 if (retval)
1da177e4 1438 goto bad_fork_cleanup_semundo;
fb0a685c
DRO
1439 retval = copy_fs(clone_flags, p);
1440 if (retval)
1da177e4 1441 goto bad_fork_cleanup_files;
fb0a685c
DRO
1442 retval = copy_sighand(clone_flags, p);
1443 if (retval)
1da177e4 1444 goto bad_fork_cleanup_fs;
fb0a685c
DRO
1445 retval = copy_signal(clone_flags, p);
1446 if (retval)
1da177e4 1447 goto bad_fork_cleanup_sighand;
fb0a685c
DRO
1448 retval = copy_mm(clone_flags, p);
1449 if (retval)
1da177e4 1450 goto bad_fork_cleanup_signal;
fb0a685c
DRO
1451 retval = copy_namespaces(clone_flags, p);
1452 if (retval)
d84f4f99 1453 goto bad_fork_cleanup_mm;
fb0a685c
DRO
1454 retval = copy_io(clone_flags, p);
1455 if (retval)
fd0928df 1456 goto bad_fork_cleanup_namespaces;
afa86fc4 1457 retval = copy_thread(clone_flags, stack_start, stack_size, p);
1da177e4 1458 if (retval)
fd0928df 1459 goto bad_fork_cleanup_io;
1da177e4 1460
425fb2b4
PE
1461 if (pid != &init_struct_pid) {
1462 retval = -ENOMEM;
61bce0f1 1463 pid = alloc_pid(p->nsproxy->pid_ns);
425fb2b4 1464 if (!pid)
fd0928df 1465 goto bad_fork_cleanup_io;
425fb2b4
PE
1466 }
1467
1468 p->pid = pid_nr(pid);
1469 p->tgid = p->pid;
1470 if (clone_flags & CLONE_THREAD)
1471 p->tgid = current->tgid;
1472
1da177e4
LT
1473 p->set_child_tid = (clone_flags & CLONE_CHILD_SETTID) ? child_tidptr : NULL;
1474 /*
1475 * Clear TID on mm_release()?
1476 */
fb0a685c 1477 p->clear_child_tid = (clone_flags & CLONE_CHILD_CLEARTID) ? child_tidptr : NULL;
73c10101
JA
1478#ifdef CONFIG_BLOCK
1479 p->plug = NULL;
1480#endif
42b2dd0a 1481#ifdef CONFIG_FUTEX
8f17d3a5
IM
1482 p->robust_list = NULL;
1483#ifdef CONFIG_COMPAT
1484 p->compat_robust_list = NULL;
1485#endif
c87e2837
IM
1486 INIT_LIST_HEAD(&p->pi_state_list);
1487 p->pi_state_cache = NULL;
42b2dd0a 1488#endif
0326f5a9 1489 uprobe_copy_process(p);
f9a3879a
GM
1490 /*
1491 * sigaltstack should be cleared when sharing the same VM
1492 */
1493 if ((clone_flags & (CLONE_VM|CLONE_VFORK)) == CLONE_VM)
1494 p->sas_ss_sp = p->sas_ss_size = 0;
1495
1da177e4 1496 /*
6580807d
ON
1497 * Syscall tracing and stepping should be turned off in the
1498 * child regardless of CLONE_PTRACE.
1da177e4 1499 */
6580807d 1500 user_disable_single_step(p);
1da177e4 1501 clear_tsk_thread_flag(p, TIF_SYSCALL_TRACE);
ed75e8d5
LV
1502#ifdef TIF_SYSCALL_EMU
1503 clear_tsk_thread_flag(p, TIF_SYSCALL_EMU);
1504#endif
9745512c 1505 clear_all_latency_tracing(p);
1da177e4 1506
1da177e4 1507 /* ok, now we should be set up.. */
5f8aadd8
ON
1508 if (clone_flags & CLONE_THREAD)
1509 p->exit_signal = -1;
1510 else if (clone_flags & CLONE_PARENT)
1511 p->exit_signal = current->group_leader->exit_signal;
1512 else
1513 p->exit_signal = (clone_flags & CSIGNAL);
1514
1da177e4
LT
1515 p->pdeath_signal = 0;
1516 p->exit_state = 0;
1517
9d823e8f
WF
1518 p->nr_dirtied = 0;
1519 p->nr_dirtied_pause = 128 >> (PAGE_SHIFT - 10);
83712358 1520 p->dirty_paused_when = 0;
9d823e8f 1521
1da177e4
LT
1522 /*
1523 * Ok, make it visible to the rest of the system.
1524 * We dont wake it up yet.
1525 */
1526 p->group_leader = p;
47e65328 1527 INIT_LIST_HEAD(&p->thread_group);
6fa3eb70
S
1528#ifdef CONFIG_MTK_SCHED_CMP_TGS
1529 mt_init_thread_group(p);
1530#endif
158e1645 1531 p->task_works = NULL;
1da177e4
LT
1532
1533 /* Need tasklist lock for parent etc handling! */
1534 write_lock_irq(&tasklist_lock);
1535
1da177e4 1536 /* CLONE_PARENT re-uses the old parent */
2d5516cb 1537 if (clone_flags & (CLONE_PARENT|CLONE_THREAD)) {
1da177e4 1538 p->real_parent = current->real_parent;
2d5516cb
ON
1539 p->parent_exec_id = current->parent_exec_id;
1540 } else {
1da177e4 1541 p->real_parent = current;
2d5516cb
ON
1542 p->parent_exec_id = current->self_exec_id;
1543 }
1da177e4 1544
3f17da69 1545 spin_lock(&current->sighand->siglock);
4a2c7a78 1546
6fa3eb70
S
1547 /*
1548 * Copy seccomp details explicitly here, in case they were changed
1549 * before holding sighand lock.
1550 */
1551 copy_seccomp(p);
1552
4a2c7a78
ON
1553 /*
1554 * Process group and session signals need to be delivered to just the
1555 * parent before the fork or both the parent and the child after the
1556 * fork. Restart if a signal comes in before we add the new process to
1557 * it's process group.
1558 * A fatal signal pending means that current will exit, so the new
1559 * thread can't slip out of an OOM kill (or normal SIGKILL).
fb0a685c 1560 */
23ff4440 1561 recalc_sigpending();
4a2c7a78
ON
1562 if (signal_pending(current)) {
1563 spin_unlock(&current->sighand->siglock);
1564 write_unlock_irq(&tasklist_lock);
1565 retval = -ERESTARTNOINTR;
f7e8b616 1566 goto bad_fork_free_pid;
4a2c7a78
ON
1567 }
1568
73b9ebfe 1569 if (likely(p->pid)) {
4b9d33e6 1570 ptrace_init_task(p, (clone_flags & CLONE_PTRACE) || trace);
73b9ebfe
ON
1571
1572 if (thread_group_leader(p)) {
1c4042c2 1573 if (is_child_reaper(pid)) {
17cf22c3 1574 ns_of_pid(pid)->child_reaper = p;
1c4042c2
EB
1575 p->signal->flags |= SIGNAL_UNKILLABLE;
1576 }
73b9ebfe 1577
fea9d175 1578 p->signal->leader_pid = pid;
9c9f4ded 1579 p->signal->tty = tty_kref_get(current->signal->tty);
5cd17569
EB
1580 attach_pid(p, PIDTYPE_PGID, task_pgrp(current));
1581 attach_pid(p, PIDTYPE_SID, task_session(current));
9cd80bbb 1582 list_add_tail(&p->sibling, &p->real_parent->children);
5e85d4ab 1583 list_add_tail_rcu(&p->tasks, &init_task.tasks);
909ea964 1584 __this_cpu_inc(process_counts);
6fa3eb70 1585 } else {
beed6106
ON
1586 current->signal->nr_threads++;
1587 atomic_inc(&current->signal->live);
1588 atomic_inc(&current->signal->sigcnt);
1589 p->group_leader = current->group_leader;
1590 list_add_tail_rcu(&p->thread_group,
1591 &p->group_leader->thread_group);
6fa3eb70
S
1592 list_add_tail_rcu(&p->thread_node,
1593 &p->signal->thread_head);
73b9ebfe 1594 }
85868995 1595 attach_pid(p, PIDTYPE_PID, pid);
73b9ebfe 1596 nr_threads++;
1da177e4
LT
1597 }
1598
1da177e4 1599 total_forks++;
3f17da69 1600 spin_unlock(&current->sighand->siglock);
e6bc60b8 1601 syscall_tracepoint_update(p);
1da177e4 1602 write_unlock_irq(&tasklist_lock);
e6bc60b8 1603
c13cf856 1604 proc_fork_connector(p);
817929ec 1605 cgroup_post_fork(p);
4714d1d3 1606 if (clone_flags & CLONE_THREAD)
257058ae 1607 threadgroup_change_end(current);
cdd6c482 1608 perf_event_fork(p);
43d2b113
KH
1609
1610 trace_task_newtask(p, clone_flags);
1611
1da177e4
LT
1612 return p;
1613
425fb2b4
PE
1614bad_fork_free_pid:
1615 if (pid != &init_struct_pid)
1616 free_pid(pid);
fd0928df 1617bad_fork_cleanup_io:
b69f2292
LR
1618 if (p->io_context)
1619 exit_io_context(p);
ab516013 1620bad_fork_cleanup_namespaces:
444f378b 1621 exit_task_namespaces(p);
1da177e4 1622bad_fork_cleanup_mm:
c9f01245 1623 if (p->mm)
1da177e4
LT
1624 mmput(p->mm);
1625bad_fork_cleanup_signal:
4ab6c083 1626 if (!(clone_flags & CLONE_THREAD))
1c5354de 1627 free_signal_struct(p->signal);
1da177e4 1628bad_fork_cleanup_sighand:
a7e5328a 1629 __cleanup_sighand(p->sighand);
1da177e4
LT
1630bad_fork_cleanup_fs:
1631 exit_fs(p); /* blocking */
1632bad_fork_cleanup_files:
1633 exit_files(p); /* blocking */
1634bad_fork_cleanup_semundo:
1635 exit_sem(p);
1636bad_fork_cleanup_audit:
1637 audit_free(p);
bee870fc 1638bad_fork_cleanup_perf:
cdd6c482 1639 perf_event_free_task(p);
bee870fc 1640bad_fork_cleanup_policy:
1da177e4 1641#ifdef CONFIG_NUMA
f0be3d32 1642 mpol_put(p->mempolicy);
b4f48b63 1643bad_fork_cleanup_cgroup:
1da177e4 1644#endif
4714d1d3 1645 if (clone_flags & CLONE_THREAD)
257058ae 1646 threadgroup_change_end(current);
5edee61e 1647 cgroup_exit(p, 0);
35df17c5 1648 delayacct_tsk_free(p);
a1261f54 1649 module_put(task_thread_info(p)->exec_domain->module);
1da177e4 1650bad_fork_cleanup_count:
d84f4f99 1651 atomic_dec(&p->cred->user->processes);
e0e81739 1652 exit_creds(p);
1da177e4
LT
1653bad_fork_free:
1654 free_task(p);
fe7d37d1 1655fork_out:
6fa3eb70 1656 printk("[%d:%s] fork fail retval:0x%x\n", current->pid, current->comm, retval);
fe7d37d1 1657 return ERR_PTR(retval);
1da177e4
LT
1658}
1659
f106eee1
ON
1660static inline void init_idle_pids(struct pid_link *links)
1661{
1662 enum pid_type type;
1663
1664 for (type = PIDTYPE_PID; type < PIDTYPE_MAX; ++type) {
1665 INIT_HLIST_NODE(&links[type].node); /* not really needed */
1666 links[type].pid = &init_struct_pid;
1667 }
1668}
1669
9abcf40b 1670struct task_struct * __cpuinit fork_idle(int cpu)
1da177e4 1671{
36c8b586 1672 struct task_struct *task;
62e791c1 1673 task = copy_process(CLONE_VM, 0, 0, NULL, &init_struct_pid, 0);
f106eee1
ON
1674 if (!IS_ERR(task)) {
1675 init_idle_pids(task->pids);
753ca4f3 1676 init_idle(task, cpu);
f106eee1 1677 }
73b9ebfe 1678
1da177e4
LT
1679 return task;
1680}
1681
1da177e4
LT
1682/*
1683 * Ok, this is the main fork-routine.
1684 *
1685 * It copies the process, and if successful kick-starts
1686 * it and waits for it to finish using the VM if required.
1687 */
6fa3eb70
S
1688#ifdef CONFIG_SCHEDSTATS
1689/* mt shceduler profiling*/
1690extern void save_mtproc_info(struct task_struct *p, unsigned long long ts);
1691#endif
1da177e4
LT
1692long do_fork(unsigned long clone_flags,
1693 unsigned long stack_start,
1da177e4
LT
1694 unsigned long stack_size,
1695 int __user *parent_tidptr,
1696 int __user *child_tidptr)
1697{
1698 struct task_struct *p;
1699 int trace = 0;
92476d7f 1700 long nr;
1da177e4 1701
18b6e041
SH
1702 /*
1703 * Do some preliminary argument and permissions checking before we
1704 * actually start allocating stuff
1705 */
50804fe3 1706 if (clone_flags & (CLONE_NEWUSER | CLONE_NEWPID)) {
6fa3eb70
S
1707 if (clone_flags & (CLONE_THREAD|CLONE_PARENT)) {
1708 printk("[%d:%s] fork fail at clone_thread, flags:0x%x\n", current->pid, current->comm, (unsigned int)clone_flags);
18b6e041 1709 return -EINVAL;
6fa3eb70 1710 }
18b6e041
SH
1711 }
1712
09a05394 1713 /*
4b9d33e6
TH
1714 * Determine whether and which event to report to ptracer. When
1715 * called from kernel_thread or CLONE_UNTRACED is explicitly
1716 * requested, no event is reported; otherwise, report if the event
1717 * for the type of forking is enabled.
09a05394 1718 */
e80d6661 1719 if (!(clone_flags & CLONE_UNTRACED)) {
4b9d33e6
TH
1720 if (clone_flags & CLONE_VFORK)
1721 trace = PTRACE_EVENT_VFORK;
1722 else if ((clone_flags & CSIGNAL) != SIGCHLD)
1723 trace = PTRACE_EVENT_CLONE;
1724 else
1725 trace = PTRACE_EVENT_FORK;
1726
1727 if (likely(!ptrace_event_enabled(current, trace)))
1728 trace = 0;
1729 }
1da177e4 1730
62e791c1 1731 p = copy_process(clone_flags, stack_start, stack_size,
09a05394 1732 child_tidptr, NULL, trace);
1da177e4
LT
1733 /*
1734 * Do this prior waking up the new thread - the thread pointer
1735 * might get invalid after that point, if the thread exits quickly.
1736 */
1737 if (!IS_ERR(p)) {
1738 struct completion vfork;
1a2d9732 1739 struct pid *pid;
1da177e4 1740
0a16b607
MD
1741 trace_sched_process_fork(current, p);
1742
1a2d9732
MD
1743 pid = get_task_pid(p, PIDTYPE_PID);
1744 nr = pid_vnr(pid);
30e49c26
PE
1745
1746 if (clone_flags & CLONE_PARENT_SETTID)
1747 put_user(nr, parent_tidptr);
a6f5e063 1748
1da177e4
LT
1749 if (clone_flags & CLONE_VFORK) {
1750 p->vfork_done = &vfork;
1751 init_completion(&vfork);
d68b46fe 1752 get_task_struct(p);
1da177e4
LT
1753 }
1754
6fa3eb70
S
1755#ifdef CONFIG_SCHEDSTATS
1756 /* mt shceduler profiling*/
1757 save_mtproc_info(p, sched_clock());
1758 printk(KERN_DEBUG "[%d:%s] fork [%d:%s]\n", current->pid, current->comm, p->pid, p->comm);
1759#endif
3e51e3ed 1760 wake_up_new_task(p);
1da177e4 1761
4b9d33e6
TH
1762 /* forking complete and child started to run, tell ptracer */
1763 if (unlikely(trace))
1a2d9732 1764 ptrace_event_pid(trace, pid);
09a05394 1765
1da177e4 1766 if (clone_flags & CLONE_VFORK) {
d68b46fe 1767 if (!wait_for_vfork_done(p, &vfork))
1a2d9732 1768 ptrace_event_pid(PTRACE_EVENT_VFORK_DONE, pid);
1da177e4 1769 }
1a2d9732
MD
1770
1771 put_pid(pid);
6fa3eb70
S
1772#ifdef CONFIG_MT_PRIO_TRACER
1773 create_prio_tracer(task_pid_nr(p));
1774 update_prio_tracer(task_pid_nr(p), p->prio, p->policy, PTS_KRNL);
1775#endif
1da177e4 1776 } else {
92476d7f 1777 nr = PTR_ERR(p);
6fa3eb70 1778 printk("[%d:%s] fork fail:[%p, %d]\n", current->pid, current->comm, p,(int) nr);
1da177e4 1779 }
92476d7f 1780 return nr;
1da177e4
LT
1781}
1782
2aa3a7f8
AV
1783/*
1784 * Create a kernel thread.
1785 */
1786pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
1787{
e80d6661 1788 return do_fork(flags|CLONE_VM|CLONE_UNTRACED, (unsigned long)fn,
2aa3a7f8
AV
1789 (unsigned long)arg, NULL, NULL);
1790}
2aa3a7f8 1791
d2125043
AV
1792#ifdef __ARCH_WANT_SYS_FORK
1793SYSCALL_DEFINE0(fork)
1794{
1795#ifdef CONFIG_MMU
e80d6661 1796 return do_fork(SIGCHLD, 0, 0, NULL, NULL);
d2125043
AV
1797#else
1798 /* can not support in nommu mode */
1799 return(-EINVAL);
1800#endif
1801}
1802#endif
1803
1804#ifdef __ARCH_WANT_SYS_VFORK
1805SYSCALL_DEFINE0(vfork)
1806{
e80d6661 1807 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, 0,
d2125043
AV
1808 0, NULL, NULL);
1809}
1810#endif
1811
1812#ifdef __ARCH_WANT_SYS_CLONE
1813#ifdef CONFIG_CLONE_BACKWARDS
1814SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
1815 int __user *, parent_tidptr,
1816 int, tls_val,
1817 int __user *, child_tidptr)
1818#elif defined(CONFIG_CLONE_BACKWARDS2)
1819SYSCALL_DEFINE5(clone, unsigned long, newsp, unsigned long, clone_flags,
1820 int __user *, parent_tidptr,
1821 int __user *, child_tidptr,
1822 int, tls_val)
4f01c72e
MS
1823#elif defined(CONFIG_CLONE_BACKWARDS3)
1824SYSCALL_DEFINE6(clone, unsigned long, clone_flags, unsigned long, newsp,
1825 int, stack_size,
1826 int __user *, parent_tidptr,
1827 int __user *, child_tidptr,
1828 int, tls_val)
d2125043
AV
1829#else
1830SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
1831 int __user *, parent_tidptr,
1832 int __user *, child_tidptr,
1833 int, tls_val)
1834#endif
1835{
2cf09666 1836 return do_fork(clone_flags, newsp, 0, parent_tidptr, child_tidptr);
d2125043
AV
1837}
1838#endif
1839
5fd63b30
RT
1840#ifndef ARCH_MIN_MMSTRUCT_ALIGN
1841#define ARCH_MIN_MMSTRUCT_ALIGN 0
1842#endif
1843
51cc5068 1844static void sighand_ctor(void *data)
aa1757f9
ON
1845{
1846 struct sighand_struct *sighand = data;
1847
a35afb83 1848 spin_lock_init(&sighand->siglock);
b8fceee1 1849 init_waitqueue_head(&sighand->signalfd_wqh);
aa1757f9
ON
1850}
1851
1da177e4
LT
1852void __init proc_caches_init(void)
1853{
1854 sighand_cachep = kmem_cache_create("sighand_cache",
1855 sizeof(struct sighand_struct), 0,
2dff4405
VN
1856 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_DESTROY_BY_RCU|
1857 SLAB_NOTRACK, sighand_ctor);
1da177e4
LT
1858 signal_cachep = kmem_cache_create("signal_cache",
1859 sizeof(struct signal_struct), 0,
2dff4405 1860 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK, NULL);
20c2df83 1861 files_cachep = kmem_cache_create("files_cache",
1da177e4 1862 sizeof(struct files_struct), 0,
2dff4405 1863 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK, NULL);
20c2df83 1864 fs_cachep = kmem_cache_create("fs_cache",
1da177e4 1865 sizeof(struct fs_struct), 0,
2dff4405 1866 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK, NULL);
6345d24d
LT
1867 /*
1868 * FIXME! The "sizeof(struct mm_struct)" currently includes the
1869 * whole struct cpumask for the OFFSTACK case. We could change
1870 * this to *only* allocate as much of it as required by the
1871 * maximum number of CPU's we can ever have. The cpumask_allocation
1872 * is at the end of the structure, exactly for that reason.
1873 */
1da177e4 1874 mm_cachep = kmem_cache_create("mm_struct",
5fd63b30 1875 sizeof(struct mm_struct), ARCH_MIN_MMSTRUCT_ALIGN,
2dff4405 1876 SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_NOTRACK, NULL);
33e5d769 1877 vm_area_cachep = KMEM_CACHE(vm_area_struct, SLAB_PANIC);
8feae131 1878 mmap_init();
66577193 1879 nsproxy_cache_init();
1da177e4 1880}
cf2e340f 1881
cf2e340f 1882/*
9bfb23fc 1883 * Check constraints on flags passed to the unshare system call.
cf2e340f 1884 */
9bfb23fc 1885static int check_unshare_flags(unsigned long unshare_flags)
cf2e340f 1886{
9bfb23fc
ON
1887 if (unshare_flags & ~(CLONE_THREAD|CLONE_FS|CLONE_NEWNS|CLONE_SIGHAND|
1888 CLONE_VM|CLONE_FILES|CLONE_SYSVSEM|
50804fe3 1889 CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWNET|
b2e0d987 1890 CLONE_NEWUSER|CLONE_NEWPID))
9bfb23fc 1891 return -EINVAL;
cf2e340f 1892 /*
9bfb23fc
ON
1893 * Not implemented, but pretend it works if there is nothing to
1894 * unshare. Note that unsharing CLONE_THREAD or CLONE_SIGHAND
1895 * needs to unshare vm.
cf2e340f 1896 */
9bfb23fc
ON
1897 if (unshare_flags & (CLONE_THREAD | CLONE_SIGHAND | CLONE_VM)) {
1898 /* FIXME: get_task_mm() increments ->mm_users */
1899 if (atomic_read(&current->mm->mm_users) > 1)
1900 return -EINVAL;
1901 }
cf2e340f
JD
1902
1903 return 0;
1904}
1905
1906/*
99d1419d 1907 * Unshare the filesystem structure if it is being shared
cf2e340f
JD
1908 */
1909static int unshare_fs(unsigned long unshare_flags, struct fs_struct **new_fsp)
1910{
1911 struct fs_struct *fs = current->fs;
1912
498052bb
AV
1913 if (!(unshare_flags & CLONE_FS) || !fs)
1914 return 0;
1915
1916 /* don't need lock here; in the worst case we'll do useless copy */
1917 if (fs->users == 1)
1918 return 0;
1919
1920 *new_fsp = copy_fs_struct(fs);
1921 if (!*new_fsp)
1922 return -ENOMEM;
cf2e340f
JD
1923
1924 return 0;
1925}
1926
cf2e340f 1927/*
a016f338 1928 * Unshare file descriptor table if it is being shared
cf2e340f
JD
1929 */
1930static int unshare_fd(unsigned long unshare_flags, struct files_struct **new_fdp)
1931{
1932 struct files_struct *fd = current->files;
a016f338 1933 int error = 0;
cf2e340f
JD
1934
1935 if ((unshare_flags & CLONE_FILES) &&
a016f338
JD
1936 (fd && atomic_read(&fd->count) > 1)) {
1937 *new_fdp = dup_fd(fd, &error);
1938 if (!*new_fdp)
1939 return error;
1940 }
cf2e340f
JD
1941
1942 return 0;
1943}
1944
cf2e340f
JD
1945/*
1946 * unshare allows a process to 'unshare' part of the process
1947 * context which was originally shared using clone. copy_*
1948 * functions used by do_fork() cannot be used here directly
1949 * because they modify an inactive task_struct that is being
1950 * constructed. Here we are modifying the current, active,
1951 * task_struct.
1952 */
6559eed8 1953SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags)
cf2e340f 1954{
cf2e340f 1955 struct fs_struct *fs, *new_fs = NULL;
cf2e340f 1956 struct files_struct *fd, *new_fd = NULL;
b2e0d987 1957 struct cred *new_cred = NULL;
cf7b708c 1958 struct nsproxy *new_nsproxy = NULL;
9edff4ab 1959 int do_sysvsem = 0;
9bfb23fc 1960 int err;
cf2e340f 1961
b2e0d987
EB
1962 /*
1963 * If unsharing a user namespace must also unshare the thread.
1964 */
1965 if (unshare_flags & CLONE_NEWUSER)
e66eded8 1966 unshare_flags |= CLONE_THREAD | CLONE_FS;
50804fe3
EB
1967 /*
1968 * If unsharing a pid namespace must also unshare the thread.
1969 */
1970 if (unshare_flags & CLONE_NEWPID)
1971 unshare_flags |= CLONE_THREAD;
1972 /*
1973 * If unsharing a thread from a thread group, must also unshare vm.
1974 */
1975 if (unshare_flags & CLONE_THREAD)
1976 unshare_flags |= CLONE_VM;
1977 /*
1978 * If unsharing vm, must also unshare signal handlers.
1979 */
1980 if (unshare_flags & CLONE_VM)
1981 unshare_flags |= CLONE_SIGHAND;
9bfb23fc
ON
1982 /*
1983 * If unsharing namespace, must also unshare filesystem information.
1984 */
1985 if (unshare_flags & CLONE_NEWNS)
1986 unshare_flags |= CLONE_FS;
50804fe3
EB
1987
1988 err = check_unshare_flags(unshare_flags);
1989 if (err)
1990 goto bad_unshare_out;
6013f67f
MS
1991 /*
1992 * CLONE_NEWIPC must also detach from the undolist: after switching
1993 * to a new ipc namespace, the semaphore arrays from the old
1994 * namespace are unreachable.
1995 */
1996 if (unshare_flags & (CLONE_NEWIPC|CLONE_SYSVSEM))
9edff4ab 1997 do_sysvsem = 1;
fb0a685c
DRO
1998 err = unshare_fs(unshare_flags, &new_fs);
1999 if (err)
9bfb23fc 2000 goto bad_unshare_out;
fb0a685c
DRO
2001 err = unshare_fd(unshare_flags, &new_fd);
2002 if (err)
9bfb23fc 2003 goto bad_unshare_cleanup_fs;
b2e0d987 2004 err = unshare_userns(unshare_flags, &new_cred);
fb0a685c 2005 if (err)
9edff4ab 2006 goto bad_unshare_cleanup_fd;
b2e0d987
EB
2007 err = unshare_nsproxy_namespaces(unshare_flags, &new_nsproxy,
2008 new_cred, new_fs);
2009 if (err)
2010 goto bad_unshare_cleanup_cred;
c0b2fc31 2011
b2e0d987 2012 if (new_fs || new_fd || do_sysvsem || new_cred || new_nsproxy) {
9edff4ab
MS
2013 if (do_sysvsem) {
2014 /*
2015 * CLONE_SYSVSEM is equivalent to sys_exit().
2016 */
2017 exit_sem(current);
2018 }
ab516013 2019
6f977e6b 2020 if (new_nsproxy)
cf7b708c 2021 switch_task_namespaces(current, new_nsproxy);
cf2e340f 2022
cf7b708c
PE
2023 task_lock(current);
2024
cf2e340f
JD
2025 if (new_fs) {
2026 fs = current->fs;
2a4419b5 2027 spin_lock(&fs->lock);
cf2e340f 2028 current->fs = new_fs;
498052bb
AV
2029 if (--fs->users)
2030 new_fs = NULL;
2031 else
2032 new_fs = fs;
2a4419b5 2033 spin_unlock(&fs->lock);
cf2e340f
JD
2034 }
2035
cf2e340f
JD
2036 if (new_fd) {
2037 fd = current->files;
2038 current->files = new_fd;
2039 new_fd = fd;
2040 }
2041
2042 task_unlock(current);
b2e0d987
EB
2043
2044 if (new_cred) {
2045 /* Install the new user namespace */
2046 commit_creds(new_cred);
2047 new_cred = NULL;
2048 }
cf2e340f
JD
2049 }
2050
b2e0d987
EB
2051bad_unshare_cleanup_cred:
2052 if (new_cred)
2053 put_cred(new_cred);
cf2e340f
JD
2054bad_unshare_cleanup_fd:
2055 if (new_fd)
2056 put_files_struct(new_fd);
2057
cf2e340f
JD
2058bad_unshare_cleanup_fs:
2059 if (new_fs)
498052bb 2060 free_fs_struct(new_fs);
cf2e340f 2061
cf2e340f
JD
2062bad_unshare_out:
2063 return err;
2064}
3b125388
AV
2065
2066/*
2067 * Helper to unshare the files of the current task.
2068 * We don't want to expose copy_files internals to
2069 * the exec layer of the kernel.
2070 */
2071
2072int unshare_files(struct files_struct **displaced)
2073{
2074 struct task_struct *task = current;
50704516 2075 struct files_struct *copy = NULL;
3b125388
AV
2076 int error;
2077
2078 error = unshare_fd(CLONE_FILES, &copy);
2079 if (error || !copy) {
2080 *displaced = NULL;
2081 return error;
2082 }
2083 *displaced = task->files;
2084 task_lock(task);
2085 task->files = copy;
2086 task_unlock(task);
2087 return 0;
2088}