diff options
author | android-build-team Robot <android-build-team-robot@google.com> | 2020-06-10 07:06:28 +0000 |
---|---|---|
committer | android-build-team Robot <android-build-team-robot@google.com> | 2020-06-10 07:06:28 +0000 |
commit | 444b0ea79f2df866223c72f54ce4cea8bc52ec2c (patch) | |
tree | 0836a0c8dce0e15b31fe3a9ac5e15c7f32ac2d41 | |
parent | 3ab41e66646375c41c186565f04d582347a0a8a0 (diff) | |
parent | 13a82a04ae476bad962de11b3156d26c58f5c12f (diff) |
Snap for 6574919 from 13a82a04ae476bad962de11b3156d26c58f5c12f to mainline-release
Change-Id: I0d729457c135ff21d2ff3aea4d0ba0dd4d18faed
-rw-r--r-- | libc/bionic/fork.cpp | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/libc/bionic/fork.cpp b/libc/bionic/fork.cpp index cda5e8533..3814ed0ac 100644 --- a/libc/bionic/fork.cpp +++ b/libc/bionic/fork.cpp @@ -34,23 +34,27 @@ #include "pthread_internal.h" __BIONIC_WEAK_FOR_NATIVE_BRIDGE -int fork() { - __bionic_atfork_run_prepare(); - +int __clone_for_fork() { pthread_internal_t* self = __get_thread(); - int result = clone(nullptr, - nullptr, - (CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID | SIGCHLD), - nullptr, - nullptr, - nullptr, - &(self->tid)); + int result = clone(nullptr, nullptr, (CLONE_CHILD_SETTID | CLONE_CHILD_CLEARTID | SIGCHLD), + nullptr, nullptr, nullptr, &(self->tid)); + if (result == 0) { - // Update the cached pid, since clone() will not set it directly (as + // Update the cached pid in child, since clone() will not set it directly (as // self->tid is updated by the kernel). self->set_cached_pid(gettid()); + } + return result; +} + +int fork() { + __bionic_atfork_run_prepare(); + + int result = __clone_for_fork(); + + if (result == 0) { // Disable fdsan post-fork, so we don't falsely trigger on processes that // fork, close all of their fds blindly, and then exec. android_fdsan_set_error_level(ANDROID_FDSAN_ERROR_LEVEL_DISABLED); |