forked from facebook/wdt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Receiver.cpp
561 lines (514 loc) · 18.9 KB
/
Receiver.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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
/**
* Copyright (c) 2014-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#include <wdt/Receiver.h>
#include <wdt/util/EncryptionUtils.h>
#include <wdt/util/ServerSocket.h>
#include <folly/lang/Bits.h>
#include <folly/Conv.h>
#include <fcntl.h>
#include <gflags/gflags.h>
#include <glog/logging.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <thread>
namespace facebook {
namespace wdt {
void Receiver::addCheckpoint(Checkpoint checkpoint) {
WLOG(INFO) << "Adding global checkpoint " << checkpoint.port << " "
<< checkpoint.numBlocks << " "
<< checkpoint.lastBlockReceivedBytes;
checkpoints_.emplace_back(checkpoint);
}
std::vector<Checkpoint> Receiver::getNewCheckpoints(int startIndex) {
std::vector<Checkpoint> checkpoints;
const int64_t numCheckpoints = checkpoints_.size();
for (int64_t i = startIndex; i < numCheckpoints; i++) {
checkpoints.emplace_back(checkpoints_[i]);
}
return checkpoints;
}
Receiver::Receiver(const WdtTransferRequest &transferRequest) {
WLOG(INFO) << "WDT Receiver " << Protocol::getFullVersion();
transferRequest_ = transferRequest;
}
Receiver::Receiver(int port, int numSockets, const std::string &destDir)
: Receiver(WdtTransferRequest(port, numSockets, destDir)) {
}
void Receiver::traverseDestinationDir(
std::vector<FileChunksInfo> &fileChunksInfo) {
DirectorySourceQueue dirQueue(options_, getDirectory(),
&abortCheckerCallback_);
dirQueue.buildQueueSynchronously();
auto &discoveredFilesInfo = dirQueue.getDiscoveredFilesMetaData();
for (auto &fileInfo : discoveredFilesInfo) {
if (fileInfo->relPath == kWdtLogName ||
fileInfo->relPath == kWdtBuggyLogName) {
// do not include wdt log files
WVLOG(1) << "Removing " << fileInfo->relPath
<< " from the list of existing files";
continue;
}
FileChunksInfo chunkInfo(fileInfo->seqId, fileInfo->relPath,
fileInfo->size);
chunkInfo.addChunk(Interval(0, fileInfo->size));
fileChunksInfo.emplace_back(std::move(chunkInfo));
}
return;
}
void Receiver::startNewGlobalSession(const std::string &peerIp) {
if (throttler_) {
// If throttler is configured/set then register this session
// in the throttler. This is guranteed to work in either of the
// modes long running or not. We will de register from the throttler
// when the current session ends
throttler_->startTransfer();
}
startTime_ = Clock::now();
if (options_.enable_download_resumption) {
transferLogManager_->startThread();
bool verifySuccessful = transferLogManager_->verifySenderIp(peerIp);
if (!verifySuccessful) {
fileChunksInfo_.clear();
}
}
hasNewTransferStarted_.store(true);
WLOG(INFO) << "Starting new transfer, peerIp " << peerIp << " , transfer id "
<< getTransferId();
}
bool Receiver::hasNewTransferStarted() const {
return hasNewTransferStarted_.load();
}
void Receiver::endCurGlobalSession() {
setTransferStatus(FINISHED);
if (!hasNewTransferStarted_) {
WLOG(WARNING) << "WDT transfer did not start, no need to end session";
return;
}
WLOG(INFO) << "Ending the transfer " << getTransferId();
if (throttler_) {
throttler_->endTransfer();
}
checkpoints_.clear();
if (fileCreator_) {
fileCreator_->clearAllocationMap();
}
// TODO might consider moving closing the transfer log here
hasNewTransferStarted_.store(false);
}
const WdtTransferRequest &Receiver::init() {
if (validateTransferRequest() != OK) {
WLOG(ERROR) << "Couldn't validate the transfer request "
<< transferRequest_.getLogSafeString();
return transferRequest_;
}
transferLogManager_ =
std::make_unique<TransferLogManager>(options_, getDirectory());
checkAndUpdateBufferSize();
backlog_ = options_.backlog;
if (getTransferId().empty()) {
setTransferId(WdtBase::generateTransferId());
}
negotiateProtocol();
auto numThreads = transferRequest_.ports.size();
// This creates the destination directory (which is needed for transferLogMgr)
fileCreator_.reset(new FileCreator(
getDirectory(), numThreads, *transferLogManager_, options_.skip_writes));
transferRequest_.downloadResumptionEnabled =
options_.enable_download_resumption;
// Make sure we can get the lock on the transfer log manager early
// so if we can't we don't generate a valid but useless url and end up
// starting a sender doomed to fail
if (options_.enable_download_resumption) {
WDT_CHECK(!options_.skip_writes)
<< "Can not skip transfers with download resumption turned on";
if (options_.resume_using_dir_tree) {
WDT_CHECK(!options_.shouldPreallocateFiles())
<< "Can not resume using directory tree if preallocation is enabled";
}
ErrorCode errCode = transferLogManager_->openLog();
if (errCode != OK) {
WLOG(ERROR) << "Failed to open transfer log " << errorCodeToStr(errCode);
transferRequest_.errorCode = errCode;
return transferRequest_;
}
ErrorCode code = transferLogManager_->parseAndMatch(
recoveryId_, getTransferConfig(), fileChunksInfo_);
if (code == OK && options_.resume_using_dir_tree) {
WDT_CHECK(fileChunksInfo_.empty());
traverseDestinationDir(fileChunksInfo_);
}
}
EncryptionType encryptionType = parseEncryptionType(options_.encryption_type);
// is encryption enabled?
bool encrypt = (encryptionType != ENC_NONE &&
getProtocolVersion() >= Protocol::ENCRYPTION_V1_VERSION);
if (encrypt) {
WLOG(INFO) << encryptionTypeToStr(encryptionType)
<< " encryption is enabled for this transfer ";
if (!transferRequest_.encryptionData.isSet()) {
WLOG(INFO) << "Receiver generating encryption key for type "
<< encryptionTypeToStr(encryptionType);
transferRequest_.encryptionData =
EncryptionParams::generateEncryptionParams(encryptionType);
}
if (!transferRequest_.encryptionData.isSet()) {
WLOG(ERROR) << "Unable to generate encryption key for type "
<< encryptionTypeToStr(encryptionType);
transferRequest_.errorCode = ENCRYPTION_ERROR;
return transferRequest_;
}
} else {
if (encryptionType != ENC_NONE) {
WLOG(WARNING) << "Encryption is enabled, but protocol version is "
<< getProtocolVersion()
<< ", minimum version required for encryption is "
<< Protocol::ENCRYPTION_V1_VERSION;
}
transferRequest_.encryptionData.erase();
}
transferRequest_.ivChangeInterval = options_.iv_change_interval_mb * kMbToB;
if (options_.max_accept_retries <= 0) {
WLOG(INFO) << "Max accept retries " << options_.max_accept_retries
<< ", will accept forever";
setAcceptMode(ACCEPT_FOREVER);
}
threadsController_ = new ThreadsController(numThreads);
threadsController_->setNumFunnels(ReceiverThread::NUM_FUNNELS);
threadsController_->setNumBarriers(ReceiverThread::NUM_BARRIERS);
threadsController_->setNumConditions(ReceiverThread::NUM_CONDITIONS);
// TODO: take transferRequest directly !
receiverThreads_ = threadsController_->makeThreads<Receiver, ReceiverThread>(
this, transferRequest_.ports.size(), transferRequest_.ports);
size_t numSuccessfulInitThreads = 0;
for (auto &receiverThread : receiverThreads_) {
ErrorCode code = receiverThread->init();
if (code == OK) {
++numSuccessfulInitThreads;
}
}
WLOG(INFO) << "Registered " << numSuccessfulInitThreads
<< " successful sockets";
ErrorCode code = OK;
const size_t targetSize = transferRequest_.ports.size();
// TODO: replace with getNumPorts/thread
if (numSuccessfulInitThreads != targetSize) {
code = FEWER_PORTS;
if (numSuccessfulInitThreads == 0) {
code = ERROR;
}
}
transferRequest_.ports.clear();
for (const auto &receiverThread : receiverThreads_) {
transferRequest_.ports.push_back(receiverThread->getPort());
}
if (transferRequest_.hostName.empty()) {
char hostName[1024];
int ret = gethostname(hostName, sizeof(hostName));
if (ret == 0) {
transferRequest_.hostName.assign(hostName);
} else {
WPLOG(ERROR) << "Couldn't find the local host name";
code = ERROR;
}
}
transferRequest_.errorCode = code;
return transferRequest_;
}
TransferLogManager &Receiver::getTransferLogManager() {
return *transferLogManager_;
}
std::unique_ptr<FileCreator> &Receiver::getFileCreator() {
return fileCreator_;
}
void Receiver::setRecoveryId(const std::string &recoveryId) {
recoveryId_ = recoveryId;
WLOG(INFO) << "recovery id " << recoveryId_;
}
void Receiver::setAcceptMode(const AcceptMode acceptMode) {
std::lock_guard<std::mutex> lock(mutex_);
acceptMode_ = acceptMode;
}
Receiver::AcceptMode Receiver::getAcceptMode() {
std::lock_guard<std::mutex> lock(mutex_);
return acceptMode_;
}
Receiver::~Receiver() {
TransferStatus status = getTransferStatus();
if (status == ONGOING) {
WLOG(WARNING) << "There is an ongoing transfer and the destructor"
<< " is being called. Trying to finish the transfer";
abort(ABORTED_BY_APPLICATION);
}
finish();
}
const std::vector<FileChunksInfo> &Receiver::getFileChunksInfo() const {
return fileChunksInfo_;
}
int64_t Receiver::getTransferConfig() const {
int64_t config = 0;
if (options_.shouldPreallocateFiles()) {
config = 1;
}
if (options_.resume_using_dir_tree) {
config |= (1 << 1);
}
return config;
}
std::unique_ptr<TransferReport> Receiver::finish() {
std::unique_lock<std::mutex> instanceLock(instanceManagementMutex_);
TransferStatus status = getTransferStatus();
if (status == NOT_STARTED) {
WLOG(WARNING) << "Even though transfer has not started, finish is called";
// getTransferReport will set the error code to ERROR
return getTransferReport();
}
if (status == THREADS_JOINED) {
WLOG(WARNING) << "Threads have already been joined. Returning the "
<< "transfer report";
return getTransferReport();
}
if (!isJoinable_) {
// TODO: don't complain about this when coming from runForever()
WLOG(WARNING) << "The receiver is not joinable. The threads will never"
<< " finish and this method will never return";
}
for (auto &receiverThread : receiverThreads_) {
receiverThread->finish();
}
setTransferStatus(THREADS_JOINED);
if (isJoinable_) {
// Make sure to join the progress thread.
progressTrackerThread_.join();
}
std::unique_ptr<TransferReport> report = getTransferReport();
auto &summary = report->getSummary();
bool transferSuccess = (report->getSummary().getErrorCode() == OK);
fixAndCloseTransferLog(transferSuccess);
auto totalSenderBytes = summary.getTotalSenderBytes();
if (progressReporter_ && totalSenderBytes >= 0) {
report->setTotalFileSize(totalSenderBytes);
report->setTotalTime(durationSeconds(Clock::now() - startTime_));
progressReporter_->end(report);
}
logPerfStats();
WLOG(WARNING) << "WDT receiver's transfer has been finished";
WLOG(INFO) << *report;
return report;
}
std::unique_ptr<TransferReport> Receiver::getTransferReport() {
TransferStats globalStats;
for (const auto &receiverThread : receiverThreads_) {
globalStats += receiverThread->getTransferStats();
}
std::unique_ptr<TransferReport> transferReport =
std::make_unique<TransferReport>(std::move(globalStats));
TransferStatus status = getTransferStatus();
ErrorCode errCode = transferReport->getSummary().getErrorCode();
if (status == NOT_STARTED && errCode == OK) {
WLOG(INFO) << "Transfer not started, setting the error code to ERROR";
transferReport->setErrorCode(ERROR);
}
WVLOG(1) << "Summary code " << errCode;
return transferReport;
}
ErrorCode Receiver::transferAsync() {
isJoinable_ = true;
int progressReportIntervalMillis = options_.progress_report_interval_millis;
if (!progressReporter_ && progressReportIntervalMillis > 0) {
// if progress reporter has not been set, use the default one
progressReporter_ = std::make_unique<ProgressReporter>(transferRequest_);
}
return start();
}
ErrorCode Receiver::runForever() {
WDT_CHECK(!options_.enable_download_resumption)
<< "Transfer resumption not supported in long running mode";
// Enforce the full reporting to be false in the daemon mode.
// These statistics are expensive, and useless as they will never
// be received/reviewed in a forever running process.
ErrorCode errCode = start();
if (errCode != OK) {
return errCode;
}
finish();
// This method should never finish
return ERROR;
}
void Receiver::progressTracker() {
// Progress tracker will check for progress after the time specified
// in milliseconds.
int progressReportIntervalMillis = options_.progress_report_interval_millis;
int throughputUpdateIntervalMillis =
options_.throughput_update_interval_millis;
if (progressReportIntervalMillis <= 0 || throughputUpdateIntervalMillis < 0 ||
!isJoinable_) {
return;
}
int throughputUpdateInterval =
throughputUpdateIntervalMillis / progressReportIntervalMillis;
int64_t lastEffectiveBytes = 0;
std::chrono::time_point<Clock> lastUpdateTime = Clock::now();
int intervalsSinceLastUpdate = 0;
double currentThroughput = 0;
WLOG(INFO) << "Progress reporter updating every "
<< progressReportIntervalMillis << " ms";
auto waitingTime = std::chrono::milliseconds(progressReportIntervalMillis);
int64_t totalSenderBytes = -1;
while (true) {
{
std::unique_lock<std::mutex> lock(mutex_);
conditionFinished_.wait_for(lock, waitingTime);
if (transferStatus_ == THREADS_JOINED) {
break;
}
}
double totalTime = durationSeconds(Clock::now() - startTime_);
TransferStats globalStats;
for (const auto &receiverThread : receiverThreads_) {
globalStats += receiverThread->getTransferStats();
}
totalSenderBytes = globalStats.getTotalSenderBytes();
// Note: totalSenderBytes may not be valid yet if sender has not
// completed file discovery. But that's ok, report whatever progress
// we can.
auto transferReport = std::make_unique<TransferReport>(
std::move(globalStats), totalTime, totalSenderBytes, 0, true);
intervalsSinceLastUpdate++;
if (intervalsSinceLastUpdate >= throughputUpdateInterval) {
auto curTime = Clock::now();
int64_t curEffectiveBytes =
transferReport->getSummary().getEffectiveDataBytes();
double time = durationSeconds(curTime - lastUpdateTime);
currentThroughput = (curEffectiveBytes - lastEffectiveBytes) / time;
lastEffectiveBytes = curEffectiveBytes;
lastUpdateTime = curTime;
intervalsSinceLastUpdate = 0;
}
transferReport->setCurrentThroughput(currentThroughput);
progressReporter_->progress(transferReport);
if (reportPerfSignal_.notified()) {
logPerfStats();
}
}
}
void Receiver::logPerfStats() const {
if (!options_.enable_perf_stat_collection) {
return;
}
PerfStatReport globalPerfReport(options_);
for (auto &receiverThread : receiverThreads_) {
globalPerfReport += receiverThread->getPerfReport();
}
WLOG(INFO) << globalPerfReport;
}
ErrorCode Receiver::start() {
WDT_CHECK_EQ(getTransferStatus(), NOT_STARTED)
<< "There is already a transfer running on this instance of receiver";
startTime_ = Clock::now();
WLOG(INFO) << "Starting (receiving) server on ports [ "
<< transferRequest_.ports << "] Target dir : " << getDirectory();
// TODO do the init stuff here
if (!throttler_) {
configureThrottler();
} else {
WLOG(INFO) << "Throttler set externally. Throttler : " << *throttler_;
}
setTransferStatus(ONGOING);
while (true) {
for (auto &receiverThread : receiverThreads_) {
receiverThread->startThread();
}
if (isJoinable_) {
break;
}
// If it is long running mode, finish the threads
// processing the current transfer and re spawn them again
// with the same sockets
for (auto &receiverThread : receiverThreads_) {
receiverThread->finish();
receiverThread->reset();
}
threadsController_->reset();
// reset transfer status
setTransferStatus(NOT_STARTED);
continue;
}
if (isJoinable_) {
if (progressReporter_) {
progressReporter_->start();
}
std::thread trackerThread(&Receiver::progressTracker, this);
progressTrackerThread_ = std::move(trackerThread);
}
return OK;
}
void Receiver::addTransferLogHeader(bool isBlockMode, bool isSenderResuming) {
if (!options_.enable_download_resumption) {
return;
}
bool invalidationEntryNeeded = false;
if (!isSenderResuming) {
WLOG(INFO) << "Sender is not in resumption mode. Invalidating directory.";
invalidationEntryNeeded = true;
} else if (options_.resume_using_dir_tree && isBlockMode) {
WLOG(INFO) << "Sender is running in block mode, but receiver is running in "
"size based resumption mode. Invalidating directory.";
invalidationEntryNeeded = true;
}
if (invalidationEntryNeeded) {
transferLogManager_->invalidateDirectory();
}
bool isInconsistentDirectory =
(transferLogManager_->getResumptionStatus() == INCONSISTENT_DIRECTORY);
bool shouldWriteHeader =
(!options_.resume_using_dir_tree || !isInconsistentDirectory);
if (shouldWriteHeader) {
transferLogManager_->writeLogHeader();
}
}
void Receiver::fixAndCloseTransferLog(bool transferSuccess) {
if (!options_.enable_download_resumption) {
return;
}
bool isInconsistentDirectory =
(transferLogManager_->getResumptionStatus() == INCONSISTENT_DIRECTORY);
bool isInvalidLog =
(transferLogManager_->getResumptionStatus() == INVALID_LOG);
if (transferSuccess && isInconsistentDirectory) {
// write log header to validate directory in case of success
WDT_CHECK(options_.resume_using_dir_tree);
transferLogManager_->writeLogHeader();
}
if (options_.enable_transfer_log_compaction && transferSuccess &&
!isInvalidLog && options_.keep_transfer_log &&
!options_.resume_using_dir_tree) {
transferLogManager_->compactLog();
} else {
WLOG(INFO) << "Skip compacting transfer log";
WVLOG(1) << "options_.enable_transfer_log_compaction="
<< options_.enable_transfer_log_compaction
<< " isInvalidLog=" << isInvalidLog
<< " options_.keep_transfer_log=" << options_.keep_transfer_log
<< " options_.resume_using_dir_tree="
<< options_.resume_using_dir_tree;
}
transferLogManager_->closeLog();
if (!transferSuccess) {
return;
}
if (isInvalidLog) {
transferLogManager_->renameBuggyLog();
}
if (!options_.keep_transfer_log) {
transferLogManager_->unlink();
}
}
}
} // namespace facebook::wdt