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 <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/mman.h>
|
2017-01-04 09:39:49 +08:00
|
|
|
#include <sys/resource.h>
|
2011-03-19 06:37:00 +08:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
2018-09-05 00:31:27 +08:00
|
|
|
|
|
|
|
#include <atomic>
|
2014-09-17 05:19:52 +08:00
|
|
|
#include <deque>
|
2017-02-08 07:17:04 +08:00
|
|
|
#include <limits>
|
2014-09-17 05:19:52 +08:00
|
|
|
#include <set>
|
2018-09-05 00:31:27 +08:00
|
|
|
|
2011-03-31 02:35:40 +08:00
|
|
|
#include "leveldb/env.h"
|
|
|
|
#include "leveldb/slice.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"
|
2011-03-19 06:37:00 +08:00
|
|
|
#include "util/logging.h"
|
2012-10-13 02:53:12 +08:00
|
|
|
#include "util/mutexlock.h"
|
2011-07-21 10:40:18 +08:00
|
|
|
#include "util/posix_logger.h"
|
2017-01-04 09:39:49 +08:00
|
|
|
#include "util/env_posix_test_helper.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2018-04-18 04:23:10 +08:00
|
|
|
// HAVE_FDATASYNC is defined in the auto-generated port_config.h, which is
|
|
|
|
// included by port_stdcxx.h.
|
|
|
|
#if !HAVE_FDATASYNC
|
|
|
|
#define fdatasync fsync
|
|
|
|
#endif // !HAVE_FDATASYNC
|
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2017-01-04 09:39:49 +08:00
|
|
|
static int open_read_only_file_limit = -1;
|
|
|
|
static int mmap_limit = -1;
|
|
|
|
|
2017-10-03 03:37:45 +08:00
|
|
|
static const size_t kBufSize = 65536;
|
|
|
|
|
2017-07-11 04:32:58 +08:00
|
|
|
static Status PosixError(const std::string& context, int err_number) {
|
|
|
|
if (err_number == ENOENT) {
|
|
|
|
return Status::NotFound(context, strerror(err_number));
|
|
|
|
} else {
|
|
|
|
return Status::IOError(context, strerror(err_number));
|
|
|
|
}
|
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|.
|
|
|
|
Limiter(int max_acquires) : acquires_allowed_(max_acquires) {}
|
|
|
|
|
|
|
|
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.
|
2018-09-05 00:31:27 +08:00
|
|
|
bool Acquire() {
|
|
|
|
int old_acquires_allowed =
|
|
|
|
acquires_allowed_.fetch_sub(1, std::memory_order_relaxed);
|
|
|
|
|
|
|
|
if (old_acquires_allowed > 0)
|
2017-01-04 09:39:49 +08:00
|
|
|
return true;
|
2018-09-05 00:31:27 +08:00
|
|
|
|
|
|
|
acquires_allowed_.fetch_add(1, std::memory_order_relaxed);
|
|
|
|
return false;
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Release a resource acquired by a previous call to Acquire() that returned
|
|
|
|
// true.
|
2018-09-05 00:31:27 +08:00
|
|
|
void Release() {
|
|
|
|
acquires_allowed_.fetch_add(1, std::memory_order_relaxed);
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
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
|
|
|
};
|
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
class PosixSequentialFile: public SequentialFile {
|
|
|
|
private:
|
|
|
|
std::string filename_;
|
2017-10-03 03:37:45 +08:00
|
|
|
int fd_;
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
public:
|
2017-10-03 03:37:45 +08:00
|
|
|
PosixSequentialFile(const std::string& fname, int fd)
|
|
|
|
: filename_(fname), fd_(fd) {}
|
|
|
|
virtual ~PosixSequentialFile() { close(fd_); }
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
virtual Status Read(size_t n, Slice* result, char* scratch) {
|
|
|
|
Status s;
|
2017-10-03 03:37:45 +08:00
|
|
|
while (true) {
|
|
|
|
ssize_t r = read(fd_, scratch, n);
|
|
|
|
if (r < 0) {
|
|
|
|
if (errno == EINTR) {
|
|
|
|
continue; // Retry
|
|
|
|
}
|
2017-07-11 04:32:58 +08:00
|
|
|
s = PosixError(filename_, errno);
|
2017-10-03 03:37:45 +08:00
|
|
|
break;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2017-10-03 03:37:45 +08:00
|
|
|
*result = Slice(scratch, r);
|
|
|
|
break;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
2011-05-21 10:17:43 +08:00
|
|
|
|
|
|
|
virtual Status Skip(uint64_t n) {
|
2017-10-03 03:37:45 +08:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2012-03-16 00:14:00 +08:00
|
|
|
// pread() based random-access
|
2011-03-19 06:37:00 +08:00
|
|
|
class PosixRandomAccessFile: public RandomAccessFile {
|
|
|
|
private:
|
|
|
|
std::string filename_;
|
2017-01-04 09:39:49 +08:00
|
|
|
bool temporary_fd_; // If true, fd_ is -1 and we open on every read.
|
2011-03-19 06:37:00 +08:00
|
|
|
int fd_;
|
2017-01-04 09:39:49 +08:00
|
|
|
Limiter* limiter_;
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
public:
|
2017-01-04 09:39:49 +08:00
|
|
|
PosixRandomAccessFile(const std::string& fname, int fd, Limiter* limiter)
|
|
|
|
: filename_(fname), fd_(fd), limiter_(limiter) {
|
|
|
|
temporary_fd_ = !limiter->Acquire();
|
|
|
|
if (temporary_fd_) {
|
|
|
|
// Open file on every access.
|
|
|
|
close(fd_);
|
|
|
|
fd_ = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~PosixRandomAccessFile() {
|
|
|
|
if (!temporary_fd_) {
|
|
|
|
close(fd_);
|
|
|
|
limiter_->Release();
|
|
|
|
}
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
virtual Status Read(uint64_t offset, size_t n, Slice* result,
|
|
|
|
char* scratch) const {
|
2017-01-04 09:39:49 +08:00
|
|
|
int fd = fd_;
|
|
|
|
if (temporary_fd_) {
|
|
|
|
fd = open(filename_.c_str(), O_RDONLY);
|
|
|
|
if (fd < 0) {
|
2017-07-11 04:32:58 +08:00
|
|
|
return PosixError(filename_, errno);
|
2017-01-04 09:39:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
Status s;
|
2017-01-04 09:39:49 +08:00
|
|
|
ssize_t r = pread(fd, scratch, n, static_cast<off_t>(offset));
|
2011-03-19 06:37:00 +08:00
|
|
|
*result = Slice(scratch, (r < 0) ? 0 : r);
|
|
|
|
if (r < 0) {
|
|
|
|
// An error: return a non-ok status
|
2017-07-11 04:32:58 +08:00
|
|
|
s = PosixError(filename_, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2017-01-04 09:39:49 +08:00
|
|
|
if (temporary_fd_) {
|
|
|
|
// Close the temporary file descriptor opened earlier.
|
|
|
|
close(fd);
|
2012-10-13 02:53:12 +08:00
|
|
|
}
|
2017-01-04 09:39:49 +08:00
|
|
|
return s;
|
2012-10-13 02:53:12 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-03-16 00:14:00 +08:00
|
|
|
// mmap() based random-access
|
|
|
|
class PosixMmapReadableFile: public RandomAccessFile {
|
|
|
|
private:
|
|
|
|
std::string filename_;
|
|
|
|
void* mmapped_region_;
|
|
|
|
size_t length_;
|
2017-01-04 09:39:49 +08:00
|
|
|
Limiter* limiter_;
|
2012-03-16 00:14:00 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
// base[0,length-1] contains the mmapped contents of the file.
|
2012-10-13 02:53:12 +08:00
|
|
|
PosixMmapReadableFile(const std::string& fname, void* base, size_t length,
|
2017-01-04 09:39:49 +08:00
|
|
|
Limiter* limiter)
|
2012-10-13 02:53:12 +08:00
|
|
|
: filename_(fname), mmapped_region_(base), length_(length),
|
|
|
|
limiter_(limiter) {
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~PosixMmapReadableFile() {
|
|
|
|
munmap(mmapped_region_, length_);
|
|
|
|
limiter_->Release();
|
|
|
|
}
|
2012-03-16 00:14:00 +08:00
|
|
|
|
|
|
|
virtual Status Read(uint64_t offset, size_t n, Slice* result,
|
|
|
|
char* scratch) const {
|
|
|
|
Status s;
|
|
|
|
if (offset + n > length_) {
|
|
|
|
*result = Slice();
|
2017-07-11 04:32:58 +08:00
|
|
|
s = PosixError(filename_, EINVAL);
|
2012-03-16 00:14:00 +08:00
|
|
|
} else {
|
|
|
|
*result = Slice(reinterpret_cast<char*>(mmapped_region_) + offset, n);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-12-11 02:36:31 +08:00
|
|
|
class PosixWritableFile : public WritableFile {
|
2011-03-19 06:37:00 +08:00
|
|
|
private:
|
2017-10-03 03:37:45 +08:00
|
|
|
// buf_[0, pos_-1] contains data to be written to fd_.
|
2011-03-19 06:37:00 +08:00
|
|
|
std::string filename_;
|
2017-10-03 03:37:45 +08:00
|
|
|
int fd_;
|
|
|
|
char buf_[kBufSize];
|
|
|
|
size_t pos_;
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
public:
|
2017-10-03 03:37:45 +08:00
|
|
|
PosixWritableFile(const std::string& fname, int fd)
|
|
|
|
: filename_(fname), fd_(fd), pos_(0) { }
|
2013-12-11 02:36:31 +08:00
|
|
|
|
|
|
|
~PosixWritableFile() {
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status Append(const Slice& data) {
|
2017-10-03 03:37:45 +08:00
|
|
|
size_t n = data.size();
|
|
|
|
const char* p = data.data();
|
|
|
|
|
|
|
|
// Fit as much as possible into buffer.
|
|
|
|
size_t copy = std::min(n, kBufSize - pos_);
|
|
|
|
memcpy(buf_ + pos_, p, copy);
|
|
|
|
p += copy;
|
|
|
|
n -= copy;
|
|
|
|
pos_ += copy;
|
|
|
|
if (n == 0) {
|
|
|
|
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.
|
|
|
|
Status s = FlushBuffered();
|
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Small writes go to buffer, large writes are written directly.
|
|
|
|
if (n < kBufSize) {
|
|
|
|
memcpy(buf_, p, n);
|
|
|
|
pos_ = n;
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
return WriteRaw(p, n);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status Close() {
|
2017-10-03 03:37:45 +08:00
|
|
|
Status result = FlushBuffered();
|
|
|
|
const int r = close(fd_);
|
|
|
|
if (r < 0 && result.ok()) {
|
2017-07-11 04:32:58 +08:00
|
|
|
result = PosixError(filename_, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2017-10-03 03:37:45 +08:00
|
|
|
fd_ = -1;
|
2013-12-11 02:36:31 +08:00
|
|
|
return result;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status Flush() {
|
2017-10-03 03:37:45 +08:00
|
|
|
return FlushBuffered();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
2013-08-22 02:12:47 +08:00
|
|
|
Status SyncDirIfManifest() {
|
|
|
|
const char* f = filename_.c_str();
|
|
|
|
const char* sep = strrchr(f, '/');
|
|
|
|
Slice basename;
|
|
|
|
std::string dir;
|
2018-04-11 07:18:06 +08:00
|
|
|
if (sep == nullptr) {
|
2013-08-22 02:12:47 +08:00
|
|
|
dir = ".";
|
|
|
|
basename = f;
|
|
|
|
} else {
|
|
|
|
dir = std::string(f, sep - f);
|
|
|
|
basename = sep + 1;
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
Status s;
|
2013-08-22 02:12:47 +08:00
|
|
|
if (basename.starts_with("MANIFEST")) {
|
|
|
|
int fd = open(dir.c_str(), O_RDONLY);
|
|
|
|
if (fd < 0) {
|
2017-07-11 04:32:58 +08:00
|
|
|
s = PosixError(dir, errno);
|
2013-08-22 02:12:47 +08:00
|
|
|
} else {
|
|
|
|
if (fsync(fd) < 0) {
|
2017-07-11 04:32:58 +08:00
|
|
|
s = PosixError(dir, errno);
|
2013-08-22 02:12:47 +08:00
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status Sync() {
|
|
|
|
// Ensure new files referred to by the manifest are in the filesystem.
|
|
|
|
Status s = SyncDirIfManifest();
|
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
|
|
|
}
|
2017-10-03 03:37:45 +08:00
|
|
|
s = FlushBuffered();
|
|
|
|
if (s.ok()) {
|
|
|
|
if (fdatasync(fd_) != 0) {
|
|
|
|
s = PosixError(filename_, errno);
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
2017-10-03 03:37:45 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
Status FlushBuffered() {
|
|
|
|
Status s = WriteRaw(buf_, pos_);
|
|
|
|
pos_ = 0;
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status WriteRaw(const char* p, size_t n) {
|
|
|
|
while (n > 0) {
|
|
|
|
ssize_t r = write(fd_, p, n);
|
|
|
|
if (r < 0) {
|
|
|
|
if (errno == EINTR) {
|
|
|
|
continue; // Retry
|
|
|
|
}
|
|
|
|
return PosixError(filename_, errno);
|
|
|
|
}
|
|
|
|
p += r;
|
|
|
|
n -= r;
|
|
|
|
}
|
|
|
|
return Status::OK();
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int LockOrUnlock(int fd, bool lock) {
|
|
|
|
errno = 0;
|
|
|
|
struct flock f;
|
|
|
|
memset(&f, 0, sizeof(f));
|
|
|
|
f.l_type = (lock ? F_WRLCK : F_UNLCK);
|
|
|
|
f.l_whence = SEEK_SET;
|
|
|
|
f.l_start = 0;
|
|
|
|
f.l_len = 0; // Lock/unlock entire file
|
|
|
|
return fcntl(fd, F_SETLK, &f);
|
|
|
|
}
|
|
|
|
|
|
|
|
class PosixFileLock : public FileLock {
|
|
|
|
public:
|
|
|
|
int fd_;
|
2012-10-13 02:53:12 +08:00
|
|
|
std::string name_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Set of locked files. We keep a separate set instead of just
|
|
|
|
// relying on fcntrl(F_SETLK) since fcntl(F_SETLK) does not provide
|
|
|
|
// any protection against multiple uses from the same process.
|
|
|
|
class PosixLockTable {
|
|
|
|
private:
|
|
|
|
port::Mutex mu_;
|
2018-03-24 03:50:14 +08:00
|
|
|
std::set<std::string> locked_files_ GUARDED_BY(mu_);
|
2012-10-13 02:53:12 +08:00
|
|
|
public:
|
2018-03-24 03:50:14 +08:00
|
|
|
bool Insert(const std::string& fname) LOCKS_EXCLUDED(mu_) {
|
2012-10-13 02:53:12 +08:00
|
|
|
MutexLock l(&mu_);
|
|
|
|
return locked_files_.insert(fname).second;
|
|
|
|
}
|
2018-03-24 03:50:14 +08:00
|
|
|
void Remove(const std::string& fname) LOCKS_EXCLUDED(mu_) {
|
2012-10-13 02:53:12 +08:00
|
|
|
MutexLock l(&mu_);
|
|
|
|
locked_files_.erase(fname);
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class PosixEnv : public Env {
|
|
|
|
public:
|
|
|
|
PosixEnv();
|
|
|
|
virtual ~PosixEnv() {
|
2014-09-17 05:19:52 +08:00
|
|
|
char msg[] = "Destroying Env::Default()\n";
|
|
|
|
fwrite(msg, 1, sizeof(msg), stderr);
|
2013-05-15 07:52:56 +08:00
|
|
|
abort();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status NewSequentialFile(const std::string& fname,
|
|
|
|
SequentialFile** result) {
|
2017-10-03 03:37:45 +08:00
|
|
|
int fd = open(fname.c_str(), O_RDONLY);
|
|
|
|
if (fd < 0) {
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2017-07-11 04:32:58 +08:00
|
|
|
return PosixError(fname, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
} else {
|
2017-10-03 03:37:45 +08:00
|
|
|
*result = new PosixSequentialFile(fname, fd);
|
2011-03-19 06:37:00 +08:00
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status NewRandomAccessFile(const std::string& fname,
|
|
|
|
RandomAccessFile** result) {
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2012-03-16 00:14:00 +08:00
|
|
|
Status s;
|
2011-03-19 06:37:00 +08:00
|
|
|
int fd = open(fname.c_str(), O_RDONLY);
|
|
|
|
if (fd < 0) {
|
2017-07-11 04:32:58 +08:00
|
|
|
s = PosixError(fname, errno);
|
2012-10-13 02:53:12 +08:00
|
|
|
} else if (mmap_limit_.Acquire()) {
|
2012-03-16 00:14:00 +08:00
|
|
|
uint64_t size;
|
|
|
|
s = GetFileSize(fname, &size);
|
|
|
|
if (s.ok()) {
|
2018-04-11 07:18:06 +08:00
|
|
|
void* base = mmap(nullptr, size, PROT_READ, MAP_SHARED, fd, 0);
|
2012-03-16 00:14:00 +08:00
|
|
|
if (base != MAP_FAILED) {
|
2012-10-13 02:53:12 +08:00
|
|
|
*result = new PosixMmapReadableFile(fname, base, size, &mmap_limit_);
|
2012-03-16 00:14:00 +08:00
|
|
|
} else {
|
2017-07-11 04:32:58 +08:00
|
|
|
s = PosixError(fname, errno);
|
2012-03-16 00:14:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
close(fd);
|
2012-10-13 02:53:12 +08:00
|
|
|
if (!s.ok()) {
|
|
|
|
mmap_limit_.Release();
|
|
|
|
}
|
2012-03-16 00:14:00 +08:00
|
|
|
} else {
|
2017-01-04 09:39:49 +08:00
|
|
|
*result = new PosixRandomAccessFile(fname, fd, &fd_limit_);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2012-03-16 00:14:00 +08:00
|
|
|
return s;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status NewWritableFile(const std::string& fname,
|
|
|
|
WritableFile** result) {
|
|
|
|
Status s;
|
2017-10-03 07:04:02 +08:00
|
|
|
int fd = open(fname.c_str(), O_TRUNC | O_WRONLY | O_CREAT, 0644);
|
2017-10-03 03:37:45 +08:00
|
|
|
if (fd < 0) {
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2017-07-11 04:32:58 +08:00
|
|
|
s = PosixError(fname, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
} else {
|
2017-10-03 03:37:45 +08:00
|
|
|
*result = new PosixWritableFile(fname, fd);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2014-12-12 00:13:18 +08:00
|
|
|
virtual Status NewAppendableFile(const std::string& fname,
|
|
|
|
WritableFile** result) {
|
|
|
|
Status s;
|
2017-10-03 07:04:02 +08:00
|
|
|
int fd = open(fname.c_str(), O_APPEND | O_WRONLY | O_CREAT, 0644);
|
2017-10-03 03:37:45 +08:00
|
|
|
if (fd < 0) {
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2017-07-11 04:32:58 +08:00
|
|
|
s = PosixError(fname, errno);
|
2014-12-12 00:13:18 +08:00
|
|
|
} else {
|
2017-10-03 03:37:45 +08:00
|
|
|
*result = new PosixWritableFile(fname, fd);
|
2014-12-12 00:13:18 +08:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
virtual bool FileExists(const std::string& fname) {
|
|
|
|
return access(fname.c_str(), F_OK) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status GetChildren(const std::string& dir,
|
|
|
|
std::vector<std::string>* result) {
|
|
|
|
result->clear();
|
|
|
|
DIR* d = opendir(dir.c_str());
|
2018-04-11 07:18:06 +08:00
|
|
|
if (d == nullptr) {
|
2017-07-11 04:32:58 +08:00
|
|
|
return PosixError(dir, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
struct dirent* entry;
|
2018-04-11 07:18:06 +08:00
|
|
|
while ((entry = readdir(d)) != nullptr) {
|
2011-03-19 06:37:00 +08:00
|
|
|
result->push_back(entry->d_name);
|
|
|
|
}
|
|
|
|
closedir(d);
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status DeleteFile(const std::string& fname) {
|
|
|
|
Status result;
|
|
|
|
if (unlink(fname.c_str()) != 0) {
|
2017-07-11 04:32:58 +08:00
|
|
|
result = PosixError(fname, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
return result;
|
2013-06-14 07:14:06 +08:00
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
virtual Status CreateDir(const std::string& name) {
|
|
|
|
Status result;
|
|
|
|
if (mkdir(name.c_str(), 0755) != 0) {
|
2017-07-11 04:32:58 +08:00
|
|
|
result = PosixError(name, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
return result;
|
2013-06-14 07:14:06 +08:00
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
virtual Status DeleteDir(const std::string& name) {
|
|
|
|
Status result;
|
|
|
|
if (rmdir(name.c_str()) != 0) {
|
2017-07-11 04:32:58 +08:00
|
|
|
result = PosixError(name, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
return result;
|
2013-06-14 07:14:06 +08:00
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
virtual Status GetFileSize(const std::string& fname, uint64_t* size) {
|
|
|
|
Status s;
|
|
|
|
struct stat sbuf;
|
|
|
|
if (stat(fname.c_str(), &sbuf) != 0) {
|
|
|
|
*size = 0;
|
2017-07-11 04:32:58 +08:00
|
|
|
s = PosixError(fname, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
} else {
|
|
|
|
*size = sbuf.st_size;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status RenameFile(const std::string& src, const std::string& target) {
|
|
|
|
Status result;
|
|
|
|
if (rename(src.c_str(), target.c_str()) != 0) {
|
2017-07-11 04:32:58 +08:00
|
|
|
result = PosixError(src, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status LockFile(const std::string& fname, FileLock** lock) {
|
2018-04-11 07:18:06 +08:00
|
|
|
*lock = nullptr;
|
2011-03-19 06:37:00 +08:00
|
|
|
Status result;
|
|
|
|
int fd = open(fname.c_str(), O_RDWR | O_CREAT, 0644);
|
|
|
|
if (fd < 0) {
|
2017-07-11 04:32:58 +08:00
|
|
|
result = PosixError(fname, errno);
|
2012-10-13 02:53:12 +08:00
|
|
|
} else if (!locks_.Insert(fname)) {
|
|
|
|
close(fd);
|
|
|
|
result = Status::IOError("lock " + fname, "already held by process");
|
2011-03-19 06:37:00 +08:00
|
|
|
} else if (LockOrUnlock(fd, true) == -1) {
|
2017-07-11 04:32:58 +08:00
|
|
|
result = PosixError("lock " + fname, errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
close(fd);
|
2012-10-13 02:53:12 +08:00
|
|
|
locks_.Remove(fname);
|
2011-03-19 06:37:00 +08:00
|
|
|
} else {
|
|
|
|
PosixFileLock* my_lock = new PosixFileLock;
|
|
|
|
my_lock->fd_ = fd;
|
2012-10-13 02:53:12 +08:00
|
|
|
my_lock->name_ = fname;
|
2011-03-19 06:37:00 +08:00
|
|
|
*lock = my_lock;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Status UnlockFile(FileLock* lock) {
|
|
|
|
PosixFileLock* my_lock = reinterpret_cast<PosixFileLock*>(lock);
|
|
|
|
Status result;
|
|
|
|
if (LockOrUnlock(my_lock->fd_, false) == -1) {
|
2017-07-11 04:32:58 +08:00
|
|
|
result = PosixError("unlock", errno);
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
2012-10-13 02:53:12 +08:00
|
|
|
locks_.Remove(my_lock->name_);
|
2011-03-19 06:37:00 +08:00
|
|
|
close(my_lock->fd_);
|
|
|
|
delete my_lock;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Schedule(void (*function)(void*), void* arg);
|
|
|
|
|
|
|
|
virtual void StartThread(void (*function)(void* arg), void* arg);
|
|
|
|
|
|
|
|
virtual Status GetTestDirectory(std::string* result) {
|
|
|
|
const char* env = getenv("TEST_TMPDIR");
|
|
|
|
if (env && env[0] != '\0') {
|
|
|
|
*result = env;
|
|
|
|
} else {
|
|
|
|
char buf[100];
|
|
|
|
snprintf(buf, sizeof(buf), "/tmp/leveldbtest-%d", int(geteuid()));
|
|
|
|
*result = buf;
|
|
|
|
}
|
|
|
|
// Directory may already exist
|
|
|
|
CreateDir(*result);
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2011-07-21 10:40:18 +08:00
|
|
|
static uint64_t gettid() {
|
2011-03-19 06:37:00 +08:00
|
|
|
pthread_t tid = pthread_self();
|
|
|
|
uint64_t thread_id = 0;
|
2011-03-22 03:40:57 +08:00
|
|
|
memcpy(&thread_id, &tid, std::min(sizeof(thread_id), sizeof(tid)));
|
2011-07-21 10:40:18 +08:00
|
|
|
return thread_id;
|
|
|
|
}
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2011-07-21 10:40:18 +08:00
|
|
|
virtual Status NewLogger(const std::string& fname, Logger** result) {
|
|
|
|
FILE* f = fopen(fname.c_str(), "w");
|
2018-04-11 07:18:06 +08:00
|
|
|
if (f == nullptr) {
|
|
|
|
*result = nullptr;
|
2017-07-11 04:32:58 +08:00
|
|
|
return PosixError(fname, errno);
|
2011-07-21 10:40:18 +08:00
|
|
|
} else {
|
|
|
|
*result = new PosixLogger(f, &PosixEnv::gettid);
|
|
|
|
return Status::OK();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual uint64_t NowMicros() {
|
|
|
|
struct timeval tv;
|
2018-04-11 07:18:06 +08:00
|
|
|
gettimeofday(&tv, nullptr);
|
2011-03-19 06:37:00 +08:00
|
|
|
return static_cast<uint64_t>(tv.tv_sec) * 1000000 + tv.tv_usec;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SleepForMicroseconds(int micros) {
|
|
|
|
usleep(micros);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void PthreadCall(const char* label, int result) {
|
|
|
|
if (result != 0) {
|
|
|
|
fprintf(stderr, "pthread %s: %s\n", label, strerror(result));
|
2013-05-15 07:52:56 +08:00
|
|
|
abort();
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// BGThread() is the body of the background thread
|
|
|
|
void BGThread();
|
|
|
|
static void* BGThreadWrapper(void* arg) {
|
|
|
|
reinterpret_cast<PosixEnv*>(arg)->BGThread();
|
2018-04-11 07:18:06 +08:00
|
|
|
return nullptr;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_t mu_;
|
|
|
|
pthread_cond_t bgsignal_;
|
|
|
|
pthread_t bgthread_;
|
|
|
|
bool started_bgthread_;
|
|
|
|
|
|
|
|
// Entry per Schedule() call
|
|
|
|
struct BGItem { void* arg; void (*function)(void*); };
|
|
|
|
typedef std::deque<BGItem> BGQueue;
|
|
|
|
BGQueue queue_;
|
2012-10-13 02:53:12 +08:00
|
|
|
|
|
|
|
PosixLockTable locks_;
|
2017-01-04 09:39:49 +08:00
|
|
|
Limiter mmap_limit_;
|
|
|
|
Limiter fd_limit_;
|
2011-03-19 06:37:00 +08:00
|
|
|
};
|
|
|
|
|
2017-01-04 09:39:49 +08:00
|
|
|
// Return the maximum number of concurrent mmaps.
|
|
|
|
static int MaxMmaps() {
|
|
|
|
if (mmap_limit >= 0) {
|
|
|
|
return mmap_limit;
|
|
|
|
}
|
|
|
|
// Up to 1000 mmaps for 64-bit binaries; none for smaller pointer sizes.
|
|
|
|
mmap_limit = sizeof(void*) >= 8 ? 1000 : 0;
|
|
|
|
return mmap_limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the maximum number of read-only files to keep open.
|
|
|
|
static intptr_t MaxOpenFiles() {
|
|
|
|
if (open_read_only_file_limit >= 0) {
|
|
|
|
return open_read_only_file_limit;
|
|
|
|
}
|
|
|
|
struct rlimit rlim;
|
|
|
|
if (getrlimit(RLIMIT_NOFILE, &rlim)) {
|
|
|
|
// getrlimit failed, fallback to hard-coded default.
|
|
|
|
open_read_only_file_limit = 50;
|
|
|
|
} else if (rlim.rlim_cur == RLIM_INFINITY) {
|
|
|
|
open_read_only_file_limit = std::numeric_limits<int>::max();
|
|
|
|
} else {
|
|
|
|
// Allow use of 20% of available file descriptors for read-only files.
|
|
|
|
open_read_only_file_limit = rlim.rlim_cur / 5;
|
|
|
|
}
|
|
|
|
return open_read_only_file_limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
PosixEnv::PosixEnv()
|
|
|
|
: started_bgthread_(false),
|
|
|
|
mmap_limit_(MaxMmaps()),
|
|
|
|
fd_limit_(MaxOpenFiles()) {
|
2018-04-11 07:18:06 +08:00
|
|
|
PthreadCall("mutex_init", pthread_mutex_init(&mu_, nullptr));
|
|
|
|
PthreadCall("cvar_init", pthread_cond_init(&bgsignal_, nullptr));
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void PosixEnv::Schedule(void (*function)(void*), void* arg) {
|
|
|
|
PthreadCall("lock", pthread_mutex_lock(&mu_));
|
|
|
|
|
|
|
|
// Start background thread if necessary
|
|
|
|
if (!started_bgthread_) {
|
|
|
|
started_bgthread_ = true;
|
|
|
|
PthreadCall(
|
|
|
|
"create thread",
|
2018-04-11 07:18:06 +08:00
|
|
|
pthread_create(&bgthread_, nullptr, &PosixEnv::BGThreadWrapper, this));
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the queue is currently empty, the background thread may currently be
|
|
|
|
// waiting.
|
|
|
|
if (queue_.empty()) {
|
|
|
|
PthreadCall("signal", pthread_cond_signal(&bgsignal_));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add to priority queue
|
|
|
|
queue_.push_back(BGItem());
|
|
|
|
queue_.back().function = function;
|
|
|
|
queue_.back().arg = arg;
|
|
|
|
|
|
|
|
PthreadCall("unlock", pthread_mutex_unlock(&mu_));
|
|
|
|
}
|
|
|
|
|
|
|
|
void PosixEnv::BGThread() {
|
|
|
|
while (true) {
|
|
|
|
// Wait until there is an item that is ready to run
|
|
|
|
PthreadCall("lock", pthread_mutex_lock(&mu_));
|
|
|
|
while (queue_.empty()) {
|
|
|
|
PthreadCall("wait", pthread_cond_wait(&bgsignal_, &mu_));
|
|
|
|
}
|
|
|
|
|
|
|
|
void (*function)(void*) = queue_.front().function;
|
|
|
|
void* arg = queue_.front().arg;
|
|
|
|
queue_.pop_front();
|
|
|
|
|
|
|
|
PthreadCall("unlock", pthread_mutex_unlock(&mu_));
|
|
|
|
(*function)(arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct StartThreadState {
|
|
|
|
void (*user_function)(void*);
|
|
|
|
void* arg;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
static void* StartThreadWrapper(void* arg) {
|
|
|
|
StartThreadState* state = reinterpret_cast<StartThreadState*>(arg);
|
|
|
|
state->user_function(state->arg);
|
|
|
|
delete state;
|
2018-04-11 07:18:06 +08:00
|
|
|
return nullptr;
|
2011-03-19 06:37:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void PosixEnv::StartThread(void (*function)(void* arg), void* arg) {
|
|
|
|
pthread_t t;
|
|
|
|
StartThreadState* state = new StartThreadState;
|
|
|
|
state->user_function = function;
|
|
|
|
state->arg = arg;
|
|
|
|
PthreadCall("start thread",
|
2018-04-11 07:18:06 +08:00
|
|
|
pthread_create(&t, nullptr, &StartThreadWrapper, state));
|
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
|
|
|
|
|
|
|
static pthread_once_t once = PTHREAD_ONCE_INIT;
|
|
|
|
static Env* default_env;
|
|
|
|
static void InitDefaultEnv() { default_env = new PosixEnv; }
|
|
|
|
|
2017-01-04 09:39:49 +08:00
|
|
|
void EnvPosixTestHelper::SetReadOnlyFDLimit(int limit) {
|
2018-04-11 07:18:06 +08:00
|
|
|
assert(default_env == nullptr);
|
2017-01-04 09:39:49 +08:00
|
|
|
open_read_only_file_limit = limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnvPosixTestHelper::SetReadOnlyMMapLimit(int limit) {
|
2018-04-11 07:18:06 +08:00
|
|
|
assert(default_env == nullptr);
|
2017-01-04 09:39:49 +08:00
|
|
|
mmap_limit = limit;
|
|
|
|
}
|
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
Env* Env::Default() {
|
|
|
|
pthread_once(&once, InitDefaultEnv);
|
|
|
|
return default_env;
|
|
|
|
}
|
|
|
|
|
2011-11-01 01:22:06 +08:00
|
|
|
} // namespace leveldb
|