#include "base/files/scoped_file.h"
#include <dlfcn.h>
#include <algorithm>
#include <array>
#include <atomic>
#include "base/compiler_specific.h"
#include "base/debug/stack_trace.h"
#include "base/immediate_crash.h"
#include "base/logging.h"
namespace {
const int kMaxTrackedFds = …;
std::atomic_bool g_is_ownership_enforced{ … };
std::array<std::atomic_bool, kMaxTrackedFds> g_is_fd_owned;
NOINLINE void CrashOnFdOwnershipViolation() { … }
bool CanTrack(int fd) { … }
void UpdateAndCheckFdOwnership(int fd, bool owned) { … }
}
namespace base {
namespace internal {
void ScopedFDCloseTraits::Acquire(const ScopedFD& owner, int fd) { … }
void ScopedFDCloseTraits::Release(const ScopedFD& owner, int fd) { … }
}
namespace subtle {
#if !defined(COMPONENT_BUILD)
void EnableFDOwnershipEnforcement(bool enabled) {
g_is_ownership_enforced = enabled;
}
#endif
void ResetFDOwnership() { … }
}
bool IsFDOwned(int fd) { … }
}
#if !defined(COMPONENT_BUILD)
using LibcCloseFuncPtr = int (*)(int);
LibcCloseFuncPtr LoadCloseSymbol() {
#if defined(THREAD_SANITIZER)
return reinterpret_cast<LibcCloseFuncPtr>(
dlsym(RTLD_DEFAULT, "__interceptor___close"));
#else
return reinterpret_cast<LibcCloseFuncPtr>(dlsym(RTLD_NEXT, "close"));
#endif
}
extern "C" {
NO_SANITIZE("cfi-icall")
__attribute__((visibility("default"), noinline)) int close(int fd) {
static LibcCloseFuncPtr libc_close = LoadCloseSymbol();
if (base::IsFDOwned(fd) && g_is_ownership_enforced)
CrashOnFdOwnershipViolation();
if (libc_close == nullptr) {
RAW_LOG(ERROR, "close symbol missing\n");
base::ImmediateCrash();
}
return libc_close(fd);
}
}
#endif