#include "base/files/scoped_file.h"
#include <stdint.h>
extern "C" {
void android_fdsan_exchange_owner_tag(int fd,
uint64_t expected_tag,
uint64_t new_tag)
__attribute__((__weak__));
}
namespace base {
namespace internal {
static uint64_t ScopedFDToTag(const ScopedFD& owner) {
return reinterpret_cast<uint64_t>(&owner);
}
void ScopedFDCloseTraits::Acquire(const ScopedFD& owner, int fd) {
if (android_fdsan_exchange_owner_tag) {
android_fdsan_exchange_owner_tag(fd, 0, ScopedFDToTag(owner));
}
}
void ScopedFDCloseTraits::Release(const ScopedFD& owner, int fd) {
if (android_fdsan_exchange_owner_tag) {
android_fdsan_exchange_owner_tag(fd, ScopedFDToTag(owner), 0);
}
}
}
}