2011-03-19 06:37:00 +08:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/mman.h>
|
2021-09-10 08:45:26 +08:00
|
|
|
#ifndef __Fuchsia__
|
2017-01-04 09:39:49 +08:00
|
|
|
#include <sys/resource.h>
|
2021-09-10 08:45:26 +08:00
|
|
|
#endif
|
2011-03-19 06:37:00 +08:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2018-09-05 00:31:27 +08:00
|
|
|
|
|
|
|
#include <atomic>
|
2018-10-30 07:17:46 +08:00
|
|
|
#include <cerrno>
|
2018-09-25 01:50:40 +08:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
2018-10-30 07:17:46 +08:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
2018-09-06 06:23:28 +08:00
|
|
|
#include <cstring>
|
2017-02-08 07:17:04 +08:00
|
|
|
#include <limits>
|
2018-09-12 01:39:08 +08:00
|
|
|
#include <queue>
|
2014-09-17 05:19:52 +08:00
|
|
|
#include <set>
|
2018-09-25 01:50:40 +08:00
|
|
|
#include <string>
|
2018-09-12 01:39:08 +08:00
|
|
|
#include <thread>
|
2018-09-25 01:50:40 +08:00
|
|
|
#include <type_traits>
|
2018-10-30 07:17:46 +08:00
|
|
|
#include <utility>
|
2018-09-05 00:31:27 +08:00
|
|
|
|
2011-03-31 02:35:40 +08:00
|
|
|
#include "leveldb/env.h"
|
|
|
|
#include "leveldb/slice.h"
|
2018-09-25 01:50:40 +08:00
|
|
|
#include "leveldb/status.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
#include "port/port.h"
|
2018-03-24 03:50:14 +08:00
|
|
|
#include "port/thread_annotations.h"
|
2017-01-04 09:39:49 +08:00
|
|
|
#include "util/env_posix_test_helper.h"
|
2019-05-03 02:01:00 +08:00
|
|
|
#include "util/posix_logger.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
// Set by EnvPosixTestHelper::SetReadOnlyMMapLimit() and MaxOpenFiles().
|
|
|
|
int g_open_read_only_file_limit = -1;
|
|
|
|
|
|
|
|
// Up to 1000 mmap regions for 64-bit binaries; none for 32-bit.
|
|
|
|
constexpr const int kDefaultMmapLimit = (sizeof(void*) >= 8) ? 1000 : 0;
|
|
|
|
|
2019-06-13 05:05:14 +08:00
|
|
|
// Can be set using EnvPosixTestHelper::SetReadOnlyMMapLimit().
|
2018-10-30 07:17:46 +08:00
|
|
|
int g_mmap_limit = kDefaultMmapLimit;
|
2017-01-04 09:39:49 +08:00
|
|
|
|
2018-09-20 07:29:00 +08:00
|
|
|
// Common flags defined for all posix open operations
|
|
|
|
#if defined(HAVE_O_CLOEXEC)
|
2019-05-07 06:20:42 +08:00
|
|
|
constexpr const int kOpenBaseFlags = O_CLOEXEC;
|
2018-09-20 07:29:00 +08:00
|
|
|
#else
|
2019-05-07 06:20:42 +08:00
|
|
|
constexpr const int kOpenBaseFlags = 0;
|
2018-09-20 07:29:00 +08:00
|
|
|
#endif // defined(HAVE_O_CLOEXEC)
|
|
|
|
|
2018-09-06 06:23:28 +08:00
|
|
|
constexpr const size_t kWritableFileBufferSize = 65536;
|
2017-10-03 03:37:45 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status PosixError(const std::string& context, int error_number) {
|
|
|
|
if (error_number == ENOENT) {
|
|
|
|
return Status::NotFound(context, std::strerror(error_number));
|
2017-07-11 04:32:58 +08:00
|
|
|
} else {
|
2018-10-30 07:17:46 +08:00
|
|
|
return Status::IOError(context, std::strerror(error_number));
|
2017-07-11 04:32:58 +08:00
|
|
|
}
|
2011-07-15 08:20:57 +08:00
|
|
|
}
|
|
|
|
|
2017-01-04 09:39:49 +08:00
|
|
|
// Helper class to limit resource usage to avoid exhaustion.
|
|
|
|
// Currently used to limit read-only file descriptors and mmap file usage
|
2018-09-05 00:31:27 +08:00
|
|
|
// so that we do not run out of file descriptors or virtual memory, or run into
|
|
|
|
// kernel performance problems for very large databases.
|
2017-01-04 09:39:49 +08:00
|
|
|
class Limiter {
|
|
|
|
public:
|
2018-09-05 00:31:27 +08:00
|
|
|
// Limit maximum number of resources to |max_acquires|.
|
2021-12-23 03:12:56 +08:00
|
|
|
Limiter(int max_acquires)
|
|
|
|
:
|
|
|
|
#if !defined(NDEBUG)
|
|
|
|
max_acquires_(max_acquires),
|
|
|
|
#endif // !defined(NDEBUG)
|
|
|
|
acquires_allowed_(max_acquires) {
|
|
|
|
assert(max_acquires >= 0);
|
|
|
|
}
|
2018-09-05 00:31:27 +08:00
|
|
|
|
|
|
|
Limiter(const Limiter&) = delete;
|
|
|
|
Limiter operator=(const Limiter&) = delete;
|
2017-01-04 09:39:49 +08:00
|
|
|
|
|
|
|
// If another resource is available, acquire it and return true.
|
|
|
|
// Else return false.
|
|
|
|
bool Acquire() {
|
2018-09-05 00:31:27 +08:00
|
|
|
int old_acquires_allowed =
|
|
|
|
acquires_allowed_.fetch_sub(1, std::memory_order_relaxed);
|
|
|
|
|
2019-05-03 02:01:00 +08:00
|
|
|
if (old_acquires_allowed > 0) return true;
|
2018-09-05 00:31:27 +08:00
|
|
|
|
2021-12-23 03:12:56 +08:00
|
|
|
int pre_increment_acquires_allowed =
|
|
|
|
acquires_allowed_.fetch_add(1, std::memory_order_relaxed);
|
|
|
|
|
|
|
|
// Silence compiler warnings about unused arguments when NDEBUG is defined.
|
|
|
|
(void)pre_increment_acquires_allowed;
|
|
|
|
// If the check below fails, Release() was called more times than acquire.
|
|
|
|
assert(pre_increment_acquires_allowed < max_acquires_);
|
|
|
|
|
2018-09-05 00:31:27 +08:00
|
|
|
return false;
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Release a resource acquired by a previous call to Acquire() that returned
|
|
|
|
// true.
|
2021-12-23 03:12:56 +08:00
|
|
|
void Release() {
|
|
|
|
int old_acquires_allowed =
|
|
|
|
acquires_allowed_.fetch_add(1, std::memory_order_relaxed);
|
|
|
|
|
|
|
|
// Silence compiler warnings about unused arguments when NDEBUG is defined.
|
|
|
|
(void)old_acquires_allowed;
|
|
|
|
// If the check below fails, Release() was called more times than acquire.
|
|
|
|
assert(old_acquires_allowed < max_acquires_);
|
|
|
|
}
|
2017-01-04 09:39:49 +08:00
|
|
|
|
|
|
|
private:
|
2021-12-23 03:12:56 +08:00
|
|
|
#if !defined(NDEBUG)
|
|
|
|
// Catches an excessive number of Release() calls.
|
|
|
|
const int max_acquires_;
|
|
|
|
#endif // !defined(NDEBUG)
|
|
|
|
|
2018-09-05 00:31:27 +08:00
|
|
|
// The number of available resources.
|
|
|
|
//
|
|
|
|
// This is a counter and is not tied to the invariants of any other class, so
|
|
|
|
// it can be operated on safely using std::memory_order_relaxed.
|
|
|
|
std::atomic<int> acquires_allowed_;
|
2017-01-04 09:39:49 +08:00
|
|
|
};
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
// Implements sequential read access in a file using read().
|
|
|
|
//
|
|
|
|
// Instances of this class are thread-friendly but not thread-safe, as required
|
|
|
|
// by the SequentialFile API.
|
|
|
|
class PosixSequentialFile final : public SequentialFile {
|
2011-03-19 06:37:00 +08:00
|
|
|
public:
|
2018-10-30 07:17:46 +08:00
|
|
|
PosixSequentialFile(std::string filename, int fd)
|
2021-05-02 12:31:40 +08:00
|
|
|
: fd_(fd), filename_(std::move(filename)) {}
|
2018-10-30 07:17:46 +08:00
|
|
|
~PosixSequentialFile() override { close(fd_); }
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status Read(size_t n, Slice* result, char* scratch) override {
|
|
|
|
Status status;
|
2017-10-03 03:37:45 +08:00
|
|
|
while (true) {
|
2018-10-30 07:17:46 +08:00
|
|
|
::ssize_t read_size = ::read(fd_, scratch, n);
|
|
|
|
if (read_size < 0) { // Read error.
|
2017-10-03 03:37:45 +08:00
|
|
|
if (errno == EINTR) {
|
|
|
|
continue; // Retry
|
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
status = PosixError(filename_, errno);
|
2017-10-03 03:37:45 +08:00
|
|
|
break;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
*result = Slice(scratch, read_size);
|
2017-10-03 03:37:45 +08:00
|
|
|
break;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
return status;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2011-05-21 10:17:43 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status Skip(uint64_t n) override {
|
|
|
|
if (::lseek(fd_, n, SEEK_CUR) == static_cast<off_t>(-1)) {
|
2017-07-11 04:32:58 +08:00
|
|
|
return PosixError(filename_, errno);
|
2011-05-21 10:17:43 +08:00
|
|
|
}
|
|
|
|
return Status::OK();
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
private:
|
2018-10-30 07:17:46 +08:00
|
|
|
const int fd_;
|
|
|
|
const std::string filename_;
|
|
|
|
};
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
// Implements random read access in a file using pread().
|
|
|
|
//
|
|
|
|
// Instances of this class are thread-safe, as required by the RandomAccessFile
|
|
|
|
// API. Instances are immutable and Read() only calls thread-safe library
|
|
|
|
// functions.
|
|
|
|
class PosixRandomAccessFile final : public RandomAccessFile {
|
2011-03-19 06:37:00 +08:00
|
|
|
public:
|
2018-10-30 07:17:46 +08:00
|
|
|
// The new instance takes ownership of |fd|. |fd_limiter| must outlive this
|
|
|
|
// instance, and will be used to determine if .
|
|
|
|
PosixRandomAccessFile(std::string filename, int fd, Limiter* fd_limiter)
|
|
|
|
: has_permanent_fd_(fd_limiter->Acquire()),
|
|
|
|
fd_(has_permanent_fd_ ? fd : -1),
|
|
|
|
fd_limiter_(fd_limiter),
|
|
|
|
filename_(std::move(filename)) {
|
|
|
|
if (!has_permanent_fd_) {
|
|
|
|
assert(fd_ == -1);
|
|
|
|
::close(fd); // The file will be opened on every read.
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
~PosixRandomAccessFile() override {
|
|
|
|
if (has_permanent_fd_) {
|
|
|
|
assert(fd_ != -1);
|
|
|
|
::close(fd_);
|
|
|
|
fd_limiter_->Release();
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status Read(uint64_t offset, size_t n, Slice* result,
|
|
|
|
char* scratch) const override {
|
2017-01-04 09:39:49 +08:00
|
|
|
int fd = fd_;
|
2018-10-30 07:17:46 +08:00
|
|
|
if (!has_permanent_fd_) {
|
2019-05-07 06:20:42 +08:00
|
|
|
fd = ::open(filename_.c_str(), O_RDONLY | kOpenBaseFlags);
|
2017-01-04 09:39:49 +08:00
|
|
|
if (fd < 0) {
|
2017-07-11 04:32:58 +08:00
|
|
|
return PosixError(filename_, errno);
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
assert(fd != -1);
|
|
|
|
|
|
|
|
Status status;
|
|
|
|
ssize_t read_size = ::pread(fd, scratch, n, static_cast<off_t>(offset));
|
|
|
|
*result = Slice(scratch, (read_size < 0) ? 0 : read_size);
|
|
|
|
if (read_size < 0) {
|
|
|
|
// An error: return a non-ok status.
|
|
|
|
status = PosixError(filename_, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
if (!has_permanent_fd_) {
|
2017-01-04 09:39:49 +08:00
|
|
|
// Close the temporary file descriptor opened earlier.
|
2018-10-30 07:17:46 +08:00
|
|
|
assert(fd != fd_);
|
|
|
|
::close(fd);
|
2012-10-13 02:53:12 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
return status;
|
2012-10-13 02:53:12 +08:00
|
|
|
}
|
|
|
|
|
2012-03-16 00:14:00 +08:00
|
|
|
private:
|
2018-10-30 07:17:46 +08:00
|
|
|
const bool has_permanent_fd_; // If false, the file is opened on every read.
|
2019-05-03 02:01:00 +08:00
|
|
|
const int fd_; // -1 if has_permanent_fd_ is false.
|
2018-10-30 07:17:46 +08:00
|
|
|
Limiter* const fd_limiter_;
|
|
|
|
const std::string filename_;
|
|
|
|
};
|
2012-03-16 00:14:00 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
// Implements random read access in a file using mmap().
|
|
|
|
//
|
|
|
|
// Instances of this class are thread-safe, as required by the RandomAccessFile
|
|
|
|
// API. Instances are immutable and Read() only calls thread-safe library
|
|
|
|
// functions.
|
|
|
|
class PosixMmapReadableFile final : public RandomAccessFile {
|
2012-03-16 00:14:00 +08:00
|
|
|
public:
|
2018-10-30 07:17:46 +08:00
|
|
|
// mmap_base[0, length-1] points to the memory-mapped contents of the file. It
|
|
|
|
// must be the result of a successful call to mmap(). This instances takes
|
|
|
|
// over the ownership of the region.
|
|
|
|
//
|
|
|
|
// |mmap_limiter| must outlive this instance. The caller must have already
|
2022-01-05 17:04:16 +08:00
|
|
|
// acquired the right to use one mmap region, which will be released when this
|
2018-10-30 07:17:46 +08:00
|
|
|
// instance is destroyed.
|
|
|
|
PosixMmapReadableFile(std::string filename, char* mmap_base, size_t length,
|
|
|
|
Limiter* mmap_limiter)
|
2019-05-03 02:01:00 +08:00
|
|
|
: mmap_base_(mmap_base),
|
|
|
|
length_(length),
|
|
|
|
mmap_limiter_(mmap_limiter),
|
2018-10-30 07:17:46 +08:00
|
|
|
filename_(std::move(filename)) {}
|
2012-10-13 02:53:12 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
~PosixMmapReadableFile() override {
|
|
|
|
::munmap(static_cast<void*>(mmap_base_), length_);
|
|
|
|
mmap_limiter_->Release();
|
2012-10-13 02:53:12 +08:00
|
|
|
}
|
2012-03-16 00:14:00 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status Read(uint64_t offset, size_t n, Slice* result,
|
|
|
|
char* scratch) const override {
|
2012-03-16 00:14:00 +08:00
|
|
|
if (offset + n > length_) {
|
|
|
|
*result = Slice();
|
2018-10-30 07:17:46 +08:00
|
|
|
return PosixError(filename_, EINVAL);
|
2012-03-16 00:14:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
|
|
|
|
*result = Slice(mmap_base_ + offset, n);
|
|
|
|
return Status::OK();
|
2012-03-16 00:14:00 +08:00
|
|
|
}
|
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
private:
|
2018-10-30 07:17:46 +08:00
|
|
|
char* const mmap_base_;
|
|
|
|
const size_t length_;
|
|
|
|
Limiter* const mmap_limiter_;
|
|
|
|
const std::string filename_;
|
2012-03-16 00:14:00 +08:00
|
|
|
};
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-09-06 06:23:28 +08:00
|
|
|
class PosixWritableFile final : public WritableFile {
|
2011-03-19 06:37:00 +08:00
|
|
|
public:
|
2018-09-06 06:23:28 +08:00
|
|
|
PosixWritableFile(std::string filename, int fd)
|
2019-05-03 02:01:00 +08:00
|
|
|
: pos_(0),
|
|
|
|
fd_(fd),
|
|
|
|
is_manifest_(IsManifest(filename)),
|
|
|
|
filename_(std::move(filename)),
|
|
|
|
dirname_(Dirname(filename_)) {}
|
2013-12-11 02:36:31 +08:00
|
|
|
|
2018-09-06 06:23:28 +08:00
|
|
|
~PosixWritableFile() override {
|
2017-10-03 03:37:45 +08:00
|
|
|
if (fd_ >= 0) {
|
2013-12-11 02:36:31 +08:00
|
|
|
// Ignoring any potential errors
|
2017-10-04 04:41:46 +08:00
|
|
|
Close();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-06 06:23:28 +08:00
|
|
|
Status Append(const Slice& data) override {
|
|
|
|
size_t write_size = data.size();
|
|
|
|
const char* write_data = data.data();
|
2017-10-03 03:37:45 +08:00
|
|
|
|
|
|
|
// Fit as much as possible into buffer.
|
2018-09-06 06:23:28 +08:00
|
|
|
size_t copy_size = std::min(write_size, kWritableFileBufferSize - pos_);
|
|
|
|
std::memcpy(buf_ + pos_, write_data, copy_size);
|
|
|
|
write_data += copy_size;
|
|
|
|
write_size -= copy_size;
|
|
|
|
pos_ += copy_size;
|
|
|
|
if (write_size == 0) {
|
2017-10-03 03:37:45 +08:00
|
|
|
return Status::OK();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2017-10-03 03:37:45 +08:00
|
|
|
|
|
|
|
// Can't fit in buffer, so need to do at least one write.
|
2018-09-06 06:23:28 +08:00
|
|
|
Status status = FlushBuffer();
|
|
|
|
if (!status.ok()) {
|
|
|
|
return status;
|
2017-10-03 03:37:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Small writes go to buffer, large writes are written directly.
|
2018-09-06 06:23:28 +08:00
|
|
|
if (write_size < kWritableFileBufferSize) {
|
|
|
|
std::memcpy(buf_, write_data, write_size);
|
|
|
|
pos_ = write_size;
|
2017-10-03 03:37:45 +08:00
|
|
|
return Status::OK();
|
|
|
|
}
|
2018-09-06 06:23:28 +08:00
|
|
|
return WriteUnbuffered(write_data, write_size);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-09-06 06:23:28 +08:00
|
|
|
Status Close() override {
|
|
|
|
Status status = FlushBuffer();
|
|
|
|
const int close_result = ::close(fd_);
|
|
|
|
if (close_result < 0 && status.ok()) {
|
|
|
|
status = PosixError(filename_, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2017-10-03 03:37:45 +08:00
|
|
|
fd_ = -1;
|
2018-09-06 06:23:28 +08:00
|
|
|
return status;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2019-05-03 02:01:00 +08:00
|
|
|
Status Flush() override { return FlushBuffer(); }
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-09-06 06:23:28 +08:00
|
|
|
Status Sync() override {
|
2013-08-22 02:12:47 +08:00
|
|
|
// Ensure new files referred to by the manifest are in the filesystem.
|
2018-09-06 06:23:28 +08:00
|
|
|
//
|
|
|
|
// This needs to happen before the manifest file is flushed to disk, to
|
|
|
|
// avoid crashing in a state where the manifest refers to files that are not
|
|
|
|
// yet on disk.
|
|
|
|
Status status = SyncDirIfManifest();
|
|
|
|
if (!status.ok()) {
|
|
|
|
return status;
|
2013-08-22 02:12:47 +08:00
|
|
|
}
|
2018-09-06 06:23:28 +08:00
|
|
|
|
|
|
|
status = FlushBuffer();
|
leveldb: Fix PosixWritableFile::Sync() on Apple systems.
Apple doesn't follow POSIX specifications for fsync(). Instead, fsync() guarantees to flush the buffer cache to the device, which means the data will survive kernel panics, but may not survive power outages. Applications that need stronger guarantees (like databases) need to use fcntl(F_FULLFSYNC).
This CL switches PosixWritableFile::Sync() to get the stronger guarantees on Apple systems. The improved implementation follows the same principles as SQLite [1] and node.js [2].
Research for the fcntl() to fsync() fallback strategy:
Apple's released source code at https://opensource.apple.com/ shows at least three different error codes being returned when a filesystem does not support F_FULLFSYNC.
fcntl() is implemented in xnu-4903.221.2 in bsd/kern/kern_descrip.c, where it delegates to fcntl_nocancel(). The documentation for fcntl_nocancel() mentions error codes for some operations, but does not include F_FULLFSYNC. The F_FULLSYNC branch in fcntl_nocancel() calls VNOP_IOCTL(_, F_FULLSYNC, NULL, 0, _), whose return value sets the error
code.
VNOP_IOCTL() is implemented in bsd/vfs/kpi_vfs.c and calls the ioctl function in the vnode's operation vector. The per-filesystem function names follow the pattern _vnop_ioctl() for all the instances in opensource code: {hfs,msdosfs,nfs,ntfs,smbfs,webdav,zfs}_vnop_ioctl().
hfs-407.30.1, msdosfs-229.200.3, and nfs in xnu-4903.221.2 handle F_FULLFSYNC. ntfs-94.200.1 and smb-759.40.1 do not handle F_FULLFSYNC, and the default branch returns ENOSUP. webdav-380.200.1 also does not handle F_FULLFSYNC, but the default branch returns EINVAL. zfs-59 also does not handle F_FULLSYNC, and its default branch returns ENOTTY.
From a different angle, Apple's ntfs-94.200.1 includes utility code that uses fcntl(F_FULLFSYNC) and falls back to fsync() just like we do, supporting the hypothesis that there is no good way to detect lack of F_FULLFSYNC support. Also, Apple's fcntl() man page [3] does not mention a way to detect lack of F_FULLFSYNC support.
[1] https://www.sqlite.org/src/doc/trunk/src/os_unix.c
[2] https://github.com/libuv/libuv/blob/master/src/unix/fs.c
[3] https://developer.apple.com/library/archive/documentatiVon/System/Conceptual/ManPages_iPhoneOS/man2/fcntl.2.html
Tested:
https://travis-ci.org/pwnall/leveldb/builds/477318498
TAP global presubmit
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=228593729
2019-01-10 06:53:09 +08:00
|
|
|
if (!status.ok()) {
|
|
|
|
return status;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
leveldb: Fix PosixWritableFile::Sync() on Apple systems.
Apple doesn't follow POSIX specifications for fsync(). Instead, fsync() guarantees to flush the buffer cache to the device, which means the data will survive kernel panics, but may not survive power outages. Applications that need stronger guarantees (like databases) need to use fcntl(F_FULLFSYNC).
This CL switches PosixWritableFile::Sync() to get the stronger guarantees on Apple systems. The improved implementation follows the same principles as SQLite [1] and node.js [2].
Research for the fcntl() to fsync() fallback strategy:
Apple's released source code at https://opensource.apple.com/ shows at least three different error codes being returned when a filesystem does not support F_FULLFSYNC.
fcntl() is implemented in xnu-4903.221.2 in bsd/kern/kern_descrip.c, where it delegates to fcntl_nocancel(). The documentation for fcntl_nocancel() mentions error codes for some operations, but does not include F_FULLFSYNC. The F_FULLSYNC branch in fcntl_nocancel() calls VNOP_IOCTL(_, F_FULLSYNC, NULL, 0, _), whose return value sets the error
code.
VNOP_IOCTL() is implemented in bsd/vfs/kpi_vfs.c and calls the ioctl function in the vnode's operation vector. The per-filesystem function names follow the pattern _vnop_ioctl() for all the instances in opensource code: {hfs,msdosfs,nfs,ntfs,smbfs,webdav,zfs}_vnop_ioctl().
hfs-407.30.1, msdosfs-229.200.3, and nfs in xnu-4903.221.2 handle F_FULLFSYNC. ntfs-94.200.1 and smb-759.40.1 do not handle F_FULLFSYNC, and the default branch returns ENOSUP. webdav-380.200.1 also does not handle F_FULLFSYNC, but the default branch returns EINVAL. zfs-59 also does not handle F_FULLSYNC, and its default branch returns ENOTTY.
From a different angle, Apple's ntfs-94.200.1 includes utility code that uses fcntl(F_FULLFSYNC) and falls back to fsync() just like we do, supporting the hypothesis that there is no good way to detect lack of F_FULLFSYNC support. Also, Apple's fcntl() man page [3] does not mention a way to detect lack of F_FULLFSYNC support.
[1] https://www.sqlite.org/src/doc/trunk/src/os_unix.c
[2] https://github.com/libuv/libuv/blob/master/src/unix/fs.c
[3] https://developer.apple.com/library/archive/documentatiVon/System/Conceptual/ManPages_iPhoneOS/man2/fcntl.2.html
Tested:
https://travis-ci.org/pwnall/leveldb/builds/477318498
TAP global presubmit
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=228593729
2019-01-10 06:53:09 +08:00
|
|
|
|
|
|
|
return SyncFd(fd_, filename_);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2017-10-03 03:37:45 +08:00
|
|
|
|
|
|
|
private:
|
2018-09-06 06:23:28 +08:00
|
|
|
Status FlushBuffer() {
|
|
|
|
Status status = WriteUnbuffered(buf_, pos_);
|
2017-10-03 03:37:45 +08:00
|
|
|
pos_ = 0;
|
2018-09-06 06:23:28 +08:00
|
|
|
return status;
|
2017-10-03 03:37:45 +08:00
|
|
|
}
|
|
|
|
|
2018-09-06 06:23:28 +08:00
|
|
|
Status WriteUnbuffered(const char* data, size_t size) {
|
|
|
|
while (size > 0) {
|
|
|
|
ssize_t write_result = ::write(fd_, data, size);
|
|
|
|
if (write_result < 0) {
|
2017-10-03 03:37:45 +08:00
|
|
|
if (errno == EINTR) {
|
|
|
|
continue; // Retry
|
|
|
|
}
|
|
|
|
return PosixError(filename_, errno);
|
|
|
|
}
|
2018-09-06 06:23:28 +08:00
|
|
|
data += write_result;
|
|
|
|
size -= write_result;
|
2013-12-11 02:36:31 +08:00
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2013-08-22 02:12:47 +08:00
|
|
|
Status SyncDirIfManifest() {
|
2018-09-06 06:23:28 +08:00
|
|
|
Status status;
|
|
|
|
if (!is_manifest_) {
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2019-05-07 06:20:42 +08:00
|
|
|
int fd = ::open(dirname_.c_str(), O_RDONLY | kOpenBaseFlags);
|
2018-09-06 06:23:28 +08:00
|
|
|
if (fd < 0) {
|
|
|
|
status = PosixError(dirname_, errno);
|
2013-08-22 02:12:47 +08:00
|
|
|
} else {
|
leveldb: Fix PosixWritableFile::Sync() on Apple systems.
Apple doesn't follow POSIX specifications for fsync(). Instead, fsync() guarantees to flush the buffer cache to the device, which means the data will survive kernel panics, but may not survive power outages. Applications that need stronger guarantees (like databases) need to use fcntl(F_FULLFSYNC).
This CL switches PosixWritableFile::Sync() to get the stronger guarantees on Apple systems. The improved implementation follows the same principles as SQLite [1] and node.js [2].
Research for the fcntl() to fsync() fallback strategy:
Apple's released source code at https://opensource.apple.com/ shows at least three different error codes being returned when a filesystem does not support F_FULLFSYNC.
fcntl() is implemented in xnu-4903.221.2 in bsd/kern/kern_descrip.c, where it delegates to fcntl_nocancel(). The documentation for fcntl_nocancel() mentions error codes for some operations, but does not include F_FULLFSYNC. The F_FULLSYNC branch in fcntl_nocancel() calls VNOP_IOCTL(_, F_FULLSYNC, NULL, 0, _), whose return value sets the error
code.
VNOP_IOCTL() is implemented in bsd/vfs/kpi_vfs.c and calls the ioctl function in the vnode's operation vector. The per-filesystem function names follow the pattern _vnop_ioctl() for all the instances in opensource code: {hfs,msdosfs,nfs,ntfs,smbfs,webdav,zfs}_vnop_ioctl().
hfs-407.30.1, msdosfs-229.200.3, and nfs in xnu-4903.221.2 handle F_FULLFSYNC. ntfs-94.200.1 and smb-759.40.1 do not handle F_FULLFSYNC, and the default branch returns ENOSUP. webdav-380.200.1 also does not handle F_FULLFSYNC, but the default branch returns EINVAL. zfs-59 also does not handle F_FULLSYNC, and its default branch returns ENOTTY.
From a different angle, Apple's ntfs-94.200.1 includes utility code that uses fcntl(F_FULLFSYNC) and falls back to fsync() just like we do, supporting the hypothesis that there is no good way to detect lack of F_FULLFSYNC support. Also, Apple's fcntl() man page [3] does not mention a way to detect lack of F_FULLFSYNC support.
[1] https://www.sqlite.org/src/doc/trunk/src/os_unix.c
[2] https://github.com/libuv/libuv/blob/master/src/unix/fs.c
[3] https://developer.apple.com/library/archive/documentatiVon/System/Conceptual/ManPages_iPhoneOS/man2/fcntl.2.html
Tested:
https://travis-ci.org/pwnall/leveldb/builds/477318498
TAP global presubmit
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=228593729
2019-01-10 06:53:09 +08:00
|
|
|
status = SyncFd(fd, dirname_);
|
2018-09-06 06:23:28 +08:00
|
|
|
::close(fd);
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
leveldb: Fix PosixWritableFile::Sync() on Apple systems.
Apple doesn't follow POSIX specifications for fsync(). Instead, fsync() guarantees to flush the buffer cache to the device, which means the data will survive kernel panics, but may not survive power outages. Applications that need stronger guarantees (like databases) need to use fcntl(F_FULLFSYNC).
This CL switches PosixWritableFile::Sync() to get the stronger guarantees on Apple systems. The improved implementation follows the same principles as SQLite [1] and node.js [2].
Research for the fcntl() to fsync() fallback strategy:
Apple's released source code at https://opensource.apple.com/ shows at least three different error codes being returned when a filesystem does not support F_FULLFSYNC.
fcntl() is implemented in xnu-4903.221.2 in bsd/kern/kern_descrip.c, where it delegates to fcntl_nocancel(). The documentation for fcntl_nocancel() mentions error codes for some operations, but does not include F_FULLFSYNC. The F_FULLSYNC branch in fcntl_nocancel() calls VNOP_IOCTL(_, F_FULLSYNC, NULL, 0, _), whose return value sets the error
code.
VNOP_IOCTL() is implemented in bsd/vfs/kpi_vfs.c and calls the ioctl function in the vnode's operation vector. The per-filesystem function names follow the pattern _vnop_ioctl() for all the instances in opensource code: {hfs,msdosfs,nfs,ntfs,smbfs,webdav,zfs}_vnop_ioctl().
hfs-407.30.1, msdosfs-229.200.3, and nfs in xnu-4903.221.2 handle F_FULLFSYNC. ntfs-94.200.1 and smb-759.40.1 do not handle F_FULLFSYNC, and the default branch returns ENOSUP. webdav-380.200.1 also does not handle F_FULLFSYNC, but the default branch returns EINVAL. zfs-59 also does not handle F_FULLSYNC, and its default branch returns ENOTTY.
From a different angle, Apple's ntfs-94.200.1 includes utility code that uses fcntl(F_FULLFSYNC) and falls back to fsync() just like we do, supporting the hypothesis that there is no good way to detect lack of F_FULLFSYNC support. Also, Apple's fcntl() man page [3] does not mention a way to detect lack of F_FULLFSYNC support.
[1] https://www.sqlite.org/src/doc/trunk/src/os_unix.c
[2] https://github.com/libuv/libuv/blob/master/src/unix/fs.c
[3] https://developer.apple.com/library/archive/documentatiVon/System/Conceptual/ManPages_iPhoneOS/man2/fcntl.2.html
Tested:
https://travis-ci.org/pwnall/leveldb/builds/477318498
TAP global presubmit
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=228593729
2019-01-10 06:53:09 +08:00
|
|
|
// Ensures that all the caches associated with the given file descriptor's
|
|
|
|
// data are flushed all the way to durable media, and can withstand power
|
|
|
|
// failures.
|
|
|
|
//
|
|
|
|
// The path argument is only used to populate the description string in the
|
|
|
|
// returned Status if an error occurs.
|
|
|
|
static Status SyncFd(int fd, const std::string& fd_path) {
|
|
|
|
#if HAVE_FULLFSYNC
|
|
|
|
// On macOS and iOS, fsync() doesn't guarantee durability past power
|
|
|
|
// failures. fcntl(F_FULLFSYNC) is required for that purpose. Some
|
|
|
|
// filesystems don't support fcntl(F_FULLFSYNC), and require a fallback to
|
|
|
|
// fsync().
|
|
|
|
if (::fcntl(fd, F_FULLFSYNC) == 0) {
|
|
|
|
return Status::OK();
|
2013-08-22 02:12:47 +08:00
|
|
|
}
|
leveldb: Fix PosixWritableFile::Sync() on Apple systems.
Apple doesn't follow POSIX specifications for fsync(). Instead, fsync() guarantees to flush the buffer cache to the device, which means the data will survive kernel panics, but may not survive power outages. Applications that need stronger guarantees (like databases) need to use fcntl(F_FULLFSYNC).
This CL switches PosixWritableFile::Sync() to get the stronger guarantees on Apple systems. The improved implementation follows the same principles as SQLite [1] and node.js [2].
Research for the fcntl() to fsync() fallback strategy:
Apple's released source code at https://opensource.apple.com/ shows at least three different error codes being returned when a filesystem does not support F_FULLFSYNC.
fcntl() is implemented in xnu-4903.221.2 in bsd/kern/kern_descrip.c, where it delegates to fcntl_nocancel(). The documentation for fcntl_nocancel() mentions error codes for some operations, but does not include F_FULLFSYNC. The F_FULLSYNC branch in fcntl_nocancel() calls VNOP_IOCTL(_, F_FULLSYNC, NULL, 0, _), whose return value sets the error
code.
VNOP_IOCTL() is implemented in bsd/vfs/kpi_vfs.c and calls the ioctl function in the vnode's operation vector. The per-filesystem function names follow the pattern _vnop_ioctl() for all the instances in opensource code: {hfs,msdosfs,nfs,ntfs,smbfs,webdav,zfs}_vnop_ioctl().
hfs-407.30.1, msdosfs-229.200.3, and nfs in xnu-4903.221.2 handle F_FULLFSYNC. ntfs-94.200.1 and smb-759.40.1 do not handle F_FULLFSYNC, and the default branch returns ENOSUP. webdav-380.200.1 also does not handle F_FULLFSYNC, but the default branch returns EINVAL. zfs-59 also does not handle F_FULLSYNC, and its default branch returns ENOTTY.
From a different angle, Apple's ntfs-94.200.1 includes utility code that uses fcntl(F_FULLFSYNC) and falls back to fsync() just like we do, supporting the hypothesis that there is no good way to detect lack of F_FULLFSYNC support. Also, Apple's fcntl() man page [3] does not mention a way to detect lack of F_FULLFSYNC support.
[1] https://www.sqlite.org/src/doc/trunk/src/os_unix.c
[2] https://github.com/libuv/libuv/blob/master/src/unix/fs.c
[3] https://developer.apple.com/library/archive/documentatiVon/System/Conceptual/ManPages_iPhoneOS/man2/fcntl.2.html
Tested:
https://travis-ci.org/pwnall/leveldb/builds/477318498
TAP global presubmit
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=228593729
2019-01-10 06:53:09 +08:00
|
|
|
#endif // HAVE_FULLFSYNC
|
|
|
|
|
|
|
|
#if HAVE_FDATASYNC
|
|
|
|
bool sync_success = ::fdatasync(fd) == 0;
|
|
|
|
#else
|
|
|
|
bool sync_success = ::fsync(fd) == 0;
|
|
|
|
#endif // HAVE_FDATASYNC
|
|
|
|
|
|
|
|
if (sync_success) {
|
|
|
|
return Status::OK();
|
2013-08-22 02:12:47 +08:00
|
|
|
}
|
leveldb: Fix PosixWritableFile::Sync() on Apple systems.
Apple doesn't follow POSIX specifications for fsync(). Instead, fsync() guarantees to flush the buffer cache to the device, which means the data will survive kernel panics, but may not survive power outages. Applications that need stronger guarantees (like databases) need to use fcntl(F_FULLFSYNC).
This CL switches PosixWritableFile::Sync() to get the stronger guarantees on Apple systems. The improved implementation follows the same principles as SQLite [1] and node.js [2].
Research for the fcntl() to fsync() fallback strategy:
Apple's released source code at https://opensource.apple.com/ shows at least three different error codes being returned when a filesystem does not support F_FULLFSYNC.
fcntl() is implemented in xnu-4903.221.2 in bsd/kern/kern_descrip.c, where it delegates to fcntl_nocancel(). The documentation for fcntl_nocancel() mentions error codes for some operations, but does not include F_FULLFSYNC. The F_FULLSYNC branch in fcntl_nocancel() calls VNOP_IOCTL(_, F_FULLSYNC, NULL, 0, _), whose return value sets the error
code.
VNOP_IOCTL() is implemented in bsd/vfs/kpi_vfs.c and calls the ioctl function in the vnode's operation vector. The per-filesystem function names follow the pattern _vnop_ioctl() for all the instances in opensource code: {hfs,msdosfs,nfs,ntfs,smbfs,webdav,zfs}_vnop_ioctl().
hfs-407.30.1, msdosfs-229.200.3, and nfs in xnu-4903.221.2 handle F_FULLFSYNC. ntfs-94.200.1 and smb-759.40.1 do not handle F_FULLFSYNC, and the default branch returns ENOSUP. webdav-380.200.1 also does not handle F_FULLFSYNC, but the default branch returns EINVAL. zfs-59 also does not handle F_FULLSYNC, and its default branch returns ENOTTY.
From a different angle, Apple's ntfs-94.200.1 includes utility code that uses fcntl(F_FULLFSYNC) and falls back to fsync() just like we do, supporting the hypothesis that there is no good way to detect lack of F_FULLFSYNC support. Also, Apple's fcntl() man page [3] does not mention a way to detect lack of F_FULLFSYNC support.
[1] https://www.sqlite.org/src/doc/trunk/src/os_unix.c
[2] https://github.com/libuv/libuv/blob/master/src/unix/fs.c
[3] https://developer.apple.com/library/archive/documentatiVon/System/Conceptual/ManPages_iPhoneOS/man2/fcntl.2.html
Tested:
https://travis-ci.org/pwnall/leveldb/builds/477318498
TAP global presubmit
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=228593729
2019-01-10 06:53:09 +08:00
|
|
|
return PosixError(fd_path, errno);
|
2013-08-22 02:12:47 +08:00
|
|
|
}
|
|
|
|
|
2018-09-06 06:23:28 +08:00
|
|
|
// Returns the directory name in a path pointing to a file.
|
|
|
|
//
|
|
|
|
// Returns "." if the path does not contain any directory separator.
|
|
|
|
static std::string Dirname(const std::string& filename) {
|
|
|
|
std::string::size_type separator_pos = filename.rfind('/');
|
|
|
|
if (separator_pos == std::string::npos) {
|
|
|
|
return std::string(".");
|
2013-08-22 02:12:47 +08:00
|
|
|
}
|
2018-09-06 06:23:28 +08:00
|
|
|
// The filename component should not contain a path separator. If it does,
|
|
|
|
// the splitting was done incorrectly.
|
|
|
|
assert(filename.find('/', separator_pos + 1) == std::string::npos);
|
|
|
|
|
|
|
|
return filename.substr(0, separator_pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extracts the file name from a path pointing to a file.
|
|
|
|
//
|
|
|
|
// The returned Slice points to |filename|'s data buffer, so it is only valid
|
|
|
|
// while |filename| is alive and unchanged.
|
|
|
|
static Slice Basename(const std::string& filename) {
|
|
|
|
std::string::size_type separator_pos = filename.rfind('/');
|
|
|
|
if (separator_pos == std::string::npos) {
|
|
|
|
return Slice(filename);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-09-06 06:23:28 +08:00
|
|
|
// The filename component should not contain a path separator. If it does,
|
|
|
|
// the splitting was done incorrectly.
|
|
|
|
assert(filename.find('/', separator_pos + 1) == std::string::npos);
|
|
|
|
|
|
|
|
return Slice(filename.data() + separator_pos + 1,
|
|
|
|
filename.length() - separator_pos - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// True if the given file is a manifest file.
|
|
|
|
static bool IsManifest(const std::string& filename) {
|
|
|
|
return Basename(filename).starts_with("MANIFEST");
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-09-06 06:23:28 +08:00
|
|
|
|
|
|
|
// buf_[0, pos_ - 1] contains data to be written to fd_.
|
|
|
|
char buf_[kWritableFileBufferSize];
|
|
|
|
size_t pos_;
|
|
|
|
int fd_;
|
|
|
|
|
|
|
|
const bool is_manifest_; // True if the file's name starts with MANIFEST.
|
|
|
|
const std::string filename_;
|
|
|
|
const std::string dirname_; // The directory of filename_.
|
2011-03-19 06:37:00 +08:00
|
|
|
};
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
int LockOrUnlock(int fd, bool lock) {
|
2011-03-19 06:37:00 +08:00
|
|
|
errno = 0;
|
2018-10-30 07:17:46 +08:00
|
|
|
struct ::flock file_lock_info;
|
|
|
|
std::memset(&file_lock_info, 0, sizeof(file_lock_info));
|
|
|
|
file_lock_info.l_type = (lock ? F_WRLCK : F_UNLCK);
|
|
|
|
file_lock_info.l_whence = SEEK_SET;
|
|
|
|
file_lock_info.l_start = 0;
|
|
|
|
file_lock_info.l_len = 0; // Lock/unlock entire file.
|
|
|
|
return ::fcntl(fd, F_SETLK, &file_lock_info);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
// Instances are thread-safe because they are immutable.
|
2011-03-19 06:37:00 +08:00
|
|
|
class PosixFileLock : public FileLock {
|
|
|
|
public:
|
2018-10-30 07:17:46 +08:00
|
|
|
PosixFileLock(int fd, std::string filename)
|
|
|
|
: fd_(fd), filename_(std::move(filename)) {}
|
|
|
|
|
|
|
|
int fd() const { return fd_; }
|
|
|
|
const std::string& filename() const { return filename_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const int fd_;
|
|
|
|
const std::string filename_;
|
2012-10-13 02:53:12 +08:00
|
|
|
};
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
// Tracks the files locked by PosixEnv::LockFile().
|
|
|
|
//
|
2019-05-09 00:08:49 +08:00
|
|
|
// We maintain a separate set instead of relying on fcntl(F_SETLK) because
|
2018-10-30 07:17:46 +08:00
|
|
|
// fcntl(F_SETLK) does not provide any protection against multiple uses from the
|
|
|
|
// same process.
|
|
|
|
//
|
|
|
|
// Instances are thread-safe because all member data is guarded by a mutex.
|
2012-10-13 02:53:12 +08:00
|
|
|
class PosixLockTable {
|
|
|
|
public:
|
2018-03-24 03:50:14 +08:00
|
|
|
bool Insert(const std::string& fname) LOCKS_EXCLUDED(mu_) {
|
2018-09-25 01:50:40 +08:00
|
|
|
mu_.Lock();
|
|
|
|
bool succeeded = locked_files_.insert(fname).second;
|
|
|
|
mu_.Unlock();
|
|
|
|
return succeeded;
|
2012-10-13 02:53:12 +08:00
|
|
|
}
|
2018-03-24 03:50:14 +08:00
|
|
|
void Remove(const std::string& fname) LOCKS_EXCLUDED(mu_) {
|
2018-09-25 01:50:40 +08:00
|
|
|
mu_.Lock();
|
2012-10-13 02:53:12 +08:00
|
|
|
locked_files_.erase(fname);
|
2018-09-25 01:50:40 +08:00
|
|
|
mu_.Unlock();
|
2012-10-13 02:53:12 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
port::Mutex mu_;
|
|
|
|
std::set<std::string> locked_files_ GUARDED_BY(mu_);
|
2011-03-19 06:37:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class PosixEnv : public Env {
|
|
|
|
public:
|
|
|
|
PosixEnv();
|
2018-10-30 07:17:46 +08:00
|
|
|
~PosixEnv() override {
|
2019-06-13 05:05:14 +08:00
|
|
|
static const char msg[] =
|
|
|
|
"PosixEnv singleton destroyed. Unsupported behavior!\n";
|
2018-10-30 07:17:46 +08:00
|
|
|
std::fwrite(msg, 1, sizeof(msg), stderr);
|
|
|
|
std::abort();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status NewSequentialFile(const std::string& filename,
|
|
|
|
SequentialFile** result) override {
|
2019-05-07 06:20:42 +08:00
|
|
|
int fd = ::open(filename.c_str(), O_RDONLY | kOpenBaseFlags);
|
2017-10-03 03:37:45 +08:00
|
|
|
if (fd < 0) {
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2018-10-30 07:17:46 +08:00
|
|
|
return PosixError(filename, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
|
|
|
|
*result = new PosixSequentialFile(filename, fd);
|
|
|
|
return Status::OK();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status NewRandomAccessFile(const std::string& filename,
|
|
|
|
RandomAccessFile** result) override {
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2019-05-07 06:20:42 +08:00
|
|
|
int fd = ::open(filename.c_str(), O_RDONLY | kOpenBaseFlags);
|
2011-03-19 06:37:00 +08:00
|
|
|
if (fd < 0) {
|
2018-10-30 07:17:46 +08:00
|
|
|
return PosixError(filename, errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mmap_limiter_.Acquire()) {
|
|
|
|
*result = new PosixRandomAccessFile(filename, fd, &fd_limiter_);
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t file_size;
|
|
|
|
Status status = GetFileSize(filename, &file_size);
|
|
|
|
if (status.ok()) {
|
2019-05-03 02:01:00 +08:00
|
|
|
void* mmap_base =
|
|
|
|
::mmap(/*addr=*/nullptr, file_size, PROT_READ, MAP_SHARED, fd, 0);
|
2018-10-30 07:17:46 +08:00
|
|
|
if (mmap_base != MAP_FAILED) {
|
2019-05-03 02:01:00 +08:00
|
|
|
*result = new PosixMmapReadableFile(filename,
|
|
|
|
reinterpret_cast<char*>(mmap_base),
|
|
|
|
file_size, &mmap_limiter_);
|
2018-10-30 07:17:46 +08:00
|
|
|
} else {
|
|
|
|
status = PosixError(filename, errno);
|
2012-10-13 02:53:12 +08:00
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
::close(fd);
|
|
|
|
if (!status.ok()) {
|
|
|
|
mmap_limiter_.Release();
|
|
|
|
}
|
|
|
|
return status;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status NewWritableFile(const std::string& filename,
|
|
|
|
WritableFile** result) override {
|
2019-05-07 06:20:42 +08:00
|
|
|
int fd = ::open(filename.c_str(),
|
|
|
|
O_TRUNC | O_WRONLY | O_CREAT | kOpenBaseFlags, 0644);
|
2017-10-03 03:37:45 +08:00
|
|
|
if (fd < 0) {
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2018-10-30 07:17:46 +08:00
|
|
|
return PosixError(filename, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
|
|
|
|
*result = new PosixWritableFile(filename, fd);
|
|
|
|
return Status::OK();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status NewAppendableFile(const std::string& filename,
|
|
|
|
WritableFile** result) override {
|
2019-05-07 06:20:42 +08:00
|
|
|
int fd = ::open(filename.c_str(),
|
|
|
|
O_APPEND | O_WRONLY | O_CREAT | kOpenBaseFlags, 0644);
|
2017-10-03 03:37:45 +08:00
|
|
|
if (fd < 0) {
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2018-10-30 07:17:46 +08:00
|
|
|
return PosixError(filename, errno);
|
2014-12-12 00:13:18 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
|
|
|
|
*result = new PosixWritableFile(filename, fd);
|
|
|
|
return Status::OK();
|
2014-12-12 00:13:18 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
bool FileExists(const std::string& filename) override {
|
|
|
|
return ::access(filename.c_str(), F_OK) == 0;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status GetChildren(const std::string& directory_path,
|
|
|
|
std::vector<std::string>* result) override {
|
2011-03-19 06:37:00 +08:00
|
|
|
result->clear();
|
2018-10-30 07:17:46 +08:00
|
|
|
::DIR* dir = ::opendir(directory_path.c_str());
|
|
|
|
if (dir == nullptr) {
|
|
|
|
return PosixError(directory_path, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
struct ::dirent* entry;
|
|
|
|
while ((entry = ::readdir(dir)) != nullptr) {
|
|
|
|
result->emplace_back(entry->d_name);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
::closedir(dir);
|
2011-03-19 06:37:00 +08:00
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}.
The "DeleteFile" method name causes pain for Windows developers, because
<windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA.
Current code uses workarounds, like #undefining DeleteFile everywhere an
Env is declared, implemented, or used.
This CL removes the need for workarounds by renaming Env::DeleteFile to
Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to
Env::RemoveDir. A few internal methods are also renamed for consistency.
Software that supports Windows is expected to migrate any Env
implementations and usage to Remove{File,Dir}, and never use the name
Env::Delete{File,Dir} in its code.
The renaming is done in a backwards-compatible way, at the risk of
making it slightly more difficult to build a new correct Env
implementation. The backwards compatibility is achieved using the
following hacks:
1) Env::Remove{File,Dir} methods are added, with a default
implementation that calls into Env::Delete{File,Dir}. This makes old
Env implementations compatible with code that calls into the updated
API.
2) The Env::Delete{File,Dir} methods are no longer pure virtuals.
Instead, they gain a default implementation that calls into
Env::Remove{File,Dir}. This makes updated Env implementations
compatible with code that calls into the old API.
The cost of this approach is that it's possible to write an Env without
overriding either Rename{File,Dir} or Delete{File,Dir}, without getting
a compiler warning. However, attempting to run the test suite will
immediately fail with an infinite call stack ending in
{Remove,Delete}{File,Dir}, making developers aware of the problem.
PiperOrigin-RevId: 288710907
2020-01-09 01:14:53 +08:00
|
|
|
Status RemoveFile(const std::string& filename) override {
|
2018-10-30 07:17:46 +08:00
|
|
|
if (::unlink(filename.c_str()) != 0) {
|
|
|
|
return PosixError(filename, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
return Status::OK();
|
2013-06-14 07:14:06 +08:00
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status CreateDir(const std::string& dirname) override {
|
|
|
|
if (::mkdir(dirname.c_str(), 0755) != 0) {
|
|
|
|
return PosixError(dirname, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
return Status::OK();
|
2013-06-14 07:14:06 +08:00
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}.
The "DeleteFile" method name causes pain for Windows developers, because
<windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA.
Current code uses workarounds, like #undefining DeleteFile everywhere an
Env is declared, implemented, or used.
This CL removes the need for workarounds by renaming Env::DeleteFile to
Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to
Env::RemoveDir. A few internal methods are also renamed for consistency.
Software that supports Windows is expected to migrate any Env
implementations and usage to Remove{File,Dir}, and never use the name
Env::Delete{File,Dir} in its code.
The renaming is done in a backwards-compatible way, at the risk of
making it slightly more difficult to build a new correct Env
implementation. The backwards compatibility is achieved using the
following hacks:
1) Env::Remove{File,Dir} methods are added, with a default
implementation that calls into Env::Delete{File,Dir}. This makes old
Env implementations compatible with code that calls into the updated
API.
2) The Env::Delete{File,Dir} methods are no longer pure virtuals.
Instead, they gain a default implementation that calls into
Env::Remove{File,Dir}. This makes updated Env implementations
compatible with code that calls into the old API.
The cost of this approach is that it's possible to write an Env without
overriding either Rename{File,Dir} or Delete{File,Dir}, without getting
a compiler warning. However, attempting to run the test suite will
immediately fail with an infinite call stack ending in
{Remove,Delete}{File,Dir}, making developers aware of the problem.
PiperOrigin-RevId: 288710907
2020-01-09 01:14:53 +08:00
|
|
|
Status RemoveDir(const std::string& dirname) override {
|
2018-10-30 07:17:46 +08:00
|
|
|
if (::rmdir(dirname.c_str()) != 0) {
|
|
|
|
return PosixError(dirname, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
return Status::OK();
|
2013-06-14 07:14:06 +08:00
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status GetFileSize(const std::string& filename, uint64_t* size) override {
|
|
|
|
struct ::stat file_stat;
|
|
|
|
if (::stat(filename.c_str(), &file_stat) != 0) {
|
2011-03-19 06:37:00 +08:00
|
|
|
*size = 0;
|
2018-10-30 07:17:46 +08:00
|
|
|
return PosixError(filename, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
*size = file_stat.st_size;
|
|
|
|
return Status::OK();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status RenameFile(const std::string& from, const std::string& to) override {
|
|
|
|
if (std::rename(from.c_str(), to.c_str()) != 0) {
|
|
|
|
return PosixError(from, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
return Status::OK();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status LockFile(const std::string& filename, FileLock** lock) override {
|
2018-04-11 07:18:06 +08:00
|
|
|
*lock = nullptr;
|
2018-10-30 07:17:46 +08:00
|
|
|
|
2019-05-07 06:20:42 +08:00
|
|
|
int fd = ::open(filename.c_str(), O_RDWR | O_CREAT | kOpenBaseFlags, 0644);
|
2011-03-19 06:37:00 +08:00
|
|
|
if (fd < 0) {
|
2018-10-30 07:17:46 +08:00
|
|
|
return PosixError(filename, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
|
|
|
|
if (!locks_.Insert(filename)) {
|
|
|
|
::close(fd);
|
|
|
|
return Status::IOError("lock " + filename, "already held by process");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LockOrUnlock(fd, true) == -1) {
|
|
|
|
int lock_errno = errno;
|
|
|
|
::close(fd);
|
|
|
|
locks_.Remove(filename);
|
|
|
|
return PosixError("lock " + filename, lock_errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
|
|
|
|
*lock = new PosixFileLock(fd, filename);
|
|
|
|
return Status::OK();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status UnlockFile(FileLock* lock) override {
|
|
|
|
PosixFileLock* posix_file_lock = static_cast<PosixFileLock*>(lock);
|
|
|
|
if (LockOrUnlock(posix_file_lock->fd(), false) == -1) {
|
|
|
|
return PosixError("unlock " + posix_file_lock->filename(), errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
locks_.Remove(posix_file_lock->filename());
|
|
|
|
::close(posix_file_lock->fd());
|
|
|
|
delete posix_file_lock;
|
|
|
|
return Status::OK();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
void Schedule(void (*background_work_function)(void* background_work_arg),
|
|
|
|
void* background_work_arg) override;
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
void StartThread(void (*thread_main)(void* thread_main_arg),
|
2019-06-13 05:05:14 +08:00
|
|
|
void* thread_main_arg) override {
|
|
|
|
std::thread new_thread(thread_main, thread_main_arg);
|
|
|
|
new_thread.detach();
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status GetTestDirectory(std::string* result) override {
|
|
|
|
const char* env = std::getenv("TEST_TMPDIR");
|
2011-03-19 06:37:00 +08:00
|
|
|
if (env && env[0] != '\0') {
|
|
|
|
*result = env;
|
|
|
|
} else {
|
|
|
|
char buf[100];
|
2018-10-30 07:17:46 +08:00
|
|
|
std::snprintf(buf, sizeof(buf), "/tmp/leveldbtest-%d",
|
|
|
|
static_cast<int>(::geteuid()));
|
2011-03-19 06:37:00 +08:00
|
|
|
*result = buf;
|
|
|
|
}
|
2018-10-30 07:17:46 +08:00
|
|
|
|
|
|
|
// The CreateDir status is ignored because the directory may already exist.
|
2011-03-19 06:37:00 +08:00
|
|
|
CreateDir(*result);
|
2018-10-30 07:17:46 +08:00
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
Status NewLogger(const std::string& filename, Logger** result) override {
|
2019-05-08 05:19:08 +08:00
|
|
|
int fd = ::open(filename.c_str(),
|
|
|
|
O_APPEND | O_WRONLY | O_CREAT | kOpenBaseFlags, 0644);
|
|
|
|
if (fd < 0) {
|
|
|
|
*result = nullptr;
|
|
|
|
return PosixError(filename, errno);
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2019-05-08 05:19:08 +08:00
|
|
|
std::FILE* fp = ::fdopen(fd, "w");
|
2018-10-30 07:17:46 +08:00
|
|
|
if (fp == nullptr) {
|
2019-05-08 05:19:08 +08:00
|
|
|
::close(fd);
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2018-10-30 07:17:46 +08:00
|
|
|
return PosixError(filename, errno);
|
2011-07-21 10:40:18 +08:00
|
|
|
} else {
|
2018-10-30 07:17:46 +08:00
|
|
|
*result = new PosixLogger(fp);
|
2011-07-21 10:40:18 +08:00
|
|
|
return Status::OK();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
uint64_t NowMicros() override {
|
|
|
|
static constexpr uint64_t kUsecondsPerSecond = 1000000;
|
|
|
|
struct ::timeval tv;
|
|
|
|
::gettimeofday(&tv, nullptr);
|
|
|
|
return static_cast<uint64_t>(tv.tv_sec) * kUsecondsPerSecond + tv.tv_usec;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2019-06-13 05:05:14 +08:00
|
|
|
void SleepForMicroseconds(int micros) override {
|
|
|
|
std::this_thread::sleep_for(std::chrono::microseconds(micros));
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
private:
|
2018-09-12 01:39:08 +08:00
|
|
|
void BackgroundThreadMain();
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
static void BackgroundThreadEntryPoint(PosixEnv* env) {
|
|
|
|
env->BackgroundThreadMain();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
// Stores the work item data in a Schedule() call.
|
|
|
|
//
|
|
|
|
// Instances are constructed on the thread calling Schedule() and used on the
|
|
|
|
// background thread.
|
|
|
|
//
|
2022-01-05 17:04:16 +08:00
|
|
|
// This structure is thread-safe because it is immutable.
|
2018-09-12 01:39:08 +08:00
|
|
|
struct BackgroundWorkItem {
|
|
|
|
explicit BackgroundWorkItem(void (*function)(void* arg), void* arg)
|
|
|
|
: function(function), arg(arg) {}
|
|
|
|
|
2019-05-03 02:01:00 +08:00
|
|
|
void (*const function)(void*);
|
2018-09-12 01:39:08 +08:00
|
|
|
void* const arg;
|
|
|
|
};
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
port::Mutex background_work_mutex_;
|
|
|
|
port::CondVar background_work_cv_ GUARDED_BY(background_work_mutex_);
|
|
|
|
bool started_background_thread_ GUARDED_BY(background_work_mutex_);
|
2012-10-13 02:53:12 +08:00
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
std::queue<BackgroundWorkItem> background_work_queue_
|
|
|
|
GUARDED_BY(background_work_mutex_);
|
2012-10-13 02:53:12 +08:00
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
PosixLockTable locks_; // Thread-safe.
|
|
|
|
Limiter mmap_limiter_; // Thread-safe.
|
2019-05-03 02:01:00 +08:00
|
|
|
Limiter fd_limiter_; // Thread-safe.
|
2011-03-19 06:37:00 +08:00
|
|
|
};
|
|
|
|
|
2017-01-04 09:39:49 +08:00
|
|
|
// Return the maximum number of concurrent mmaps.
|
2019-05-03 02:01:00 +08:00
|
|
|
int MaxMmaps() { return g_mmap_limit; }
|
2017-01-04 09:39:49 +08:00
|
|
|
|
|
|
|
// Return the maximum number of read-only files to keep open.
|
2018-10-30 07:17:46 +08:00
|
|
|
int MaxOpenFiles() {
|
|
|
|
if (g_open_read_only_file_limit >= 0) {
|
|
|
|
return g_open_read_only_file_limit;
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
2021-09-10 08:45:26 +08:00
|
|
|
#ifdef __Fuchsia__
|
|
|
|
// Fuchsia doesn't implement getrlimit.
|
|
|
|
g_open_read_only_file_limit = 50;
|
|
|
|
#else
|
2018-10-30 07:17:46 +08:00
|
|
|
struct ::rlimit rlim;
|
|
|
|
if (::getrlimit(RLIMIT_NOFILE, &rlim)) {
|
2017-01-04 09:39:49 +08:00
|
|
|
// getrlimit failed, fallback to hard-coded default.
|
2018-10-30 07:17:46 +08:00
|
|
|
g_open_read_only_file_limit = 50;
|
2017-01-04 09:39:49 +08:00
|
|
|
} else if (rlim.rlim_cur == RLIM_INFINITY) {
|
2018-10-30 07:17:46 +08:00
|
|
|
g_open_read_only_file_limit = std::numeric_limits<int>::max();
|
2017-01-04 09:39:49 +08:00
|
|
|
} else {
|
|
|
|
// Allow use of 20% of available file descriptors for read-only files.
|
2018-10-30 07:17:46 +08:00
|
|
|
g_open_read_only_file_limit = rlim.rlim_cur / 5;
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
2021-09-10 08:45:26 +08:00
|
|
|
#endif
|
2018-10-30 07:17:46 +08:00
|
|
|
return g_open_read_only_file_limit;
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 07:17:46 +08:00
|
|
|
} // namespace
|
|
|
|
|
2017-01-04 09:39:49 +08:00
|
|
|
PosixEnv::PosixEnv()
|
2018-09-12 01:39:08 +08:00
|
|
|
: background_work_cv_(&background_work_mutex_),
|
|
|
|
started_background_thread_(false),
|
2018-10-30 07:17:46 +08:00
|
|
|
mmap_limiter_(MaxMmaps()),
|
2019-05-03 02:01:00 +08:00
|
|
|
fd_limiter_(MaxOpenFiles()) {}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
void PosixEnv::Schedule(
|
|
|
|
void (*background_work_function)(void* background_work_arg),
|
|
|
|
void* background_work_arg) {
|
2018-09-25 01:50:40 +08:00
|
|
|
background_work_mutex_.Lock();
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
// Start the background thread, if we haven't done so already.
|
|
|
|
if (!started_background_thread_) {
|
|
|
|
started_background_thread_ = true;
|
|
|
|
std::thread background_thread(PosixEnv::BackgroundThreadEntryPoint, this);
|
|
|
|
background_thread.detach();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
// If the queue is empty, the background thread may be waiting for work.
|
|
|
|
if (background_work_queue_.empty()) {
|
|
|
|
background_work_cv_.Signal();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
background_work_queue_.emplace(background_work_function, background_work_arg);
|
2018-09-25 01:50:40 +08:00
|
|
|
background_work_mutex_.Unlock();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
void PosixEnv::BackgroundThreadMain() {
|
2011-03-19 06:37:00 +08:00
|
|
|
while (true) {
|
2018-09-12 01:39:08 +08:00
|
|
|
background_work_mutex_.Lock();
|
|
|
|
|
|
|
|
// Wait until there is work to be done.
|
|
|
|
while (background_work_queue_.empty()) {
|
|
|
|
background_work_cv_.Wait();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
assert(!background_work_queue_.empty());
|
2019-05-03 02:01:00 +08:00
|
|
|
auto background_work_function = background_work_queue_.front().function;
|
2018-09-12 01:39:08 +08:00
|
|
|
void* background_work_arg = background_work_queue_.front().arg;
|
|
|
|
background_work_queue_.pop();
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-09-12 01:39:08 +08:00
|
|
|
background_work_mutex_.Unlock();
|
|
|
|
background_work_function(background_work_arg);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2018-10-30 07:17:46 +08:00
|
|
|
|
2018-09-25 01:50:40 +08:00
|
|
|
// Wraps an Env instance whose destructor is never created.
|
|
|
|
//
|
|
|
|
// Intended usage:
|
|
|
|
// using PlatformSingletonEnv = SingletonEnv<PlatformEnv>;
|
|
|
|
// void ConfigurePosixEnv(int param) {
|
|
|
|
// PlatformSingletonEnv::AssertEnvNotInitialized();
|
|
|
|
// // set global configuration flags.
|
|
|
|
// }
|
|
|
|
// Env* Env::Default() {
|
|
|
|
// static PlatformSingletonEnv default_env;
|
|
|
|
// return default_env.env();
|
|
|
|
// }
|
2019-05-03 02:01:00 +08:00
|
|
|
template <typename EnvType>
|
2018-09-25 01:50:40 +08:00
|
|
|
class SingletonEnv {
|
|
|
|
public:
|
|
|
|
SingletonEnv() {
|
|
|
|
#if !defined(NDEBUG)
|
2021-12-31 08:33:55 +08:00
|
|
|
env_initialized_.store(true, std::memory_order_relaxed);
|
2018-09-25 01:50:40 +08:00
|
|
|
#endif // !defined(NDEBUG)
|
|
|
|
static_assert(sizeof(env_storage_) >= sizeof(EnvType),
|
|
|
|
"env_storage_ will not fit the Env");
|
|
|
|
static_assert(alignof(decltype(env_storage_)) >= alignof(EnvType),
|
|
|
|
"env_storage_ does not meet the Env's alignment needs");
|
|
|
|
new (&env_storage_) EnvType();
|
|
|
|
}
|
|
|
|
~SingletonEnv() = default;
|
|
|
|
|
|
|
|
SingletonEnv(const SingletonEnv&) = delete;
|
|
|
|
SingletonEnv& operator=(const SingletonEnv&) = delete;
|
|
|
|
|
|
|
|
Env* env() { return reinterpret_cast<Env*>(&env_storage_); }
|
|
|
|
|
|
|
|
static void AssertEnvNotInitialized() {
|
|
|
|
#if !defined(NDEBUG)
|
2021-12-31 08:33:55 +08:00
|
|
|
assert(!env_initialized_.load(std::memory_order_relaxed));
|
2018-09-25 01:50:40 +08:00
|
|
|
#endif // !defined(NDEBUG)
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typename std::aligned_storage<sizeof(EnvType), alignof(EnvType)>::type
|
|
|
|
env_storage_;
|
|
|
|
#if !defined(NDEBUG)
|
|
|
|
static std::atomic<bool> env_initialized_;
|
|
|
|
#endif // !defined(NDEBUG)
|
2011-03-19 06:37:00 +08:00
|
|
|
};
|
|
|
|
|
2018-09-25 01:50:40 +08:00
|
|
|
#if !defined(NDEBUG)
|
2019-05-03 02:01:00 +08:00
|
|
|
template <typename EnvType>
|
2018-09-25 01:50:40 +08:00
|
|
|
std::atomic<bool> SingletonEnv<EnvType>::env_initialized_;
|
|
|
|
#endif // !defined(NDEBUG)
|
|
|
|
|
|
|
|
using PosixDefaultEnv = SingletonEnv<PosixEnv>;
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2011-11-01 01:22:06 +08:00
|
|
|
} // namespace
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2017-01-04 09:39:49 +08:00
|
|
|
void EnvPosixTestHelper::SetReadOnlyFDLimit(int limit) {
|
2018-09-25 01:50:40 +08:00
|
|
|
PosixDefaultEnv::AssertEnvNotInitialized();
|
2018-10-30 07:17:46 +08:00
|
|
|
g_open_read_only_file_limit = limit;
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void EnvPosixTestHelper::SetReadOnlyMMapLimit(int limit) {
|
2018-09-25 01:50:40 +08:00
|
|
|
PosixDefaultEnv::AssertEnvNotInitialized();
|
2018-10-30 07:17:46 +08:00
|
|
|
g_mmap_limit = limit;
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
Env* Env::Default() {
|
2018-09-25 01:50:40 +08:00
|
|
|
static PosixDefaultEnv env_container;
|
|
|
|
return env_container.env();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2011-11-01 01:22:06 +08:00
|
|
|
} // namespace leveldb
|