diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2019-07-14 12:20:47 -0400 |
---|---|---|
committer | Christian Brauner <christian@brauner.io> | 2019-07-14 14:36:12 -0400 |
commit | 028b6e8a89de9133a869bb4cd1bc72445b1ec8ca (patch) | |
tree | 1f7464eb4b1f64d20def0019a2818e8c3e9c2c74 /include/linux/sched | |
parent | 964a4eacef67503a1154f7e0a75f52fbdce52022 (diff) |
clone: fix CLONE_PIDFD support
The introduction of clone3 syscall accidentally broke CLONE_PIDFD
support in traditional clone syscall on compat x86 and those
architectures that use do_fork to implement clone syscall.
This bug was found by strace test suite.
Link: https://strace.io/logs/strace/2019-07-12
Fixes: 7f192e3cd316 ("fork: add clone3")
Bisected-and-tested-by: Anatoly Pugachev <matorola@gmail.com>
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Link: https://lore.kernel.org/r/20190714162047.GB10389@altlinux.org
Signed-off-by: Christian Brauner <christian@brauner.io>
Diffstat (limited to 'include/linux/sched')
-rw-r--r-- | include/linux/sched/task.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/sched/task.h b/include/linux/sched/task.h index 109a0df5af39..0497091e40c1 100644 --- a/include/linux/sched/task.h +++ b/include/linux/sched/task.h | |||
@@ -89,6 +89,7 @@ extern void exit_files(struct task_struct *); | |||
89 | extern void exit_itimers(struct signal_struct *); | 89 | extern void exit_itimers(struct signal_struct *); |
90 | 90 | ||
91 | extern long _do_fork(struct kernel_clone_args *kargs); | 91 | extern long _do_fork(struct kernel_clone_args *kargs); |
92 | extern bool legacy_clone_args_valid(const struct kernel_clone_args *kargs); | ||
92 | extern long do_fork(unsigned long, unsigned long, unsigned long, int __user *, int __user *); | 93 | extern long do_fork(unsigned long, unsigned long, unsigned long, int __user *, int __user *); |
93 | struct task_struct *fork_idle(int); | 94 | struct task_struct *fork_idle(int); |
94 | struct mm_struct *copy_init_mm(void); | 95 | struct mm_struct *copy_init_mm(void); |