]>
Commit | Line | Data |
---|---|---|
457c8996 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
1da177e4 LT |
2 | /* |
3 | * linux/kernel/fork.c | |
4 | * | |
5 | * Copyright (C) 1991, 1992 Linus Torvalds | |
6 | */ | |
7 | ||
8 | /* | |
9 | * 'fork.c' contains the help-routines for the 'fork' system call | |
10 | * (see also entry.S and others). | |
11 | * Fork is rather simple, once you get the hang of it, but the memory | |
12 | * management can be a bitch. See 'mm/memory.c': 'copy_page_range()' | |
13 | */ | |
14 | ||
b3e58382 | 15 | #include <linux/anon_inodes.h> |
1da177e4 | 16 | #include <linux/slab.h> |
4eb5aaa3 | 17 | #include <linux/sched/autogroup.h> |
6e84f315 | 18 | #include <linux/sched/mm.h> |
f7ccbae4 | 19 | #include <linux/sched/coredump.h> |
8703e8a4 | 20 | #include <linux/sched/user.h> |
6a3827d7 | 21 | #include <linux/sched/numa_balancing.h> |
03441a34 | 22 | #include <linux/sched/stat.h> |
29930025 | 23 | #include <linux/sched/task.h> |
68db0cf1 | 24 | #include <linux/sched/task_stack.h> |
32ef5517 | 25 | #include <linux/sched/cputime.h> |
b3e58382 | 26 | #include <linux/seq_file.h> |
037741a6 | 27 | #include <linux/rtmutex.h> |
1da177e4 LT |
28 | #include <linux/init.h> |
29 | #include <linux/unistd.h> | |
1da177e4 LT |
30 | #include <linux/module.h> |
31 | #include <linux/vmalloc.h> | |
32 | #include <linux/completion.h> | |
1da177e4 LT |
33 | #include <linux/personality.h> |
34 | #include <linux/mempolicy.h> | |
35 | #include <linux/sem.h> | |
36 | #include <linux/file.h> | |
9f3acc31 | 37 | #include <linux/fdtable.h> |
da9cbc87 | 38 | #include <linux/iocontext.h> |
1da177e4 LT |
39 | #include <linux/key.h> |
40 | #include <linux/binfmts.h> | |
41 | #include <linux/mman.h> | |
cddb8a5c | 42 | #include <linux/mmu_notifier.h> |
1da177e4 | 43 | #include <linux/fs.h> |
615d6e87 DB |
44 | #include <linux/mm.h> |
45 | #include <linux/vmacache.h> | |
ab516013 | 46 | #include <linux/nsproxy.h> |
c59ede7b | 47 | #include <linux/capability.h> |
1da177e4 | 48 | #include <linux/cpu.h> |
b4f48b63 | 49 | #include <linux/cgroup.h> |
1da177e4 | 50 | #include <linux/security.h> |
a1e78772 | 51 | #include <linux/hugetlb.h> |
e2cfabdf | 52 | #include <linux/seccomp.h> |
1da177e4 LT |
53 | #include <linux/swap.h> |
54 | #include <linux/syscalls.h> | |
55 | #include <linux/jiffies.h> | |
56 | #include <linux/futex.h> | |
8141c7f3 | 57 | #include <linux/compat.h> |
207205a2 | 58 | #include <linux/kthread.h> |
7c3ab738 | 59 | #include <linux/task_io_accounting_ops.h> |
ab2af1f5 | 60 | #include <linux/rcupdate.h> |
1da177e4 LT |
61 | #include <linux/ptrace.h> |
62 | #include <linux/mount.h> | |
63 | #include <linux/audit.h> | |
78fb7466 | 64 | #include <linux/memcontrol.h> |
f201ae23 | 65 | #include <linux/ftrace.h> |
5e2bf014 | 66 | #include <linux/proc_fs.h> |
1da177e4 LT |
67 | #include <linux/profile.h> |
68 | #include <linux/rmap.h> | |
f8af4da3 | 69 | #include <linux/ksm.h> |
1da177e4 | 70 | #include <linux/acct.h> |
893e26e6 | 71 | #include <linux/userfaultfd_k.h> |
8f0ab514 | 72 | #include <linux/tsacct_kern.h> |
9f46080c | 73 | #include <linux/cn_proc.h> |
ba96a0c8 | 74 | #include <linux/freezer.h> |
ca74e92b | 75 | #include <linux/delayacct.h> |
ad4ecbcb | 76 | #include <linux/taskstats_kern.h> |
0a425405 | 77 | #include <linux/random.h> |
522ed776 | 78 | #include <linux/tty.h> |
fd0928df | 79 | #include <linux/blkdev.h> |
5ad4e53b | 80 | #include <linux/fs_struct.h> |
7c9f8861 | 81 | #include <linux/magic.h> |
cdd6c482 | 82 | #include <linux/perf_event.h> |
42c4ab41 | 83 | #include <linux/posix-timers.h> |
8e7cac79 | 84 | #include <linux/user-return-notifier.h> |
3d5992d2 | 85 | #include <linux/oom.h> |
ba76149f | 86 | #include <linux/khugepaged.h> |
d80e731e | 87 | #include <linux/signalfd.h> |
0326f5a9 | 88 | #include <linux/uprobes.h> |
a27bb332 | 89 | #include <linux/aio.h> |
52f5684c | 90 | #include <linux/compiler.h> |
16db3d3f | 91 | #include <linux/sysctl.h> |
5c9a8750 | 92 | #include <linux/kcov.h> |
d83a7cb3 | 93 | #include <linux/livepatch.h> |
48ac3c18 | 94 | #include <linux/thread_info.h> |
afaef01c | 95 | #include <linux/stackleak.h> |
eafb149e | 96 | #include <linux/kasan.h> |
d08b9f0c | 97 | #include <linux/scs.h> |
0f212204 | 98 | #include <linux/io_uring.h> |
a10787e6 | 99 | #include <linux/bpf.h> |
1da177e4 | 100 | |
1da177e4 | 101 | #include <asm/pgalloc.h> |
7c0f6ba6 | 102 | #include <linux/uaccess.h> |
1da177e4 LT |
103 | #include <asm/mmu_context.h> |
104 | #include <asm/cacheflush.h> | |
105 | #include <asm/tlbflush.h> | |
106 | ||
ad8d75ff SR |
107 | #include <trace/events/sched.h> |
108 | ||
43d2b113 KH |
109 | #define CREATE_TRACE_POINTS |
110 | #include <trace/events/task.h> | |
111 | ||
ac1b398d HS |
112 | /* |
113 | * Minimum number of threads to boot the kernel | |
114 | */ | |
115 | #define MIN_THREADS 20 | |
116 | ||
117 | /* | |
118 | * Maximum number of threads | |
119 | */ | |
120 | #define MAX_THREADS FUTEX_TID_MASK | |
121 | ||
1da177e4 LT |
122 | /* |
123 | * Protected counters by write_lock_irq(&tasklist_lock) | |
124 | */ | |
125 | unsigned long total_forks; /* Handle normal Linux uptimes. */ | |
fb0a685c | 126 | int nr_threads; /* The idle threads do not count.. */ |
1da177e4 | 127 | |
8856ae4d | 128 | static int max_threads; /* tunable limit on nr_threads */ |
1da177e4 | 129 | |
8495f7e6 SPP |
130 | #define NAMED_ARRAY_INDEX(x) [x] = __stringify(x) |
131 | ||
132 | static const char * const resident_page_types[] = { | |
133 | NAMED_ARRAY_INDEX(MM_FILEPAGES), | |
134 | NAMED_ARRAY_INDEX(MM_ANONPAGES), | |
135 | NAMED_ARRAY_INDEX(MM_SWAPENTS), | |
136 | NAMED_ARRAY_INDEX(MM_SHMEMPAGES), | |
137 | }; | |
138 | ||
1da177e4 LT |
139 | DEFINE_PER_CPU(unsigned long, process_counts) = 0; |
140 | ||
c59923a1 | 141 | __cacheline_aligned DEFINE_RWLOCK(tasklist_lock); /* outer */ |
db1466b3 PM |
142 | |
143 | #ifdef CONFIG_PROVE_RCU | |
144 | int lockdep_tasklist_lock_is_held(void) | |
145 | { | |
146 | return lockdep_is_held(&tasklist_lock); | |
147 | } | |
148 | EXPORT_SYMBOL_GPL(lockdep_tasklist_lock_is_held); | |
149 | #endif /* #ifdef CONFIG_PROVE_RCU */ | |
1da177e4 LT |
150 | |
151 | int nr_processes(void) | |
152 | { | |
153 | int cpu; | |
154 | int total = 0; | |
155 | ||
1d510750 | 156 | for_each_possible_cpu(cpu) |
1da177e4 LT |
157 | total += per_cpu(process_counts, cpu); |
158 | ||
159 | return total; | |
160 | } | |
161 | ||
f19b9f74 AM |
162 | void __weak arch_release_task_struct(struct task_struct *tsk) |
163 | { | |
164 | } | |
165 | ||
f5e10287 | 166 | #ifndef CONFIG_ARCH_TASK_STRUCT_ALLOCATOR |
e18b890b | 167 | static struct kmem_cache *task_struct_cachep; |
41101809 TG |
168 | |
169 | static inline struct task_struct *alloc_task_struct_node(int node) | |
170 | { | |
171 | return kmem_cache_alloc_node(task_struct_cachep, GFP_KERNEL, node); | |
172 | } | |
173 | ||
41101809 TG |
174 | static inline void free_task_struct(struct task_struct *tsk) |
175 | { | |
41101809 TG |
176 | kmem_cache_free(task_struct_cachep, tsk); |
177 | } | |
1da177e4 LT |
178 | #endif |
179 | ||
b235beea | 180 | #ifndef CONFIG_ARCH_THREAD_STACK_ALLOCATOR |
41101809 | 181 | |
0d15d74a TG |
182 | /* |
183 | * Allocate pages if THREAD_SIZE is >= PAGE_SIZE, otherwise use a | |
184 | * kmemcache based allocator. | |
185 | */ | |
ba14a194 | 186 | # if THREAD_SIZE >= PAGE_SIZE || defined(CONFIG_VMAP_STACK) |
ac496bf4 AL |
187 | |
188 | #ifdef CONFIG_VMAP_STACK | |
189 | /* | |
190 | * vmalloc() is a bit slow, and calling vfree() enough times will force a TLB | |
191 | * flush. Try to minimize the number of calls by caching stacks. | |
192 | */ | |
193 | #define NR_CACHED_STACKS 2 | |
194 | static DEFINE_PER_CPU(struct vm_struct *, cached_stacks[NR_CACHED_STACKS]); | |
19659c59 HR |
195 | |
196 | static int free_vm_stack_cache(unsigned int cpu) | |
197 | { | |
198 | struct vm_struct **cached_vm_stacks = per_cpu_ptr(cached_stacks, cpu); | |
199 | int i; | |
200 | ||
201 | for (i = 0; i < NR_CACHED_STACKS; i++) { | |
202 | struct vm_struct *vm_stack = cached_vm_stacks[i]; | |
203 | ||
204 | if (!vm_stack) | |
205 | continue; | |
206 | ||
207 | vfree(vm_stack->addr); | |
208 | cached_vm_stacks[i] = NULL; | |
209 | } | |
210 | ||
211 | return 0; | |
212 | } | |
ac496bf4 AL |
213 | #endif |
214 | ||
ba14a194 | 215 | static unsigned long *alloc_thread_stack_node(struct task_struct *tsk, int node) |
b69c49b7 | 216 | { |
ba14a194 | 217 | #ifdef CONFIG_VMAP_STACK |
ac496bf4 AL |
218 | void *stack; |
219 | int i; | |
220 | ||
ac496bf4 | 221 | for (i = 0; i < NR_CACHED_STACKS; i++) { |
112166f8 CL |
222 | struct vm_struct *s; |
223 | ||
224 | s = this_cpu_xchg(cached_stacks[i], NULL); | |
ac496bf4 AL |
225 | |
226 | if (!s) | |
227 | continue; | |
ac496bf4 | 228 | |
cebd0eb2 AK |
229 | /* Mark stack accessible for KASAN. */ |
230 | kasan_unpoison_range(s->addr, THREAD_SIZE); | |
eafb149e | 231 | |
ca182551 KK |
232 | /* Clear stale pointers from reused stack. */ |
233 | memset(s->addr, 0, THREAD_SIZE); | |
e01e8063 | 234 | |
ac496bf4 | 235 | tsk->stack_vm_area = s; |
ba4a4574 | 236 | tsk->stack = s->addr; |
ac496bf4 AL |
237 | return s->addr; |
238 | } | |
ac496bf4 | 239 | |
9b6f7e16 RG |
240 | /* |
241 | * Allocated stacks are cached and later reused by new threads, | |
242 | * so memcg accounting is performed manually on assigning/releasing | |
243 | * stacks to tasks. Drop __GFP_ACCOUNT. | |
244 | */ | |
48ac3c18 | 245 | stack = __vmalloc_node_range(THREAD_SIZE, THREAD_ALIGN, |
ac496bf4 | 246 | VMALLOC_START, VMALLOC_END, |
9b6f7e16 | 247 | THREADINFO_GFP & ~__GFP_ACCOUNT, |
ac496bf4 AL |
248 | PAGE_KERNEL, |
249 | 0, node, __builtin_return_address(0)); | |
ba14a194 AL |
250 | |
251 | /* | |
252 | * We can't call find_vm_area() in interrupt context, and | |
253 | * free_thread_stack() can be called in interrupt context, | |
254 | * so cache the vm_struct. | |
255 | */ | |
5eed6f1d | 256 | if (stack) { |
ba14a194 | 257 | tsk->stack_vm_area = find_vm_area(stack); |
5eed6f1d RR |
258 | tsk->stack = stack; |
259 | } | |
ba14a194 AL |
260 | return stack; |
261 | #else | |
4949148a VD |
262 | struct page *page = alloc_pages_node(node, THREADINFO_GFP, |
263 | THREAD_SIZE_ORDER); | |
b6a84016 | 264 | |
1bf4580e | 265 | if (likely(page)) { |
8dcc1d34 | 266 | tsk->stack = kasan_reset_tag(page_address(page)); |
1bf4580e AA |
267 | return tsk->stack; |
268 | } | |
269 | return NULL; | |
ba14a194 | 270 | #endif |
b69c49b7 FT |
271 | } |
272 | ||
ba14a194 | 273 | static inline void free_thread_stack(struct task_struct *tsk) |
b69c49b7 | 274 | { |
ac496bf4 | 275 | #ifdef CONFIG_VMAP_STACK |
9b6f7e16 RG |
276 | struct vm_struct *vm = task_stack_vm_area(tsk); |
277 | ||
278 | if (vm) { | |
ac496bf4 AL |
279 | int i; |
280 | ||
991e7673 | 281 | for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++) |
f4b00eab | 282 | memcg_kmem_uncharge_page(vm->pages[i], 0); |
9b6f7e16 | 283 | |
ac496bf4 | 284 | for (i = 0; i < NR_CACHED_STACKS; i++) { |
112166f8 CL |
285 | if (this_cpu_cmpxchg(cached_stacks[i], |
286 | NULL, tsk->stack_vm_area) != NULL) | |
ac496bf4 AL |
287 | continue; |
288 | ||
ac496bf4 AL |
289 | return; |
290 | } | |
ac496bf4 | 291 | |
0f110a9b | 292 | vfree_atomic(tsk->stack); |
ac496bf4 AL |
293 | return; |
294 | } | |
295 | #endif | |
296 | ||
297 | __free_pages(virt_to_page(tsk->stack), THREAD_SIZE_ORDER); | |
b69c49b7 | 298 | } |
0d15d74a | 299 | # else |
b235beea | 300 | static struct kmem_cache *thread_stack_cache; |
0d15d74a | 301 | |
9521d399 | 302 | static unsigned long *alloc_thread_stack_node(struct task_struct *tsk, |
0d15d74a TG |
303 | int node) |
304 | { | |
5eed6f1d RR |
305 | unsigned long *stack; |
306 | stack = kmem_cache_alloc_node(thread_stack_cache, THREADINFO_GFP, node); | |
8dcc1d34 | 307 | stack = kasan_reset_tag(stack); |
5eed6f1d RR |
308 | tsk->stack = stack; |
309 | return stack; | |
0d15d74a TG |
310 | } |
311 | ||
ba14a194 | 312 | static void free_thread_stack(struct task_struct *tsk) |
0d15d74a | 313 | { |
ba14a194 | 314 | kmem_cache_free(thread_stack_cache, tsk->stack); |
0d15d74a TG |
315 | } |
316 | ||
b235beea | 317 | void thread_stack_cache_init(void) |
0d15d74a | 318 | { |
f9d29946 DW |
319 | thread_stack_cache = kmem_cache_create_usercopy("thread_stack", |
320 | THREAD_SIZE, THREAD_SIZE, 0, 0, | |
321 | THREAD_SIZE, NULL); | |
b235beea | 322 | BUG_ON(thread_stack_cache == NULL); |
0d15d74a TG |
323 | } |
324 | # endif | |
b69c49b7 FT |
325 | #endif |
326 | ||
1da177e4 | 327 | /* SLAB cache for signal_struct structures (tsk->signal) */ |
e18b890b | 328 | static struct kmem_cache *signal_cachep; |
1da177e4 LT |
329 | |
330 | /* SLAB cache for sighand_struct structures (tsk->sighand) */ | |
e18b890b | 331 | struct kmem_cache *sighand_cachep; |
1da177e4 LT |
332 | |
333 | /* SLAB cache for files_struct structures (tsk->files) */ | |
e18b890b | 334 | struct kmem_cache *files_cachep; |
1da177e4 LT |
335 | |
336 | /* SLAB cache for fs_struct structures (tsk->fs) */ | |
e18b890b | 337 | struct kmem_cache *fs_cachep; |
1da177e4 LT |
338 | |
339 | /* SLAB cache for vm_area_struct structures */ | |
3928d4f5 | 340 | static struct kmem_cache *vm_area_cachep; |
1da177e4 LT |
341 | |
342 | /* SLAB cache for mm_struct structures (tsk->mm) */ | |
e18b890b | 343 | static struct kmem_cache *mm_cachep; |
1da177e4 | 344 | |
490fc053 | 345 | struct vm_area_struct *vm_area_alloc(struct mm_struct *mm) |
3928d4f5 | 346 | { |
a670468f | 347 | struct vm_area_struct *vma; |
490fc053 | 348 | |
a670468f | 349 | vma = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); |
027232da KS |
350 | if (vma) |
351 | vma_init(vma, mm); | |
490fc053 | 352 | return vma; |
3928d4f5 LT |
353 | } |
354 | ||
355 | struct vm_area_struct *vm_area_dup(struct vm_area_struct *orig) | |
356 | { | |
95faf699 LT |
357 | struct vm_area_struct *new = kmem_cache_alloc(vm_area_cachep, GFP_KERNEL); |
358 | ||
359 | if (new) { | |
cda099b3 QC |
360 | ASSERT_EXCLUSIVE_WRITER(orig->vm_flags); |
361 | ASSERT_EXCLUSIVE_WRITER(orig->vm_file); | |
362 | /* | |
363 | * orig->shared.rb may be modified concurrently, but the clone | |
364 | * will be reinitialized. | |
365 | */ | |
366 | *new = data_race(*orig); | |
95faf699 | 367 | INIT_LIST_HEAD(&new->anon_vma_chain); |
e39a4b33 | 368 | new->vm_next = new->vm_prev = NULL; |
95faf699 LT |
369 | } |
370 | return new; | |
3928d4f5 LT |
371 | } |
372 | ||
373 | void vm_area_free(struct vm_area_struct *vma) | |
374 | { | |
375 | kmem_cache_free(vm_area_cachep, vma); | |
376 | } | |
377 | ||
ba14a194 | 378 | static void account_kernel_stack(struct task_struct *tsk, int account) |
c6a7f572 | 379 | { |
ba14a194 AL |
380 | void *stack = task_stack_page(tsk); |
381 | struct vm_struct *vm = task_stack_vm_area(tsk); | |
382 | ||
27faca83 MS |
383 | if (vm) { |
384 | int i; | |
ba14a194 | 385 | |
27faca83 MS |
386 | for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++) |
387 | mod_lruvec_page_state(vm->pages[i], NR_KERNEL_STACK_KB, | |
388 | account * (PAGE_SIZE / 1024)); | |
389 | } else { | |
390 | /* All stack pages are in the same node. */ | |
da3ceeff | 391 | mod_lruvec_kmem_state(stack, NR_KERNEL_STACK_KB, |
991e7673 | 392 | account * (THREAD_SIZE / 1024)); |
27faca83 | 393 | } |
c6a7f572 KM |
394 | } |
395 | ||
9b6f7e16 RG |
396 | static int memcg_charge_kernel_stack(struct task_struct *tsk) |
397 | { | |
398 | #ifdef CONFIG_VMAP_STACK | |
399 | struct vm_struct *vm = task_stack_vm_area(tsk); | |
400 | int ret; | |
401 | ||
991e7673 SB |
402 | BUILD_BUG_ON(IS_ENABLED(CONFIG_VMAP_STACK) && PAGE_SIZE % 1024 != 0); |
403 | ||
9b6f7e16 RG |
404 | if (vm) { |
405 | int i; | |
406 | ||
991e7673 SB |
407 | BUG_ON(vm->nr_pages != THREAD_SIZE / PAGE_SIZE); |
408 | ||
9b6f7e16 RG |
409 | for (i = 0; i < THREAD_SIZE / PAGE_SIZE; i++) { |
410 | /* | |
bcfe06bf RG |
411 | * If memcg_kmem_charge_page() fails, page's |
412 | * memory cgroup pointer is NULL, and | |
413 | * memcg_kmem_uncharge_page() in free_thread_stack() | |
414 | * will ignore this page. | |
9b6f7e16 | 415 | */ |
f4b00eab RG |
416 | ret = memcg_kmem_charge_page(vm->pages[i], GFP_KERNEL, |
417 | 0); | |
9b6f7e16 RG |
418 | if (ret) |
419 | return ret; | |
9b6f7e16 RG |
420 | } |
421 | } | |
422 | #endif | |
423 | return 0; | |
424 | } | |
425 | ||
68f24b08 | 426 | static void release_task_stack(struct task_struct *tsk) |
1da177e4 | 427 | { |
2f064a59 | 428 | if (WARN_ON(READ_ONCE(tsk->__state) != TASK_DEAD)) |
405c0759 AL |
429 | return; /* Better to leak the stack than to free prematurely */ |
430 | ||
ba14a194 | 431 | account_kernel_stack(tsk, -1); |
ba14a194 | 432 | free_thread_stack(tsk); |
68f24b08 AL |
433 | tsk->stack = NULL; |
434 | #ifdef CONFIG_VMAP_STACK | |
435 | tsk->stack_vm_area = NULL; | |
436 | #endif | |
437 | } | |
438 | ||
439 | #ifdef CONFIG_THREAD_INFO_IN_TASK | |
440 | void put_task_stack(struct task_struct *tsk) | |
441 | { | |
f0b89d39 | 442 | if (refcount_dec_and_test(&tsk->stack_refcount)) |
68f24b08 AL |
443 | release_task_stack(tsk); |
444 | } | |
445 | #endif | |
446 | ||
447 | void free_task(struct task_struct *tsk) | |
448 | { | |
b90ca8ba | 449 | release_user_cpus_ptr(tsk); |
d08b9f0c ST |
450 | scs_release(tsk); |
451 | ||
68f24b08 AL |
452 | #ifndef CONFIG_THREAD_INFO_IN_TASK |
453 | /* | |
454 | * The task is finally done with both the stack and thread_info, | |
455 | * so free both. | |
456 | */ | |
457 | release_task_stack(tsk); | |
458 | #else | |
459 | /* | |
460 | * If the task had a separate stack allocation, it should be gone | |
461 | * by now. | |
462 | */ | |
f0b89d39 | 463 | WARN_ON_ONCE(refcount_read(&tsk->stack_refcount) != 0); |
68f24b08 | 464 | #endif |
23f78d4a | 465 | rt_mutex_debug_task_free(tsk); |
fb52607a | 466 | ftrace_graph_exit_task(tsk); |
f19b9f74 | 467 | arch_release_task_struct(tsk); |
1da5c46f ON |
468 | if (tsk->flags & PF_KTHREAD) |
469 | free_kthread_struct(tsk); | |
1da177e4 LT |
470 | free_task_struct(tsk); |
471 | } | |
472 | EXPORT_SYMBOL(free_task); | |
473 | ||
fe69d560 DH |
474 | static void dup_mm_exe_file(struct mm_struct *mm, struct mm_struct *oldmm) |
475 | { | |
476 | struct file *exe_file; | |
477 | ||
478 | exe_file = get_mm_exe_file(oldmm); | |
479 | RCU_INIT_POINTER(mm->exe_file, exe_file); | |
480 | /* | |
481 | * We depend on the oldmm having properly denied write access to the | |
482 | * exe_file already. | |
483 | */ | |
484 | if (exe_file && deny_write_access(exe_file)) | |
485 | pr_warn_once("deny_write_access() failed in %s\n", __func__); | |
486 | } | |
487 | ||
d70f2a14 AM |
488 | #ifdef CONFIG_MMU |
489 | static __latent_entropy int dup_mmap(struct mm_struct *mm, | |
490 | struct mm_struct *oldmm) | |
491 | { | |
492 | struct vm_area_struct *mpnt, *tmp, *prev, **pprev; | |
493 | struct rb_node **rb_link, *rb_parent; | |
494 | int retval; | |
495 | unsigned long charge; | |
496 | LIST_HEAD(uf); | |
497 | ||
498 | uprobe_start_dup_mmap(); | |
d8ed45c5 | 499 | if (mmap_write_lock_killable(oldmm)) { |
d70f2a14 AM |
500 | retval = -EINTR; |
501 | goto fail_uprobe_end; | |
502 | } | |
503 | flush_cache_dup_mm(oldmm); | |
504 | uprobe_dup_mmap(oldmm, mm); | |
505 | /* | |
506 | * Not linked in yet - no deadlock potential: | |
507 | */ | |
aaa2cc56 | 508 | mmap_write_lock_nested(mm, SINGLE_DEPTH_NESTING); |
d70f2a14 AM |
509 | |
510 | /* No ordering required: file already has been exposed. */ | |
fe69d560 | 511 | dup_mm_exe_file(mm, oldmm); |
d70f2a14 AM |
512 | |
513 | mm->total_vm = oldmm->total_vm; | |
514 | mm->data_vm = oldmm->data_vm; | |
515 | mm->exec_vm = oldmm->exec_vm; | |
516 | mm->stack_vm = oldmm->stack_vm; | |
517 | ||
518 | rb_link = &mm->mm_rb.rb_node; | |
519 | rb_parent = NULL; | |
520 | pprev = &mm->mmap; | |
521 | retval = ksm_fork(mm, oldmm); | |
522 | if (retval) | |
523 | goto out; | |
524 | retval = khugepaged_fork(mm, oldmm); | |
525 | if (retval) | |
526 | goto out; | |
527 | ||
528 | prev = NULL; | |
529 | for (mpnt = oldmm->mmap; mpnt; mpnt = mpnt->vm_next) { | |
530 | struct file *file; | |
531 | ||
532 | if (mpnt->vm_flags & VM_DONTCOPY) { | |
533 | vm_stat_account(mm, mpnt->vm_flags, -vma_pages(mpnt)); | |
534 | continue; | |
535 | } | |
536 | charge = 0; | |
655c79bb TH |
537 | /* |
538 | * Don't duplicate many vmas if we've been oom-killed (for | |
539 | * example) | |
540 | */ | |
541 | if (fatal_signal_pending(current)) { | |
542 | retval = -EINTR; | |
543 | goto out; | |
544 | } | |
d70f2a14 AM |
545 | if (mpnt->vm_flags & VM_ACCOUNT) { |
546 | unsigned long len = vma_pages(mpnt); | |
547 | ||
548 | if (security_vm_enough_memory_mm(oldmm, len)) /* sic */ | |
549 | goto fail_nomem; | |
550 | charge = len; | |
551 | } | |
3928d4f5 | 552 | tmp = vm_area_dup(mpnt); |
d70f2a14 AM |
553 | if (!tmp) |
554 | goto fail_nomem; | |
d70f2a14 AM |
555 | retval = vma_dup_policy(mpnt, tmp); |
556 | if (retval) | |
557 | goto fail_nomem_policy; | |
558 | tmp->vm_mm = mm; | |
559 | retval = dup_userfaultfd(tmp, &uf); | |
560 | if (retval) | |
561 | goto fail_nomem_anon_vma_fork; | |
562 | if (tmp->vm_flags & VM_WIPEONFORK) { | |
93949bb2 LX |
563 | /* |
564 | * VM_WIPEONFORK gets a clean slate in the child. | |
565 | * Don't prepare anon_vma until fault since we don't | |
566 | * copy page for current vma. | |
567 | */ | |
d70f2a14 | 568 | tmp->anon_vma = NULL; |
d70f2a14 AM |
569 | } else if (anon_vma_fork(tmp, mpnt)) |
570 | goto fail_nomem_anon_vma_fork; | |
571 | tmp->vm_flags &= ~(VM_LOCKED | VM_LOCKONFAULT); | |
d70f2a14 AM |
572 | file = tmp->vm_file; |
573 | if (file) { | |
d70f2a14 AM |
574 | struct address_space *mapping = file->f_mapping; |
575 | ||
576 | get_file(file); | |
d70f2a14 AM |
577 | i_mmap_lock_write(mapping); |
578 | if (tmp->vm_flags & VM_SHARED) | |
cf508b58 | 579 | mapping_allow_writable(mapping); |
d70f2a14 AM |
580 | flush_dcache_mmap_lock(mapping); |
581 | /* insert tmp into the share list, just after mpnt */ | |
582 | vma_interval_tree_insert_after(tmp, mpnt, | |
583 | &mapping->i_mmap); | |
584 | flush_dcache_mmap_unlock(mapping); | |
585 | i_mmap_unlock_write(mapping); | |
586 | } | |
587 | ||
588 | /* | |
589 | * Clear hugetlb-related page reserves for children. This only | |
590 | * affects MAP_PRIVATE mappings. Faults generated by the child | |
591 | * are not guaranteed to succeed, even if read-only | |
592 | */ | |
593 | if (is_vm_hugetlb_page(tmp)) | |
594 | reset_vma_resv_huge_pages(tmp); | |
595 | ||
596 | /* | |
597 | * Link in the new vma and copy the page table entries. | |
598 | */ | |
599 | *pprev = tmp; | |
600 | pprev = &tmp->vm_next; | |
601 | tmp->vm_prev = prev; | |
602 | prev = tmp; | |
603 | ||
604 | __vma_link_rb(mm, tmp, rb_link, rb_parent); | |
605 | rb_link = &tmp->vm_rb.rb_right; | |
606 | rb_parent = &tmp->vm_rb; | |
607 | ||
608 | mm->map_count++; | |
609 | if (!(tmp->vm_flags & VM_WIPEONFORK)) | |
c78f4636 | 610 | retval = copy_page_range(tmp, mpnt); |
d70f2a14 AM |
611 | |
612 | if (tmp->vm_ops && tmp->vm_ops->open) | |
613 | tmp->vm_ops->open(tmp); | |
614 | ||
615 | if (retval) | |
616 | goto out; | |
617 | } | |
618 | /* a new mm has just been created */ | |
1ed0cc5a | 619 | retval = arch_dup_mmap(oldmm, mm); |
d70f2a14 | 620 | out: |
d8ed45c5 | 621 | mmap_write_unlock(mm); |
d70f2a14 | 622 | flush_tlb_mm(oldmm); |
d8ed45c5 | 623 | mmap_write_unlock(oldmm); |
d70f2a14 AM |
624 | dup_userfaultfd_complete(&uf); |
625 | fail_uprobe_end: | |
626 | uprobe_end_dup_mmap(); | |
627 | return retval; | |
628 | fail_nomem_anon_vma_fork: | |
629 | mpol_put(vma_policy(tmp)); | |
630 | fail_nomem_policy: | |
3928d4f5 | 631 | vm_area_free(tmp); |
d70f2a14 AM |
632 | fail_nomem: |
633 | retval = -ENOMEM; | |
634 | vm_unacct_memory(charge); | |
635 | goto out; | |
636 | } | |
637 | ||
638 | static inline int mm_alloc_pgd(struct mm_struct *mm) | |
639 | { | |
640 | mm->pgd = pgd_alloc(mm); | |
641 | if (unlikely(!mm->pgd)) | |
642 | return -ENOMEM; | |
643 | return 0; | |
644 | } | |
645 | ||
646 | static inline void mm_free_pgd(struct mm_struct *mm) | |
647 | { | |
648 | pgd_free(mm, mm->pgd); | |
649 | } | |
650 | #else | |
651 | static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm) | |
652 | { | |
d8ed45c5 | 653 | mmap_write_lock(oldmm); |
fe69d560 | 654 | dup_mm_exe_file(mm, oldmm); |
d8ed45c5 | 655 | mmap_write_unlock(oldmm); |
d70f2a14 AM |
656 | return 0; |
657 | } | |
658 | #define mm_alloc_pgd(mm) (0) | |
659 | #define mm_free_pgd(mm) | |
660 | #endif /* CONFIG_MMU */ | |
661 | ||
662 | static void check_mm(struct mm_struct *mm) | |
663 | { | |
664 | int i; | |
665 | ||
8495f7e6 SPP |
666 | BUILD_BUG_ON_MSG(ARRAY_SIZE(resident_page_types) != NR_MM_COUNTERS, |
667 | "Please make sure 'struct resident_page_types[]' is updated as well"); | |
668 | ||
d70f2a14 AM |
669 | for (i = 0; i < NR_MM_COUNTERS; i++) { |
670 | long x = atomic_long_read(&mm->rss_stat.count[i]); | |
671 | ||
672 | if (unlikely(x)) | |
8495f7e6 SPP |
673 | pr_alert("BUG: Bad rss-counter state mm:%p type:%s val:%ld\n", |
674 | mm, resident_page_types[i], x); | |
d70f2a14 AM |
675 | } |
676 | ||
677 | if (mm_pgtables_bytes(mm)) | |
678 | pr_alert("BUG: non-zero pgtables_bytes on freeing mm: %ld\n", | |
679 | mm_pgtables_bytes(mm)); | |
680 | ||
681 | #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS | |
682 | VM_BUG_ON_MM(mm->pmd_huge_pte, mm); | |
683 | #endif | |
684 | } | |
685 | ||
686 | #define allocate_mm() (kmem_cache_alloc(mm_cachep, GFP_KERNEL)) | |
687 | #define free_mm(mm) (kmem_cache_free(mm_cachep, (mm))) | |
688 | ||
689 | /* | |
690 | * Called when the last reference to the mm | |
691 | * is dropped: either by a lazy thread or by | |
692 | * mmput. Free the page directory and the mm. | |
693 | */ | |
d34bc48f | 694 | void __mmdrop(struct mm_struct *mm) |
d70f2a14 AM |
695 | { |
696 | BUG_ON(mm == &init_mm); | |
3eda69c9 MR |
697 | WARN_ON_ONCE(mm == current->mm); |
698 | WARN_ON_ONCE(mm == current->active_mm); | |
d70f2a14 AM |
699 | mm_free_pgd(mm); |
700 | destroy_context(mm); | |
984cfe4e | 701 | mmu_notifier_subscriptions_destroy(mm); |
d70f2a14 AM |
702 | check_mm(mm); |
703 | put_user_ns(mm->user_ns); | |
704 | free_mm(mm); | |
705 | } | |
d34bc48f | 706 | EXPORT_SYMBOL_GPL(__mmdrop); |
d70f2a14 AM |
707 | |
708 | static void mmdrop_async_fn(struct work_struct *work) | |
709 | { | |
710 | struct mm_struct *mm; | |
711 | ||
712 | mm = container_of(work, struct mm_struct, async_put_work); | |
713 | __mmdrop(mm); | |
714 | } | |
715 | ||
716 | static void mmdrop_async(struct mm_struct *mm) | |
717 | { | |
718 | if (unlikely(atomic_dec_and_test(&mm->mm_count))) { | |
719 | INIT_WORK(&mm->async_put_work, mmdrop_async_fn); | |
720 | schedule_work(&mm->async_put_work); | |
721 | } | |
722 | } | |
723 | ||
ea6d290c ON |
724 | static inline void free_signal_struct(struct signal_struct *sig) |
725 | { | |
97101eb4 | 726 | taskstats_tgid_free(sig); |
1c5354de | 727 | sched_autogroup_exit(sig); |
7283094e MH |
728 | /* |
729 | * __mmdrop is not safe to call from softirq context on x86 due to | |
730 | * pgd_dtor so postpone it to the async context | |
731 | */ | |
26db62f1 | 732 | if (sig->oom_mm) |
7283094e | 733 | mmdrop_async(sig->oom_mm); |
ea6d290c ON |
734 | kmem_cache_free(signal_cachep, sig); |
735 | } | |
736 | ||
737 | static inline void put_signal_struct(struct signal_struct *sig) | |
738 | { | |
60d4de3f | 739 | if (refcount_dec_and_test(&sig->sigcnt)) |
ea6d290c ON |
740 | free_signal_struct(sig); |
741 | } | |
742 | ||
158d9ebd | 743 | void __put_task_struct(struct task_struct *tsk) |
1da177e4 | 744 | { |
270f722d | 745 | WARN_ON(!tsk->exit_state); |
ec1d2819 | 746 | WARN_ON(refcount_read(&tsk->usage)); |
1da177e4 LT |
747 | WARN_ON(tsk == current); |
748 | ||
0f212204 | 749 | io_uring_free(tsk); |
2e91fa7f | 750 | cgroup_free(tsk); |
16d51a59 | 751 | task_numa_free(tsk, true); |
1a2a4d06 | 752 | security_task_free(tsk); |
a10787e6 | 753 | bpf_task_storage_free(tsk); |
e0e81739 | 754 | exit_creds(tsk); |
35df17c5 | 755 | delayacct_tsk_free(tsk); |
ea6d290c | 756 | put_signal_struct(tsk->signal); |
6e33cad0 | 757 | sched_core_free(tsk); |
1da177e4 LT |
758 | |
759 | if (!profile_handoff_task(tsk)) | |
760 | free_task(tsk); | |
761 | } | |
77c100c8 | 762 | EXPORT_SYMBOL_GPL(__put_task_struct); |
1da177e4 | 763 | |
6c0a9fa6 | 764 | void __init __weak arch_task_cache_init(void) { } |
61c4628b | 765 | |
ff691f6e HS |
766 | /* |
767 | * set_max_threads | |
768 | */ | |
16db3d3f | 769 | static void set_max_threads(unsigned int max_threads_suggested) |
ff691f6e | 770 | { |
ac1b398d | 771 | u64 threads; |
ca79b0c2 | 772 | unsigned long nr_pages = totalram_pages(); |
ff691f6e HS |
773 | |
774 | /* | |
ac1b398d HS |
775 | * The number of threads shall be limited such that the thread |
776 | * structures may only consume a small part of the available memory. | |
ff691f6e | 777 | */ |
3d6357de | 778 | if (fls64(nr_pages) + fls64(PAGE_SIZE) > 64) |
ac1b398d HS |
779 | threads = MAX_THREADS; |
780 | else | |
3d6357de | 781 | threads = div64_u64((u64) nr_pages * (u64) PAGE_SIZE, |
ac1b398d HS |
782 | (u64) THREAD_SIZE * 8UL); |
783 | ||
16db3d3f HS |
784 | if (threads > max_threads_suggested) |
785 | threads = max_threads_suggested; | |
786 | ||
ac1b398d | 787 | max_threads = clamp_t(u64, threads, MIN_THREADS, MAX_THREADS); |
ff691f6e HS |
788 | } |
789 | ||
5aaeb5c0 IM |
790 | #ifdef CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT |
791 | /* Initialized by the architecture: */ | |
792 | int arch_task_struct_size __read_mostly; | |
793 | #endif | |
0c8c0f03 | 794 | |
4189ff23 | 795 | #ifndef CONFIG_ARCH_TASK_STRUCT_ALLOCATOR |
5905429a KC |
796 | static void task_struct_whitelist(unsigned long *offset, unsigned long *size) |
797 | { | |
798 | /* Fetch thread_struct whitelist for the architecture. */ | |
799 | arch_thread_struct_whitelist(offset, size); | |
800 | ||
801 | /* | |
802 | * Handle zero-sized whitelist or empty thread_struct, otherwise | |
803 | * adjust offset to position of thread_struct in task_struct. | |
804 | */ | |
805 | if (unlikely(*size == 0)) | |
806 | *offset = 0; | |
807 | else | |
808 | *offset += offsetof(struct task_struct, thread); | |
809 | } | |
4189ff23 | 810 | #endif /* CONFIG_ARCH_TASK_STRUCT_ALLOCATOR */ |
5905429a | 811 | |
ff691f6e | 812 | void __init fork_init(void) |
1da177e4 | 813 | { |
25f9c081 | 814 | int i; |
f5e10287 | 815 | #ifndef CONFIG_ARCH_TASK_STRUCT_ALLOCATOR |
1da177e4 | 816 | #ifndef ARCH_MIN_TASKALIGN |
e274795e | 817 | #define ARCH_MIN_TASKALIGN 0 |
1da177e4 | 818 | #endif |
95cb64c1 | 819 | int align = max_t(int, L1_CACHE_BYTES, ARCH_MIN_TASKALIGN); |
5905429a | 820 | unsigned long useroffset, usersize; |
e274795e | 821 | |
1da177e4 | 822 | /* create a slab on which task_structs can be allocated */ |
5905429a KC |
823 | task_struct_whitelist(&useroffset, &usersize); |
824 | task_struct_cachep = kmem_cache_create_usercopy("task_struct", | |
e274795e | 825 | arch_task_struct_size, align, |
5905429a KC |
826 | SLAB_PANIC|SLAB_ACCOUNT, |
827 | useroffset, usersize, NULL); | |
1da177e4 LT |
828 | #endif |
829 | ||
61c4628b SS |
830 | /* do the arch specific task caches init */ |
831 | arch_task_cache_init(); | |
832 | ||
16db3d3f | 833 | set_max_threads(MAX_THREADS); |
1da177e4 LT |
834 | |
835 | init_task.signal->rlim[RLIMIT_NPROC].rlim_cur = max_threads/2; | |
836 | init_task.signal->rlim[RLIMIT_NPROC].rlim_max = max_threads/2; | |
837 | init_task.signal->rlim[RLIMIT_SIGPENDING] = | |
838 | init_task.signal->rlim[RLIMIT_NPROC]; | |
b376c3e1 | 839 | |
21d1c5e3 | 840 | for (i = 0; i < MAX_PER_NAMESPACE_UCOUNTS; i++) |
25f9c081 | 841 | init_user_ns.ucount_max[i] = max_threads/2; |
19659c59 | 842 | |
5ddf994f EB |
843 | set_rlimit_ucount_max(&init_user_ns, UCOUNT_RLIMIT_NPROC, RLIM_INFINITY); |
844 | set_rlimit_ucount_max(&init_user_ns, UCOUNT_RLIMIT_MSGQUEUE, RLIM_INFINITY); | |
845 | set_rlimit_ucount_max(&init_user_ns, UCOUNT_RLIMIT_SIGPENDING, RLIM_INFINITY); | |
846 | set_rlimit_ucount_max(&init_user_ns, UCOUNT_RLIMIT_MEMLOCK, RLIM_INFINITY); | |
21d1c5e3 | 847 | |
19659c59 HR |
848 | #ifdef CONFIG_VMAP_STACK |
849 | cpuhp_setup_state(CPUHP_BP_PREPARE_DYN, "fork:vm_stack_cache", | |
850 | NULL, free_vm_stack_cache); | |
851 | #endif | |
b09be676 | 852 | |
d08b9f0c ST |
853 | scs_init(); |
854 | ||
b09be676 | 855 | lockdep_init_task(&init_task); |
aad42dd4 | 856 | uprobes_init(); |
1da177e4 LT |
857 | } |
858 | ||
52f5684c | 859 | int __weak arch_dup_task_struct(struct task_struct *dst, |
61c4628b SS |
860 | struct task_struct *src) |
861 | { | |
862 | *dst = *src; | |
863 | return 0; | |
864 | } | |
865 | ||
d4311ff1 AT |
866 | void set_task_stack_end_magic(struct task_struct *tsk) |
867 | { | |
868 | unsigned long *stackend; | |
869 | ||
870 | stackend = end_of_stack(tsk); | |
871 | *stackend = STACK_END_MAGIC; /* for overflow detection */ | |
872 | } | |
873 | ||
725fc629 | 874 | static struct task_struct *dup_task_struct(struct task_struct *orig, int node) |
1da177e4 LT |
875 | { |
876 | struct task_struct *tsk; | |
b235beea | 877 | unsigned long *stack; |
0f4991e8 | 878 | struct vm_struct *stack_vm_area __maybe_unused; |
3e26c149 | 879 | int err; |
1da177e4 | 880 | |
725fc629 AK |
881 | if (node == NUMA_NO_NODE) |
882 | node = tsk_fork_get_node(orig); | |
504f52b5 | 883 | tsk = alloc_task_struct_node(node); |
1da177e4 LT |
884 | if (!tsk) |
885 | return NULL; | |
886 | ||
b235beea LT |
887 | stack = alloc_thread_stack_node(tsk, node); |
888 | if (!stack) | |
f19b9f74 | 889 | goto free_tsk; |
1da177e4 | 890 | |
9b6f7e16 RG |
891 | if (memcg_charge_kernel_stack(tsk)) |
892 | goto free_stack; | |
893 | ||
ba14a194 AL |
894 | stack_vm_area = task_stack_vm_area(tsk); |
895 | ||
fb0a685c | 896 | err = arch_dup_task_struct(tsk, orig); |
ba14a194 AL |
897 | |
898 | /* | |
899 | * arch_dup_task_struct() clobbers the stack-related fields. Make | |
900 | * sure they're properly initialized before using any stack-related | |
901 | * functions again. | |
902 | */ | |
903 | tsk->stack = stack; | |
904 | #ifdef CONFIG_VMAP_STACK | |
905 | tsk->stack_vm_area = stack_vm_area; | |
906 | #endif | |
68f24b08 | 907 | #ifdef CONFIG_THREAD_INFO_IN_TASK |
f0b89d39 | 908 | refcount_set(&tsk->stack_refcount, 1); |
68f24b08 | 909 | #endif |
ba14a194 | 910 | |
164c33c6 | 911 | if (err) |
b235beea | 912 | goto free_stack; |
164c33c6 | 913 | |
d08b9f0c ST |
914 | err = scs_prepare(tsk, node); |
915 | if (err) | |
916 | goto free_stack; | |
917 | ||
dbd95212 KC |
918 | #ifdef CONFIG_SECCOMP |
919 | /* | |
920 | * We must handle setting up seccomp filters once we're under | |
921 | * the sighand lock in case orig has changed between now and | |
922 | * then. Until then, filter must be NULL to avoid messing up | |
923 | * the usage counts on the error path calling free_task. | |
924 | */ | |
925 | tsk->seccomp.filter = NULL; | |
926 | #endif | |
87bec58a AM |
927 | |
928 | setup_thread_stack(tsk, orig); | |
8e7cac79 | 929 | clear_user_return_notifier(tsk); |
f26f9aff | 930 | clear_tsk_need_resched(tsk); |
d4311ff1 | 931 | set_task_stack_end_magic(tsk); |
1446e1df | 932 | clear_syscall_work_syscall_user_dispatch(tsk); |
1da177e4 | 933 | |
050e9baa | 934 | #ifdef CONFIG_STACKPROTECTOR |
7cd815bc | 935 | tsk->stack_canary = get_random_canary(); |
0a425405 | 936 | #endif |
3bd37062 SAS |
937 | if (orig->cpus_ptr == &orig->cpus_mask) |
938 | tsk->cpus_ptr = &tsk->cpus_mask; | |
b90ca8ba | 939 | dup_user_cpus_ptr(tsk, orig, node); |
0a425405 | 940 | |
fb0a685c | 941 | /* |
0ff7b2cf EB |
942 | * One for the user space visible state that goes away when reaped. |
943 | * One for the scheduler. | |
fb0a685c | 944 | */ |
0ff7b2cf EB |
945 | refcount_set(&tsk->rcu_users, 2); |
946 | /* One for the rcu users */ | |
947 | refcount_set(&tsk->usage, 1); | |
6c5c9341 | 948 | #ifdef CONFIG_BLK_DEV_IO_TRACE |
2056a782 | 949 | tsk->btrace_seq = 0; |
6c5c9341 | 950 | #endif |
a0aa7f68 | 951 | tsk->splice_pipe = NULL; |
5640f768 | 952 | tsk->task_frag.page = NULL; |
093e5840 | 953 | tsk->wake_q.next = NULL; |
ff244303 | 954 | tsk->pf_io_worker = NULL; |
c6a7f572 | 955 | |
ba14a194 | 956 | account_kernel_stack(tsk, 1); |
c6a7f572 | 957 | |
5c9a8750 | 958 | kcov_task_init(tsk); |
5fbda3ec | 959 | kmap_local_fork(tsk); |
5c9a8750 | 960 | |
e41d5818 DV |
961 | #ifdef CONFIG_FAULT_INJECTION |
962 | tsk->fail_nth = 0; | |
963 | #endif | |
964 | ||
2c323017 JB |
965 | #ifdef CONFIG_BLK_CGROUP |
966 | tsk->throttle_queue = NULL; | |
967 | tsk->use_memdelay = 0; | |
968 | #endif | |
969 | ||
d46eb14b SB |
970 | #ifdef CONFIG_MEMCG |
971 | tsk->active_memcg = NULL; | |
972 | #endif | |
1da177e4 | 973 | return tsk; |
61c4628b | 974 | |
b235beea | 975 | free_stack: |
ba14a194 | 976 | free_thread_stack(tsk); |
f19b9f74 | 977 | free_tsk: |
61c4628b SS |
978 | free_task_struct(tsk); |
979 | return NULL; | |
1da177e4 LT |
980 | } |
981 | ||
23ff4440 | 982 | __cacheline_aligned_in_smp DEFINE_SPINLOCK(mmlist_lock); |
1da177e4 | 983 | |
4cb0e11b HK |
984 | static unsigned long default_dump_filter = MMF_DUMP_FILTER_DEFAULT; |
985 | ||
986 | static int __init coredump_filter_setup(char *s) | |
987 | { | |
988 | default_dump_filter = | |
989 | (simple_strtoul(s, NULL, 0) << MMF_DUMP_FILTER_SHIFT) & | |
990 | MMF_DUMP_FILTER_MASK; | |
991 | return 1; | |
992 | } | |
993 | ||
994 | __setup("coredump_filter=", coredump_filter_setup); | |
995 | ||
1da177e4 LT |
996 | #include <linux/init_task.h> |
997 | ||
858f0993 AD |
998 | static void mm_init_aio(struct mm_struct *mm) |
999 | { | |
1000 | #ifdef CONFIG_AIO | |
1001 | spin_lock_init(&mm->ioctx_lock); | |
db446a08 | 1002 | mm->ioctx_table = NULL; |
858f0993 AD |
1003 | #endif |
1004 | } | |
1005 | ||
c3f3ce04 AA |
1006 | static __always_inline void mm_clear_owner(struct mm_struct *mm, |
1007 | struct task_struct *p) | |
1008 | { | |
1009 | #ifdef CONFIG_MEMCG | |
1010 | if (mm->owner == p) | |
1011 | WRITE_ONCE(mm->owner, NULL); | |
1012 | #endif | |
1013 | } | |
1014 | ||
33144e84 VD |
1015 | static void mm_init_owner(struct mm_struct *mm, struct task_struct *p) |
1016 | { | |
1017 | #ifdef CONFIG_MEMCG | |
1018 | mm->owner = p; | |
1019 | #endif | |
1020 | } | |
1021 | ||
82e69a12 FY |
1022 | static void mm_init_pasid(struct mm_struct *mm) |
1023 | { | |
1024 | #ifdef CONFIG_IOMMU_SUPPORT | |
1025 | mm->pasid = INIT_PASID; | |
1026 | #endif | |
1027 | } | |
1028 | ||
355627f5 EB |
1029 | static void mm_init_uprobes_state(struct mm_struct *mm) |
1030 | { | |
1031 | #ifdef CONFIG_UPROBES | |
1032 | mm->uprobes_state.xol_area = NULL; | |
1033 | #endif | |
1034 | } | |
1035 | ||
bfedb589 EB |
1036 | static struct mm_struct *mm_init(struct mm_struct *mm, struct task_struct *p, |
1037 | struct user_namespace *user_ns) | |
1da177e4 | 1038 | { |
41f727fd VD |
1039 | mm->mmap = NULL; |
1040 | mm->mm_rb = RB_ROOT; | |
1041 | mm->vmacache_seqnum = 0; | |
1da177e4 LT |
1042 | atomic_set(&mm->mm_users, 1); |
1043 | atomic_set(&mm->mm_count, 1); | |
57efa1fe | 1044 | seqcount_init(&mm->write_protect_seq); |
d8ed45c5 | 1045 | mmap_init_lock(mm); |
1da177e4 | 1046 | INIT_LIST_HEAD(&mm->mmlist); |
999d9fc1 | 1047 | mm->core_state = NULL; |
af5b0f6a | 1048 | mm_pgtables_bytes_init(mm); |
41f727fd VD |
1049 | mm->map_count = 0; |
1050 | mm->locked_vm = 0; | |
70f8a3ca | 1051 | atomic64_set(&mm->pinned_vm, 0); |
d559db08 | 1052 | memset(&mm->rss_stat, 0, sizeof(mm->rss_stat)); |
1da177e4 | 1053 | spin_lock_init(&mm->page_table_lock); |
88aa7cc6 | 1054 | spin_lock_init(&mm->arg_lock); |
41f727fd | 1055 | mm_init_cpumask(mm); |
858f0993 | 1056 | mm_init_aio(mm); |
cf475ad2 | 1057 | mm_init_owner(mm, p); |
82e69a12 | 1058 | mm_init_pasid(mm); |
2b7e8665 | 1059 | RCU_INIT_POINTER(mm->exe_file, NULL); |
984cfe4e | 1060 | mmu_notifier_subscriptions_init(mm); |
16af97dc | 1061 | init_tlb_flush_pending(mm); |
41f727fd VD |
1062 | #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && !USE_SPLIT_PMD_PTLOCKS |
1063 | mm->pmd_huge_pte = NULL; | |
1064 | #endif | |
355627f5 | 1065 | mm_init_uprobes_state(mm); |
13db8c50 | 1066 | hugetlb_count_init(mm); |
1da177e4 | 1067 | |
a0715cc2 AT |
1068 | if (current->mm) { |
1069 | mm->flags = current->mm->flags & MMF_INIT_MASK; | |
1070 | mm->def_flags = current->mm->def_flags & VM_INIT_DEF_MASK; | |
1071 | } else { | |
1072 | mm->flags = default_dump_filter; | |
1da177e4 | 1073 | mm->def_flags = 0; |
a0715cc2 AT |
1074 | } |
1075 | ||
41f727fd VD |
1076 | if (mm_alloc_pgd(mm)) |
1077 | goto fail_nopgd; | |
1078 | ||
1079 | if (init_new_context(p, mm)) | |
1080 | goto fail_nocontext; | |
78fb7466 | 1081 | |
bfedb589 | 1082 | mm->user_ns = get_user_ns(user_ns); |
41f727fd VD |
1083 | return mm; |
1084 | ||
1085 | fail_nocontext: | |
1086 | mm_free_pgd(mm); | |
1087 | fail_nopgd: | |
1da177e4 LT |
1088 | free_mm(mm); |
1089 | return NULL; | |
1090 | } | |
1091 | ||
1092 | /* | |
1093 | * Allocate and initialize an mm_struct. | |
1094 | */ | |
fb0a685c | 1095 | struct mm_struct *mm_alloc(void) |
1da177e4 | 1096 | { |
fb0a685c | 1097 | struct mm_struct *mm; |
1da177e4 LT |
1098 | |
1099 | mm = allocate_mm(); | |
de03c72c KM |
1100 | if (!mm) |
1101 | return NULL; | |
1102 | ||
1103 | memset(mm, 0, sizeof(*mm)); | |
bfedb589 | 1104 | return mm_init(mm, current, current_user_ns()); |
1da177e4 LT |
1105 | } |
1106 | ||
ec8d7c14 MH |
1107 | static inline void __mmput(struct mm_struct *mm) |
1108 | { | |
1109 | VM_BUG_ON(atomic_read(&mm->mm_users)); | |
1110 | ||
1111 | uprobe_clear_state(mm); | |
1112 | exit_aio(mm); | |
1113 | ksm_exit(mm); | |
1114 | khugepaged_exit(mm); /* must run before exit_mmap */ | |
1115 | exit_mmap(mm); | |
6fcb52a5 | 1116 | mm_put_huge_zero_page(mm); |
ec8d7c14 MH |
1117 | set_mm_exe_file(mm, NULL); |
1118 | if (!list_empty(&mm->mmlist)) { | |
1119 | spin_lock(&mmlist_lock); | |
1120 | list_del(&mm->mmlist); | |
1121 | spin_unlock(&mmlist_lock); | |
1122 | } | |
1123 | if (mm->binfmt) | |
1124 | module_put(mm->binfmt->module); | |
1125 | mmdrop(mm); | |
1126 | } | |
1127 | ||
1da177e4 LT |
1128 | /* |
1129 | * Decrement the use count and release all resources for an mm. | |
1130 | */ | |
1131 | void mmput(struct mm_struct *mm) | |
1132 | { | |
0ae26f1b AM |
1133 | might_sleep(); |
1134 | ||
ec8d7c14 MH |
1135 | if (atomic_dec_and_test(&mm->mm_users)) |
1136 | __mmput(mm); | |
1137 | } | |
1138 | EXPORT_SYMBOL_GPL(mmput); | |
1139 | ||
a1b2289c SY |
1140 | #ifdef CONFIG_MMU |
1141 | static void mmput_async_fn(struct work_struct *work) | |
1142 | { | |
1143 | struct mm_struct *mm = container_of(work, struct mm_struct, | |
1144 | async_put_work); | |
1145 | ||
1146 | __mmput(mm); | |
1147 | } | |
1148 | ||
1149 | void mmput_async(struct mm_struct *mm) | |
1150 | { | |
1151 | if (atomic_dec_and_test(&mm->mm_users)) { | |
1152 | INIT_WORK(&mm->async_put_work, mmput_async_fn); | |
1153 | schedule_work(&mm->async_put_work); | |
1154 | } | |
1155 | } | |
1156 | #endif | |
1157 | ||
90f31d0e KK |
1158 | /** |
1159 | * set_mm_exe_file - change a reference to the mm's executable file | |
1160 | * | |
1161 | * This changes mm's executable file (shown as symlink /proc/[pid]/exe). | |
1162 | * | |
6e399cd1 DB |
1163 | * Main users are mmput() and sys_execve(). Callers prevent concurrent |
1164 | * invocations: in mmput() nobody alive left, in execve task is single | |
35d7bdc8 | 1165 | * threaded. |
fe69d560 DH |
1166 | * |
1167 | * Can only fail if new_exe_file != NULL. | |
90f31d0e | 1168 | */ |
fe69d560 | 1169 | int set_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) |
38646013 | 1170 | { |
6e399cd1 DB |
1171 | struct file *old_exe_file; |
1172 | ||
1173 | /* | |
1174 | * It is safe to dereference the exe_file without RCU as | |
1175 | * this function is only called if nobody else can access | |
1176 | * this mm -- see comment above for justification. | |
1177 | */ | |
1178 | old_exe_file = rcu_dereference_raw(mm->exe_file); | |
90f31d0e | 1179 | |
fe69d560 DH |
1180 | if (new_exe_file) { |
1181 | /* | |
1182 | * We expect the caller (i.e., sys_execve) to already denied | |
1183 | * write access, so this is unlikely to fail. | |
1184 | */ | |
1185 | if (unlikely(deny_write_access(new_exe_file))) | |
1186 | return -EACCES; | |
38646013 | 1187 | get_file(new_exe_file); |
fe69d560 | 1188 | } |
90f31d0e | 1189 | rcu_assign_pointer(mm->exe_file, new_exe_file); |
fe69d560 DH |
1190 | if (old_exe_file) { |
1191 | allow_write_access(old_exe_file); | |
90f31d0e | 1192 | fput(old_exe_file); |
fe69d560 DH |
1193 | } |
1194 | return 0; | |
38646013 JS |
1195 | } |
1196 | ||
35d7bdc8 DH |
1197 | /** |
1198 | * replace_mm_exe_file - replace a reference to the mm's executable file | |
1199 | * | |
1200 | * This changes mm's executable file (shown as symlink /proc/[pid]/exe), | |
1201 | * dealing with concurrent invocation and without grabbing the mmap lock in | |
1202 | * write mode. | |
1203 | * | |
1204 | * Main user is sys_prctl(PR_SET_MM_MAP/EXE_FILE). | |
1205 | */ | |
1206 | int replace_mm_exe_file(struct mm_struct *mm, struct file *new_exe_file) | |
1207 | { | |
1208 | struct vm_area_struct *vma; | |
1209 | struct file *old_exe_file; | |
1210 | int ret = 0; | |
1211 | ||
1212 | /* Forbid mm->exe_file change if old file still mapped. */ | |
1213 | old_exe_file = get_mm_exe_file(mm); | |
1214 | if (old_exe_file) { | |
1215 | mmap_read_lock(mm); | |
1216 | for (vma = mm->mmap; vma && !ret; vma = vma->vm_next) { | |
1217 | if (!vma->vm_file) | |
1218 | continue; | |
1219 | if (path_equal(&vma->vm_file->f_path, | |
1220 | &old_exe_file->f_path)) | |
1221 | ret = -EBUSY; | |
1222 | } | |
1223 | mmap_read_unlock(mm); | |
1224 | fput(old_exe_file); | |
1225 | if (ret) | |
1226 | return ret; | |
1227 | } | |
1228 | ||
1229 | /* set the new file, lockless */ | |
fe69d560 DH |
1230 | ret = deny_write_access(new_exe_file); |
1231 | if (ret) | |
1232 | return -EACCES; | |
35d7bdc8 | 1233 | get_file(new_exe_file); |
fe69d560 | 1234 | |
35d7bdc8 | 1235 | old_exe_file = xchg(&mm->exe_file, new_exe_file); |
fe69d560 DH |
1236 | if (old_exe_file) { |
1237 | /* | |
1238 | * Don't race with dup_mmap() getting the file and disallowing | |
1239 | * write access while someone might open the file writable. | |
1240 | */ | |
1241 | mmap_read_lock(mm); | |
1242 | allow_write_access(old_exe_file); | |
35d7bdc8 | 1243 | fput(old_exe_file); |
fe69d560 DH |
1244 | mmap_read_unlock(mm); |
1245 | } | |
35d7bdc8 | 1246 | return 0; |
38646013 JS |
1247 | } |
1248 | ||
90f31d0e KK |
1249 | /** |
1250 | * get_mm_exe_file - acquire a reference to the mm's executable file | |
1251 | * | |
1252 | * Returns %NULL if mm has no associated executable file. | |
1253 | * User must release file via fput(). | |
1254 | */ | |
38646013 JS |
1255 | struct file *get_mm_exe_file(struct mm_struct *mm) |
1256 | { | |
1257 | struct file *exe_file; | |
1258 | ||
90f31d0e KK |
1259 | rcu_read_lock(); |
1260 | exe_file = rcu_dereference(mm->exe_file); | |
1261 | if (exe_file && !get_file_rcu(exe_file)) | |
1262 | exe_file = NULL; | |
1263 | rcu_read_unlock(); | |
38646013 JS |
1264 | return exe_file; |
1265 | } | |
1266 | ||
cd81a917 MG |
1267 | /** |
1268 | * get_task_exe_file - acquire a reference to the task's executable file | |
1269 | * | |
1270 | * Returns %NULL if task's mm (if any) has no associated executable file or | |
1271 | * this is a kernel thread with borrowed mm (see the comment above get_task_mm). | |
1272 | * User must release file via fput(). | |
1273 | */ | |
1274 | struct file *get_task_exe_file(struct task_struct *task) | |
1275 | { | |
1276 | struct file *exe_file = NULL; | |
1277 | struct mm_struct *mm; | |
1278 | ||
1279 | task_lock(task); | |
1280 | mm = task->mm; | |
1281 | if (mm) { | |
1282 | if (!(task->flags & PF_KTHREAD)) | |
1283 | exe_file = get_mm_exe_file(mm); | |
1284 | } | |
1285 | task_unlock(task); | |
1286 | return exe_file; | |
1287 | } | |
38646013 | 1288 | |
1da177e4 LT |
1289 | /** |
1290 | * get_task_mm - acquire a reference to the task's mm | |
1291 | * | |
246bb0b1 | 1292 | * Returns %NULL if the task has no mm. Checks PF_KTHREAD (meaning |
1da177e4 LT |
1293 | * this kernel workthread has transiently adopted a user mm with use_mm, |
1294 | * to do its AIO) is not set and if so returns a reference to it, after | |
1295 | * bumping up the use count. User must release the mm via mmput() | |
1296 | * after use. Typically used by /proc and ptrace. | |
1297 | */ | |
1298 | struct mm_struct *get_task_mm(struct task_struct *task) | |
1299 | { | |
1300 | struct mm_struct *mm; | |
1301 | ||
1302 | task_lock(task); | |
1303 | mm = task->mm; | |
1304 | if (mm) { | |
246bb0b1 | 1305 | if (task->flags & PF_KTHREAD) |
1da177e4 LT |
1306 | mm = NULL; |
1307 | else | |
3fce371b | 1308 | mmget(mm); |
1da177e4 LT |
1309 | } |
1310 | task_unlock(task); | |
1311 | return mm; | |
1312 | } | |
1313 | EXPORT_SYMBOL_GPL(get_task_mm); | |
1314 | ||
8cdb878d CY |
1315 | struct mm_struct *mm_access(struct task_struct *task, unsigned int mode) |
1316 | { | |
1317 | struct mm_struct *mm; | |
1318 | int err; | |
1319 | ||
f7cfd871 | 1320 | err = down_read_killable(&task->signal->exec_update_lock); |
8cdb878d CY |
1321 | if (err) |
1322 | return ERR_PTR(err); | |
1323 | ||
1324 | mm = get_task_mm(task); | |
1325 | if (mm && mm != current->mm && | |
1326 | !ptrace_may_access(task, mode)) { | |
1327 | mmput(mm); | |
1328 | mm = ERR_PTR(-EACCES); | |
1329 | } | |
f7cfd871 | 1330 | up_read(&task->signal->exec_update_lock); |
8cdb878d CY |
1331 | |
1332 | return mm; | |
1333 | } | |
1334 | ||
57b59c4a | 1335 | static void complete_vfork_done(struct task_struct *tsk) |
c415c3b4 | 1336 | { |
d68b46fe | 1337 | struct completion *vfork; |
c415c3b4 | 1338 | |
d68b46fe ON |
1339 | task_lock(tsk); |
1340 | vfork = tsk->vfork_done; | |
1341 | if (likely(vfork)) { | |
1342 | tsk->vfork_done = NULL; | |
1343 | complete(vfork); | |
1344 | } | |
1345 | task_unlock(tsk); | |
1346 | } | |
1347 | ||
1348 | static int wait_for_vfork_done(struct task_struct *child, | |
1349 | struct completion *vfork) | |
1350 | { | |
1351 | int killed; | |
1352 | ||
1353 | freezer_do_not_count(); | |
76f969e8 | 1354 | cgroup_enter_frozen(); |
d68b46fe | 1355 | killed = wait_for_completion_killable(vfork); |
76f969e8 | 1356 | cgroup_leave_frozen(false); |
d68b46fe ON |
1357 | freezer_count(); |
1358 | ||
1359 | if (killed) { | |
1360 | task_lock(child); | |
1361 | child->vfork_done = NULL; | |
1362 | task_unlock(child); | |
1363 | } | |
1364 | ||
1365 | put_task_struct(child); | |
1366 | return killed; | |
c415c3b4 ON |
1367 | } |
1368 | ||
1da177e4 LT |
1369 | /* Please note the differences between mmput and mm_release. |
1370 | * mmput is called whenever we stop holding onto a mm_struct, | |
1371 | * error success whatever. | |
1372 | * | |
1373 | * mm_release is called after a mm_struct has been removed | |
1374 | * from the current process. | |
1375 | * | |
1376 | * This difference is important for error handling, when we | |
1377 | * only half set up a mm_struct for a new process and need to restore | |
1378 | * the old one. Because we mmput the new mm_struct before | |
1379 | * restoring the old one. . . | |
1380 | * Eric Biederman 10 January 1998 | |
1381 | */ | |
4610ba7a | 1382 | static void mm_release(struct task_struct *tsk, struct mm_struct *mm) |
1da177e4 | 1383 | { |
0326f5a9 SD |
1384 | uprobe_free_utask(tsk); |
1385 | ||
1da177e4 LT |
1386 | /* Get rid of any cached register state */ |
1387 | deactivate_mm(tsk, mm); | |
1388 | ||
fec1d011 | 1389 | /* |
735f2770 MH |
1390 | * Signal userspace if we're not exiting with a core dump |
1391 | * because we want to leave the value intact for debugging | |
1392 | * purposes. | |
fec1d011 | 1393 | */ |
9c8a8228 | 1394 | if (tsk->clear_child_tid) { |
735f2770 | 1395 | if (!(tsk->signal->flags & SIGNAL_GROUP_COREDUMP) && |
9c8a8228 ED |
1396 | atomic_read(&mm->mm_users) > 1) { |
1397 | /* | |
1398 | * We don't check the error code - if userspace has | |
1399 | * not set up a proper pointer then tough luck. | |
1400 | */ | |
1401 | put_user(0, tsk->clear_child_tid); | |
2de0db99 DB |
1402 | do_futex(tsk->clear_child_tid, FUTEX_WAKE, |
1403 | 1, NULL, NULL, 0, 0); | |
9c8a8228 | 1404 | } |
1da177e4 | 1405 | tsk->clear_child_tid = NULL; |
1da177e4 | 1406 | } |
f7505d64 KK |
1407 | |
1408 | /* | |
1409 | * All done, finally we can wake up parent and return this mm to him. | |
1410 | * Also kthread_stop() uses this completion for synchronization. | |
1411 | */ | |
1412 | if (tsk->vfork_done) | |
1413 | complete_vfork_done(tsk); | |
1da177e4 LT |
1414 | } |
1415 | ||
4610ba7a TG |
1416 | void exit_mm_release(struct task_struct *tsk, struct mm_struct *mm) |
1417 | { | |
150d7158 | 1418 | futex_exit_release(tsk); |
4610ba7a TG |
1419 | mm_release(tsk, mm); |
1420 | } | |
1421 | ||
1422 | void exec_mm_release(struct task_struct *tsk, struct mm_struct *mm) | |
1423 | { | |
150d7158 | 1424 | futex_exec_release(tsk); |
4610ba7a TG |
1425 | mm_release(tsk, mm); |
1426 | } | |
1427 | ||
13585fa0 NA |
1428 | /** |
1429 | * dup_mm() - duplicates an existing mm structure | |
1430 | * @tsk: the task_struct with which the new mm will be associated. | |
1431 | * @oldmm: the mm to duplicate. | |
1432 | * | |
1433 | * Allocates a new mm structure and duplicates the provided @oldmm structure | |
1434 | * content into it. | |
1435 | * | |
1436 | * Return: the duplicated mm or NULL on failure. | |
a0a7ec30 | 1437 | */ |
13585fa0 NA |
1438 | static struct mm_struct *dup_mm(struct task_struct *tsk, |
1439 | struct mm_struct *oldmm) | |
a0a7ec30 | 1440 | { |
13585fa0 | 1441 | struct mm_struct *mm; |
a0a7ec30 JD |
1442 | int err; |
1443 | ||
a0a7ec30 JD |
1444 | mm = allocate_mm(); |
1445 | if (!mm) | |
1446 | goto fail_nomem; | |
1447 | ||
1448 | memcpy(mm, oldmm, sizeof(*mm)); | |
1449 | ||
bfedb589 | 1450 | if (!mm_init(mm, tsk, mm->user_ns)) |
a0a7ec30 JD |
1451 | goto fail_nomem; |
1452 | ||
a0a7ec30 JD |
1453 | err = dup_mmap(mm, oldmm); |
1454 | if (err) | |
1455 | goto free_pt; | |
1456 | ||
1457 | mm->hiwater_rss = get_mm_rss(mm); | |
1458 | mm->hiwater_vm = mm->total_vm; | |
1459 | ||
801460d0 HS |
1460 | if (mm->binfmt && !try_module_get(mm->binfmt->module)) |
1461 | goto free_pt; | |
1462 | ||
a0a7ec30 JD |
1463 | return mm; |
1464 | ||
1465 | free_pt: | |
801460d0 HS |
1466 | /* don't put binfmt in mmput, we haven't got module yet */ |
1467 | mm->binfmt = NULL; | |
c3f3ce04 | 1468 | mm_init_owner(mm, NULL); |
a0a7ec30 JD |
1469 | mmput(mm); |
1470 | ||
1471 | fail_nomem: | |
1472 | return NULL; | |
a0a7ec30 JD |
1473 | } |
1474 | ||
fb0a685c | 1475 | static int copy_mm(unsigned long clone_flags, struct task_struct *tsk) |
1da177e4 | 1476 | { |
fb0a685c | 1477 | struct mm_struct *mm, *oldmm; |
1da177e4 LT |
1478 | |
1479 | tsk->min_flt = tsk->maj_flt = 0; | |
1480 | tsk->nvcsw = tsk->nivcsw = 0; | |
17406b82 MSB |
1481 | #ifdef CONFIG_DETECT_HUNG_TASK |
1482 | tsk->last_switch_count = tsk->nvcsw + tsk->nivcsw; | |
a2e51445 | 1483 | tsk->last_switch_time = 0; |
17406b82 | 1484 | #endif |
1da177e4 LT |
1485 | |
1486 | tsk->mm = NULL; | |
1487 | tsk->active_mm = NULL; | |
1488 | ||
1489 | /* | |
1490 | * Are we cloning a kernel thread? | |
1491 | * | |
1492 | * We need to steal a active VM for that.. | |
1493 | */ | |
1494 | oldmm = current->mm; | |
1495 | if (!oldmm) | |
1496 | return 0; | |
1497 | ||
615d6e87 DB |
1498 | /* initialize the new vmacache entries */ |
1499 | vmacache_flush(tsk); | |
1500 | ||
1da177e4 | 1501 | if (clone_flags & CLONE_VM) { |
3fce371b | 1502 | mmget(oldmm); |
1da177e4 | 1503 | mm = oldmm; |
a6895399 REB |
1504 | } else { |
1505 | mm = dup_mm(tsk, current->mm); | |
1506 | if (!mm) | |
1507 | return -ENOMEM; | |
1da177e4 LT |
1508 | } |
1509 | ||
1da177e4 LT |
1510 | tsk->mm = mm; |
1511 | tsk->active_mm = mm; | |
1512 | return 0; | |
1da177e4 LT |
1513 | } |
1514 | ||
a39bc516 | 1515 | static int copy_fs(unsigned long clone_flags, struct task_struct *tsk) |
1da177e4 | 1516 | { |
498052bb | 1517 | struct fs_struct *fs = current->fs; |
1da177e4 | 1518 | if (clone_flags & CLONE_FS) { |
498052bb | 1519 | /* tsk->fs is already what we want */ |
2a4419b5 | 1520 | spin_lock(&fs->lock); |
498052bb | 1521 | if (fs->in_exec) { |
2a4419b5 | 1522 | spin_unlock(&fs->lock); |
498052bb AV |
1523 | return -EAGAIN; |
1524 | } | |
1525 | fs->users++; | |
2a4419b5 | 1526 | spin_unlock(&fs->lock); |
1da177e4 LT |
1527 | return 0; |
1528 | } | |
498052bb | 1529 | tsk->fs = copy_fs_struct(fs); |
1da177e4 LT |
1530 | if (!tsk->fs) |
1531 | return -ENOMEM; | |
1532 | return 0; | |
1533 | } | |
1534 | ||
fb0a685c | 1535 | static int copy_files(unsigned long clone_flags, struct task_struct *tsk) |
a016f338 JD |
1536 | { |
1537 | struct files_struct *oldf, *newf; | |
1538 | int error = 0; | |
1539 | ||
1540 | /* | |
1541 | * A background process may not have any files ... | |
1542 | */ | |
1543 | oldf = current->files; | |
1544 | if (!oldf) | |
1545 | goto out; | |
1546 | ||
1547 | if (clone_flags & CLONE_FILES) { | |
1548 | atomic_inc(&oldf->count); | |
1549 | goto out; | |
1550 | } | |
1551 | ||
60997c3d | 1552 | newf = dup_fd(oldf, NR_OPEN_MAX, &error); |
a016f338 JD |
1553 | if (!newf) |
1554 | goto out; | |
1555 | ||
1556 | tsk->files = newf; | |
1557 | error = 0; | |
1558 | out: | |
1559 | return error; | |
1560 | } | |
1561 | ||
fadad878 | 1562 | static int copy_io(unsigned long clone_flags, struct task_struct *tsk) |
fd0928df JA |
1563 | { |
1564 | #ifdef CONFIG_BLOCK | |
1565 | struct io_context *ioc = current->io_context; | |
6e736be7 | 1566 | struct io_context *new_ioc; |
fd0928df JA |
1567 | |
1568 | if (!ioc) | |
1569 | return 0; | |
fadad878 JA |
1570 | /* |
1571 | * Share io context with parent, if CLONE_IO is set | |
1572 | */ | |
1573 | if (clone_flags & CLONE_IO) { | |
3d48749d TH |
1574 | ioc_task_link(ioc); |
1575 | tsk->io_context = ioc; | |
fadad878 | 1576 | } else if (ioprio_valid(ioc->ioprio)) { |
6e736be7 TH |
1577 | new_ioc = get_task_io_context(tsk, GFP_KERNEL, NUMA_NO_NODE); |
1578 | if (unlikely(!new_ioc)) | |
fd0928df JA |
1579 | return -ENOMEM; |
1580 | ||
6e736be7 | 1581 | new_ioc->ioprio = ioc->ioprio; |
11a3122f | 1582 | put_io_context(new_ioc); |
fd0928df JA |
1583 | } |
1584 | #endif | |
1585 | return 0; | |
1586 | } | |
1587 | ||
a39bc516 | 1588 | static int copy_sighand(unsigned long clone_flags, struct task_struct *tsk) |
1da177e4 LT |
1589 | { |
1590 | struct sighand_struct *sig; | |
1591 | ||
60348802 | 1592 | if (clone_flags & CLONE_SIGHAND) { |
d036bda7 | 1593 | refcount_inc(¤t->sighand->count); |
1da177e4 LT |
1594 | return 0; |
1595 | } | |
1596 | sig = kmem_cache_alloc(sighand_cachep, GFP_KERNEL); | |
0c282b06 | 1597 | RCU_INIT_POINTER(tsk->sighand, sig); |
1da177e4 LT |
1598 | if (!sig) |
1599 | return -ENOMEM; | |
9d7fb042 | 1600 | |
d036bda7 | 1601 | refcount_set(&sig->count, 1); |
06e62a46 | 1602 | spin_lock_irq(¤t->sighand->siglock); |
1da177e4 | 1603 | memcpy(sig->action, current->sighand->action, sizeof(sig->action)); |
06e62a46 | 1604 | spin_unlock_irq(¤t->sighand->siglock); |
b612e5df CB |
1605 | |
1606 | /* Reset all signal handler not set to SIG_IGN to SIG_DFL. */ | |
1607 | if (clone_flags & CLONE_CLEAR_SIGHAND) | |
1608 | flush_signal_handlers(tsk, 0); | |
1609 | ||
1da177e4 LT |
1610 | return 0; |
1611 | } | |
1612 | ||
a7e5328a | 1613 | void __cleanup_sighand(struct sighand_struct *sighand) |
c81addc9 | 1614 | { |
d036bda7 | 1615 | if (refcount_dec_and_test(&sighand->count)) { |
d80e731e | 1616 | signalfd_cleanup(sighand); |
392809b2 | 1617 | /* |
5f0d5a3a | 1618 | * sighand_cachep is SLAB_TYPESAFE_BY_RCU so we can free it |
392809b2 ON |
1619 | * without an RCU grace period, see __lock_task_sighand(). |
1620 | */ | |
c81addc9 | 1621 | kmem_cache_free(sighand_cachep, sighand); |
d80e731e | 1622 | } |
c81addc9 ON |
1623 | } |
1624 | ||
f06febc9 FM |
1625 | /* |
1626 | * Initialize POSIX timer handling for a thread group. | |
1627 | */ | |
1628 | static void posix_cpu_timers_init_group(struct signal_struct *sig) | |
1629 | { | |
2b69942f | 1630 | struct posix_cputimers *pct = &sig->posix_cputimers; |
78d7d407 JS |
1631 | unsigned long cpu_limit; |
1632 | ||
316c1608 | 1633 | cpu_limit = READ_ONCE(sig->rlim[RLIMIT_CPU].rlim_cur); |
3a245c0f | 1634 | posix_cputimers_group_init(pct, cpu_limit); |
f06febc9 FM |
1635 | } |
1636 | ||
a39bc516 | 1637 | static int copy_signal(unsigned long clone_flags, struct task_struct *tsk) |
1da177e4 LT |
1638 | { |
1639 | struct signal_struct *sig; | |
1da177e4 | 1640 | |
4ab6c083 | 1641 | if (clone_flags & CLONE_THREAD) |
490dea45 | 1642 | return 0; |
490dea45 | 1643 | |
a56704ef | 1644 | sig = kmem_cache_zalloc(signal_cachep, GFP_KERNEL); |
1da177e4 LT |
1645 | tsk->signal = sig; |
1646 | if (!sig) | |
1647 | return -ENOMEM; | |
1648 | ||
b3ac022c | 1649 | sig->nr_threads = 1; |
1da177e4 | 1650 | atomic_set(&sig->live, 1); |
60d4de3f | 1651 | refcount_set(&sig->sigcnt, 1); |
0c740d0a ON |
1652 | |
1653 | /* list_add(thread_node, thread_head) without INIT_LIST_HEAD() */ | |
1654 | sig->thread_head = (struct list_head)LIST_HEAD_INIT(tsk->thread_node); | |
1655 | tsk->thread_node = (struct list_head)LIST_HEAD_INIT(sig->thread_head); | |
1656 | ||
1da177e4 | 1657 | init_waitqueue_head(&sig->wait_chldexit); |
db51aecc | 1658 | sig->curr_target = tsk; |
1da177e4 | 1659 | init_sigpending(&sig->shared_pending); |
c3ad2c3b | 1660 | INIT_HLIST_HEAD(&sig->multiprocess); |
e78c3496 | 1661 | seqlock_init(&sig->stats_lock); |
9d7fb042 | 1662 | prev_cputime_init(&sig->prev_cputime); |
1da177e4 | 1663 | |
baa73d9e | 1664 | #ifdef CONFIG_POSIX_TIMERS |
b18b6a9c | 1665 | INIT_LIST_HEAD(&sig->posix_timers); |
c9cb2e3d | 1666 | hrtimer_init(&sig->real_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
1da177e4 | 1667 | sig->real_timer.function = it_real_fn; |
baa73d9e | 1668 | #endif |
1da177e4 | 1669 | |
1da177e4 LT |
1670 | task_lock(current->group_leader); |
1671 | memcpy(sig->rlim, current->signal->rlim, sizeof sig->rlim); | |
1672 | task_unlock(current->group_leader); | |
1673 | ||
6279a751 ON |
1674 | posix_cpu_timers_init_group(sig); |
1675 | ||
522ed776 | 1676 | tty_audit_fork(sig); |
5091faa4 | 1677 | sched_autogroup_fork(sig); |
522ed776 | 1678 | |
a63d83f4 | 1679 | sig->oom_score_adj = current->signal->oom_score_adj; |
dabb16f6 | 1680 | sig->oom_score_adj_min = current->signal->oom_score_adj_min; |
28b83c51 | 1681 | |
9b1bf12d | 1682 | mutex_init(&sig->cred_guard_mutex); |
f7cfd871 | 1683 | init_rwsem(&sig->exec_update_lock); |
9b1bf12d | 1684 | |
1da177e4 LT |
1685 | return 0; |
1686 | } | |
1687 | ||
dbd95212 KC |
1688 | static void copy_seccomp(struct task_struct *p) |
1689 | { | |
1690 | #ifdef CONFIG_SECCOMP | |
1691 | /* | |
1692 | * Must be called with sighand->lock held, which is common to | |
1693 | * all threads in the group. Holding cred_guard_mutex is not | |
1694 | * needed because this new task is not yet running and cannot | |
1695 | * be racing exec. | |
1696 | */ | |
69f6a34b | 1697 | assert_spin_locked(¤t->sighand->siglock); |
dbd95212 KC |
1698 | |
1699 | /* Ref-count the new filter user, and assign it. */ | |
1700 | get_seccomp_filter(current); | |
1701 | p->seccomp = current->seccomp; | |
1702 | ||
1703 | /* | |
1704 | * Explicitly enable no_new_privs here in case it got set | |
1705 | * between the task_struct being duplicated and holding the | |
1706 | * sighand lock. The seccomp state and nnp must be in sync. | |
1707 | */ | |
1708 | if (task_no_new_privs(current)) | |
1709 | task_set_no_new_privs(p); | |
1710 | ||
1711 | /* | |
1712 | * If the parent gained a seccomp mode after copying thread | |
1713 | * flags and between before we held the sighand lock, we have | |
1714 | * to manually enable the seccomp thread flag here. | |
1715 | */ | |
1716 | if (p->seccomp.mode != SECCOMP_MODE_DISABLED) | |
23d67a54 | 1717 | set_task_syscall_work(p, SECCOMP); |
dbd95212 KC |
1718 | #endif |
1719 | } | |
1720 | ||
17da2bd9 | 1721 | SYSCALL_DEFINE1(set_tid_address, int __user *, tidptr) |
1da177e4 LT |
1722 | { |
1723 | current->clear_child_tid = tidptr; | |
1724 | ||
b488893a | 1725 | return task_pid_vnr(current); |
1da177e4 LT |
1726 | } |
1727 | ||
a39bc516 | 1728 | static void rt_mutex_init_task(struct task_struct *p) |
23f78d4a | 1729 | { |
1d615482 | 1730 | raw_spin_lock_init(&p->pi_lock); |
e29e175b | 1731 | #ifdef CONFIG_RT_MUTEXES |
a23ba907 | 1732 | p->pi_waiters = RB_ROOT_CACHED; |
e96a7705 | 1733 | p->pi_top_task = NULL; |
23f78d4a | 1734 | p->pi_blocked_on = NULL; |
23f78d4a IM |
1735 | #endif |
1736 | } | |
1737 | ||
2c470475 EB |
1738 | static inline void init_task_pid_links(struct task_struct *task) |
1739 | { | |
1740 | enum pid_type type; | |
1741 | ||
96e1e984 | 1742 | for (type = PIDTYPE_PID; type < PIDTYPE_MAX; ++type) |
2c470475 | 1743 | INIT_HLIST_NODE(&task->pid_links[type]); |
2c470475 EB |
1744 | } |
1745 | ||
81907739 ON |
1746 | static inline void |
1747 | init_task_pid(struct task_struct *task, enum pid_type type, struct pid *pid) | |
1748 | { | |
2c470475 EB |
1749 | if (type == PIDTYPE_PID) |
1750 | task->thread_pid = pid; | |
1751 | else | |
1752 | task->signal->pids[type] = pid; | |
81907739 ON |
1753 | } |
1754 | ||
6bfbaa51 IM |
1755 | static inline void rcu_copy_process(struct task_struct *p) |
1756 | { | |
1757 | #ifdef CONFIG_PREEMPT_RCU | |
1758 | p->rcu_read_lock_nesting = 0; | |
1759 | p->rcu_read_unlock_special.s = 0; | |
1760 | p->rcu_blocked_node = NULL; | |
1761 | INIT_LIST_HEAD(&p->rcu_node_entry); | |
1762 | #endif /* #ifdef CONFIG_PREEMPT_RCU */ | |
1763 | #ifdef CONFIG_TASKS_RCU | |
1764 | p->rcu_tasks_holdout = false; | |
1765 | INIT_LIST_HEAD(&p->rcu_tasks_holdout_list); | |
1766 | p->rcu_tasks_idle_cpu = -1; | |
1767 | #endif /* #ifdef CONFIG_TASKS_RCU */ | |
d5f177d3 PM |
1768 | #ifdef CONFIG_TASKS_TRACE_RCU |
1769 | p->trc_reader_nesting = 0; | |
276c4104 | 1770 | p->trc_reader_special.s = 0; |
d5f177d3 PM |
1771 | INIT_LIST_HEAD(&p->trc_holdout_list); |
1772 | #endif /* #ifdef CONFIG_TASKS_TRACE_RCU */ | |
6bfbaa51 IM |
1773 | } |
1774 | ||
3695eae5 CB |
1775 | struct pid *pidfd_pid(const struct file *file) |
1776 | { | |
1777 | if (file->f_op == &pidfd_fops) | |
1778 | return file->private_data; | |
1779 | ||
1780 | return ERR_PTR(-EBADF); | |
1781 | } | |
1782 | ||
b3e58382 CB |
1783 | static int pidfd_release(struct inode *inode, struct file *file) |
1784 | { | |
1785 | struct pid *pid = file->private_data; | |
1786 | ||
1787 | file->private_data = NULL; | |
1788 | put_pid(pid); | |
1789 | return 0; | |
1790 | } | |
1791 | ||
1792 | #ifdef CONFIG_PROC_FS | |
15d42eb2 CK |
1793 | /** |
1794 | * pidfd_show_fdinfo - print information about a pidfd | |
1795 | * @m: proc fdinfo file | |
1796 | * @f: file referencing a pidfd | |
1797 | * | |
1798 | * Pid: | |
1799 | * This function will print the pid that a given pidfd refers to in the | |
1800 | * pid namespace of the procfs instance. | |
1801 | * If the pid namespace of the process is not a descendant of the pid | |
1802 | * namespace of the procfs instance 0 will be shown as its pid. This is | |
1803 | * similar to calling getppid() on a process whose parent is outside of | |
1804 | * its pid namespace. | |
1805 | * | |
1806 | * NSpid: | |
1807 | * If pid namespaces are supported then this function will also print | |
1808 | * the pid of a given pidfd refers to for all descendant pid namespaces | |
1809 | * starting from the current pid namespace of the instance, i.e. the | |
1810 | * Pid field and the first entry in the NSpid field will be identical. | |
1811 | * If the pid namespace of the process is not a descendant of the pid | |
1812 | * namespace of the procfs instance 0 will be shown as its first NSpid | |
1813 | * entry and no others will be shown. | |
1814 | * Note that this differs from the Pid and NSpid fields in | |
1815 | * /proc/<pid>/status where Pid and NSpid are always shown relative to | |
1816 | * the pid namespace of the procfs instance. The difference becomes | |
1817 | * obvious when sending around a pidfd between pid namespaces from a | |
a8ca6b13 | 1818 | * different branch of the tree, i.e. where no ancestral relation is |
15d42eb2 CK |
1819 | * present between the pid namespaces: |
1820 | * - create two new pid namespaces ns1 and ns2 in the initial pid | |
1821 | * namespace (also take care to create new mount namespaces in the | |
1822 | * new pid namespace and mount procfs) | |
1823 | * - create a process with a pidfd in ns1 | |
1824 | * - send pidfd from ns1 to ns2 | |
1825 | * - read /proc/self/fdinfo/<pidfd> and observe that both Pid and NSpid | |
1826 | * have exactly one entry, which is 0 | |
1827 | */ | |
b3e58382 CB |
1828 | static void pidfd_show_fdinfo(struct seq_file *m, struct file *f) |
1829 | { | |
b3e58382 | 1830 | struct pid *pid = f->private_data; |
3d6d8da4 CB |
1831 | struct pid_namespace *ns; |
1832 | pid_t nr = -1; | |
15d42eb2 | 1833 | |
3d6d8da4 | 1834 | if (likely(pid_has_task(pid, PIDTYPE_PID))) { |
9d78edea | 1835 | ns = proc_pid_ns(file_inode(m->file)->i_sb); |
3d6d8da4 CB |
1836 | nr = pid_nr_ns(pid, ns); |
1837 | } | |
1838 | ||
1839 | seq_put_decimal_ll(m, "Pid:\t", nr); | |
b3e58382 | 1840 | |
15d42eb2 | 1841 | #ifdef CONFIG_PID_NS |
3d6d8da4 CB |
1842 | seq_put_decimal_ll(m, "\nNSpid:\t", nr); |
1843 | if (nr > 0) { | |
15d42eb2 | 1844 | int i; |
b3e58382 | 1845 | |
15d42eb2 CK |
1846 | /* If nr is non-zero it means that 'pid' is valid and that |
1847 | * ns, i.e. the pid namespace associated with the procfs | |
1848 | * instance, is in the pid namespace hierarchy of pid. | |
1849 | * Start at one below the already printed level. | |
1850 | */ | |
1851 | for (i = ns->level + 1; i <= pid->level; i++) | |
3d6d8da4 | 1852 | seq_put_decimal_ll(m, "\t", pid->numbers[i].nr); |
15d42eb2 CK |
1853 | } |
1854 | #endif | |
b3e58382 CB |
1855 | seq_putc(m, '\n'); |
1856 | } | |
1857 | #endif | |
1858 | ||
b53b0b9d JFG |
1859 | /* |
1860 | * Poll support for process exit notification. | |
1861 | */ | |
9e77716a | 1862 | static __poll_t pidfd_poll(struct file *file, struct poll_table_struct *pts) |
b53b0b9d | 1863 | { |
b53b0b9d | 1864 | struct pid *pid = file->private_data; |
9e77716a | 1865 | __poll_t poll_flags = 0; |
b53b0b9d JFG |
1866 | |
1867 | poll_wait(file, &pid->wait_pidfd, pts); | |
1868 | ||
b53b0b9d JFG |
1869 | /* |
1870 | * Inform pollers only when the whole thread group exits. | |
1871 | * If the thread group leader exits before all other threads in the | |
1872 | * group, then poll(2) should block, similar to the wait(2) family. | |
1873 | */ | |
38fd525a | 1874 | if (thread_group_exited(pid)) |
9e77716a | 1875 | poll_flags = EPOLLIN | EPOLLRDNORM; |
b53b0b9d JFG |
1876 | |
1877 | return poll_flags; | |
1878 | } | |
1879 | ||
b3e58382 CB |
1880 | const struct file_operations pidfd_fops = { |
1881 | .release = pidfd_release, | |
b53b0b9d | 1882 | .poll = pidfd_poll, |
b3e58382 CB |
1883 | #ifdef CONFIG_PROC_FS |
1884 | .show_fdinfo = pidfd_show_fdinfo, | |
1885 | #endif | |
1886 | }; | |
1887 | ||
c3f3ce04 AA |
1888 | static void __delayed_free_task(struct rcu_head *rhp) |
1889 | { | |
1890 | struct task_struct *tsk = container_of(rhp, struct task_struct, rcu); | |
1891 | ||
1892 | free_task(tsk); | |
1893 | } | |
1894 | ||
1895 | static __always_inline void delayed_free_task(struct task_struct *tsk) | |
1896 | { | |
1897 | if (IS_ENABLED(CONFIG_MEMCG)) | |
1898 | call_rcu(&tsk->rcu, __delayed_free_task); | |
1899 | else | |
1900 | free_task(tsk); | |
1901 | } | |
1902 | ||
67197a4f SB |
1903 | static void copy_oom_score_adj(u64 clone_flags, struct task_struct *tsk) |
1904 | { | |
1905 | /* Skip if kernel thread */ | |
1906 | if (!tsk->mm) | |
1907 | return; | |
1908 | ||
1909 | /* Skip if spawning a thread or using vfork */ | |
1910 | if ((clone_flags & (CLONE_VM | CLONE_THREAD | CLONE_VFORK)) != CLONE_VM) | |
1911 | return; | |
1912 | ||
1913 | /* We need to synchronize with __set_oom_adj */ | |
1914 | mutex_lock(&oom_adj_mutex); | |
1915 | set_bit(MMF_MULTIPROCESS, &tsk->mm->flags); | |
1916 | /* Update the values in case they were changed after copy_signal */ | |
1917 | tsk->signal->oom_score_adj = current->signal->oom_score_adj; | |
1918 | tsk->signal->oom_score_adj_min = current->signal->oom_score_adj_min; | |
1919 | mutex_unlock(&oom_adj_mutex); | |
1920 | } | |
1921 | ||
1da177e4 LT |
1922 | /* |
1923 | * This creates a new process as a copy of the old one, | |
1924 | * but does not actually start it yet. | |
1925 | * | |
1926 | * It copies the registers, and all the appropriate | |
1927 | * parts of the process environment (as per the clone | |
1928 | * flags). The actual kick-off is left to the caller. | |
1929 | */ | |
0766f788 | 1930 | static __latent_entropy struct task_struct *copy_process( |
09a05394 | 1931 | struct pid *pid, |
3033f14a | 1932 | int trace, |
7f192e3c CB |
1933 | int node, |
1934 | struct kernel_clone_args *args) | |
1da177e4 | 1935 | { |
b3e58382 | 1936 | int pidfd = -1, retval; |
a24efe62 | 1937 | struct task_struct *p; |
c3ad2c3b | 1938 | struct multiprocess_signals delayed; |
6fd2fe49 | 1939 | struct file *pidfile = NULL; |
7f192e3c | 1940 | u64 clone_flags = args->flags; |
769071ac | 1941 | struct nsproxy *nsp = current->nsproxy; |
1da177e4 | 1942 | |
667b6094 MPS |
1943 | /* |
1944 | * Don't allow sharing the root directory with processes in a different | |
1945 | * namespace | |
1946 | */ | |
1da177e4 LT |
1947 | if ((clone_flags & (CLONE_NEWNS|CLONE_FS)) == (CLONE_NEWNS|CLONE_FS)) |
1948 | return ERR_PTR(-EINVAL); | |
1949 | ||
e66eded8 EB |
1950 | if ((clone_flags & (CLONE_NEWUSER|CLONE_FS)) == (CLONE_NEWUSER|CLONE_FS)) |
1951 | return ERR_PTR(-EINVAL); | |
1952 | ||
1da177e4 LT |
1953 | /* |
1954 | * Thread groups must share signals as well, and detached threads | |
1955 | * can only be started up within the thread group. | |
1956 | */ | |
1957 | if ((clone_flags & CLONE_THREAD) && !(clone_flags & CLONE_SIGHAND)) | |
1958 | return ERR_PTR(-EINVAL); | |
1959 | ||
1960 | /* | |
1961 | * Shared signal handlers imply shared VM. By way of the above, | |
1962 | * thread groups also imply shared VM. Blocking this case allows | |
1963 | * for various simplifications in other code. | |
1964 | */ | |
1965 | if ((clone_flags & CLONE_SIGHAND) && !(clone_flags & CLONE_VM)) | |
1966 | return ERR_PTR(-EINVAL); | |
1967 | ||
123be07b SB |
1968 | /* |
1969 | * Siblings of global init remain as zombies on exit since they are | |
1970 | * not reaped by their parent (swapper). To solve this and to avoid | |
1971 | * multi-rooted process trees, prevent global and container-inits | |
1972 | * from creating siblings. | |
1973 | */ | |
1974 | if ((clone_flags & CLONE_PARENT) && | |
1975 | current->signal->flags & SIGNAL_UNKILLABLE) | |
1976 | return ERR_PTR(-EINVAL); | |
1977 | ||
8382fcac | 1978 | /* |
40a0d32d | 1979 | * If the new process will be in a different pid or user namespace |
faf00da5 | 1980 | * do not allow it to share a thread group with the forking task. |
8382fcac | 1981 | */ |
faf00da5 | 1982 | if (clone_flags & CLONE_THREAD) { |
40a0d32d | 1983 | if ((clone_flags & (CLONE_NEWUSER | CLONE_NEWPID)) || |
769071ac AV |
1984 | (task_active_pid_ns(current) != nsp->pid_ns_for_children)) |
1985 | return ERR_PTR(-EINVAL); | |
1986 | } | |
1987 | ||
1988 | /* | |
1989 | * If the new process will be in a different time namespace | |
1990 | * do not allow it to share VM or a thread group with the forking task. | |
1991 | */ | |
1992 | if (clone_flags & (CLONE_THREAD | CLONE_VM)) { | |
1993 | if (nsp->time_ns != nsp->time_ns_for_children) | |
40a0d32d ON |
1994 | return ERR_PTR(-EINVAL); |
1995 | } | |
8382fcac | 1996 | |
b3e58382 | 1997 | if (clone_flags & CLONE_PIDFD) { |
b3e58382 | 1998 | /* |
b3e58382 CB |
1999 | * - CLONE_DETACHED is blocked so that we can potentially |
2000 | * reuse it later for CLONE_PIDFD. | |
2001 | * - CLONE_THREAD is blocked until someone really needs it. | |
2002 | */ | |
7f192e3c | 2003 | if (clone_flags & (CLONE_DETACHED | CLONE_THREAD)) |
b3e58382 | 2004 | return ERR_PTR(-EINVAL); |
b3e58382 CB |
2005 | } |
2006 | ||
c3ad2c3b EB |
2007 | /* |
2008 | * Force any signals received before this point to be delivered | |
2009 | * before the fork happens. Collect up signals sent to multiple | |
2010 | * processes that happen during the fork and delay them so that | |
2011 | * they appear to happen after the fork. | |
2012 | */ | |
2013 | sigemptyset(&delayed.signal); | |
2014 | INIT_HLIST_NODE(&delayed.node); | |
2015 | ||
2016 | spin_lock_irq(¤t->sighand->siglock); | |
2017 | if (!(clone_flags & CLONE_THREAD)) | |
2018 | hlist_add_head(&delayed.node, ¤t->signal->multiprocess); | |
2019 | recalc_sigpending(); | |
2020 | spin_unlock_irq(¤t->sighand->siglock); | |
2021 | retval = -ERESTARTNOINTR; | |
66ae0d1e | 2022 | if (task_sigpending(current)) |
c3ad2c3b EB |
2023 | goto fork_out; |
2024 | ||
1da177e4 | 2025 | retval = -ENOMEM; |
725fc629 | 2026 | p = dup_task_struct(current, node); |
1da177e4 LT |
2027 | if (!p) |
2028 | goto fork_out; | |
b16b3855 JA |
2029 | if (args->io_thread) { |
2030 | /* | |
2031 | * Mark us an IO worker, and block any signal that isn't | |
2032 | * fatal or STOP | |
2033 | */ | |
cc440e87 | 2034 | p->flags |= PF_IO_WORKER; |
b16b3855 JA |
2035 | siginitsetinv(&p->blocked, sigmask(SIGKILL)|sigmask(SIGSTOP)); |
2036 | } | |
1da177e4 | 2037 | |
4d6501dc VN |
2038 | /* |
2039 | * This _must_ happen before we call free_task(), i.e. before we jump | |
2040 | * to any of the bad_fork_* labels. This is to avoid freeing | |
2041 | * p->set_child_tid which is (ab)used as a kthread's data pointer for | |
2042 | * kernel threads (PF_KTHREAD). | |
2043 | */ | |
7f192e3c | 2044 | p->set_child_tid = (clone_flags & CLONE_CHILD_SETTID) ? args->child_tid : NULL; |
4d6501dc VN |
2045 | /* |
2046 | * Clear TID on mm_release()? | |
2047 | */ | |
7f192e3c | 2048 | p->clear_child_tid = (clone_flags & CLONE_CHILD_CLEARTID) ? args->child_tid : NULL; |
4d6501dc | 2049 | |
f7e8b616 SR |
2050 | ftrace_graph_init_task(p); |
2051 | ||
bea493a0 PZ |
2052 | rt_mutex_init_task(p); |
2053 | ||
a21ee605 | 2054 | lockdep_assert_irqs_enabled(); |
d12c1a37 | 2055 | #ifdef CONFIG_PROVE_LOCKING |
de30a2b3 IM |
2056 | DEBUG_LOCKS_WARN_ON(!p->softirqs_enabled); |
2057 | #endif | |
1da177e4 | 2058 | retval = -EAGAIN; |
21d1c5e3 | 2059 | if (is_ucounts_overlimit(task_ucounts(p), UCOUNT_RLIMIT_NPROC, rlimit(RLIMIT_NPROC))) { |
b57922b6 EP |
2060 | if (p->real_cred->user != INIT_USER && |
2061 | !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) | |
1da177e4 LT |
2062 | goto bad_fork_free; |
2063 | } | |
72fa5997 | 2064 | current->flags &= ~PF_NPROC_EXCEEDED; |
1da177e4 | 2065 | |
f1752eec DH |
2066 | retval = copy_creds(p, clone_flags); |
2067 | if (retval < 0) | |
2068 | goto bad_fork_free; | |
1da177e4 LT |
2069 | |
2070 | /* | |
2071 | * If multiple threads are within copy_process(), then this check | |
2072 | * triggers too late. This doesn't hurt, the check is only there | |
2073 | * to stop root fork bombs. | |
2074 | */ | |
04ec93fe | 2075 | retval = -EAGAIN; |
c17d1a3a | 2076 | if (data_race(nr_threads >= max_threads)) |
1da177e4 LT |
2077 | goto bad_fork_cleanup_count; |
2078 | ||
ca74e92b | 2079 | delayacct_tsk_init(p); /* Must remain after dup_task_struct() */ |
a8ea6fc9 | 2080 | p->flags &= ~(PF_SUPERPRIV | PF_WQ_WORKER | PF_IDLE | PF_NO_SETAFFINITY); |
514ddb44 | 2081 | p->flags |= PF_FORKNOEXEC; |
1da177e4 LT |
2082 | INIT_LIST_HEAD(&p->children); |
2083 | INIT_LIST_HEAD(&p->sibling); | |
f41d911f | 2084 | rcu_copy_process(p); |
1da177e4 LT |
2085 | p->vfork_done = NULL; |
2086 | spin_lock_init(&p->alloc_lock); | |
1da177e4 | 2087 | |
1da177e4 LT |
2088 | init_sigpending(&p->pending); |
2089 | ||
64861634 | 2090 | p->utime = p->stime = p->gtime = 0; |
40565b5a | 2091 | #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME |
64861634 | 2092 | p->utimescaled = p->stimescaled = 0; |
40565b5a | 2093 | #endif |
9d7fb042 PZ |
2094 | prev_cputime_init(&p->prev_cputime); |
2095 | ||
6a61671b | 2096 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN |
bac5b6b6 FW |
2097 | seqcount_init(&p->vtime.seqcount); |
2098 | p->vtime.starttime = 0; | |
2099 | p->vtime.state = VTIME_INACTIVE; | |
6a61671b FW |
2100 | #endif |
2101 | ||
0f212204 JA |
2102 | #ifdef CONFIG_IO_URING |
2103 | p->io_uring = NULL; | |
2104 | #endif | |
2105 | ||
a3a2e76c KH |
2106 | #if defined(SPLIT_RSS_COUNTING) |
2107 | memset(&p->rss_stat, 0, sizeof(p->rss_stat)); | |
2108 | #endif | |
172ba844 | 2109 | |
6976675d AV |
2110 | p->default_timer_slack_ns = current->timer_slack_ns; |
2111 | ||
eb414681 JW |
2112 | #ifdef CONFIG_PSI |
2113 | p->psi_flags = 0; | |
2114 | #endif | |
2115 | ||
5995477a | 2116 | task_io_accounting_init(&p->ioac); |
1da177e4 LT |
2117 | acct_clear_integrals(p); |
2118 | ||
3a245c0f | 2119 | posix_cputimers_init(&p->posix_cputimers); |
1da177e4 | 2120 | |
1da177e4 | 2121 | p->io_context = NULL; |
c0b0ae8a | 2122 | audit_set_context(p, NULL); |
b4f48b63 | 2123 | cgroup_fork(p); |
1da177e4 | 2124 | #ifdef CONFIG_NUMA |
846a16bf | 2125 | p->mempolicy = mpol_dup(p->mempolicy); |
fb0a685c DRO |
2126 | if (IS_ERR(p->mempolicy)) { |
2127 | retval = PTR_ERR(p->mempolicy); | |
2128 | p->mempolicy = NULL; | |
e8604cb4 | 2129 | goto bad_fork_cleanup_threadgroup_lock; |
fb0a685c | 2130 | } |
1da177e4 | 2131 | #endif |
778d3b0f MH |
2132 | #ifdef CONFIG_CPUSETS |
2133 | p->cpuset_mem_spread_rotor = NUMA_NO_NODE; | |
2134 | p->cpuset_slab_spread_rotor = NUMA_NO_NODE; | |
b7505861 | 2135 | seqcount_spinlock_init(&p->mems_allowed_seq, &p->alloc_lock); |
778d3b0f | 2136 | #endif |
de30a2b3 | 2137 | #ifdef CONFIG_TRACE_IRQFLAGS |
0584df9c ME |
2138 | memset(&p->irqtrace, 0, sizeof(p->irqtrace)); |
2139 | p->irqtrace.hardirq_disable_ip = _THIS_IP_; | |
2140 | p->irqtrace.softirq_enable_ip = _THIS_IP_; | |
2141 | p->softirqs_enabled = 1; | |
2142 | p->softirq_context = 0; | |
de30a2b3 | 2143 | #endif |
8bcbde54 DH |
2144 | |
2145 | p->pagefault_disabled = 0; | |
2146 | ||
fbb9ce95 | 2147 | #ifdef CONFIG_LOCKDEP |
b09be676 | 2148 | lockdep_init_task(p); |
fbb9ce95 | 2149 | #endif |
1da177e4 | 2150 | |
408894ee IM |
2151 | #ifdef CONFIG_DEBUG_MUTEXES |
2152 | p->blocked_on = NULL; /* not blocked yet */ | |
2153 | #endif | |
cafe5635 KO |
2154 | #ifdef CONFIG_BCACHE |
2155 | p->sequential_io = 0; | |
2156 | p->sequential_io_avg = 0; | |
2157 | #endif | |
a10787e6 SL |
2158 | #ifdef CONFIG_BPF_SYSCALL |
2159 | RCU_INIT_POINTER(p->bpf_storage, NULL); | |
c7603cfa | 2160 | p->bpf_ctx = NULL; |
a10787e6 | 2161 | #endif |
0f481406 | 2162 | |
3c90e6e9 | 2163 | /* Perform scheduler related setup. Assign this task to a CPU. */ |
aab03e05 DF |
2164 | retval = sched_fork(clone_flags, p); |
2165 | if (retval) | |
2166 | goto bad_fork_cleanup_policy; | |
6ab423e0 | 2167 | |
2b26f0aa | 2168 | retval = perf_event_init_task(p, clone_flags); |
6ab423e0 PZ |
2169 | if (retval) |
2170 | goto bad_fork_cleanup_policy; | |
fb0a685c DRO |
2171 | retval = audit_alloc(p); |
2172 | if (retval) | |
6c72e350 | 2173 | goto bad_fork_cleanup_perf; |
1da177e4 | 2174 | /* copy all the process information */ |
ab602f79 | 2175 | shm_init_task(p); |
e4e55b47 | 2176 | retval = security_task_alloc(p, clone_flags); |
fb0a685c | 2177 | if (retval) |
1da177e4 | 2178 | goto bad_fork_cleanup_audit; |
e4e55b47 TH |
2179 | retval = copy_semundo(clone_flags, p); |
2180 | if (retval) | |
2181 | goto bad_fork_cleanup_security; | |
fb0a685c DRO |
2182 | retval = copy_files(clone_flags, p); |
2183 | if (retval) | |
1da177e4 | 2184 | goto bad_fork_cleanup_semundo; |
fb0a685c DRO |
2185 | retval = copy_fs(clone_flags, p); |
2186 | if (retval) | |
1da177e4 | 2187 | goto bad_fork_cleanup_files; |
fb0a685c DRO |
2188 | retval = copy_sighand(clone_flags, p); |
2189 | if (retval) | |
1da177e4 | 2190 | goto bad_fork_cleanup_fs; |
fb0a685c DRO |
2191 | retval = copy_signal(clone_flags, p); |
2192 | if (retval) | |
1da177e4 | 2193 | goto bad_fork_cleanup_sighand; |
fb0a685c DRO |
2194 | retval = copy_mm(clone_flags, p); |
2195 | if (retval) | |
1da177e4 | 2196 | goto bad_fork_cleanup_signal; |
fb0a685c DRO |
2197 | retval = copy_namespaces(clone_flags, p); |
2198 | if (retval) | |
d84f4f99 | 2199 | goto bad_fork_cleanup_mm; |
fb0a685c DRO |
2200 | retval = copy_io(clone_flags, p); |
2201 | if (retval) | |
fd0928df | 2202 | goto bad_fork_cleanup_namespaces; |
714acdbd | 2203 | retval = copy_thread(clone_flags, args->stack, args->stack_size, p, args->tls); |
1da177e4 | 2204 | if (retval) |
fd0928df | 2205 | goto bad_fork_cleanup_io; |
1da177e4 | 2206 | |
afaef01c AP |
2207 | stackleak_task_init(p); |
2208 | ||
425fb2b4 | 2209 | if (pid != &init_struct_pid) { |
49cb2fc4 AR |
2210 | pid = alloc_pid(p->nsproxy->pid_ns_for_children, args->set_tid, |
2211 | args->set_tid_size); | |
35f71bc0 MH |
2212 | if (IS_ERR(pid)) { |
2213 | retval = PTR_ERR(pid); | |
0740aa5f | 2214 | goto bad_fork_cleanup_thread; |
35f71bc0 | 2215 | } |
425fb2b4 PE |
2216 | } |
2217 | ||
b3e58382 CB |
2218 | /* |
2219 | * This has to happen after we've potentially unshared the file | |
2220 | * descriptor table (so that the pidfd doesn't leak into the child | |
2221 | * if the fd table isn't shared). | |
2222 | */ | |
2223 | if (clone_flags & CLONE_PIDFD) { | |
6fd2fe49 | 2224 | retval = get_unused_fd_flags(O_RDWR | O_CLOEXEC); |
b3e58382 CB |
2225 | if (retval < 0) |
2226 | goto bad_fork_free_pid; | |
2227 | ||
2228 | pidfd = retval; | |
6fd2fe49 AV |
2229 | |
2230 | pidfile = anon_inode_getfile("[pidfd]", &pidfd_fops, pid, | |
2231 | O_RDWR | O_CLOEXEC); | |
2232 | if (IS_ERR(pidfile)) { | |
2233 | put_unused_fd(pidfd); | |
28dd29c0 | 2234 | retval = PTR_ERR(pidfile); |
6fd2fe49 AV |
2235 | goto bad_fork_free_pid; |
2236 | } | |
2237 | get_pid(pid); /* held by pidfile now */ | |
2238 | ||
7f192e3c | 2239 | retval = put_user(pidfd, args->pidfd); |
b3e58382 CB |
2240 | if (retval) |
2241 | goto bad_fork_put_pidfd; | |
2242 | } | |
2243 | ||
73c10101 JA |
2244 | #ifdef CONFIG_BLOCK |
2245 | p->plug = NULL; | |
2246 | #endif | |
ba31c1a4 TG |
2247 | futex_init_task(p); |
2248 | ||
f9a3879a GM |
2249 | /* |
2250 | * sigaltstack should be cleared when sharing the same VM | |
2251 | */ | |
2252 | if ((clone_flags & (CLONE_VM|CLONE_VFORK)) == CLONE_VM) | |
2a742138 | 2253 | sas_ss_reset(p); |
f9a3879a | 2254 | |
1da177e4 | 2255 | /* |
6580807d ON |
2256 | * Syscall tracing and stepping should be turned off in the |
2257 | * child regardless of CLONE_PTRACE. | |
1da177e4 | 2258 | */ |
6580807d | 2259 | user_disable_single_step(p); |
64c19ba2 | 2260 | clear_task_syscall_work(p, SYSCALL_TRACE); |
64eb35f7 GKB |
2261 | #if defined(CONFIG_GENERIC_ENTRY) || defined(TIF_SYSCALL_EMU) |
2262 | clear_task_syscall_work(p, SYSCALL_EMU); | |
ed75e8d5 | 2263 | #endif |
e02c9b0d | 2264 | clear_tsk_latency_tracing(p); |
1da177e4 | 2265 | |
1da177e4 | 2266 | /* ok, now we should be set up.. */ |
18c830df ON |
2267 | p->pid = pid_nr(pid); |
2268 | if (clone_flags & CLONE_THREAD) { | |
18c830df ON |
2269 | p->group_leader = current->group_leader; |
2270 | p->tgid = current->tgid; | |
2271 | } else { | |
18c830df ON |
2272 | p->group_leader = p; |
2273 | p->tgid = p->pid; | |
2274 | } | |
5f8aadd8 | 2275 | |
9d823e8f WF |
2276 | p->nr_dirtied = 0; |
2277 | p->nr_dirtied_pause = 128 >> (PAGE_SHIFT - 10); | |
83712358 | 2278 | p->dirty_paused_when = 0; |
9d823e8f | 2279 | |
bb8cbbfe | 2280 | p->pdeath_signal = 0; |
47e65328 | 2281 | INIT_LIST_HEAD(&p->thread_group); |
158e1645 | 2282 | p->task_works = NULL; |
1da177e4 | 2283 | |
d741bf41 PZ |
2284 | #ifdef CONFIG_KRETPROBES |
2285 | p->kretprobe_instances.first = NULL; | |
2286 | #endif | |
2287 | ||
7e47682e AS |
2288 | /* |
2289 | * Ensure that the cgroup subsystem policies allow the new process to be | |
7b7b8a2c | 2290 | * forked. It should be noted that the new process's css_set can be changed |
7e47682e AS |
2291 | * between here and cgroup_post_fork() if an organisation operation is in |
2292 | * progress. | |
2293 | */ | |
ef2c41cf | 2294 | retval = cgroup_can_fork(p, args); |
7e47682e | 2295 | if (retval) |
5a5cf5cb | 2296 | goto bad_fork_put_pidfd; |
7e47682e | 2297 | |
7b558513 DR |
2298 | /* |
2299 | * From this point on we must avoid any synchronous user-space | |
2300 | * communication until we take the tasklist-lock. In particular, we do | |
2301 | * not want user-space to be able to predict the process start-time by | |
2302 | * stalling fork(2) after we recorded the start_time but before it is | |
2303 | * visible to the system. | |
2304 | */ | |
2305 | ||
2306 | p->start_time = ktime_get_ns(); | |
cf25e24d | 2307 | p->start_boottime = ktime_get_boottime_ns(); |
7b558513 | 2308 | |
18c830df ON |
2309 | /* |
2310 | * Make it visible to the rest of the system, but dont wake it up yet. | |
2311 | * Need tasklist lock for parent etc handling! | |
2312 | */ | |
1da177e4 LT |
2313 | write_lock_irq(&tasklist_lock); |
2314 | ||
1da177e4 | 2315 | /* CLONE_PARENT re-uses the old parent */ |
2d5516cb | 2316 | if (clone_flags & (CLONE_PARENT|CLONE_THREAD)) { |
1da177e4 | 2317 | p->real_parent = current->real_parent; |
2d5516cb | 2318 | p->parent_exec_id = current->parent_exec_id; |
b4e00444 EW |
2319 | if (clone_flags & CLONE_THREAD) |
2320 | p->exit_signal = -1; | |
2321 | else | |
2322 | p->exit_signal = current->group_leader->exit_signal; | |
2d5516cb | 2323 | } else { |
1da177e4 | 2324 | p->real_parent = current; |
2d5516cb | 2325 | p->parent_exec_id = current->self_exec_id; |
b4e00444 | 2326 | p->exit_signal = args->exit_signal; |
2d5516cb | 2327 | } |
1da177e4 | 2328 | |
d83a7cb3 JP |
2329 | klp_copy_process(p); |
2330 | ||
85dd3f61 PZ |
2331 | sched_core_fork(p); |
2332 | ||
3f17da69 | 2333 | spin_lock(¤t->sighand->siglock); |
4a2c7a78 | 2334 | |
dbd95212 KC |
2335 | /* |
2336 | * Copy seccomp details explicitly here, in case they were changed | |
2337 | * before holding sighand lock. | |
2338 | */ | |
2339 | copy_seccomp(p); | |
2340 | ||
d7822b1e MD |
2341 | rseq_fork(p, clone_flags); |
2342 | ||
4ca1d3ee | 2343 | /* Don't start children in a dying pid namespace */ |
e8cfbc24 | 2344 | if (unlikely(!(ns_of_pid(pid)->pid_allocated & PIDNS_ADDING))) { |
3fd37226 KT |
2345 | retval = -ENOMEM; |
2346 | goto bad_fork_cancel_cgroup; | |
2347 | } | |
4a2c7a78 | 2348 | |
7673bf55 EB |
2349 | /* Let kill terminate clone/fork in the middle */ |
2350 | if (fatal_signal_pending(current)) { | |
2351 | retval = -EINTR; | |
2352 | goto bad_fork_cancel_cgroup; | |
2353 | } | |
2354 | ||
6fd2fe49 AV |
2355 | /* past the last point of failure */ |
2356 | if (pidfile) | |
2357 | fd_install(pidfd, pidfile); | |
4a2c7a78 | 2358 | |
2c470475 | 2359 | init_task_pid_links(p); |
73b9ebfe | 2360 | if (likely(p->pid)) { |
4b9d33e6 | 2361 | ptrace_init_task(p, (clone_flags & CLONE_PTRACE) || trace); |
73b9ebfe | 2362 | |
81907739 | 2363 | init_task_pid(p, PIDTYPE_PID, pid); |
73b9ebfe | 2364 | if (thread_group_leader(p)) { |
6883f81a | 2365 | init_task_pid(p, PIDTYPE_TGID, pid); |
81907739 ON |
2366 | init_task_pid(p, PIDTYPE_PGID, task_pgrp(current)); |
2367 | init_task_pid(p, PIDTYPE_SID, task_session(current)); | |
2368 | ||
1c4042c2 | 2369 | if (is_child_reaper(pid)) { |
17cf22c3 | 2370 | ns_of_pid(pid)->child_reaper = p; |
1c4042c2 EB |
2371 | p->signal->flags |= SIGNAL_UNKILLABLE; |
2372 | } | |
c3ad2c3b | 2373 | p->signal->shared_pending.signal = delayed.signal; |
9c9f4ded | 2374 | p->signal->tty = tty_kref_get(current->signal->tty); |
749860ce PT |
2375 | /* |
2376 | * Inherit has_child_subreaper flag under the same | |
2377 | * tasklist_lock with adding child to the process tree | |
2378 | * for propagate_has_child_subreaper optimization. | |
2379 | */ | |
2380 | p->signal->has_child_subreaper = p->real_parent->signal->has_child_subreaper || | |
2381 | p->real_parent->signal->is_child_subreaper; | |
9cd80bbb | 2382 | list_add_tail(&p->sibling, &p->real_parent->children); |
5e85d4ab | 2383 | list_add_tail_rcu(&p->tasks, &init_task.tasks); |
6883f81a | 2384 | attach_pid(p, PIDTYPE_TGID); |
81907739 ON |
2385 | attach_pid(p, PIDTYPE_PGID); |
2386 | attach_pid(p, PIDTYPE_SID); | |
909ea964 | 2387 | __this_cpu_inc(process_counts); |
80628ca0 ON |
2388 | } else { |
2389 | current->signal->nr_threads++; | |
2390 | atomic_inc(¤t->signal->live); | |
60d4de3f | 2391 | refcount_inc(¤t->signal->sigcnt); |
924de3b8 | 2392 | task_join_group_stop(p); |
80628ca0 ON |
2393 | list_add_tail_rcu(&p->thread_group, |
2394 | &p->group_leader->thread_group); | |
0c740d0a ON |
2395 | list_add_tail_rcu(&p->thread_node, |
2396 | &p->signal->thread_head); | |
73b9ebfe | 2397 | } |
81907739 | 2398 | attach_pid(p, PIDTYPE_PID); |
73b9ebfe | 2399 | nr_threads++; |
1da177e4 | 2400 | } |
1da177e4 | 2401 | total_forks++; |
c3ad2c3b | 2402 | hlist_del_init(&delayed.node); |
3f17da69 | 2403 | spin_unlock(¤t->sighand->siglock); |
4af4206b | 2404 | syscall_tracepoint_update(p); |
1da177e4 | 2405 | write_unlock_irq(&tasklist_lock); |
4af4206b | 2406 | |
c13cf856 | 2407 | proc_fork_connector(p); |
13685c4a | 2408 | sched_post_fork(p); |
ef2c41cf | 2409 | cgroup_post_fork(p, args); |
cdd6c482 | 2410 | perf_event_fork(p); |
43d2b113 KH |
2411 | |
2412 | trace_task_newtask(p, clone_flags); | |
3ab67966 | 2413 | uprobe_copy_process(p, clone_flags); |
43d2b113 | 2414 | |
67197a4f SB |
2415 | copy_oom_score_adj(clone_flags, p); |
2416 | ||
1da177e4 LT |
2417 | return p; |
2418 | ||
7e47682e | 2419 | bad_fork_cancel_cgroup: |
85dd3f61 | 2420 | sched_core_free(p); |
3fd37226 KT |
2421 | spin_unlock(¤t->sighand->siglock); |
2422 | write_unlock_irq(&tasklist_lock); | |
ef2c41cf | 2423 | cgroup_cancel_fork(p, args); |
b3e58382 | 2424 | bad_fork_put_pidfd: |
6fd2fe49 AV |
2425 | if (clone_flags & CLONE_PIDFD) { |
2426 | fput(pidfile); | |
2427 | put_unused_fd(pidfd); | |
2428 | } | |
425fb2b4 PE |
2429 | bad_fork_free_pid: |
2430 | if (pid != &init_struct_pid) | |
2431 | free_pid(pid); | |
0740aa5f JS |
2432 | bad_fork_cleanup_thread: |
2433 | exit_thread(p); | |
fd0928df | 2434 | bad_fork_cleanup_io: |
b69f2292 LR |
2435 | if (p->io_context) |
2436 | exit_io_context(p); | |
ab516013 | 2437 | bad_fork_cleanup_namespaces: |
444f378b | 2438 | exit_task_namespaces(p); |
1da177e4 | 2439 | bad_fork_cleanup_mm: |
c3f3ce04 AA |
2440 | if (p->mm) { |
2441 | mm_clear_owner(p->mm, p); | |
1da177e4 | 2442 | mmput(p->mm); |
c3f3ce04 | 2443 | } |
1da177e4 | 2444 | bad_fork_cleanup_signal: |
4ab6c083 | 2445 | if (!(clone_flags & CLONE_THREAD)) |
1c5354de | 2446 | free_signal_struct(p->signal); |
1da177e4 | 2447 | bad_fork_cleanup_sighand: |
a7e5328a | 2448 | __cleanup_sighand(p->sighand); |
1da177e4 LT |
2449 | bad_fork_cleanup_fs: |
2450 | exit_fs(p); /* blocking */ | |
2451 | bad_fork_cleanup_files: | |
2452 | exit_files(p); /* blocking */ | |
2453 | bad_fork_cleanup_semundo: | |
2454 | exit_sem(p); | |
e4e55b47 TH |
2455 | bad_fork_cleanup_security: |
2456 | security_task_free(p); | |
1da177e4 LT |
2457 | bad_fork_cleanup_audit: |
2458 | audit_free(p); | |
6c72e350 | 2459 | bad_fork_cleanup_perf: |
cdd6c482 | 2460 | perf_event_free_task(p); |
6c72e350 | 2461 | bad_fork_cleanup_policy: |
b09be676 | 2462 | lockdep_free_task(p); |
1da177e4 | 2463 | #ifdef CONFIG_NUMA |
f0be3d32 | 2464 | mpol_put(p->mempolicy); |
e8604cb4 | 2465 | bad_fork_cleanup_threadgroup_lock: |
1da177e4 | 2466 | #endif |
35df17c5 | 2467 | delayacct_tsk_free(p); |
1da177e4 | 2468 | bad_fork_cleanup_count: |
21d1c5e3 | 2469 | dec_rlimit_ucounts(task_ucounts(p), UCOUNT_RLIMIT_NPROC, 1); |
e0e81739 | 2470 | exit_creds(p); |
1da177e4 | 2471 | bad_fork_free: |
2f064a59 | 2472 | WRITE_ONCE(p->__state, TASK_DEAD); |
68f24b08 | 2473 | put_task_stack(p); |
c3f3ce04 | 2474 | delayed_free_task(p); |
fe7d37d1 | 2475 | fork_out: |
c3ad2c3b EB |
2476 | spin_lock_irq(¤t->sighand->siglock); |
2477 | hlist_del_init(&delayed.node); | |
2478 | spin_unlock_irq(¤t->sighand->siglock); | |
fe7d37d1 | 2479 | return ERR_PTR(retval); |
1da177e4 LT |
2480 | } |
2481 | ||
2c470475 | 2482 | static inline void init_idle_pids(struct task_struct *idle) |
f106eee1 ON |
2483 | { |
2484 | enum pid_type type; | |
2485 | ||
2486 | for (type = PIDTYPE_PID; type < PIDTYPE_MAX; ++type) { | |
2c470475 EB |
2487 | INIT_HLIST_NODE(&idle->pid_links[type]); /* not really needed */ |
2488 | init_task_pid(idle, type, &init_struct_pid); | |
f106eee1 ON |
2489 | } |
2490 | } | |
2491 | ||
f1a0a376 | 2492 | struct task_struct * __init fork_idle(int cpu) |
1da177e4 | 2493 | { |
36c8b586 | 2494 | struct task_struct *task; |
7f192e3c CB |
2495 | struct kernel_clone_args args = { |
2496 | .flags = CLONE_VM, | |
2497 | }; | |
2498 | ||
2499 | task = copy_process(&init_struct_pid, 0, cpu_to_node(cpu), &args); | |
f106eee1 | 2500 | if (!IS_ERR(task)) { |
2c470475 | 2501 | init_idle_pids(task); |
753ca4f3 | 2502 | init_idle(task, cpu); |
f106eee1 | 2503 | } |
73b9ebfe | 2504 | |
1da177e4 LT |
2505 | return task; |
2506 | } | |
2507 | ||
13585fa0 NA |
2508 | struct mm_struct *copy_init_mm(void) |
2509 | { | |
2510 | return dup_mm(NULL, &init_mm); | |
2511 | } | |
2512 | ||
cc440e87 JA |
2513 | /* |
2514 | * This is like kernel_clone(), but shaved down and tailored to just | |
2515 | * creating io_uring workers. It returns a created task, or an error pointer. | |
2516 | * The returned task is inactive, and the caller must fire it up through | |
2517 | * wake_up_new_task(p). All signals are blocked in the created task. | |
2518 | */ | |
2519 | struct task_struct *create_io_thread(int (*fn)(void *), void *arg, int node) | |
2520 | { | |
2521 | unsigned long flags = CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD| | |
2522 | CLONE_IO; | |
2523 | struct kernel_clone_args args = { | |
2524 | .flags = ((lower_32_bits(flags) | CLONE_VM | | |
2525 | CLONE_UNTRACED) & ~CSIGNAL), | |
2526 | .exit_signal = (lower_32_bits(flags) & CSIGNAL), | |
2527 | .stack = (unsigned long)fn, | |
2528 | .stack_size = (unsigned long)arg, | |
2529 | .io_thread = 1, | |
2530 | }; | |
cc440e87 | 2531 | |
b16b3855 | 2532 | return copy_process(NULL, 0, node, &args); |
cc440e87 JA |
2533 | } |
2534 | ||
1da177e4 LT |
2535 | /* |
2536 | * Ok, this is the main fork-routine. | |
2537 | * | |
2538 | * It copies the process, and if successful kick-starts | |
2539 | * it and waits for it to finish using the VM if required. | |
a0eb9abd ES |
2540 | * |
2541 | * args->exit_signal is expected to be checked for sanity by the caller. | |
1da177e4 | 2542 | */ |
cad6967a | 2543 | pid_t kernel_clone(struct kernel_clone_args *args) |
1da177e4 | 2544 | { |
7f192e3c | 2545 | u64 clone_flags = args->flags; |
9f5325aa MPS |
2546 | struct completion vfork; |
2547 | struct pid *pid; | |
1da177e4 LT |
2548 | struct task_struct *p; |
2549 | int trace = 0; | |
cad6967a | 2550 | pid_t nr; |
1da177e4 | 2551 | |
3af8588c CB |
2552 | /* |
2553 | * For legacy clone() calls, CLONE_PIDFD uses the parent_tid argument | |
2554 | * to return the pidfd. Hence, CLONE_PIDFD and CLONE_PARENT_SETTID are | |
2555 | * mutually exclusive. With clone3() CLONE_PIDFD has grown a separate | |
2556 | * field in struct clone_args and it still doesn't make sense to have | |
2557 | * them both point at the same memory location. Performing this check | |
2558 | * here has the advantage that we don't need to have a separate helper | |
2559 | * to check for legacy clone(). | |
2560 | */ | |
2561 | if ((args->flags & CLONE_PIDFD) && | |
2562 | (args->flags & CLONE_PARENT_SETTID) && | |
2563 | (args->pidfd == args->parent_tid)) | |
2564 | return -EINVAL; | |
2565 | ||
09a05394 | 2566 | /* |
4b9d33e6 TH |
2567 | * Determine whether and which event to report to ptracer. When |
2568 | * called from kernel_thread or CLONE_UNTRACED is explicitly | |
2569 | * requested, no event is reported; otherwise, report if the event | |
2570 | * for the type of forking is enabled. | |
09a05394 | 2571 | */ |
e80d6661 | 2572 | if (!(clone_flags & CLONE_UNTRACED)) { |
4b9d33e6 TH |
2573 | if (clone_flags & CLONE_VFORK) |
2574 | trace = PTRACE_EVENT_VFORK; | |
7f192e3c | 2575 | else if (args->exit_signal != SIGCHLD) |
4b9d33e6 TH |
2576 | trace = PTRACE_EVENT_CLONE; |
2577 | else | |
2578 | trace = PTRACE_EVENT_FORK; | |
2579 | ||
2580 | if (likely(!ptrace_event_enabled(current, trace))) | |
2581 | trace = 0; | |
2582 | } | |
1da177e4 | 2583 | |
7f192e3c | 2584 | p = copy_process(NULL, trace, NUMA_NO_NODE, args); |
38addce8 | 2585 | add_latent_entropy(); |
9f5325aa MPS |
2586 | |
2587 | if (IS_ERR(p)) | |
2588 | return PTR_ERR(p); | |
2589 | ||
1da177e4 LT |
2590 | /* |
2591 | * Do this prior waking up the new thread - the thread pointer | |
2592 | * might get invalid after that point, if the thread exits quickly. | |
2593 | */ | |
9f5325aa | 2594 | trace_sched_process_fork(current, p); |
0a16b607 | 2595 | |
9f5325aa MPS |
2596 | pid = get_task_pid(p, PIDTYPE_PID); |
2597 | nr = pid_vnr(pid); | |
30e49c26 | 2598 | |
9f5325aa | 2599 | if (clone_flags & CLONE_PARENT_SETTID) |
7f192e3c | 2600 | put_user(nr, args->parent_tid); |
a6f5e063 | 2601 | |
9f5325aa MPS |
2602 | if (clone_flags & CLONE_VFORK) { |
2603 | p->vfork_done = &vfork; | |
2604 | init_completion(&vfork); | |
2605 | get_task_struct(p); | |
2606 | } | |
1da177e4 | 2607 | |
9f5325aa | 2608 | wake_up_new_task(p); |
09a05394 | 2609 | |
9f5325aa MPS |
2610 | /* forking complete and child started to run, tell ptracer */ |
2611 | if (unlikely(trace)) | |
2612 | ptrace_event_pid(trace, pid); | |
4e52365f | 2613 | |
9f5325aa MPS |
2614 | if (clone_flags & CLONE_VFORK) { |
2615 | if (!wait_for_vfork_done(p, &vfork)) | |
2616 | ptrace_event_pid(PTRACE_EVENT_VFORK_DONE, pid); | |
1da177e4 | 2617 | } |
9f5325aa MPS |
2618 | |
2619 | put_pid(pid); | |
92476d7f | 2620 | return nr; |
1da177e4 LT |
2621 | } |
2622 | ||
2aa3a7f8 AV |
2623 | /* |
2624 | * Create a kernel thread. | |
2625 | */ | |
2626 | pid_t kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) | |
2627 | { | |
7f192e3c | 2628 | struct kernel_clone_args args = { |
3f2c788a CB |
2629 | .flags = ((lower_32_bits(flags) | CLONE_VM | |
2630 | CLONE_UNTRACED) & ~CSIGNAL), | |
2631 | .exit_signal = (lower_32_bits(flags) & CSIGNAL), | |
7f192e3c CB |
2632 | .stack = (unsigned long)fn, |
2633 | .stack_size = (unsigned long)arg, | |
2634 | }; | |
2635 | ||
cad6967a | 2636 | return kernel_clone(&args); |
2aa3a7f8 | 2637 | } |
2aa3a7f8 | 2638 | |
d2125043 AV |
2639 | #ifdef __ARCH_WANT_SYS_FORK |
2640 | SYSCALL_DEFINE0(fork) | |
2641 | { | |
2642 | #ifdef CONFIG_MMU | |
7f192e3c CB |
2643 | struct kernel_clone_args args = { |
2644 | .exit_signal = SIGCHLD, | |
2645 | }; | |
2646 | ||
cad6967a | 2647 | return kernel_clone(&args); |
d2125043 AV |
2648 | #else |
2649 | /* can not support in nommu mode */ | |
5d59e182 | 2650 | return -EINVAL; |
d2125043 AV |
2651 | #endif |
2652 | } | |
2653 | #endif | |
2654 | ||
2655 | #ifdef __ARCH_WANT_SYS_VFORK | |
2656 | SYSCALL_DEFINE0(vfork) | |
2657 | { | |
7f192e3c CB |
2658 | struct kernel_clone_args args = { |
2659 | .flags = CLONE_VFORK | CLONE_VM, | |
2660 | .exit_signal = SIGCHLD, | |
2661 | }; | |
2662 | ||
cad6967a | 2663 | return kernel_clone(&args); |
d2125043 AV |
2664 | } |
2665 | #endif | |
2666 | ||
2667 | #ifdef __ARCH_WANT_SYS_CLONE | |
2668 | #ifdef CONFIG_CLONE_BACKWARDS | |
2669 | SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp, | |
2670 | int __user *, parent_tidptr, | |
3033f14a | 2671 | unsigned long, tls, |
d2125043 AV |
2672 | int __user *, child_tidptr) |
2673 | #elif defined(CONFIG_CLONE_BACKWARDS2) | |
2674 | SYSCALL_DEFINE5(clone, unsigned long, newsp, unsigned long, clone_flags, | |
2675 | int __user *, parent_tidptr, | |
2676 | int __user *, child_tidptr, | |
3033f14a | 2677 | unsigned long, tls) |
dfa9771a MS |
2678 | #elif defined(CONFIG_CLONE_BACKWARDS3) |
2679 | SYSCALL_DEFINE6(clone, unsigned long, clone_flags, unsigned long, newsp, | |
2680 | int, stack_size, | |
2681 | int __user *, parent_tidptr, | |
2682 | int __user *, child_tidptr, | |
3033f14a | 2683 | unsigned long, tls) |
d2125043 AV |
2684 | #else |
2685 | SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp, | |
2686 | int __user *, parent_tidptr, | |
2687 | int __user *, child_tidptr, | |
3033f14a | 2688 | unsigned long, tls) |
d2125043 AV |
2689 | #endif |
2690 | { | |
7f192e3c | 2691 | struct kernel_clone_args args = { |
3f2c788a | 2692 | .flags = (lower_32_bits(clone_flags) & ~CSIGNAL), |
7f192e3c CB |
2693 | .pidfd = parent_tidptr, |
2694 | .child_tid = child_tidptr, | |
2695 | .parent_tid = parent_tidptr, | |
3f2c788a | 2696 | .exit_signal = (lower_32_bits(clone_flags) & CSIGNAL), |
7f192e3c CB |
2697 | .stack = newsp, |
2698 | .tls = tls, | |
2699 | }; | |
2700 | ||
cad6967a | 2701 | return kernel_clone(&args); |
7f192e3c | 2702 | } |
d68dbb0c | 2703 | #endif |
7f192e3c | 2704 | |
d68dbb0c | 2705 | #ifdef __ARCH_WANT_SYS_CLONE3 |
dd499f7a | 2706 | |
7f192e3c CB |
2707 | noinline static int copy_clone_args_from_user(struct kernel_clone_args *kargs, |
2708 | struct clone_args __user *uargs, | |
f14c234b | 2709 | size_t usize) |
7f192e3c | 2710 | { |
f14c234b | 2711 | int err; |
7f192e3c | 2712 | struct clone_args args; |
49cb2fc4 | 2713 | pid_t *kset_tid = kargs->set_tid; |
7f192e3c | 2714 | |
a966dcfe ES |
2715 | BUILD_BUG_ON(offsetofend(struct clone_args, tls) != |
2716 | CLONE_ARGS_SIZE_VER0); | |
2717 | BUILD_BUG_ON(offsetofend(struct clone_args, set_tid_size) != | |
2718 | CLONE_ARGS_SIZE_VER1); | |
2719 | BUILD_BUG_ON(offsetofend(struct clone_args, cgroup) != | |
2720 | CLONE_ARGS_SIZE_VER2); | |
2721 | BUILD_BUG_ON(sizeof(struct clone_args) != CLONE_ARGS_SIZE_VER2); | |
2722 | ||
f14c234b | 2723 | if (unlikely(usize > PAGE_SIZE)) |
7f192e3c | 2724 | return -E2BIG; |
f14c234b | 2725 | if (unlikely(usize < CLONE_ARGS_SIZE_VER0)) |
7f192e3c CB |
2726 | return -EINVAL; |
2727 | ||
f14c234b AS |
2728 | err = copy_struct_from_user(&args, sizeof(args), uargs, usize); |
2729 | if (err) | |
2730 | return err; | |
7f192e3c | 2731 | |
49cb2fc4 AR |
2732 | if (unlikely(args.set_tid_size > MAX_PID_NS_LEVEL)) |
2733 | return -EINVAL; | |
2734 | ||
2735 | if (unlikely(!args.set_tid && args.set_tid_size > 0)) | |
2736 | return -EINVAL; | |
2737 | ||
2738 | if (unlikely(args.set_tid && args.set_tid_size == 0)) | |
2739 | return -EINVAL; | |
2740 | ||
a0eb9abd ES |
2741 | /* |
2742 | * Verify that higher 32bits of exit_signal are unset and that | |
2743 | * it is a valid signal | |
2744 | */ | |
2745 | if (unlikely((args.exit_signal & ~((u64)CSIGNAL)) || | |
2746 | !valid_signal(args.exit_signal))) | |
2747 | return -EINVAL; | |
2748 | ||
62173872 ES |
2749 | if ((args.flags & CLONE_INTO_CGROUP) && |
2750 | (args.cgroup > INT_MAX || usize < CLONE_ARGS_SIZE_VER2)) | |
ef2c41cf CB |
2751 | return -EINVAL; |
2752 | ||
7f192e3c CB |
2753 | *kargs = (struct kernel_clone_args){ |
2754 | .flags = args.flags, | |
2755 | .pidfd = u64_to_user_ptr(args.pidfd), | |
2756 | .child_tid = u64_to_user_ptr(args.child_tid), | |
2757 | .parent_tid = u64_to_user_ptr(args.parent_tid), | |
2758 | .exit_signal = args.exit_signal, | |
2759 | .stack = args.stack, | |
2760 | .stack_size = args.stack_size, | |
2761 | .tls = args.tls, | |
49cb2fc4 | 2762 | .set_tid_size = args.set_tid_size, |
ef2c41cf | 2763 | .cgroup = args.cgroup, |
7f192e3c CB |
2764 | }; |
2765 | ||
49cb2fc4 AR |
2766 | if (args.set_tid && |
2767 | copy_from_user(kset_tid, u64_to_user_ptr(args.set_tid), | |
2768 | (kargs->set_tid_size * sizeof(pid_t)))) | |
2769 | return -EFAULT; | |
2770 | ||
2771 | kargs->set_tid = kset_tid; | |
2772 | ||
7f192e3c CB |
2773 | return 0; |
2774 | } | |
2775 | ||
fa729c4d CB |
2776 | /** |
2777 | * clone3_stack_valid - check and prepare stack | |
2778 | * @kargs: kernel clone args | |
2779 | * | |
2780 | * Verify that the stack arguments userspace gave us are sane. | |
2781 | * In addition, set the stack direction for userspace since it's easy for us to | |
2782 | * determine. | |
2783 | */ | |
2784 | static inline bool clone3_stack_valid(struct kernel_clone_args *kargs) | |
2785 | { | |
2786 | if (kargs->stack == 0) { | |
2787 | if (kargs->stack_size > 0) | |
2788 | return false; | |
2789 | } else { | |
2790 | if (kargs->stack_size == 0) | |
2791 | return false; | |
2792 | ||
2793 | if (!access_ok((void __user *)kargs->stack, kargs->stack_size)) | |
2794 | return false; | |
2795 | ||
2796 | #if !defined(CONFIG_STACK_GROWSUP) && !defined(CONFIG_IA64) | |
2797 | kargs->stack += kargs->stack_size; | |
2798 | #endif | |
2799 | } | |
2800 | ||
2801 | return true; | |
2802 | } | |
2803 | ||
2804 | static bool clone3_args_valid(struct kernel_clone_args *kargs) | |
7f192e3c | 2805 | { |
b612e5df | 2806 | /* Verify that no unknown flags are passed along. */ |
ef2c41cf CB |
2807 | if (kargs->flags & |
2808 | ~(CLONE_LEGACY_FLAGS | CLONE_CLEAR_SIGHAND | CLONE_INTO_CGROUP)) | |
7f192e3c CB |
2809 | return false; |
2810 | ||
2811 | /* | |
a8ca6b13 XC |
2812 | * - make the CLONE_DETACHED bit reusable for clone3 |
2813 | * - make the CSIGNAL bits reusable for clone3 | |
7f192e3c CB |
2814 | */ |
2815 | if (kargs->flags & (CLONE_DETACHED | CSIGNAL)) | |
2816 | return false; | |
2817 | ||
b612e5df CB |
2818 | if ((kargs->flags & (CLONE_SIGHAND | CLONE_CLEAR_SIGHAND)) == |
2819 | (CLONE_SIGHAND | CLONE_CLEAR_SIGHAND)) | |
2820 | return false; | |
2821 | ||
7f192e3c CB |
2822 | if ((kargs->flags & (CLONE_THREAD | CLONE_PARENT)) && |
2823 | kargs->exit_signal) | |
2824 | return false; | |
2825 | ||
fa729c4d CB |
2826 | if (!clone3_stack_valid(kargs)) |
2827 | return false; | |
2828 | ||
7f192e3c CB |
2829 | return true; |
2830 | } | |
2831 | ||
501bd016 CB |
2832 | /** |
2833 | * clone3 - create a new process with specific properties | |
2834 | * @uargs: argument structure | |
2835 | * @size: size of @uargs | |
2836 | * | |
2837 | * clone3() is the extensible successor to clone()/clone2(). | |
2838 | * It takes a struct as argument that is versioned by its size. | |
2839 | * | |
2840 | * Return: On success, a positive PID for the child process. | |
2841 | * On error, a negative errno number. | |
2842 | */ | |
7f192e3c CB |
2843 | SYSCALL_DEFINE2(clone3, struct clone_args __user *, uargs, size_t, size) |
2844 | { | |
2845 | int err; | |
2846 | ||
2847 | struct kernel_clone_args kargs; | |
49cb2fc4 AR |
2848 | pid_t set_tid[MAX_PID_NS_LEVEL]; |
2849 | ||
2850 | kargs.set_tid = set_tid; | |
7f192e3c CB |
2851 | |
2852 | err = copy_clone_args_from_user(&kargs, uargs, size); | |
2853 | if (err) | |
2854 | return err; | |
2855 | ||
2856 | if (!clone3_args_valid(&kargs)) | |
2857 | return -EINVAL; | |
2858 | ||
cad6967a | 2859 | return kernel_clone(&kargs); |
d2125043 AV |
2860 | } |
2861 | #endif | |
2862 | ||
0f1b92cb ON |
2863 | void walk_process_tree(struct task_struct *top, proc_visitor visitor, void *data) |
2864 | { | |
2865 | struct task_struct *leader, *parent, *child; | |
2866 | int res; | |
2867 | ||
2868 | read_lock(&tasklist_lock); | |
2869 | leader = top = top->group_leader; | |
2870 | down: | |
2871 | for_each_thread(leader, parent) { | |
2872 | list_for_each_entry(child, &parent->children, sibling) { | |
2873 | res = visitor(child, data); | |
2874 | if (res) { | |
2875 | if (res < 0) | |
2876 | goto out; | |
2877 | leader = child; | |
2878 | goto down; | |
2879 | } | |
2880 | up: | |
2881 | ; | |
2882 | } | |
2883 | } | |
2884 | ||
2885 | if (leader != top) { | |
2886 | child = leader; | |
2887 | parent = child->real_parent; | |
2888 | leader = parent->group_leader; | |
2889 | goto up; | |
2890 | } | |
2891 | out: | |
2892 | read_unlock(&tasklist_lock); | |
2893 | } | |
2894 | ||
5fd63b30 RT |
2895 | #ifndef ARCH_MIN_MMSTRUCT_ALIGN |
2896 | #define ARCH_MIN_MMSTRUCT_ALIGN 0 | |
2897 | #endif | |
2898 | ||
51cc5068 | 2899 | static void sighand_ctor(void *data) |
aa1757f9 ON |
2900 | { |
2901 | struct sighand_struct *sighand = data; | |
2902 | ||
a35afb83 | 2903 | spin_lock_init(&sighand->siglock); |
b8fceee1 | 2904 | init_waitqueue_head(&sighand->signalfd_wqh); |
aa1757f9 ON |
2905 | } |
2906 | ||
1da177e4 LT |
2907 | void __init proc_caches_init(void) |
2908 | { | |
c1a2f7f0 RR |
2909 | unsigned int mm_size; |
2910 | ||
1da177e4 LT |
2911 | sighand_cachep = kmem_cache_create("sighand_cache", |
2912 | sizeof(struct sighand_struct), 0, | |
5f0d5a3a | 2913 | SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_TYPESAFE_BY_RCU| |
75f296d9 | 2914 | SLAB_ACCOUNT, sighand_ctor); |
1da177e4 LT |
2915 | signal_cachep = kmem_cache_create("signal_cache", |
2916 | sizeof(struct signal_struct), 0, | |
75f296d9 | 2917 | SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, |
5d097056 | 2918 | NULL); |
20c2df83 | 2919 | files_cachep = kmem_cache_create("files_cache", |
1da177e4 | 2920 | sizeof(struct files_struct), 0, |
75f296d9 | 2921 | SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, |
5d097056 | 2922 | NULL); |
20c2df83 | 2923 | fs_cachep = kmem_cache_create("fs_cache", |
1da177e4 | 2924 | sizeof(struct fs_struct), 0, |
75f296d9 | 2925 | SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, |
5d097056 | 2926 | NULL); |
c1a2f7f0 | 2927 | |
6345d24d | 2928 | /* |
c1a2f7f0 RR |
2929 | * The mm_cpumask is located at the end of mm_struct, and is |
2930 | * dynamically sized based on the maximum CPU number this system | |
2931 | * can have, taking hotplug into account (nr_cpu_ids). | |
6345d24d | 2932 | */ |
c1a2f7f0 RR |
2933 | mm_size = sizeof(struct mm_struct) + cpumask_size(); |
2934 | ||
07dcd7fe | 2935 | mm_cachep = kmem_cache_create_usercopy("mm_struct", |
c1a2f7f0 | 2936 | mm_size, ARCH_MIN_MMSTRUCT_ALIGN, |
75f296d9 | 2937 | SLAB_HWCACHE_ALIGN|SLAB_PANIC|SLAB_ACCOUNT, |
07dcd7fe DW |
2938 | offsetof(struct mm_struct, saved_auxv), |
2939 | sizeof_field(struct mm_struct, saved_auxv), | |
5d097056 VD |
2940 | NULL); |
2941 | vm_area_cachep = KMEM_CACHE(vm_area_struct, SLAB_PANIC|SLAB_ACCOUNT); | |
8feae131 | 2942 | mmap_init(); |
66577193 | 2943 | nsproxy_cache_init(); |
1da177e4 | 2944 | } |
cf2e340f | 2945 | |
cf2e340f | 2946 | /* |
9bfb23fc | 2947 | * Check constraints on flags passed to the unshare system call. |
cf2e340f | 2948 | */ |
9bfb23fc | 2949 | static int check_unshare_flags(unsigned long unshare_flags) |
cf2e340f | 2950 | { |
9bfb23fc ON |
2951 | if (unshare_flags & ~(CLONE_THREAD|CLONE_FS|CLONE_NEWNS|CLONE_SIGHAND| |
2952 | CLONE_VM|CLONE_FILES|CLONE_SYSVSEM| | |
50804fe3 | 2953 | CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWNET| |
769071ac AV |
2954 | CLONE_NEWUSER|CLONE_NEWPID|CLONE_NEWCGROUP| |
2955 | CLONE_NEWTIME)) | |
9bfb23fc | 2956 | return -EINVAL; |
cf2e340f | 2957 | /* |
12c641ab EB |
2958 | * Not implemented, but pretend it works if there is nothing |
2959 | * to unshare. Note that unsharing the address space or the | |
2960 | * signal handlers also need to unshare the signal queues (aka | |
2961 | * CLONE_THREAD). | |
cf2e340f | 2962 | */ |
9bfb23fc | 2963 | if (unshare_flags & (CLONE_THREAD | CLONE_SIGHAND | CLONE_VM)) { |
12c641ab EB |
2964 | if (!thread_group_empty(current)) |
2965 | return -EINVAL; | |
2966 | } | |
2967 | if (unshare_flags & (CLONE_SIGHAND | CLONE_VM)) { | |
d036bda7 | 2968 | if (refcount_read(¤t->sighand->count) > 1) |
12c641ab EB |
2969 | return -EINVAL; |
2970 | } | |
2971 | if (unshare_flags & CLONE_VM) { | |
2972 | if (!current_is_single_threaded()) | |
9bfb23fc ON |
2973 | return -EINVAL; |
2974 | } | |
cf2e340f JD |
2975 | |
2976 | return 0; | |
2977 | } | |
2978 | ||
2979 | /* | |
99d1419d | 2980 | * Unshare the filesystem structure if it is being shared |
cf2e340f JD |
2981 | */ |
2982 | static int unshare_fs(unsigned long unshare_flags, struct fs_struct **new_fsp) | |
2983 | { | |
2984 | struct fs_struct *fs = current->fs; | |
2985 | ||
498052bb AV |
2986 | if (!(unshare_flags & CLONE_FS) || !fs) |
2987 | return 0; | |
2988 | ||
2989 | /* don't need lock here; in the worst case we'll do useless copy */ | |
2990 | if (fs->users == 1) | |
2991 | return 0; | |
2992 | ||
2993 | *new_fsp = copy_fs_struct(fs); | |
2994 | if (!*new_fsp) | |
2995 | return -ENOMEM; | |
cf2e340f JD |
2996 | |
2997 | return 0; | |
2998 | } | |
2999 | ||
cf2e340f | 3000 | /* |
a016f338 | 3001 | * Unshare file descriptor table if it is being shared |
cf2e340f | 3002 | */ |
60997c3d CB |
3003 | int unshare_fd(unsigned long unshare_flags, unsigned int max_fds, |
3004 | struct files_struct **new_fdp) | |
cf2e340f JD |
3005 | { |
3006 | struct files_struct *fd = current->files; | |
a016f338 | 3007 | int error = 0; |
cf2e340f JD |
3008 | |
3009 | if ((unshare_flags & CLONE_FILES) && | |
a016f338 | 3010 | (fd && atomic_read(&fd->count) > 1)) { |
60997c3d | 3011 | *new_fdp = dup_fd(fd, max_fds, &error); |
a016f338 JD |
3012 | if (!*new_fdp) |
3013 | return error; | |
3014 | } | |
cf2e340f JD |
3015 | |
3016 | return 0; | |
3017 | } | |
3018 | ||
cf2e340f JD |
3019 | /* |
3020 | * unshare allows a process to 'unshare' part of the process | |
3021 | * context which was originally shared using clone. copy_* | |
cad6967a | 3022 | * functions used by kernel_clone() cannot be used here directly |
cf2e340f JD |
3023 | * because they modify an inactive task_struct that is being |
3024 | * constructed. Here we are modifying the current, active, | |
3025 | * task_struct. | |
3026 | */ | |
9b32105e | 3027 | int ksys_unshare(unsigned long unshare_flags) |
cf2e340f | 3028 | { |
cf2e340f | 3029 | struct fs_struct *fs, *new_fs = NULL; |
cf2e340f | 3030 | struct files_struct *fd, *new_fd = NULL; |
b2e0d987 | 3031 | struct cred *new_cred = NULL; |
cf7b708c | 3032 | struct nsproxy *new_nsproxy = NULL; |
9edff4ab | 3033 | int do_sysvsem = 0; |
9bfb23fc | 3034 | int err; |
cf2e340f | 3035 | |
b2e0d987 | 3036 | /* |
faf00da5 EB |
3037 | * If unsharing a user namespace must also unshare the thread group |
3038 | * and unshare the filesystem root and working directories. | |
b2e0d987 EB |
3039 | */ |
3040 | if (unshare_flags & CLONE_NEWUSER) | |
e66eded8 | 3041 | unshare_flags |= CLONE_THREAD | CLONE_FS; |
50804fe3 EB |
3042 | /* |
3043 | * If unsharing vm, must also unshare signal handlers. | |
3044 | */ | |
3045 | if (unshare_flags & CLONE_VM) | |
3046 | unshare_flags |= CLONE_SIGHAND; | |
12c641ab EB |
3047 | /* |
3048 | * If unsharing a signal handlers, must also unshare the signal queues. | |
3049 | */ | |
3050 | if (unshare_flags & CLONE_SIGHAND) | |
3051 | unshare_flags |= CLONE_THREAD; | |
9bfb23fc ON |
3052 | /* |
3053 | * If unsharing namespace, must also unshare filesystem information. | |
3054 | */ | |
3055 | if (unshare_flags & CLONE_NEWNS) | |
3056 | unshare_flags |= CLONE_FS; | |
50804fe3 EB |
3057 | |
3058 | err = check_unshare_flags(unshare_flags); | |
3059 | if (err) | |
3060 | goto bad_unshare_out; | |
6013f67f MS |
3061 | /* |
3062 | * CLONE_NEWIPC must also detach from the undolist: after switching | |
3063 | * to a new ipc namespace, the semaphore arrays from the old | |
3064 | * namespace are unreachable. | |
3065 | */ | |
3066 | if (unshare_flags & (CLONE_NEWIPC|CLONE_SYSVSEM)) | |
9edff4ab | 3067 | do_sysvsem = 1; |
fb0a685c DRO |
3068 | err = unshare_fs(unshare_flags, &new_fs); |
3069 | if (err) | |
9bfb23fc | 3070 | goto bad_unshare_out; |
60997c3d | 3071 | err = unshare_fd(unshare_flags, NR_OPEN_MAX, &new_fd); |
fb0a685c | 3072 | if (err) |
9bfb23fc | 3073 | goto bad_unshare_cleanup_fs; |
b2e0d987 | 3074 | err = unshare_userns(unshare_flags, &new_cred); |
fb0a685c | 3075 | if (err) |
9edff4ab | 3076 | goto bad_unshare_cleanup_fd; |
b2e0d987 EB |
3077 | err = unshare_nsproxy_namespaces(unshare_flags, &new_nsproxy, |
3078 | new_cred, new_fs); | |
3079 | if (err) | |
3080 | goto bad_unshare_cleanup_cred; | |
c0b2fc31 | 3081 | |
905ae01c AG |
3082 | if (new_cred) { |
3083 | err = set_cred_ucounts(new_cred); | |
3084 | if (err) | |
3085 | goto bad_unshare_cleanup_cred; | |
3086 | } | |
3087 | ||
b2e0d987 | 3088 | if (new_fs || new_fd || do_sysvsem || new_cred || new_nsproxy) { |
9edff4ab MS |
3089 | if (do_sysvsem) { |
3090 | /* | |
3091 | * CLONE_SYSVSEM is equivalent to sys_exit(). | |
3092 | */ | |
3093 | exit_sem(current); | |
3094 | } | |
ab602f79 JM |
3095 | if (unshare_flags & CLONE_NEWIPC) { |
3096 | /* Orphan segments in old ns (see sem above). */ | |
3097 | exit_shm(current); | |
3098 | shm_init_task(current); | |
3099 | } | |
ab516013 | 3100 | |
6f977e6b | 3101 | if (new_nsproxy) |
cf7b708c | 3102 | switch_task_namespaces(current, new_nsproxy); |
cf2e340f | 3103 | |
cf7b708c PE |
3104 | task_lock(current); |
3105 | ||
cf2e340f JD |
3106 | if (new_fs) { |
3107 | fs = current->fs; | |
2a4419b5 | 3108 | spin_lock(&fs->lock); |
cf2e340f | 3109 | current->fs = new_fs; |
498052bb AV |
3110 | if (--fs->users) |
3111 | new_fs = NULL; | |
3112 | else | |
3113 | new_fs = fs; | |
2a4419b5 | 3114 | spin_unlock(&fs->lock); |
cf2e340f JD |
3115 | } |
3116 | ||
cf2e340f JD |
3117 | if (new_fd) { |
3118 | fd = current->files; | |
3119 | current->files = new_fd; | |
3120 | new_fd = fd; | |
3121 | } | |
3122 | ||
3123 | task_unlock(current); | |
b2e0d987 EB |
3124 | |
3125 | if (new_cred) { | |
3126 | /* Install the new user namespace */ | |
3127 | commit_creds(new_cred); | |
3128 | new_cred = NULL; | |
3129 | } | |
cf2e340f JD |
3130 | } |
3131 | ||
e4222673 HB |
3132 | perf_event_namespaces(current); |
3133 | ||
b2e0d987 EB |
3134 | bad_unshare_cleanup_cred: |
3135 | if (new_cred) | |
3136 | put_cred(new_cred); | |
cf2e340f JD |
3137 | bad_unshare_cleanup_fd: |
3138 | if (new_fd) | |
3139 | put_files_struct(new_fd); | |
3140 | ||
cf2e340f JD |
3141 | bad_unshare_cleanup_fs: |
3142 | if (new_fs) | |
498052bb | 3143 | free_fs_struct(new_fs); |
cf2e340f | 3144 | |
cf2e340f JD |
3145 | bad_unshare_out: |
3146 | return err; | |
3147 | } | |
3b125388 | 3148 | |
9b32105e DB |
3149 | SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags) |
3150 | { | |
3151 | return ksys_unshare(unshare_flags); | |
3152 | } | |
3153 | ||
3b125388 AV |
3154 | /* |
3155 | * Helper to unshare the files of the current task. | |
3156 | * We don't want to expose copy_files internals to | |
3157 | * the exec layer of the kernel. | |
3158 | */ | |
3159 | ||
1f702603 | 3160 | int unshare_files(void) |
3b125388 AV |
3161 | { |
3162 | struct task_struct *task = current; | |
1f702603 | 3163 | struct files_struct *old, *copy = NULL; |
3b125388 AV |
3164 | int error; |
3165 | ||
60997c3d | 3166 | error = unshare_fd(CLONE_FILES, NR_OPEN_MAX, ©); |
1f702603 | 3167 | if (error || !copy) |
3b125388 | 3168 | return error; |
1f702603 EB |
3169 | |
3170 | old = task->files; | |
3b125388 AV |
3171 | task_lock(task); |
3172 | task->files = copy; | |
3173 | task_unlock(task); | |
1f702603 | 3174 | put_files_struct(old); |
3b125388 AV |
3175 | return 0; |
3176 | } | |
16db3d3f HS |
3177 | |
3178 | int sysctl_max_threads(struct ctl_table *table, int write, | |
b0daa2c7 | 3179 | void *buffer, size_t *lenp, loff_t *ppos) |
16db3d3f HS |
3180 | { |
3181 | struct ctl_table t; | |
3182 | int ret; | |
3183 | int threads = max_threads; | |
b0f53dbc | 3184 | int min = 1; |
16db3d3f HS |
3185 | int max = MAX_THREADS; |
3186 | ||
3187 | t = *table; | |
3188 | t.data = &threads; | |
3189 | t.extra1 = &min; | |
3190 | t.extra2 = &max; | |
3191 | ||
3192 | ret = proc_dointvec_minmax(&t, write, buffer, lenp, ppos); | |
3193 | if (ret || !write) | |
3194 | return ret; | |
3195 | ||
b0f53dbc | 3196 | max_threads = threads; |
16db3d3f HS |
3197 | |
3198 | return 0; | |
3199 | } |