mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of ssh://github.com/ArangoDB/ArangoDB into devel
This commit is contained in:
commit
90bdcecb90
|
@ -487,6 +487,22 @@ void TRI_datafile_t::dontNeed() {
|
||||||
TRI_MMFileAdvise(_data, _maximalSize, TRI_MADVISE_DONTNEED);
|
TRI_MMFileAdvise(_data, _maximalSize, TRI_MADVISE_DONTNEED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TRI_datafile_t::readOnly() {
|
||||||
|
int res = TRI_ProtectMMFile(_data, _maximalSize, PROT_READ, _fd);
|
||||||
|
|
||||||
|
if (res == TRI_ERROR_NO_ERROR) {
|
||||||
|
_state = TRI_DF_STATE_READ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TRI_datafile_t::readWrite() {
|
||||||
|
int res = TRI_ProtectMMFile(_data, _maximalSize, PROT_READ | PROT_WRITE, _fd);
|
||||||
|
|
||||||
|
if (res == TRI_ERROR_NO_ERROR) {
|
||||||
|
_state = TRI_DF_STATE_WRITE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int TRI_datafile_t::lockInMemory() {
|
int TRI_datafile_t::lockInMemory() {
|
||||||
TRI_ASSERT(!_lockedInMemory);
|
TRI_ASSERT(!_lockedInMemory);
|
||||||
int res = TRI_MMFileLock(_data, _initSize);
|
int res = TRI_MMFileLock(_data, _initSize);
|
||||||
|
@ -788,7 +804,10 @@ int TRI_datafile_t::seal() {
|
||||||
// everything is now synced
|
// everything is now synced
|
||||||
_synced = _written;
|
_synced = _written;
|
||||||
|
|
||||||
TRI_ProtectMMFile(_data, _maximalSize, PROT_READ, _fd);
|
// intentionally ignore return value of protection here because this call
|
||||||
|
// would only restrict further file accesses (which is not required
|
||||||
|
// for ArangoDB to work)
|
||||||
|
readOnly();
|
||||||
|
|
||||||
// seal datafile
|
// seal datafile
|
||||||
if (ok) {
|
if (ok) {
|
||||||
|
@ -817,16 +836,13 @@ int TRI_datafile_t::truncate(std::string const& path, TRI_voc_size_t position) {
|
||||||
// this function must not be called for non-physical datafiles
|
// this function must not be called for non-physical datafiles
|
||||||
TRI_ASSERT(!path.empty());
|
TRI_ASSERT(!path.empty());
|
||||||
|
|
||||||
TRI_datafile_t* datafile = TRI_datafile_t::openHelper(path, true);
|
std::unique_ptr<TRI_datafile_t> datafile(TRI_datafile_t::openHelper(path, true));
|
||||||
|
|
||||||
if (datafile == nullptr) {
|
if (datafile == nullptr) {
|
||||||
return TRI_ERROR_ARANGO_DATAFILE_UNREADABLE;
|
return TRI_ERROR_ARANGO_DATAFILE_UNREADABLE;
|
||||||
}
|
}
|
||||||
|
|
||||||
int res = datafile->truncateAndSeal(position);
|
return datafile->truncateAndSeal(position);
|
||||||
delete datafile;
|
|
||||||
|
|
||||||
return res;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @brief try to repair a datafile
|
/// @brief try to repair a datafile
|
||||||
|
@ -841,12 +857,9 @@ bool TRI_datafile_t::tryRepair(std::string const& path) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// set to read/write access
|
// set to read/write access
|
||||||
TRI_ProtectMMFile(datafile->_data, datafile->maximalSize(),
|
datafile->readWrite();
|
||||||
PROT_READ | PROT_WRITE, datafile->fd());
|
|
||||||
|
|
||||||
bool result = datafile->tryRepair();
|
return datafile->tryRepair();
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -1169,6 +1182,7 @@ int TRI_datafile_t::truncateAndSeal(TRI_voc_size_t position) {
|
||||||
bool TRI_datafile_t::check(bool ignoreFailures) {
|
bool TRI_datafile_t::check(bool ignoreFailures) {
|
||||||
// this function must not be called for non-physical datafiles
|
// this function must not be called for non-physical datafiles
|
||||||
TRI_ASSERT(isPhysical());
|
TRI_ASSERT(isPhysical());
|
||||||
|
LOG(TRACE) << "checking markers in datafile '" << getName() << "'";
|
||||||
|
|
||||||
char const* ptr = _data;
|
char const* ptr = _data;
|
||||||
char const* end = _data + _currentSize;
|
char const* end = _data + _currentSize;
|
||||||
|
@ -1717,8 +1731,9 @@ TRI_datafile_t* TRI_datafile_t::open(std::string const& filename, bool ignoreFai
|
||||||
|
|
||||||
// change to read-write if no footer has been found
|
// change to read-write if no footer has been found
|
||||||
if (!datafile->_isSealed) {
|
if (!datafile->_isSealed) {
|
||||||
datafile->_state = TRI_DF_STATE_WRITE;
|
datafile->readWrite();
|
||||||
TRI_ProtectMMFile(datafile->_data, datafile->_maximalSize, PROT_READ | PROT_WRITE, datafile->_fd);
|
} else {
|
||||||
|
datafile->readOnly();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Advise on sequential use:
|
// Advise on sequential use:
|
||||||
|
@ -1842,7 +1857,7 @@ TRI_datafile_t* TRI_datafile_t::openHelper(std::string const& filename, bool ign
|
||||||
}
|
}
|
||||||
|
|
||||||
// map datafile into memory
|
// map datafile into memory
|
||||||
res = TRI_MMFile(0, size, PROT_READ, MAP_SHARED, fd, &mmHandle, 0, &data);
|
res = TRI_MMFile(0, size, PROT_WRITE | PROT_READ, MAP_SHARED, fd, &mmHandle, 0, &data);
|
||||||
|
|
||||||
if (res != TRI_ERROR_NO_ERROR) {
|
if (res != TRI_ERROR_NO_ERROR) {
|
||||||
TRI_set_errno(res);
|
TRI_set_errno(res);
|
||||||
|
|
|
@ -235,6 +235,8 @@ struct TRI_datafile_t {
|
||||||
void randomAccess();
|
void randomAccess();
|
||||||
void willNeed();
|
void willNeed();
|
||||||
void dontNeed();
|
void dontNeed();
|
||||||
|
void readOnly();
|
||||||
|
void readWrite();
|
||||||
|
|
||||||
int lockInMemory();
|
int lockInMemory();
|
||||||
int unlockFromMemory();
|
int unlockFromMemory();
|
||||||
|
|
|
@ -32,6 +32,34 @@
|
||||||
|
|
||||||
using namespace arangodb;
|
using namespace arangodb;
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
static std::string flagify(int flags) {
|
||||||
|
std::string result;
|
||||||
|
|
||||||
|
int const remain = flags & (PROT_READ | PROT_WRITE | PROT_EXEC);
|
||||||
|
|
||||||
|
if (remain & PROT_READ) {
|
||||||
|
result.append("read");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (remain & PROT_WRITE) {
|
||||||
|
if (!result.empty()) {
|
||||||
|
result.push_back(',');
|
||||||
|
}
|
||||||
|
result.append("write");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (remain & PROT_EXEC) {
|
||||||
|
if (!result.empty()) {
|
||||||
|
result.push_back(',');
|
||||||
|
}
|
||||||
|
result.append("exec");
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// @brief flush memory mapped file to disk
|
// @brief flush memory mapped file to disk
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -91,7 +119,7 @@ int TRI_MMFile(void* memoryAddress, size_t numOfBytesToInitialize,
|
||||||
if (*result != MAP_FAILED) {
|
if (*result != MAP_FAILED) {
|
||||||
TRI_ASSERT(*result != nullptr);
|
TRI_ASSERT(*result != nullptr);
|
||||||
|
|
||||||
LOG_TOPIC(DEBUG, Logger::MMAP) << "memory-mapped range " << Logger::RANGE(*result, numOfBytesToInitialize) << ", file-descriptor " << fileDescriptor;
|
LOG_TOPIC(DEBUG, Logger::MMAP) << "memory-mapped range " << Logger::RANGE(*result, numOfBytesToInitialize) << ", file-descriptor " << fileDescriptor << ", flags: " << flagify(flags);
|
||||||
|
|
||||||
return TRI_ERROR_NO_ERROR;
|
return TRI_ERROR_NO_ERROR;
|
||||||
}
|
}
|
||||||
|
@ -100,6 +128,8 @@ int TRI_MMFile(void* memoryAddress, size_t numOfBytesToInitialize,
|
||||||
LOG_TOPIC(DEBUG, Logger::MMAP) << "out of memory in mmap";
|
LOG_TOPIC(DEBUG, Logger::MMAP) << "out of memory in mmap";
|
||||||
|
|
||||||
return TRI_ERROR_OUT_OF_MEMORY_MMAP;
|
return TRI_ERROR_OUT_OF_MEMORY_MMAP;
|
||||||
|
} else {
|
||||||
|
LOG_TOPIC(WARN, Logger::MMAP) << "memory-mapping failed for range " << Logger::RANGE(*result, numOfBytesToInitialize) << ", file-descriptor " << fileDescriptor << ", flags: " << flagify(flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
return TRI_ERROR_SYS_ERROR;
|
return TRI_ERROR_SYS_ERROR;
|
||||||
|
@ -142,11 +172,13 @@ int TRI_ProtectMMFile(void* memoryAddress, size_t numOfBytesToProtect,
|
||||||
int res = mprotect(memoryAddress, numOfBytesToProtect, flags);
|
int res = mprotect(memoryAddress, numOfBytesToProtect, flags);
|
||||||
|
|
||||||
if (res == TRI_ERROR_NO_ERROR) {
|
if (res == TRI_ERROR_NO_ERROR) {
|
||||||
LOG_TOPIC(TRACE, Logger::MMAP) << "memory-protecting range " << Logger::RANGE(memoryAddress, numOfBytesToProtect) << ", file-descriptor " << fileDescriptor;
|
LOG_TOPIC(TRACE, Logger::MMAP) << "memory-protecting range " << Logger::RANGE(memoryAddress, numOfBytesToProtect) << ", file-descriptor " << fileDescriptor << ", flags: " << flagify(flags);
|
||||||
|
|
||||||
return TRI_ERROR_NO_ERROR;
|
return TRI_ERROR_NO_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
LOG_TOPIC(WARN, Logger::MMAP) << "memory-protecting failed for range " << Logger::RANGE(memoryAddress, numOfBytesToProtect) << ", file-descriptor " << fileDescriptor << ", flags: " << flagify(flags);
|
||||||
|
|
||||||
return TRI_ERROR_SYS_ERROR;
|
return TRI_ERROR_SYS_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue