123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- /* <!-- copyright */
- /*
- * aria2 - The high speed download utility
- *
- * Copyright (C) 2006 Tatsuhiro Tsujikawa
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * In addition, as a special exception, the copyright holders give
- * permission to link the code of portions of this program with the
- * OpenSSL library under certain conditions as described in each
- * individual source file, and distribute linked combinations
- * including the two.
- * You must obey the GNU General Public License in all respects
- * for all of the code used other than OpenSSL. If you modify
- * file(s) with this exception, you may extend this exception to your
- * version of the file(s), but you are not obligated to do so. If you
- * do not wish to do so, delete this exception statement from your
- * version. If you delete this exception statement from all source
- * files in the program, then also delete it here.
- */
- /* copyright --> */
- #include "BtPieceMessage.h"
- #include <cstring>
- #include <cstdlib>
- #include <cassert>
- #include "bittorrent_helper.h"
- #include "util.h"
- #include "message.h"
- #include "DlAbortEx.h"
- #include "message_digest_helper.h"
- #include "DiskAdaptor.h"
- #include "Logger.h"
- #include "LogFactory.h"
- #include "Peer.h"
- #include "Piece.h"
- #include "PieceStorage.h"
- #include "BtMessageDispatcher.h"
- #include "BtMessageFactory.h"
- #include "BtRequestFactory.h"
- #include "PeerConnection.h"
- #include "fmt.h"
- #include "DownloadContext.h"
- #include "PeerStorage.h"
- #include "array_fun.h"
- #include "WrDiskCache.h"
- #include "WrDiskCacheEntry.h"
- #include "DownloadFailureException.h"
- #include "BtRejectMessage.h"
- namespace aria2 {
- const char BtPieceMessage::NAME[] = "piece";
- BtPieceMessage::BtPieceMessage(size_t index, int32_t begin, int32_t blockLength)
- : AbstractBtMessage(ID, NAME),
- index_(index),
- begin_(begin),
- blockLength_(blockLength),
- data_(nullptr),
- downloadContext_(nullptr),
- peerStorage_(nullptr)
- {
- setUploading(true);
- }
- BtPieceMessage::~BtPieceMessage() {}
- void BtPieceMessage::setMsgPayload(const unsigned char* data) { data_ = data; }
- std::unique_ptr<BtPieceMessage>
- BtPieceMessage::create(const unsigned char* data, size_t dataLength)
- {
- bittorrent::assertPayloadLengthGreater(9, dataLength, NAME);
- bittorrent::assertID(ID, data, NAME);
- return make_unique<BtPieceMessage>(bittorrent::getIntParam(data, 1),
- bittorrent::getIntParam(data, 5),
- dataLength - 9);
- }
- void BtPieceMessage::doReceivedAction()
- {
- if (isMetadataGetMode()) {
- return;
- }
- auto slot = getBtMessageDispatcher()->getOutstandingRequest(index_, begin_,
- blockLength_);
- getPeer()->updateDownload(blockLength_);
- downloadContext_->updateDownload(blockLength_);
- if (slot) {
- getPeer()->snubbing(false);
- std::shared_ptr<Piece> piece = getPieceStorage()->getPiece(index_);
- int64_t offset =
- static_cast<int64_t>(index_) * downloadContext_->getPieceLength() +
- begin_;
- A2_LOG_DEBUG(fmt(MSG_PIECE_RECEIVED, getCuid(),
- static_cast<unsigned long>(index_), begin_, blockLength_,
- static_cast<int64_t>(offset),
- static_cast<unsigned long>(slot->getBlockIndex())));
- if (piece->hasBlock(slot->getBlockIndex())) {
- A2_LOG_DEBUG("Already have this block.");
- return;
- }
- if (piece->getWrDiskCacheEntry()) {
- // Write Disk Cache enabled. Unfortunately, it incurs extra data
- // copy.
- auto dataCopy = new unsigned char[blockLength_];
- memcpy(dataCopy, data_ + 9, blockLength_);
- piece->updateWrCache(getPieceStorage()->getWrDiskCache(), dataCopy, 0,
- blockLength_, blockLength_, offset);
- }
- else {
- getPieceStorage()->getDiskAdaptor()->writeData(data_ + 9, blockLength_,
- offset);
- }
- piece->completeBlock(slot->getBlockIndex());
- A2_LOG_DEBUG(fmt(
- MSG_PIECE_BITFIELD, getCuid(),
- util::toHex(piece->getBitfield(), piece->getBitfieldLength()).c_str()));
- piece->updateHash(begin_, data_ + 9, blockLength_);
- getBtMessageDispatcher()->removeOutstandingRequest(slot);
- if (piece->pieceComplete()) {
- if (checkPieceHash(piece)) {
- onNewPiece(piece);
- }
- else {
- onWrongPiece(piece);
- peerStorage_->addBadPeer(getPeer()->getIPAddress());
- throw DL_ABORT_EX("Bad piece hash.");
- }
- }
- }
- else {
- A2_LOG_DEBUG(fmt("CUID#%" PRId64
- " - RequestSlot not found, index=%lu, begin=%d",
- getCuid(), static_cast<unsigned long>(index_), begin_));
- }
- }
- size_t BtPieceMessage::MESSAGE_HEADER_LENGTH = 13;
- void BtPieceMessage::createMessageHeader(unsigned char* msgHeader) const
- {
- /**
- * len --- 9+blockLength, 4bytes
- * id --- 7, 1byte
- * index --- index, 4bytes
- * begin --- begin, 4bytes
- * total: 13bytes
- */
- bittorrent::createPeerMessageString(msgHeader, MESSAGE_HEADER_LENGTH,
- 9 + blockLength_, ID);
- bittorrent::setIntParam(&msgHeader[5], index_);
- bittorrent::setIntParam(&msgHeader[9], begin_);
- }
- size_t BtPieceMessage::getMessageHeaderLength()
- {
- return MESSAGE_HEADER_LENGTH;
- }
- namespace {
- struct PieceSendUpdate : public ProgressUpdate {
- PieceSendUpdate(DownloadContext* dctx, std::shared_ptr<Peer> peer,
- size_t headerLength)
- : dctx(dctx), peer(std::move(peer)), headerLength(headerLength)
- {
- }
- virtual void update(size_t length, bool complete) CXX11_OVERRIDE
- {
- if (headerLength > 0) {
- size_t m = std::min(headerLength, length);
- headerLength -= m;
- length -= m;
- }
- peer->updateUploadLength(length);
- dctx->updateUploadLength(length);
- }
- DownloadContext* dctx;
- std::shared_ptr<Peer> peer;
- size_t headerLength;
- };
- } // namespace
- void BtPieceMessage::send()
- {
- if (isInvalidate()) {
- return;
- }
- A2_LOG_INFO(fmt(MSG_SEND_PEER_MESSAGE, getCuid(),
- getPeer()->getIPAddress().c_str(), getPeer()->getPort(),
- toString().c_str()));
- int64_t pieceDataOffset =
- static_cast<int64_t>(index_) * downloadContext_->getPieceLength() +
- begin_;
- pushPieceData(pieceDataOffset, blockLength_);
- }
- void BtPieceMessage::pushPieceData(int64_t offset, int32_t length) const
- {
- assert(length <= static_cast<int32_t>(16_k));
- auto buf = make_unique<unsigned char[]>(length + MESSAGE_HEADER_LENGTH);
- createMessageHeader(buf.get());
- ssize_t r;
- r = getPieceStorage()->getDiskAdaptor()->readData(
- buf.get() + MESSAGE_HEADER_LENGTH, length, offset);
- if (r == length) {
- const auto& peer = getPeer();
- getPeerConnection()->pushBytes(
- buf.release(), length + MESSAGE_HEADER_LENGTH,
- make_unique<PieceSendUpdate>(downloadContext_, peer,
- MESSAGE_HEADER_LENGTH));
- peer->updateUploadSpeed(length);
- downloadContext_->updateUploadSpeed(length);
- }
- else {
- throw DL_ABORT_EX(EX_DATA_READ);
- }
- }
- std::string BtPieceMessage::toString() const
- {
- return fmt("%s index=%lu, begin=%d, length=%d", NAME,
- static_cast<unsigned long>(index_), begin_, blockLength_);
- }
- bool BtPieceMessage::checkPieceHash(const std::shared_ptr<Piece>& piece)
- {
- if (!getPieceStorage()->isEndGame() && piece->isHashCalculated()) {
- A2_LOG_DEBUG(fmt("Hash is available!! index=%lu",
- static_cast<unsigned long>(piece->getIndex())));
- return piece->getDigest() ==
- downloadContext_->getPieceHash(piece->getIndex());
- }
- else {
- A2_LOG_DEBUG(fmt("Calculating hash index=%lu",
- static_cast<unsigned long>(piece->getIndex())));
- try {
- return piece->getDigestWithWrCache(downloadContext_->getPieceLength(),
- getPieceStorage()->getDiskAdaptor()) ==
- downloadContext_->getPieceHash(piece->getIndex());
- }
- catch (RecoverableException& e) {
- piece->clearAllBlock(getPieceStorage()->getWrDiskCache());
- throw;
- }
- }
- }
- void BtPieceMessage::onNewPiece(const std::shared_ptr<Piece>& piece)
- {
- if (piece->getWrDiskCacheEntry()) {
- // We flush cached data whenever an whole piece is retrieved.
- piece->flushWrCache(getPieceStorage()->getWrDiskCache());
- if (piece->getWrDiskCacheEntry()->getError() !=
- WrDiskCacheEntry::CACHE_ERR_SUCCESS) {
- piece->clearAllBlock(getPieceStorage()->getWrDiskCache());
- throw DOWNLOAD_FAILURE_EXCEPTION2(
- fmt("Write disk cache flush failure index=%lu",
- static_cast<unsigned long>(piece->getIndex())),
- piece->getWrDiskCacheEntry()->getErrorCode());
- }
- }
- A2_LOG_INFO(fmt(MSG_GOT_NEW_PIECE, getCuid(),
- static_cast<unsigned long>(piece->getIndex())));
- getPieceStorage()->completePiece(piece);
- getPieceStorage()->advertisePiece(getCuid(), piece->getIndex());
- }
- void BtPieceMessage::onWrongPiece(const std::shared_ptr<Piece>& piece)
- {
- A2_LOG_INFO(fmt(MSG_GOT_WRONG_PIECE, getCuid(),
- static_cast<unsigned long>(piece->getIndex())));
- piece->clearAllBlock(getPieceStorage()->getWrDiskCache());
- piece->destroyHashContext();
- getBtRequestFactory()->removeTargetPiece(piece);
- }
- void BtPieceMessage::onChokingEvent(const BtChokingEvent& event)
- {
- if (!isInvalidate() && !getPeer()->isInAmAllowedIndexSet(index_)) {
- A2_LOG_DEBUG(fmt(MSG_REJECT_PIECE_CHOKED, getCuid(),
- static_cast<unsigned long>(index_), begin_, blockLength_));
- if (getPeer()->isFastExtensionEnabled()) {
- getBtMessageDispatcher()->addMessageToQueue(
- getBtMessageFactory()->createRejectMessage(index_, begin_,
- blockLength_));
- }
- setInvalidate(true);
- }
- }
- void BtPieceMessage::onCancelSendingPieceEvent(
- const BtCancelSendingPieceEvent& event)
- {
- if (!isInvalidate() && index_ == event.getIndex() &&
- begin_ == event.getBegin() && blockLength_ == event.getLength()) {
- A2_LOG_DEBUG(fmt(MSG_REJECT_PIECE_CANCEL, getCuid(),
- static_cast<unsigned long>(index_), begin_, blockLength_));
- if (getPeer()->isFastExtensionEnabled()) {
- getBtMessageDispatcher()->addMessageToQueue(
- getBtMessageFactory()->createRejectMessage(index_, begin_,
- blockLength_));
- }
- setInvalidate(true);
- }
- }
- void BtPieceMessage::setDownloadContext(DownloadContext* downloadContext)
- {
- downloadContext_ = downloadContext;
- }
- void BtPieceMessage::setPeerStorage(PeerStorage* peerStorage)
- {
- peerStorage_ = peerStorage;
- }
- } // namespace aria2
|