mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2026-08-21 19:00:49 +00:00
417 lines
16 KiB
C++
417 lines
16 KiB
C++
/*
|
|
* Copyright (c) 2026, The PurpleI2P Project
|
|
*
|
|
* This file is part of Purple i2pd project and licensed under BSD3
|
|
*
|
|
* See full license text in LICENSE file at top of project tree
|
|
*/
|
|
|
|
#ifndef TORRENTS_H__
|
|
#define TORRENTS_H__
|
|
|
|
#include <inttypes.h>
|
|
#include <openssl/sha.h>
|
|
#include <boost/asio.hpp>
|
|
#include <boost/beast.hpp>
|
|
#include <boost/dynamic_bitset.hpp>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <array>
|
|
#include <list>
|
|
#include <map>
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <random>
|
|
#include <tuple>
|
|
#include <filesystem>
|
|
#include <mutex>
|
|
#include "util.h"
|
|
#include "Streaming.h"
|
|
#include "HTTP.h"
|
|
#include "I2PService.h"
|
|
#include "AddressBook.h"
|
|
#include "BoostStream.h"
|
|
|
|
namespace i2p
|
|
{
|
|
namespace torrents
|
|
{
|
|
constexpr size_t REQUEST_BLOCK_SIZE = 16384;
|
|
constexpr uint16_t TORRENT_PORT = 6881; // not used by required by protocol
|
|
constexpr int TRACKER_RESPONSE_TIMEOUT = 8; // in seconds
|
|
constexpr int TRACKER_REQUESTS_CHECK_TIMEOUT = 1900; // in milliseconds
|
|
constexpr int RECONNECT_CHECK_INTERVAL = 70; // in seconds
|
|
constexpr int MIN_TRACKER_REQUESTS_INTERVAL = 15000; // in milliseconds
|
|
constexpr int TRACKER_REQUESTS_INTERVAL_VARIANCE = 3000; // in milliseconds
|
|
constexpr size_t PEER_CONNECTION_RECEIVE_BUFFER_SIZE = 65535;
|
|
constexpr int PEER_CONNECTION_MAX_IDLE = 3600; // in seconds
|
|
constexpr int PEER_KEEP_ALIVE_TIMEOUT = 120; // in seconds
|
|
constexpr int PEER_KEEP_SEND_INTERVAL = 95; // in seconds
|
|
constexpr int PEER_KEEP_ALIVE_CHECK_INTERVAL = 15; // in seconds
|
|
constexpr size_t MAX_NUM_REQUESTS = 8;
|
|
constexpr size_t MAX_NUM_PIECES = 6;
|
|
constexpr int PIECE_INACTIVITY_TIMEOUT = 60; // in seconds
|
|
constexpr int TORRENTS_STATUS_UPDATE_INTERVAL = 25; // in seconds
|
|
constexpr int HANDSHAKE_RECEIVE_TIMEOUT = 20; // in seconds
|
|
constexpr int BANDWIDTH_RATE_SAMPLING_INTERVAL = 20; // in milliseconds
|
|
|
|
constexpr size_t HANDSHAKE_MSG_LENGTH = 68;
|
|
constexpr size_t INTERESTED_MSG_LENGTH = 5;
|
|
constexpr size_t NOTINTERESTED_MSG_LENGTH = 5;
|
|
constexpr size_t CHOKE_MSG_LENGTH = 5;
|
|
constexpr size_t UNCHOKE_MSG_LENGTH = 5;
|
|
constexpr size_t REQUEST_MSG_PAYLOAD_LENGTH = 12;
|
|
constexpr size_t HAVE_MSG_PAYLOAD_LENGTH = 4;
|
|
|
|
enum MessageType
|
|
{
|
|
eMessageTypeChoke = 0,
|
|
eMessageTypeUnchoke = 1,
|
|
eMessageTypeInterested = 2,
|
|
eMessageTypeNotInterested = 3,
|
|
eMessageTypeHave = 4,
|
|
eMessageTypeBitfield = 5,
|
|
eMessageTypeRequest = 6,
|
|
eMessageTypePiece = 7,
|
|
eMessageTypeHaveAll = 14,
|
|
eMessageTypeHaveNone = 15
|
|
};
|
|
|
|
struct PieceFileFragment // fragment to save to/load from file
|
|
{
|
|
std::filesystem::path fullFilePath;
|
|
size_t fileOffset;
|
|
size_t fragmentOffset; // from start of piece
|
|
size_t fragmentSize;
|
|
|
|
PieceFileFragment (const std::filesystem::path& fullFilePath1, size_t fileOffset1, size_t fragmentOffset1, size_t fragmentSize1):
|
|
fullFilePath (fullFilePath1), fileOffset (fileOffset1), fragmentOffset (fragmentOffset1), fragmentSize (fragmentSize1) {};
|
|
PieceFileFragment (PieceFileFragment&& ) = default;
|
|
PieceFileFragment (const PieceFileFragment& ) = default;
|
|
};
|
|
|
|
class PeerConnection;
|
|
class Piece final
|
|
{
|
|
enum class BlockStatus
|
|
{
|
|
Missing,
|
|
Available,
|
|
Requested
|
|
};
|
|
|
|
public:
|
|
|
|
Piece (size_t size, const uint8_t * hash);
|
|
Piece (Piece&& ) = default;
|
|
~Piece ();
|
|
|
|
bool IsComplete () const { return !m_Blocks; }
|
|
void Complete () { m_Blocks = nullptr; }
|
|
bool VerifyHash () const;
|
|
void SetIsSending (bool isSending);
|
|
uint64_t GetLastActivityTimestamp () const { return m_LastActivityTimestamp; }
|
|
bool IsRequested () const { return m_IsRequested; }
|
|
size_t GetNumPeers () const { return m_NumPeers; }
|
|
void SetNumPeers (size_t numPeers) { m_NumPeers = numPeers; }
|
|
|
|
void BlockReceived (const uint8_t * block, size_t len, size_t offset);
|
|
void Dump (PieceFileFragment&& fragment);
|
|
bool Load (PieceFileFragment&& fragment);
|
|
const uint8_t * GetData () const { return m_Data; }
|
|
size_t GetSize () const { return m_Size; }
|
|
bool HasBlock (size_t offset) const;
|
|
std::pair<size_t, size_t> GetNextBlockToRequest (); // return (offset, len) of next buffer, len = 0 if no next buffer
|
|
void ClearAllRequests ();
|
|
void InvalidateAllBlocks ();
|
|
void Reset ();
|
|
|
|
private:
|
|
|
|
bool IsAvailable (int block) const;
|
|
size_t GetNumBlocks (size_t len) const;
|
|
|
|
private:
|
|
|
|
size_t m_Size;
|
|
uint8_t * m_Data, m_Hash[SHA_DIGEST_LENGTH];
|
|
std::unique_ptr<std::vector<BlockStatus> > m_Blocks;
|
|
bool m_IsSending, m_IsRequested;
|
|
uint64_t m_LastActivityTimestamp; // monotonic seconds
|
|
size_t m_NumPeers; // where this piece is available
|
|
};
|
|
|
|
enum TorrentStatus
|
|
{
|
|
eTorrentStatusStopped = 0,
|
|
eTorrentStatusQueuedToVerifyLocalData = 1,
|
|
eTorrentStatusVerifyingLocalData = 2,
|
|
eTorrentStatusQueuedToDownload = 3,
|
|
eTorrentStatusDownloading = 4,
|
|
eTorrentStatusQueuedToSeed = 5,
|
|
eTorrentStatusSeeding = 6
|
|
};
|
|
|
|
class Torrent final
|
|
{
|
|
public:
|
|
|
|
using InfoHash = std::array<uint8_t, 20>;
|
|
|
|
Torrent (std::string_view buf);
|
|
void ParseTrackerResponse (std::string_view buf);
|
|
|
|
bool IsComplete () const { return m_IsComplete; }
|
|
void SetComplete ();
|
|
TorrentStatus GetStatus () const { return m_IsComplete ? eTorrentStatusSeeding : eTorrentStatusDownloading; };
|
|
|
|
std::string_view GetAnnounce () const { return m_Announce; }
|
|
std::string_view GetName () const { return m_Name; }
|
|
const std::filesystem::path& GetFullPath () const { return m_FullPath; }
|
|
void SetFullPath (const std::filesystem::path& fullPath) { m_FullPath = fullPath; }
|
|
const std::list<std::pair<std::filesystem::path, size_t> >& GetFiles () const { return m_Files; }
|
|
std::list<std::pair<std::filesystem::path, size_t> >& GetFiles () { return m_Files; }
|
|
size_t GetLength () const { return m_Length; }
|
|
size_t GetPieceLength () const { return m_PieceLength; }
|
|
int GetInterval () const { return m_Interval; }
|
|
const InfoHash& GetInfoHash () const { return m_InfoHash; }
|
|
size_t GetLeft () const;
|
|
std::string GetHexStringInfoHash () const; // in url format
|
|
size_t GetNumPieces () const { return m_Pieces.size (); }
|
|
Piece& GetPiece (int index) { return m_Pieces[index]; }
|
|
std::pair<std::vector<uint8_t>, bool> CreateBitfield () const; // (bitfield, empty)
|
|
bool ApplyBitfield (const std::vector<uint8_t>& bitfield); // return true if complete
|
|
const std::unordered_set<i2p::data::IdentHash>& GetPeers () const { return m_Peers; }
|
|
std::tuple<uint32_t, uint32_t, uint32_t> GetNextBlockToRequest (std::shared_ptr<PeerConnection> conn, bool skipRequested = true); // return (index, offset, len)
|
|
std::vector<PieceFileFragment> GetPieceFileFragments (int index) const;
|
|
bool UpdateStatus (uint64_t ts); // return true if complete
|
|
|
|
uint64_t GetNextTrackerRequestTime () const { return m_NextTrackerRequestTime; }
|
|
void SetNextTrackerRequestTime (uint64_t ts) { m_NextTrackerRequestTime = ts; }
|
|
size_t GetUploaded () const { return m_Uploaded; }
|
|
void AddUploaded (size_t add) { m_Uploaded += add; }
|
|
|
|
void SaveTorrentResumeFile (const std::filesystem::path& fullPath);
|
|
|
|
void StartCountingPeers ();
|
|
void ApplyPeerRemoteBitfield (const boost::dynamic_bitset<>& peerRemoteBitfield);
|
|
bool HasIncompletePieces (const boost::dynamic_bitset<>& peerRemoteBitfield) const; // if remote bitfie;d has incomplete pieces
|
|
|
|
void ResetStats () { m_DownloadRate = 0; m_UploadRate = 0; m_NumDownloadingFromPeers = 0; m_NumUploadingToPeers = 0; }
|
|
uint64_t GetDownloadRate () const { return m_DownloadRate; }
|
|
void SetDownloadRate (uint64_t downloadRate) { m_DownloadRate = downloadRate; }
|
|
uint64_t GetUploadRate () const { return m_UploadRate; }
|
|
void SetUploadRate (uint64_t uploadRate) { m_UploadRate = uploadRate; }
|
|
int GetNumDownloadingFromPeers () const { return m_NumDownloadingFromPeers; }
|
|
void SetNumDownloadingFromPeers (int numDownloadingFromPeers) { m_NumDownloadingFromPeers = numDownloadingFromPeers; }
|
|
int GetNumUploadingToPeers () const { return m_NumUploadingToPeers; }
|
|
void SetNumUploadingToPeers (int numUploadingToPeers) { m_NumUploadingToPeers = numUploadingToPeers; }
|
|
|
|
private:
|
|
|
|
size_t ParsePieces (std::string_view buf);
|
|
size_t ParseInfo (std::string_view buf);
|
|
size_t ParsePeers (std::string_view buf);
|
|
size_t ParseFiles (std::string_view buf);
|
|
|
|
private:
|
|
|
|
std::string m_Name, m_Announce;
|
|
std::filesystem::path m_FullPath;
|
|
size_t m_Length, m_PieceLength;
|
|
int m_Interval; // in miiliseconds
|
|
uint64_t m_NextTrackerRequestTime; // monotonic millicesonds
|
|
InfoHash m_InfoHash; // SHA1
|
|
std::vector<Piece> m_Pieces;
|
|
std::unordered_set<i2p::data::IdentHash> m_Peers;
|
|
bool m_IsComplete;
|
|
std::list<std::pair<std::filesystem::path, size_t> > m_Files; // list of (path, length)
|
|
size_t m_Uploaded;
|
|
// stats
|
|
uint64_t m_DownloadRate, m_UploadRate; // B/sec
|
|
int m_NumDownloadingFromPeers, m_NumUploadingToPeers; // by us
|
|
};
|
|
|
|
class TorrentsTunnel;
|
|
class PeerConnection: public i2p::client::I2PServiceHandler, public std::enable_shared_from_this<PeerConnection>
|
|
{
|
|
struct RequestedBlock
|
|
{
|
|
uint32_t index, offset, length;
|
|
RequestedBlock (uint32_t i, uint32_t o, uint32_t l): index(i), offset(o), length (l) {}
|
|
RequestedBlock(const RequestedBlock& ) = default;
|
|
RequestedBlock(RequestedBlock&& ) = default;
|
|
};
|
|
|
|
public:
|
|
|
|
using PeerID = std::array<uint8_t, 20>;
|
|
|
|
PeerConnection (std::shared_ptr<i2p::client::I2PService> owner, std::shared_ptr<i2p::stream::Stream> stream); // incoming
|
|
PeerConnection (std::shared_ptr<i2p::client::I2PService> owner, std::shared_ptr<i2p::stream::Stream> stream,
|
|
std::shared_ptr<Torrent> torrent); // outgoing
|
|
~PeerConnection ();
|
|
|
|
void Connect ();
|
|
void Close ();
|
|
void ReceiveHandshake ();
|
|
void CheckKeepAlive (uint64_t ts);
|
|
|
|
bool IsEstablished () const { return m_IsEstablished; };
|
|
bool IsPieceAvailable (size_t ind) const;
|
|
std::shared_ptr<i2p::stream::Stream> GetStream () const { return m_Stream; }
|
|
std::shared_ptr<Torrent> GetTorrent () const { return m_Torrent; }
|
|
int GetLastRequestedPieceIndex () const { return m_LastRequestedPieceIndex; }
|
|
const boost::dynamic_bitset<>& GetRemoteBitfield () const { return m_RemoteBitfield; }
|
|
const PeerID& GetRemotePeerID () const { return m_RemotePeerID; }
|
|
|
|
// stats
|
|
void ResetStats ();
|
|
uint64_t GetDownloadRate () const { return m_DownloadRate; }
|
|
uint64_t GetUploadRate () const { return m_UploadRate; }
|
|
bool IsDownloading () const { return m_NumRequests > 0; }
|
|
bool IsUploading () const { return m_NumPieces > 0 || (m_Stream && m_Stream->GetSendBufferSize () > 4); }
|
|
bool IsInterested () const { return m_IsInterested; }
|
|
bool IsRemoteInterested () const { return m_IsRemoteInterested; }
|
|
bool IsChoked () const { return m_IsChoked; }
|
|
bool IsRemoteChoked () const { return m_IsRemoteChoked; }
|
|
|
|
private:
|
|
|
|
void Terminate ();
|
|
void ScheduleHandshakeReceiveTimer ();
|
|
std::shared_ptr<TorrentsTunnel> GetTorrentsTunnel () const;
|
|
|
|
void WriteToStream (const uint8_t * buf, size_t len);
|
|
void StreamReceive ();
|
|
void HandleStreamReceive (const boost::system::error_code& ecode, size_t bytes_transferred);
|
|
void HandleReceived ();
|
|
size_t HandleNextMsg (size_t offset);
|
|
|
|
size_t HandleHandshakeMsg ();
|
|
void SendHandshakeMsg ();
|
|
|
|
void HandleHaveMsg (const uint8_t * buf, size_t len);
|
|
void SendHaveMsg (uint32_t index);
|
|
void HandleBitfieldMsg (const uint8_t * buf, size_t len);
|
|
void SendBitfieldMsg (const uint8_t * bitfield, size_t bitfieldLen);
|
|
void HandleHaveAllMsg ();
|
|
void HandleHaveNoneMsg ();
|
|
void HandlePieceMsg (const uint8_t * buf, size_t len);
|
|
void SendPieceMsg (uint32_t index, uint32_t offset, const uint8_t * data, size_t len);
|
|
void HandleRequestMsg (const uint8_t * buf, size_t len);
|
|
void SendRequestMsg (uint32_t index, uint32_t offset, uint32_t len);
|
|
void SendInterestedMsg ();
|
|
void SendNotinterestedMsg ();
|
|
void SendUnchokeMsg ();
|
|
void SendChokeMsg ();
|
|
void HandleChokeMsg ();
|
|
|
|
bool RequestNextBlock ();
|
|
void RequestNextBlock (uint32_t index, uint32_t offset, uint32_t len);
|
|
bool RequestNextBlocks ();
|
|
bool SendRequestedBlock (const RequestedBlock& requestedBlock);
|
|
|
|
private:
|
|
|
|
std::shared_ptr<i2p::stream::Stream> m_Stream;
|
|
uint8_t m_ReceiveBuffer[PEER_CONNECTION_RECEIVE_BUFFER_SIZE];
|
|
size_t m_ReceiveBufferOffset, m_NextMsgLength;
|
|
std::shared_ptr<Torrent> m_Torrent;
|
|
PeerID m_RemotePeerID;
|
|
boost::dynamic_bitset<> m_RemoteBitfield;
|
|
bool m_IsHandshakeSent, m_IsEstablished, m_IsChoked, m_IsRemoteChoked,
|
|
m_IsInterested, m_IsRemoteInterested;
|
|
uint64_t m_LastReceiveTime, m_LastSendTime; // monotonic seconds
|
|
size_t m_NumRequests, m_NumPieces; // outgoing
|
|
std::list<RequestedBlock> m_IncomingRequestsQueue;
|
|
int m_LastRequestedPieceIndex;
|
|
std::unique_ptr<boost::asio::steady_timer> m_HandshakeReceiveTimer;
|
|
// stats
|
|
uint64_t m_DownloadRate, m_UploadRate; // B/sec
|
|
uint64_t m_LastBlockDownloadTimestamp, m_LastBlockUploadTimestamp; // monotonic milliseconds
|
|
size_t m_ReceivedSinceLastTimestamp, m_SentSinceLastTimestamp; // bytes
|
|
};
|
|
|
|
class TorrentsTunnel final: public i2p::client::I2PService
|
|
{
|
|
private:
|
|
|
|
class DiskIOService: private i2p::util::RunnableServiceWithWork
|
|
{
|
|
public:
|
|
|
|
DiskIOService (): RunnableServiceWithWork ("TDiskIO") {}
|
|
auto& GetService () { return GetIOService (); }
|
|
void Start () { StartIOService (); }
|
|
void Stop () { StopWorkAndFinishTasks (); }
|
|
};
|
|
|
|
public:
|
|
|
|
TorrentsTunnel (std::string_view name, std::shared_ptr<i2p::client::ClientDestination> localDestination,
|
|
std::string_view torrentsDir, std::string_view trackers = "");
|
|
|
|
void Start () override;
|
|
void Stop () override;
|
|
auto& GetDiskIOService () { return m_DiskIOService.GetService (); };
|
|
|
|
const std::string& GetPeerID () const { return m_PeerID; }
|
|
std::shared_ptr<Torrent> FindTorrent (const Torrent::InfoHash& infoHash) const;
|
|
std::shared_ptr<Torrent> FindTorrentByID (int id) const;
|
|
std::vector<int> GetTorrentIDs () const;
|
|
std::pair<std::shared_ptr<Torrent>, int> AddTorrent (std::string_view torrentFileContent); // (tunnel, id)
|
|
bool RemoveTorrent (int id, bool deleteFiles);
|
|
std::list<std::shared_ptr<PeerConnection> > GetTorrentConnections (std::shared_ptr<Torrent> torrent);
|
|
|
|
const char* GetName() const override { return m_Name.c_str (); }
|
|
|
|
private:
|
|
|
|
|
|
void Accept ();
|
|
void ReadTorrentFile (const std::filesystem::path& torrentFilePath);
|
|
void InitTorrentFiles (std::shared_ptr<Torrent> torrent);
|
|
int InsertTorrent (std::shared_ptr<Torrent> torrent); // returns id > 0 if success and 0 if failed
|
|
void RemoveTorrent (std::shared_ptr<Torrent> torrent, bool deleteFiles);
|
|
bool CreateAndReserveFile (const std::filesystem::path& filePath, size_t reserve);
|
|
void CompleteTorrent (std::shared_ptr<Torrent> torrent);
|
|
void RequestTracker (std::shared_ptr<Torrent> torrent, std::string_view event = "");
|
|
void TrackerRequestSent (const boost::beast::error_code& ecode, size_t bytes_transferred,
|
|
std::shared_ptr<i2p::client::BoostAsyncStream> httpStream, std::shared_ptr<Torrent> torrent,
|
|
std::shared_ptr<boost::beast::http::request<boost::beast::http::string_body> > req);
|
|
|
|
void ScheduleTrackerRequestsCheck ();
|
|
void HandleTrackerRequestsCheckTimer (const boost::system::error_code& ecode);
|
|
|
|
void ScheduleKeepAliveCheck ();
|
|
void HandleKeepAliveCheckTimer (const boost::system::error_code& ecode);
|
|
|
|
void ScheduleReconnectCheck ();
|
|
void HandleReconnectCheckTimer (const boost::system::error_code& ecode);
|
|
|
|
void ScheduleStatusUpdate ();
|
|
void HandleTorrentsStatusUpdateTimer (const boost::system::error_code& ecode);
|
|
|
|
std::unordered_set<i2p::data::IdentHash> GetNonConnectedPeers (std::shared_ptr<Torrent> torrent);
|
|
void ConnectToPeer (std::shared_ptr<Torrent> torrent, const i2p::data::IdentHash& peer);
|
|
size_t ConnectToPeers (std::shared_ptr<Torrent> torrent);
|
|
void UpdatePeersPerPiece (std::shared_ptr<Torrent> torrent);
|
|
void UpdateStats ();
|
|
|
|
private:
|
|
|
|
std::string m_Name, m_PeerID; // 20 characters
|
|
std::filesystem::path m_TorrentsDir;
|
|
std::vector<std::string> m_Trackers;
|
|
std::map<Torrent::InfoHash, std::shared_ptr<Torrent> > m_Torrents;
|
|
std::map<int, std::weak_ptr<Torrent> > m_TorrentsByID;
|
|
mutable std::mutex m_TorrentsMutex;
|
|
boost::asio::steady_timer m_TrackerRequestsCheckTimer, m_KeepAliveCheckTimer,
|
|
m_ReconnectCheckTimer, m_TorrentsStatusUpdateTimer;
|
|
DiskIOService m_DiskIOService;
|
|
};
|
|
}
|
|
}
|
|
#endif
|