2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2013-10-16 23:59:46 +02:00
|
|
|
//
|
2011-03-18 23:37:00 +01: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 "db/log_reader.h"
|
|
|
|
|
2011-07-15 02:20:57 +02:00
|
|
|
#include <stdio.h>
|
2019-09-16 19:31:27 +02:00
|
|
|
#include "file/sequence_file_reader.h"
|
2020-04-20 22:21:34 +02:00
|
|
|
#include "port/lang.h"
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/env.h"
|
2019-09-16 19:31:27 +02:00
|
|
|
#include "test_util/sync_point.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
#include "util/coding.h"
|
|
|
|
#include "util/crc32c.h"
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2011-03-18 23:37:00 +01:00
|
|
|
namespace log {
|
|
|
|
|
|
|
|
Reader::Reporter::~Reporter() {
|
|
|
|
}
|
|
|
|
|
2015-10-08 19:06:16 +02:00
|
|
|
Reader::Reader(std::shared_ptr<Logger> info_log,
|
2018-11-09 20:17:34 +01:00
|
|
|
std::unique_ptr<SequentialFileReader>&& _file,
|
2019-03-27 00:41:31 +01:00
|
|
|
Reporter* reporter, bool checksum, uint64_t log_num)
|
2015-10-08 19:06:16 +02:00
|
|
|
: info_log_(info_log),
|
|
|
|
file_(std::move(_file)),
|
2011-03-18 23:37:00 +01:00
|
|
|
reporter_(reporter),
|
|
|
|
checksum_(checksum),
|
|
|
|
backing_store_(new char[kBlockSize]),
|
|
|
|
buffer_(),
|
2011-05-21 04:17:43 +02:00
|
|
|
eof_(false),
|
Fix UnmarkEOF for partial blocks
Summary:
Blocks in the transaction log are a fixed size, but the last block in the transaction log file is usually a partial block. When a new record is added after the reader hit the end of the file, a new physical record will be appended to the last block. ReadPhysicalRecord can only read full blocks and assumes that the file position indicator is aligned to the start of a block. If the reader is forced to read further by simply clearing the EOF flag, ReadPhysicalRecord will read a full block starting from somewhere in the middle of a real block, causing it to lose alignment and to have a partial physical record at the end of the read buffer. This will result in length mismatches and checksum failures. When the log file is tailed for replication this will cause the log iterator to become invalid, necessitating the creation of a new iterator which will have to read the log file from scratch.
This diff fixes this issue by reading the remaining portion of the last block we read from. This is done when the reader is forced to read further (UnmarkEOF is called).
Test Plan:
- Added unit tests
- Stress test (with replication). Check dbdir/LOG file for corruptions.
- Test on test tier
Reviewers: emayanke, haobo, dhruba
Reviewed By: haobo
CC: vamsi, sheki, dhruba, kailiu, igor
Differential Revision: https://reviews.facebook.net/D15249
2014-01-27 23:49:10 +01:00
|
|
|
read_error_(false),
|
|
|
|
eof_offset_(0),
|
2011-05-21 04:17:43 +02:00
|
|
|
last_record_offset_(0),
|
|
|
|
end_of_buffer_offset_(0),
|
2015-12-11 23:17:43 +01:00
|
|
|
log_number_(log_num),
|
2019-03-27 00:41:31 +01:00
|
|
|
recycled_(false) {}
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
Reader::~Reader() {
|
|
|
|
delete[] backing_store_;
|
|
|
|
}
|
|
|
|
|
2015-10-02 21:53:59 +02:00
|
|
|
// For kAbsoluteConsistency, on clean shutdown we don't expect any error
|
|
|
|
// in the log files. For other modes, we can ignore only incomplete records
|
|
|
|
// in the last log file, which are presumably due to a write in progress
|
|
|
|
// during restart (or from log recycling).
|
|
|
|
//
|
|
|
|
// TODO krad: Evaluate if we need to move to a more strict mode where we
|
|
|
|
// restrict the inconsistency to only the last log
|
2015-06-15 21:03:13 +02:00
|
|
|
bool Reader::ReadRecord(Slice* record, std::string* scratch,
|
2015-10-02 21:53:59 +02:00
|
|
|
WALRecoveryMode wal_recovery_mode) {
|
2011-03-18 23:37:00 +01:00
|
|
|
scratch->clear();
|
|
|
|
record->clear();
|
|
|
|
bool in_fragmented_record = false;
|
2011-05-21 04:17:43 +02:00
|
|
|
// Record offset of the logical record that we're reading
|
|
|
|
// 0 is a dummy value to make compilers happy
|
|
|
|
uint64_t prospective_record_offset = 0;
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
Slice fragment;
|
|
|
|
while (true) {
|
2011-05-21 04:17:43 +02:00
|
|
|
uint64_t physical_record_offset = end_of_buffer_offset_ - buffer_.size();
|
2016-07-09 02:50:51 +02:00
|
|
|
size_t drop_size = 0;
|
2015-10-12 23:04:33 +02:00
|
|
|
const unsigned int record_type = ReadPhysicalRecord(&fragment, &drop_size);
|
2011-07-15 02:20:57 +02:00
|
|
|
switch (record_type) {
|
2011-03-18 23:37:00 +01:00
|
|
|
case kFullType:
|
2015-10-19 23:24:05 +02:00
|
|
|
case kRecyclableFullType:
|
2015-02-23 23:10:09 +01:00
|
|
|
if (in_fragmented_record && !scratch->empty()) {
|
2011-05-21 04:17:43 +02:00
|
|
|
// Handle bug in earlier versions of log::Writer where
|
|
|
|
// it could emit an empty kFirstType record at the tail end
|
|
|
|
// of a block followed by a kFullType or kFirstType record
|
|
|
|
// at the beginning of the next block.
|
2015-02-23 23:10:09 +01:00
|
|
|
ReportCorruption(scratch->size(), "partial record without end(1)");
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
2011-05-21 04:17:43 +02:00
|
|
|
prospective_record_offset = physical_record_offset;
|
2011-03-18 23:37:00 +01:00
|
|
|
scratch->clear();
|
|
|
|
*record = fragment;
|
2011-05-21 04:17:43 +02:00
|
|
|
last_record_offset_ = prospective_record_offset;
|
2011-03-18 23:37:00 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
case kFirstType:
|
2015-10-19 23:24:05 +02:00
|
|
|
case kRecyclableFirstType:
|
2015-02-23 23:10:09 +01:00
|
|
|
if (in_fragmented_record && !scratch->empty()) {
|
2011-05-21 04:17:43 +02:00
|
|
|
// Handle bug in earlier versions of log::Writer where
|
|
|
|
// it could emit an empty kFirstType record at the tail end
|
|
|
|
// of a block followed by a kFullType or kFirstType record
|
|
|
|
// at the beginning of the next block.
|
2015-02-23 23:10:09 +01:00
|
|
|
ReportCorruption(scratch->size(), "partial record without end(2)");
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
2011-05-21 04:17:43 +02:00
|
|
|
prospective_record_offset = physical_record_offset;
|
2011-03-18 23:37:00 +01:00
|
|
|
scratch->assign(fragment.data(), fragment.size());
|
|
|
|
in_fragmented_record = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kMiddleType:
|
2015-10-19 23:24:05 +02:00
|
|
|
case kRecyclableMiddleType:
|
2011-03-18 23:37:00 +01:00
|
|
|
if (!in_fragmented_record) {
|
2011-05-21 04:17:43 +02:00
|
|
|
ReportCorruption(fragment.size(),
|
|
|
|
"missing start of fragmented record(1)");
|
2011-03-18 23:37:00 +01:00
|
|
|
} else {
|
|
|
|
scratch->append(fragment.data(), fragment.size());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kLastType:
|
2015-10-19 23:24:05 +02:00
|
|
|
case kRecyclableLastType:
|
2011-03-18 23:37:00 +01:00
|
|
|
if (!in_fragmented_record) {
|
2011-05-21 04:17:43 +02:00
|
|
|
ReportCorruption(fragment.size(),
|
|
|
|
"missing start of fragmented record(2)");
|
2011-03-18 23:37:00 +01:00
|
|
|
} else {
|
|
|
|
scratch->append(fragment.data(), fragment.size());
|
|
|
|
*record = Slice(*scratch);
|
2011-05-21 04:17:43 +02:00
|
|
|
last_record_offset_ = prospective_record_offset;
|
2011-03-18 23:37:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2015-10-12 23:04:33 +02:00
|
|
|
case kBadHeader:
|
2020-12-01 03:10:18 +01:00
|
|
|
if (wal_recovery_mode == WALRecoveryMode::kAbsoluteConsistency ||
|
|
|
|
wal_recovery_mode == WALRecoveryMode::kPointInTimeRecovery) {
|
|
|
|
// In clean shutdown we don't expect any error in the log files.
|
|
|
|
// In point-in-time recovery an incomplete record at the end could
|
|
|
|
// produce a hole in the recovered data. Report an error here, which
|
|
|
|
// higher layers can choose to ignore when it's provable there is no
|
|
|
|
// hole.
|
2015-10-12 23:04:33 +02:00
|
|
|
ReportCorruption(drop_size, "truncated header");
|
|
|
|
}
|
2018-10-19 20:51:13 +02:00
|
|
|
FALLTHROUGH_INTENDED;
|
2015-10-12 23:04:33 +02:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
case kEof:
|
|
|
|
if (in_fragmented_record) {
|
2020-12-01 03:10:18 +01:00
|
|
|
if (wal_recovery_mode == WALRecoveryMode::kAbsoluteConsistency ||
|
|
|
|
wal_recovery_mode == WALRecoveryMode::kPointInTimeRecovery) {
|
|
|
|
// In clean shutdown we don't expect any error in the log files.
|
|
|
|
// In point-in-time recovery an incomplete record at the end could
|
|
|
|
// produce a hole in the recovered data. Report an error here, which
|
|
|
|
// higher layers can choose to ignore when it's provable there is no
|
|
|
|
// hole.
|
2015-06-15 21:03:13 +02:00
|
|
|
ReportCorruption(scratch->size(), "error reading trailing data");
|
|
|
|
}
|
2014-02-28 22:19:47 +01:00
|
|
|
// This can be caused by the writer dying immediately after
|
|
|
|
// writing a physical record but before completing the next; don't
|
|
|
|
// treat it as a corruption, just ignore the entire logical record.
|
2011-03-18 23:37:00 +01:00
|
|
|
scratch->clear();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
|
2015-10-19 23:24:05 +02:00
|
|
|
case kOldRecord:
|
|
|
|
if (wal_recovery_mode != WALRecoveryMode::kSkipAnyCorruptedRecords) {
|
|
|
|
// Treat a record from a previous instance of the log as EOF.
|
|
|
|
if (in_fragmented_record) {
|
2020-12-01 03:10:18 +01:00
|
|
|
if (wal_recovery_mode == WALRecoveryMode::kAbsoluteConsistency ||
|
|
|
|
wal_recovery_mode == WALRecoveryMode::kPointInTimeRecovery) {
|
|
|
|
// In clean shutdown we don't expect any error in the log files.
|
|
|
|
// In point-in-time recovery an incomplete record at the end could
|
|
|
|
// produce a hole in the recovered data. Report an error here,
|
|
|
|
// which higher layers can choose to ignore when it's provable
|
|
|
|
// there is no hole.
|
2015-10-19 23:24:05 +02:00
|
|
|
ReportCorruption(scratch->size(), "error reading trailing data");
|
|
|
|
}
|
|
|
|
// This can be caused by the writer dying immediately after
|
|
|
|
// writing a physical record but before completing the next; don't
|
|
|
|
// treat it as a corruption, just ignore the entire logical record.
|
|
|
|
scratch->clear();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2018-10-19 20:51:13 +02:00
|
|
|
FALLTHROUGH_INTENDED;
|
2015-10-19 23:24:05 +02:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
case kBadRecord:
|
|
|
|
if (in_fragmented_record) {
|
2011-05-21 04:17:43 +02:00
|
|
|
ReportCorruption(scratch->size(), "error in middle of record");
|
2011-03-18 23:37:00 +01:00
|
|
|
in_fragmented_record = false;
|
|
|
|
scratch->clear();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2015-12-02 22:35:20 +01:00
|
|
|
case kBadRecordLen:
|
2020-12-01 03:10:18 +01:00
|
|
|
if (eof_) {
|
|
|
|
if (wal_recovery_mode == WALRecoveryMode::kAbsoluteConsistency ||
|
|
|
|
wal_recovery_mode == WALRecoveryMode::kPointInTimeRecovery) {
|
|
|
|
// In clean shutdown we don't expect any error in the log files.
|
|
|
|
// In point-in-time recovery an incomplete record at the end could
|
|
|
|
// produce a hole in the recovered data. Report an error here, which
|
|
|
|
// higher layers can choose to ignore when it's provable there is no
|
|
|
|
// hole.
|
|
|
|
ReportCorruption(drop_size, "truncated record body");
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
FALLTHROUGH_INTENDED;
|
|
|
|
|
2015-12-02 22:35:20 +01:00
|
|
|
case kBadRecordChecksum:
|
2015-12-11 23:17:43 +01:00
|
|
|
if (recycled_ &&
|
|
|
|
wal_recovery_mode ==
|
|
|
|
WALRecoveryMode::kTolerateCorruptedTailRecords) {
|
|
|
|
scratch->clear();
|
|
|
|
return false;
|
|
|
|
}
|
2016-07-09 02:50:51 +02:00
|
|
|
if (record_type == kBadRecordLen) {
|
|
|
|
ReportCorruption(drop_size, "bad record length");
|
|
|
|
} else {
|
|
|
|
ReportCorruption(drop_size, "checksum mismatch");
|
|
|
|
}
|
2015-12-02 22:35:20 +01:00
|
|
|
if (in_fragmented_record) {
|
|
|
|
ReportCorruption(scratch->size(), "error in middle of record");
|
|
|
|
in_fragmented_record = false;
|
|
|
|
scratch->clear();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-07-15 02:20:57 +02:00
|
|
|
default: {
|
|
|
|
char buf[40];
|
|
|
|
snprintf(buf, sizeof(buf), "unknown record type %u", record_type);
|
2011-05-21 04:17:43 +02:00
|
|
|
ReportCorruption(
|
2011-03-18 23:37:00 +01:00
|
|
|
(fragment.size() + (in_fragmented_record ? scratch->size() : 0)),
|
2011-07-15 02:20:57 +02:00
|
|
|
buf);
|
2011-03-18 23:37:00 +01:00
|
|
|
in_fragmented_record = false;
|
|
|
|
scratch->clear();
|
|
|
|
break;
|
2011-07-15 02:20:57 +02:00
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-05-21 04:17:43 +02:00
|
|
|
uint64_t Reader::LastRecordOffset() {
|
|
|
|
return last_record_offset_;
|
|
|
|
}
|
|
|
|
|
2020-08-26 19:37:59 +02:00
|
|
|
uint64_t Reader::LastRecordEnd() {
|
|
|
|
return end_of_buffer_offset_ - buffer_.size();
|
|
|
|
}
|
|
|
|
|
Fix UnmarkEOF for partial blocks
Summary:
Blocks in the transaction log are a fixed size, but the last block in the transaction log file is usually a partial block. When a new record is added after the reader hit the end of the file, a new physical record will be appended to the last block. ReadPhysicalRecord can only read full blocks and assumes that the file position indicator is aligned to the start of a block. If the reader is forced to read further by simply clearing the EOF flag, ReadPhysicalRecord will read a full block starting from somewhere in the middle of a real block, causing it to lose alignment and to have a partial physical record at the end of the read buffer. This will result in length mismatches and checksum failures. When the log file is tailed for replication this will cause the log iterator to become invalid, necessitating the creation of a new iterator which will have to read the log file from scratch.
This diff fixes this issue by reading the remaining portion of the last block we read from. This is done when the reader is forced to read further (UnmarkEOF is called).
Test Plan:
- Added unit tests
- Stress test (with replication). Check dbdir/LOG file for corruptions.
- Test on test tier
Reviewers: emayanke, haobo, dhruba
Reviewed By: haobo
CC: vamsi, sheki, dhruba, kailiu, igor
Differential Revision: https://reviews.facebook.net/D15249
2014-01-27 23:49:10 +01:00
|
|
|
void Reader::UnmarkEOF() {
|
|
|
|
if (read_error_) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
eof_ = false;
|
2019-03-27 00:41:31 +01:00
|
|
|
if (eof_offset_ == 0) {
|
Fix UnmarkEOF for partial blocks
Summary:
Blocks in the transaction log are a fixed size, but the last block in the transaction log file is usually a partial block. When a new record is added after the reader hit the end of the file, a new physical record will be appended to the last block. ReadPhysicalRecord can only read full blocks and assumes that the file position indicator is aligned to the start of a block. If the reader is forced to read further by simply clearing the EOF flag, ReadPhysicalRecord will read a full block starting from somewhere in the middle of a real block, causing it to lose alignment and to have a partial physical record at the end of the read buffer. This will result in length mismatches and checksum failures. When the log file is tailed for replication this will cause the log iterator to become invalid, necessitating the creation of a new iterator which will have to read the log file from scratch.
This diff fixes this issue by reading the remaining portion of the last block we read from. This is done when the reader is forced to read further (UnmarkEOF is called).
Test Plan:
- Added unit tests
- Stress test (with replication). Check dbdir/LOG file for corruptions.
- Test on test tier
Reviewers: emayanke, haobo, dhruba
Reviewed By: haobo
CC: vamsi, sheki, dhruba, kailiu, igor
Differential Revision: https://reviews.facebook.net/D15249
2014-01-27 23:49:10 +01:00
|
|
|
return;
|
|
|
|
}
|
2019-03-27 00:41:31 +01:00
|
|
|
UnmarkEOFInternal();
|
|
|
|
}
|
Fix UnmarkEOF for partial blocks
Summary:
Blocks in the transaction log are a fixed size, but the last block in the transaction log file is usually a partial block. When a new record is added after the reader hit the end of the file, a new physical record will be appended to the last block. ReadPhysicalRecord can only read full blocks and assumes that the file position indicator is aligned to the start of a block. If the reader is forced to read further by simply clearing the EOF flag, ReadPhysicalRecord will read a full block starting from somewhere in the middle of a real block, causing it to lose alignment and to have a partial physical record at the end of the read buffer. This will result in length mismatches and checksum failures. When the log file is tailed for replication this will cause the log iterator to become invalid, necessitating the creation of a new iterator which will have to read the log file from scratch.
This diff fixes this issue by reading the remaining portion of the last block we read from. This is done when the reader is forced to read further (UnmarkEOF is called).
Test Plan:
- Added unit tests
- Stress test (with replication). Check dbdir/LOG file for corruptions.
- Test on test tier
Reviewers: emayanke, haobo, dhruba
Reviewed By: haobo
CC: vamsi, sheki, dhruba, kailiu, igor
Differential Revision: https://reviews.facebook.net/D15249
2014-01-27 23:49:10 +01:00
|
|
|
|
2019-03-27 00:41:31 +01:00
|
|
|
void Reader::UnmarkEOFInternal() {
|
Fix UnmarkEOF for partial blocks
Summary:
Blocks in the transaction log are a fixed size, but the last block in the transaction log file is usually a partial block. When a new record is added after the reader hit the end of the file, a new physical record will be appended to the last block. ReadPhysicalRecord can only read full blocks and assumes that the file position indicator is aligned to the start of a block. If the reader is forced to read further by simply clearing the EOF flag, ReadPhysicalRecord will read a full block starting from somewhere in the middle of a real block, causing it to lose alignment and to have a partial physical record at the end of the read buffer. This will result in length mismatches and checksum failures. When the log file is tailed for replication this will cause the log iterator to become invalid, necessitating the creation of a new iterator which will have to read the log file from scratch.
This diff fixes this issue by reading the remaining portion of the last block we read from. This is done when the reader is forced to read further (UnmarkEOF is called).
Test Plan:
- Added unit tests
- Stress test (with replication). Check dbdir/LOG file for corruptions.
- Test on test tier
Reviewers: emayanke, haobo, dhruba
Reviewed By: haobo
CC: vamsi, sheki, dhruba, kailiu, igor
Differential Revision: https://reviews.facebook.net/D15249
2014-01-27 23:49:10 +01:00
|
|
|
// If the EOF was in the middle of a block (a partial block was read) we have
|
|
|
|
// to read the rest of the block as ReadPhysicalRecord can only read full
|
|
|
|
// blocks and expects the file position indicator to be aligned to the start
|
|
|
|
// of a block.
|
|
|
|
//
|
|
|
|
// consumed_bytes + buffer_size() + remaining == kBlockSize
|
|
|
|
|
|
|
|
size_t consumed_bytes = eof_offset_ - buffer_.size();
|
|
|
|
size_t remaining = kBlockSize - eof_offset_;
|
|
|
|
|
|
|
|
// backing_store_ is used to concatenate what is left in buffer_ and
|
|
|
|
// the remainder of the block. If buffer_ already uses backing_store_,
|
|
|
|
// we just append the new data.
|
|
|
|
if (buffer_.data() != backing_store_ + consumed_bytes) {
|
|
|
|
// Buffer_ does not use backing_store_ for storage.
|
|
|
|
// Copy what is left in buffer_ to backing_store.
|
|
|
|
memmove(backing_store_ + consumed_bytes, buffer_.data(), buffer_.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
Slice read_buffer;
|
|
|
|
Status status = file_->Read(remaining, &read_buffer,
|
|
|
|
backing_store_ + eof_offset_);
|
|
|
|
|
|
|
|
size_t added = read_buffer.size();
|
|
|
|
end_of_buffer_offset_ += added;
|
|
|
|
|
|
|
|
if (!status.ok()) {
|
|
|
|
if (added > 0) {
|
|
|
|
ReportDrop(added, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
read_error_ = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (read_buffer.data() != backing_store_ + eof_offset_) {
|
|
|
|
// Read did not write to backing_store_
|
|
|
|
memmove(backing_store_ + eof_offset_, read_buffer.data(),
|
|
|
|
read_buffer.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer_ = Slice(backing_store_ + consumed_bytes,
|
|
|
|
eof_offset_ + added - consumed_bytes);
|
|
|
|
|
|
|
|
if (added < remaining) {
|
|
|
|
eof_ = true;
|
|
|
|
eof_offset_ += added;
|
|
|
|
} else {
|
|
|
|
eof_offset_ = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-21 04:17:43 +02:00
|
|
|
void Reader::ReportCorruption(size_t bytes, const char* reason) {
|
|
|
|
ReportDrop(bytes, Status::Corruption(reason));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Reader::ReportDrop(size_t bytes, const Status& reason) {
|
2018-09-14 02:08:04 +02:00
|
|
|
if (reporter_ != nullptr) {
|
2011-05-21 04:17:43 +02:00
|
|
|
reporter_->Corruption(bytes, reason);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-19 23:24:05 +02:00
|
|
|
bool Reader::ReadMore(size_t* drop_size, int *error) {
|
|
|
|
if (!eof_ && !read_error_) {
|
|
|
|
// Last read was a full read, so this is a trailer to skip
|
|
|
|
buffer_.clear();
|
|
|
|
Status status = file_->Read(kBlockSize, &buffer_, backing_store_);
|
2020-06-12 03:39:21 +02:00
|
|
|
TEST_SYNC_POINT_CALLBACK("LogReader::ReadMore:AfterReadFile", &status);
|
2015-10-19 23:24:05 +02:00
|
|
|
end_of_buffer_offset_ += buffer_.size();
|
|
|
|
if (!status.ok()) {
|
|
|
|
buffer_.clear();
|
|
|
|
ReportDrop(kBlockSize, status);
|
|
|
|
read_error_ = true;
|
|
|
|
*error = kEof;
|
|
|
|
return false;
|
2018-09-14 20:03:03 +02:00
|
|
|
} else if (buffer_.size() < static_cast<size_t>(kBlockSize)) {
|
2015-10-19 23:24:05 +02:00
|
|
|
eof_ = true;
|
|
|
|
eof_offset_ = buffer_.size();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
// Note that if buffer_ is non-empty, we have a truncated header at the
|
|
|
|
// end of the file, which can be caused by the writer crashing in the
|
|
|
|
// middle of writing the header. Unless explicitly requested we don't
|
|
|
|
// considering this an error, just report EOF.
|
|
|
|
if (buffer_.size()) {
|
|
|
|
*drop_size = buffer_.size();
|
|
|
|
buffer_.clear();
|
|
|
|
*error = kBadHeader;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
buffer_.clear();
|
|
|
|
*error = kEof;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-12 23:04:33 +02:00
|
|
|
unsigned int Reader::ReadPhysicalRecord(Slice* result, size_t* drop_size) {
|
2011-03-18 23:37:00 +01:00
|
|
|
while (true) {
|
2015-10-19 23:24:05 +02:00
|
|
|
// We need at least the minimum header size
|
2018-09-14 20:03:03 +02:00
|
|
|
if (buffer_.size() < static_cast<size_t>(kHeaderSize)) {
|
2018-10-24 07:12:21 +02:00
|
|
|
// the default value of r is meaningless because ReadMore will overwrite
|
|
|
|
// it if it returns false; in case it returns true, the return value will
|
|
|
|
// not be used anyway
|
|
|
|
int r = kEof;
|
2015-10-19 23:24:05 +02:00
|
|
|
if (!ReadMore(drop_size, &r)) {
|
2016-07-09 02:50:51 +02:00
|
|
|
return r;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
2015-10-19 23:24:05 +02:00
|
|
|
continue;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the header
|
|
|
|
const char* header = buffer_.data();
|
|
|
|
const uint32_t a = static_cast<uint32_t>(header[4]) & 0xff;
|
|
|
|
const uint32_t b = static_cast<uint32_t>(header[5]) & 0xff;
|
|
|
|
const unsigned int type = header[6];
|
|
|
|
const uint32_t length = a | (b << 8);
|
2015-10-19 23:24:05 +02:00
|
|
|
int header_size = kHeaderSize;
|
|
|
|
if (type >= kRecyclableFullType && type <= kRecyclableLastType) {
|
2015-12-11 23:17:43 +01:00
|
|
|
if (end_of_buffer_offset_ - buffer_.size() == 0) {
|
|
|
|
recycled_ = true;
|
|
|
|
}
|
2015-10-19 23:24:05 +02:00
|
|
|
header_size = kRecyclableHeaderSize;
|
|
|
|
// We need enough for the larger header
|
2018-09-14 20:03:03 +02:00
|
|
|
if (buffer_.size() < static_cast<size_t>(kRecyclableHeaderSize)) {
|
2018-10-24 07:12:21 +02:00
|
|
|
int r = kEof;
|
2016-07-09 02:50:51 +02:00
|
|
|
if (!ReadMore(drop_size, &r)) {
|
2015-10-19 23:24:05 +02:00
|
|
|
return r;
|
|
|
|
}
|
2016-07-09 02:50:51 +02:00
|
|
|
continue;
|
2015-10-19 23:24:05 +02:00
|
|
|
}
|
|
|
|
const uint32_t log_num = DecodeFixed32(header + 7);
|
|
|
|
if (log_num != log_number_) {
|
|
|
|
return kOldRecord;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (header_size + length > buffer_.size()) {
|
2020-12-01 03:10:18 +01:00
|
|
|
assert(buffer_.size() >= static_cast<size_t>(header_size));
|
2019-03-27 00:41:31 +01:00
|
|
|
*drop_size = buffer_.size();
|
|
|
|
buffer_.clear();
|
2020-12-01 03:10:18 +01:00
|
|
|
// If the end of the read has been reached without seeing
|
|
|
|
// `header_size + length` bytes of payload, report a corruption. The
|
|
|
|
// higher layers can decide how to handle it based on the recovery mode,
|
|
|
|
// whether this occurred at EOF, whether this is the final WAL, etc.
|
|
|
|
return kBadRecordLen;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2011-07-15 02:20:57 +02:00
|
|
|
if (type == kZeroType && length == 0) {
|
|
|
|
// Skip zero length record without reporting any drops since
|
|
|
|
// such records are produced by the mmap based writing code in
|
|
|
|
// env_posix.cc that preallocates file regions.
|
2014-02-28 22:19:47 +01:00
|
|
|
// NOTE: this should never happen in DB written by new RocksDB versions,
|
|
|
|
// since we turn off mmap writes to manifest and log files
|
2011-07-15 02:20:57 +02:00
|
|
|
buffer_.clear();
|
|
|
|
return kBadRecord;
|
|
|
|
}
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// Check crc
|
|
|
|
if (checksum_) {
|
|
|
|
uint32_t expected_crc = crc32c::Unmask(DecodeFixed32(header));
|
2015-10-19 23:24:05 +02:00
|
|
|
uint32_t actual_crc = crc32c::Value(header + 6, length + header_size - 6);
|
2011-03-18 23:37:00 +01:00
|
|
|
if (actual_crc != expected_crc) {
|
2011-03-21 20:40:57 +01:00
|
|
|
// Drop the rest of the buffer since "length" itself may have
|
|
|
|
// been corrupted and if we trust it, we could find some
|
|
|
|
// fragment of a real log record that just happens to look
|
|
|
|
// like a valid log record.
|
2015-10-12 23:04:33 +02:00
|
|
|
*drop_size = buffer_.size();
|
2011-03-21 20:40:57 +01:00
|
|
|
buffer_.clear();
|
2015-12-02 22:35:20 +01:00
|
|
|
return kBadRecordChecksum;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-19 23:24:05 +02:00
|
|
|
buffer_.remove_prefix(header_size + length);
|
2011-05-21 04:17:43 +02:00
|
|
|
|
2015-10-19 23:24:05 +02:00
|
|
|
*result = Slice(header + header_size, length);
|
2011-03-18 23:37:00 +01:00
|
|
|
return type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-27 00:41:31 +01:00
|
|
|
bool FragmentBufferedReader::ReadRecord(Slice* record, std::string* scratch,
|
|
|
|
WALRecoveryMode /*unused*/) {
|
|
|
|
assert(record != nullptr);
|
|
|
|
assert(scratch != nullptr);
|
|
|
|
record->clear();
|
|
|
|
scratch->clear();
|
|
|
|
|
|
|
|
uint64_t prospective_record_offset = 0;
|
|
|
|
uint64_t physical_record_offset = end_of_buffer_offset_ - buffer_.size();
|
|
|
|
size_t drop_size = 0;
|
|
|
|
unsigned int fragment_type_or_err = 0; // Initialize to make compiler happy
|
|
|
|
Slice fragment;
|
|
|
|
while (TryReadFragment(&fragment, &drop_size, &fragment_type_or_err)) {
|
|
|
|
switch (fragment_type_or_err) {
|
|
|
|
case kFullType:
|
|
|
|
case kRecyclableFullType:
|
|
|
|
if (in_fragmented_record_ && !fragments_.empty()) {
|
|
|
|
ReportCorruption(fragments_.size(), "partial record without end(1)");
|
|
|
|
}
|
|
|
|
fragments_.clear();
|
|
|
|
*record = fragment;
|
|
|
|
prospective_record_offset = physical_record_offset;
|
|
|
|
last_record_offset_ = prospective_record_offset;
|
|
|
|
in_fragmented_record_ = false;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case kFirstType:
|
|
|
|
case kRecyclableFirstType:
|
|
|
|
if (in_fragmented_record_ || !fragments_.empty()) {
|
|
|
|
ReportCorruption(fragments_.size(), "partial record without end(2)");
|
|
|
|
}
|
|
|
|
prospective_record_offset = physical_record_offset;
|
|
|
|
fragments_.assign(fragment.data(), fragment.size());
|
|
|
|
in_fragmented_record_ = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kMiddleType:
|
|
|
|
case kRecyclableMiddleType:
|
|
|
|
if (!in_fragmented_record_) {
|
|
|
|
ReportCorruption(fragment.size(),
|
|
|
|
"missing start of fragmented record(1)");
|
|
|
|
} else {
|
|
|
|
fragments_.append(fragment.data(), fragment.size());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kLastType:
|
|
|
|
case kRecyclableLastType:
|
|
|
|
if (!in_fragmented_record_) {
|
|
|
|
ReportCorruption(fragment.size(),
|
|
|
|
"missing start of fragmented record(2)");
|
|
|
|
} else {
|
|
|
|
fragments_.append(fragment.data(), fragment.size());
|
|
|
|
scratch->assign(fragments_.data(), fragments_.size());
|
|
|
|
fragments_.clear();
|
|
|
|
*record = Slice(*scratch);
|
|
|
|
last_record_offset_ = prospective_record_offset;
|
|
|
|
in_fragmented_record_ = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kBadHeader:
|
|
|
|
case kBadRecord:
|
|
|
|
case kEof:
|
|
|
|
case kOldRecord:
|
|
|
|
if (in_fragmented_record_) {
|
|
|
|
ReportCorruption(fragments_.size(), "error in middle of record");
|
|
|
|
in_fragmented_record_ = false;
|
|
|
|
fragments_.clear();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kBadRecordChecksum:
|
|
|
|
if (recycled_) {
|
|
|
|
fragments_.clear();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ReportCorruption(drop_size, "checksum mismatch");
|
|
|
|
if (in_fragmented_record_) {
|
|
|
|
ReportCorruption(fragments_.size(), "error in middle of record");
|
|
|
|
in_fragmented_record_ = false;
|
|
|
|
fragments_.clear();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: {
|
|
|
|
char buf[40];
|
|
|
|
snprintf(buf, sizeof(buf), "unknown record type %u",
|
|
|
|
fragment_type_or_err);
|
|
|
|
ReportCorruption(
|
|
|
|
fragment.size() + (in_fragmented_record_ ? fragments_.size() : 0),
|
|
|
|
buf);
|
|
|
|
in_fragmented_record_ = false;
|
|
|
|
fragments_.clear();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FragmentBufferedReader::UnmarkEOF() {
|
|
|
|
if (read_error_) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
eof_ = false;
|
|
|
|
UnmarkEOFInternal();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FragmentBufferedReader::TryReadMore(size_t* drop_size, int* error) {
|
|
|
|
if (!eof_ && !read_error_) {
|
|
|
|
// Last read was a full read, so this is a trailer to skip
|
|
|
|
buffer_.clear();
|
|
|
|
Status status = file_->Read(kBlockSize, &buffer_, backing_store_);
|
|
|
|
end_of_buffer_offset_ += buffer_.size();
|
|
|
|
if (!status.ok()) {
|
|
|
|
buffer_.clear();
|
|
|
|
ReportDrop(kBlockSize, status);
|
|
|
|
read_error_ = true;
|
|
|
|
*error = kEof;
|
|
|
|
return false;
|
|
|
|
} else if (buffer_.size() < static_cast<size_t>(kBlockSize)) {
|
|
|
|
eof_ = true;
|
|
|
|
eof_offset_ = buffer_.size();
|
|
|
|
TEST_SYNC_POINT_CALLBACK(
|
|
|
|
"FragmentBufferedLogReader::TryReadMore:FirstEOF", nullptr);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
} else if (!read_error_) {
|
|
|
|
UnmarkEOF();
|
|
|
|
}
|
|
|
|
if (!read_error_) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
*error = kEof;
|
|
|
|
*drop_size = buffer_.size();
|
|
|
|
if (buffer_.size() > 0) {
|
|
|
|
*error = kBadHeader;
|
|
|
|
}
|
|
|
|
buffer_.clear();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// return true if the caller should process the fragment_type_or_err.
|
|
|
|
bool FragmentBufferedReader::TryReadFragment(
|
|
|
|
Slice* fragment, size_t* drop_size, unsigned int* fragment_type_or_err) {
|
|
|
|
assert(fragment != nullptr);
|
|
|
|
assert(drop_size != nullptr);
|
|
|
|
assert(fragment_type_or_err != nullptr);
|
|
|
|
|
|
|
|
while (buffer_.size() < static_cast<size_t>(kHeaderSize)) {
|
|
|
|
size_t old_size = buffer_.size();
|
|
|
|
int error = kEof;
|
|
|
|
if (!TryReadMore(drop_size, &error)) {
|
|
|
|
*fragment_type_or_err = error;
|
|
|
|
return false;
|
|
|
|
} else if (old_size == buffer_.size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const char* header = buffer_.data();
|
|
|
|
const uint32_t a = static_cast<uint32_t>(header[4]) & 0xff;
|
|
|
|
const uint32_t b = static_cast<uint32_t>(header[5]) & 0xff;
|
|
|
|
const unsigned int type = header[6];
|
|
|
|
const uint32_t length = a | (b << 8);
|
|
|
|
int header_size = kHeaderSize;
|
|
|
|
if (type >= kRecyclableFullType && type <= kRecyclableLastType) {
|
|
|
|
if (end_of_buffer_offset_ - buffer_.size() == 0) {
|
|
|
|
recycled_ = true;
|
|
|
|
}
|
|
|
|
header_size = kRecyclableHeaderSize;
|
|
|
|
while (buffer_.size() < static_cast<size_t>(kRecyclableHeaderSize)) {
|
|
|
|
size_t old_size = buffer_.size();
|
|
|
|
int error = kEof;
|
|
|
|
if (!TryReadMore(drop_size, &error)) {
|
|
|
|
*fragment_type_or_err = error;
|
|
|
|
return false;
|
|
|
|
} else if (old_size == buffer_.size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const uint32_t log_num = DecodeFixed32(header + 7);
|
|
|
|
if (log_num != log_number_) {
|
|
|
|
*fragment_type_or_err = kOldRecord;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (header_size + length > buffer_.size()) {
|
|
|
|
size_t old_size = buffer_.size();
|
|
|
|
int error = kEof;
|
|
|
|
if (!TryReadMore(drop_size, &error)) {
|
|
|
|
*fragment_type_or_err = error;
|
|
|
|
return false;
|
|
|
|
} else if (old_size == buffer_.size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type == kZeroType && length == 0) {
|
|
|
|
buffer_.clear();
|
|
|
|
*fragment_type_or_err = kBadRecord;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (checksum_) {
|
|
|
|
uint32_t expected_crc = crc32c::Unmask(DecodeFixed32(header));
|
|
|
|
uint32_t actual_crc = crc32c::Value(header + 6, length + header_size - 6);
|
|
|
|
if (actual_crc != expected_crc) {
|
|
|
|
*drop_size = buffer_.size();
|
|
|
|
buffer_.clear();
|
|
|
|
*fragment_type_or_err = kBadRecordChecksum;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer_.remove_prefix(header_size + length);
|
|
|
|
|
|
|
|
*fragment = Slice(header + header_size, length);
|
|
|
|
*fragment_type_or_err = type;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-10-31 18:22:06 +01:00
|
|
|
} // namespace log
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|