-
Notifications
You must be signed in to change notification settings - Fork 988
/
Copy pathApplyCheckpointWork.cpp
444 lines (403 loc) · 14.2 KB
/
ApplyCheckpointWork.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
// Copyright 2015 Stellar Development Foundation and contributors. Licensed
// under the Apache License, Version 2.0. See the COPYING file at the root
// of this distribution or at http://www.apache.org/licenses/LICENSE-2.0
#include "catchup/ApplyCheckpointWork.h"
#include "bucket/BucketManager.h"
#include "bucket/LiveBucketList.h"
#include "catchup/ApplyLedgerWork.h"
#include "history/FileTransferInfo.h"
#include "history/HistoryManager.h"
#include "historywork/Progress.h"
#include "ledger/CheckpointRange.h"
#include "ledger/LedgerManager.h"
#include "main/Application.h"
#include "util/GlobalChecks.h"
#include "util/XDRCereal.h"
#include <Tracy.hpp>
#include <fmt/format.h>
#include <optional>
namespace stellar
{
ApplyCheckpointWork::ApplyCheckpointWork(Application& app,
TmpDir const& downloadDir,
LedgerRange const& range,
OnFailureCallback cb)
: BasicWork(app,
"apply-ledgers-" + fmt::format(FMT_STRING("{}-{}"),
range.mFirst, range.limit()),
BasicWork::RETRY_NEVER)
, mDownloadDir(downloadDir)
, mLedgerRange(range)
, mCheckpoint(
app.getHistoryManager().checkpointContainingLedger(range.mFirst))
, mOnFailure(cb)
{
// Ledger range check to enforce application of a single checkpoint
auto const& hm = mApp.getHistoryManager();
auto low = hm.firstLedgerInCheckpointContaining(mCheckpoint);
if (mLedgerRange.mFirst != low)
{
throw std::runtime_error(
"Ledger range start must be aligned with checkpoint start");
}
if (mLedgerRange.mCount > 0 && mLedgerRange.last() > mCheckpoint)
{
throw std::runtime_error(
"Ledger range must span at most 1 checkpoint worth of ledgers");
}
}
std::string
ApplyCheckpointWork::getStatus() const
{
if (getState() == State::WORK_RUNNING)
{
auto lcl = mApp.getLedgerManager().getLastClosedLedgerNum();
return fmt::format(FMT_STRING("Last applied ledger: {:d}"), lcl);
}
return BasicWork::getStatus();
}
void
ApplyCheckpointWork::closeFiles()
{
mHdrIn.close();
mTxIn.close();
mFilesOpen = false;
}
void
ApplyCheckpointWork::onReset()
{
mConditionalWork.reset();
closeFiles();
}
void
ApplyCheckpointWork::openInputFiles()
{
ZoneScoped;
mHdrIn.close();
mTxIn.close();
FileTransferInfo hi(mDownloadDir, FileType::HISTORY_FILE_TYPE_LEDGER,
mCheckpoint);
FileTransferInfo ti(mDownloadDir, FileType::HISTORY_FILE_TYPE_TRANSACTIONS,
mCheckpoint);
CLOG_DEBUG(History, "Replaying ledger headers from {}",
hi.localPath_nogz());
CLOG_DEBUG(History, "Replaying transactions from {}", ti.localPath_nogz());
mHdrIn.open(hi.localPath_nogz());
mTxIn.open(ti.localPath_nogz());
mTxHistoryEntry = TransactionHistoryEntry();
mHeaderHistoryEntry = LedgerHeaderHistoryEntry();
#ifdef BUILD_TESTS
if (mApp.getConfig().CATCHUP_SKIP_KNOWN_RESULTS_FOR_TESTING)
{
mTxResultIn = std::make_optional<XDRInputFileStream>();
FileTransferInfo tri(mDownloadDir, FileType::HISTORY_FILE_TYPE_RESULTS,
mCheckpoint);
if (!tri.localPath_nogz().empty() &&
std::filesystem::exists(tri.localPath_nogz()))
{
CLOG_DEBUG(History, "Replaying transaction results from {}",
tri.localPath_nogz());
try
{
mTxResultIn->open(tri.localPath_nogz());
}
catch (std::exception const& e)
{
CLOG_DEBUG(History,
"Failed to open transaction results file: {}. All "
"transactions will be applied.",
e.what());
}
mTxHistoryResultEntry =
std::make_optional<TransactionHistoryResultEntry>();
}
else
{
CLOG_DEBUG(History,
"Results file {} not found for checkpoint {} . All "
"transactions will be applied for this checkpoint.",
tri.localPath_nogz(), mCheckpoint);
mTxHistoryResultEntry = std::nullopt;
}
}
#endif
mFilesOpen = true;
}
TxSetXDRFrameConstPtr
ApplyCheckpointWork::getCurrentTxSet()
{
ZoneScoped;
auto& lm = mApp.getLedgerManager();
auto seq = lm.getLastClosedLedgerNum() + 1;
// Check mTxHistoryEntry prior to loading next history entry.
// This order is important because it accounts for ledger "gaps"
// in the history archives (which are caused by ledgers with empty tx
// sets, as those are not uploaded).
do
{
if (mTxHistoryEntry.ledgerSeq < seq)
{
CLOG_DEBUG(History, "Skipping txset for ledger {}",
mTxHistoryEntry.ledgerSeq);
}
else if (mTxHistoryEntry.ledgerSeq > seq)
{
break;
}
else
{
releaseAssert(mTxHistoryEntry.ledgerSeq == seq);
CLOG_DEBUG(History, "Loaded txset for ledger {}", seq);
if (mTxHistoryEntry.ext.v() == 0)
{
return TxSetXDRFrame::makeFromWire(mTxHistoryEntry.txSet);
}
else
{
return TxSetXDRFrame::makeFromWire(
mTxHistoryEntry.ext.generalizedTxSet());
}
}
} while (mTxIn && mTxIn.readOne(mTxHistoryEntry));
CLOG_DEBUG(History, "Using empty txset for ledger {}", seq);
return TxSetXDRFrame::makeEmpty(lm.getLastClosedLedgerHeader());
}
#ifdef BUILD_TESTS
std::optional<TransactionResultSet>
ApplyCheckpointWork::getCurrentTxResultSet()
{
ZoneScoped;
auto& lm = mApp.getLedgerManager();
auto seq = lm.getLastClosedLedgerNum() + 1;
// Check mTxResultSet prior to loading next result set.
// This order is important because it accounts for ledger "gaps"
// in the history archives (which are caused by ledgers with empty tx
// sets, as those are not uploaded).
while (mTxResultIn && mTxResultIn->readOne(*mTxHistoryResultEntry))
{
if (mTxHistoryResultEntry)
{
if (mTxHistoryResultEntry->ledgerSeq < seq)
{
CLOG_DEBUG(History, "Advancing past txresultset for ledger {}",
mTxHistoryResultEntry->ledgerSeq);
}
else if (mTxHistoryResultEntry->ledgerSeq > seq)
{
break;
}
else
{
releaseAssert(mTxHistoryResultEntry->ledgerSeq == seq);
CLOG_DEBUG(History, "Loaded txresultset for ledger {}", seq);
return std::make_optional(mTxHistoryResultEntry->txResultSet);
}
}
}
CLOG_DEBUG(History, "No txresultset for ledger {}", seq);
return std::nullopt;
}
#endif // BUILD_TESTS
std::shared_ptr<LedgerCloseData>
ApplyCheckpointWork::getNextLedgerCloseData()
{
ZoneScoped;
if (!mHdrIn || !mHdrIn.readOne(mHeaderHistoryEntry))
{
throw std::runtime_error("No more ledgers to replay!");
}
LedgerHeader& header = mHeaderHistoryEntry.header;
auto& lm = mApp.getLedgerManager();
auto const& lclHeader = lm.getLastClosedLedgerHeader();
// If we are >1 before LCL, skip
if (header.ledgerSeq + 1 < lclHeader.header.ledgerSeq)
{
CLOG_DEBUG(History, "Catchup skipping old ledger {}", header.ledgerSeq);
return nullptr;
}
// If we are one before LCL, check that we knit up with it
if (header.ledgerSeq + 1 == lclHeader.header.ledgerSeq)
{
if (mHeaderHistoryEntry.hash != lclHeader.header.previousLedgerHash)
{
throw std::runtime_error(fmt::format(
FMT_STRING("replay of {:s} failed to connect on hash of LCL "
"predecessor {:s}"),
LedgerManager::ledgerAbbrev(mHeaderHistoryEntry),
LedgerManager::ledgerAbbrev(
lclHeader.header.ledgerSeq - 1,
lclHeader.header.previousLedgerHash)));
}
CLOG_DEBUG(History, "Catchup at 1-before LCL ({}), hash correct",
header.ledgerSeq);
return nullptr;
}
// If we are at LCL, check that we knit up with it
if (header.ledgerSeq == lclHeader.header.ledgerSeq)
{
if (mHeaderHistoryEntry.hash != lm.getLastClosedLedgerHeader().hash)
{
throw std::runtime_error(fmt::format(
FMT_STRING("replay of {:s} at LCL {:s} disagreed on hash"),
LedgerManager::ledgerAbbrev(mHeaderHistoryEntry),
LedgerManager::ledgerAbbrev(lclHeader)));
}
CLOG_DEBUG(History, "Catchup at LCL={}, hash correct",
header.ledgerSeq);
return nullptr;
}
// If we are past current, we can't catch up: fail.
if (header.ledgerSeq != lclHeader.header.ledgerSeq + 1)
{
throw std::runtime_error(fmt::format(
FMT_STRING("replay overshot current ledger: {:d} > {:d}"),
header.ledgerSeq, lclHeader.header.ledgerSeq + 1));
}
// If we do not agree about LCL hash, we can't catch up: fail.
if (header.previousLedgerHash != lm.getLastClosedLedgerHeader().hash)
{
throw std::runtime_error(fmt::format(
FMT_STRING(
"replay at current ledger {:s} disagreed on LCL hash {:s}"),
LedgerManager::ledgerAbbrev(header.ledgerSeq - 1,
header.previousLedgerHash),
LedgerManager::ledgerAbbrev(lclHeader)));
}
auto txset = getCurrentTxSet();
CLOG_DEBUG(History, "Ledger {} has {} transactions", header.ledgerSeq,
txset->sizeTxTotal());
std::optional<TransactionResultSet> txres = std::nullopt;
#ifdef BUILD_TESTS
if (mApp.getConfig().CATCHUP_SKIP_KNOWN_RESULTS_FOR_TESTING)
{
txres = getCurrentTxResultSet();
}
#endif
// We've verified the ledgerHeader (in the "trusted part of history"
// sense) in CATCHUP_VERIFY phase; we now need to check that the
// txhash we're about to apply is the one denoted by that ledger
// header.
if (header.scpValue.txSetHash != txset->getContentsHash())
{
throw std::runtime_error(
fmt::format(FMT_STRING("replay txset hash differs from txset hash "
"in replay ledger: hash "
"for txset for {:d} is {:s}, expected {:s}"),
header.ledgerSeq, hexAbbrev(txset->getContentsHash()),
hexAbbrev(header.scpValue.txSetHash)));
}
#ifdef BUILD_TESTS
if (mApp.getConfig()
.ARTIFICIALLY_REPLAY_WITH_NEWEST_BUCKET_LOGIC_FOR_TESTING)
{
auto& bm = mApp.getBucketManager();
CLOG_INFO(History,
"Forcing bucket manager to use version {} with hash {}",
mApp.getConfig().LEDGER_PROTOCOL_VERSION,
hexAbbrev(header.bucketListHash));
bm.setNextCloseVersionAndHashForTesting(
mApp.getConfig().LEDGER_PROTOCOL_VERSION, header.bucketListHash);
}
return std::make_shared<LedgerCloseData>(
header.ledgerSeq, txset, header.scpValue,
std::make_optional<Hash>(mHeaderHistoryEntry.hash), txres);
#else
return std::make_shared<LedgerCloseData>(
header.ledgerSeq, txset, header.scpValue,
std::make_optional<Hash>(mHeaderHistoryEntry.hash));
#endif
}
BasicWork::State
ApplyCheckpointWork::onRun()
{
ZoneScoped;
if (mConditionalWork)
{
mConditionalWork->crankWork();
if (mConditionalWork->getState() == State::WORK_SUCCESS)
{
auto& lm = mApp.getLedgerManager();
CLOG_DEBUG(History, "{}",
xdrToCerealString(lm.getLastClosedLedgerHeader(),
"LedgerManager LCL"));
CLOG_DEBUG(History, "{}",
xdrToCerealString(mHeaderHistoryEntry, "Replay header"));
if (lm.getLastClosedLedgerHeader().hash != mHeaderHistoryEntry.hash)
{
throw std::runtime_error(fmt::format(
FMT_STRING(
"replay of {:s} produced mismatched ledger hash {:s}"),
LedgerManager::ledgerAbbrev(mHeaderHistoryEntry),
LedgerManager::ledgerAbbrev(
lm.getLastClosedLedgerHeader())));
}
mApp.getCatchupManager().txSetsApplied();
}
else
{
return mConditionalWork->getState();
}
}
auto const& lm = mApp.getLedgerManager();
auto done = (mLedgerRange.mCount == 0 ||
lm.getLastClosedLedgerNum() == mLedgerRange.last());
if (done)
{
closeFiles();
return State::WORK_SUCCESS;
}
if (!mFilesOpen)
{
openInputFiles();
}
auto lcd = getNextLedgerCloseData();
if (!lcd)
{
return State::WORK_RUNNING;
}
auto applyLedger = std::make_shared<ApplyLedgerWork>(mApp, *lcd);
auto predicate = [](Application& app) {
auto& bl = app.getBucketManager().getLiveBucketList();
auto& lm = app.getLedgerManager();
bl.resolveAnyReadyFutures();
return bl.futuresAllResolved(
bl.getMaxMergeLevel(lm.getLastClosedLedgerNum() + 1));
};
mConditionalWork = std::make_shared<ConditionalWork>(
mApp,
fmt::format(FMT_STRING("apply-ledger-conditional ledger({:d})"),
lcd->getLedgerSeq()),
predicate, applyLedger, std::chrono::milliseconds(500));
mConditionalWork->startWork(wakeSelfUpCallback());
return State::WORK_RUNNING;
}
void
ApplyCheckpointWork::shutdown()
{
ZoneScoped;
if (mConditionalWork)
{
mConditionalWork->shutdown();
}
BasicWork::shutdown();
}
bool
ApplyCheckpointWork::onAbort()
{
ZoneScoped;
if (mConditionalWork && !mConditionalWork->isDone())
{
mConditionalWork->crankWork();
return false;
}
return true;
}
void
ApplyCheckpointWork::onFailureRaise()
{
if (mOnFailure)
{
mOnFailure();
}
}
}