|
|
@ -1,5 +1,5 @@ |
|
|
|
#include <iostream> |
|
|
|
|
|
|
|
#include <fstream> |
|
|
|
#include <fstream> |
|
|
|
|
|
|
|
#include <sstream> |
|
|
|
#include <boost/regex.hpp> |
|
|
|
#include <boost/regex.hpp> |
|
|
|
#include <boost/filesystem.hpp> |
|
|
|
#include <boost/filesystem.hpp> |
|
|
|
#include <cryptopp/zinflate.h> |
|
|
|
#include <cryptopp/zinflate.h> |
|
|
@ -7,6 +7,7 @@ |
|
|
|
#include "Reseed.h" |
|
|
|
#include "Reseed.h" |
|
|
|
#include "Log.h" |
|
|
|
#include "Log.h" |
|
|
|
#include "Identity.h" |
|
|
|
#include "Identity.h" |
|
|
|
|
|
|
|
#include "NetDb.h" |
|
|
|
#include "util.h" |
|
|
|
#include "util.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -122,111 +123,142 @@ namespace data |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int Reseeder::ReseedNowSU3 () |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
std::string reseedHost = httpReseedHostList[(rand() % httpReseedHostList.size())]; |
|
|
|
|
|
|
|
return ReseedFromSU3 (reseedHost); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const char SU3_MAGIC_NUMBER[]="I2Psu3"; |
|
|
|
int Reseeder::ReseedFromSU3 (const std::string& host) |
|
|
|
void ProcessSU3File (const char * filename) |
|
|
|
|
|
|
|
{ |
|
|
|
{ |
|
|
|
static uint32_t headerSignature = htole32 (0x04034B50); |
|
|
|
std::string url = host + "i2pseeds.su3"; |
|
|
|
|
|
|
|
LogPrint (eLogInfo, "Dowloading SU3 from ", host); |
|
|
|
|
|
|
|
std::string su3 = i2p::util::http::httpRequest (url); |
|
|
|
|
|
|
|
if (su3.length () > 0) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
std::stringstream s(su3); |
|
|
|
|
|
|
|
return ProcessSU3Stream (s); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
LogPrint (eLogWarning, "SU3 download failed"); |
|
|
|
|
|
|
|
return 0; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int ProcessSU3File (const char * filename) |
|
|
|
|
|
|
|
{ |
|
|
|
std::ifstream s(filename, std::ifstream::binary); |
|
|
|
std::ifstream s(filename, std::ifstream::binary); |
|
|
|
if (s.is_open ()) |
|
|
|
if (s.is_open ()) |
|
|
|
|
|
|
|
return ProcessSU3Stream (s); |
|
|
|
|
|
|
|
else |
|
|
|
{ |
|
|
|
{ |
|
|
|
char magicNumber[7]; |
|
|
|
LogPrint (eLogError, "Can't open file ", filename); |
|
|
|
s.read (magicNumber, 7); // magic number and zero byte 6
|
|
|
|
return 0; |
|
|
|
if (strcmp (magicNumber, SU3_MAGIC_NUMBER)) |
|
|
|
} |
|
|
|
{ |
|
|
|
} |
|
|
|
LogPrint (eLogError, "Unexpected SU3 magic number"); |
|
|
|
|
|
|
|
return; |
|
|
|
const char SU3_MAGIC_NUMBER[]="I2Psu3"; |
|
|
|
} |
|
|
|
int ProcessSU3Stream (std::istream& s) |
|
|
|
s.seekg (1, std::ios::cur); // su3 file format version
|
|
|
|
{ |
|
|
|
SigningKeyType signatureType; |
|
|
|
static uint32_t headerSignature = htole32 (0x04034B50); |
|
|
|
s.read ((char *)&signatureType, 2); // signature type
|
|
|
|
|
|
|
|
signatureType = be16toh (signatureType); |
|
|
|
char magicNumber[7]; |
|
|
|
uint16_t signatureLength; |
|
|
|
s.read (magicNumber, 7); // magic number and zero byte 6
|
|
|
|
s.read ((char *)&signatureLength, 2); // signature length
|
|
|
|
if (strcmp (magicNumber, SU3_MAGIC_NUMBER)) |
|
|
|
signatureLength = be16toh (signatureLength); |
|
|
|
{ |
|
|
|
s.seekg (1, std::ios::cur); // unused
|
|
|
|
LogPrint (eLogError, "Unexpected SU3 magic number"); |
|
|
|
uint8_t versionLength; |
|
|
|
return 0; |
|
|
|
s.read ((char *)&versionLength, 1); // version length
|
|
|
|
} |
|
|
|
s.seekg (1, std::ios::cur); // unused
|
|
|
|
s.seekg (1, std::ios::cur); // su3 file format version
|
|
|
|
uint8_t signerIDLength; |
|
|
|
SigningKeyType signatureType; |
|
|
|
s.read ((char *)&signerIDLength, 1); // signer ID length
|
|
|
|
s.read ((char *)&signatureType, 2); // signature type
|
|
|
|
uint64_t contentLength; |
|
|
|
signatureType = be16toh (signatureType); |
|
|
|
s.read ((char *)&contentLength, 8); // content length
|
|
|
|
uint16_t signatureLength; |
|
|
|
contentLength = be64toh (contentLength); |
|
|
|
s.read ((char *)&signatureLength, 2); // signature length
|
|
|
|
s.seekg (1, std::ios::cur); // unused
|
|
|
|
signatureLength = be16toh (signatureLength); |
|
|
|
uint8_t fileType; |
|
|
|
s.seekg (1, std::ios::cur); // unused
|
|
|
|
s.read ((char *)&fileType, 1); // file type
|
|
|
|
uint8_t versionLength; |
|
|
|
if (fileType != 0x00) // zip file
|
|
|
|
s.read ((char *)&versionLength, 1); // version length
|
|
|
|
{ |
|
|
|
s.seekg (1, std::ios::cur); // unused
|
|
|
|
LogPrint (eLogError, "Can't handle file type ", (int)fileType); |
|
|
|
uint8_t signerIDLength; |
|
|
|
return; |
|
|
|
s.read ((char *)&signerIDLength, 1); // signer ID length
|
|
|
|
} |
|
|
|
uint64_t contentLength; |
|
|
|
s.seekg (1, std::ios::cur); // unused
|
|
|
|
s.read ((char *)&contentLength, 8); // content length
|
|
|
|
uint8_t contentType; |
|
|
|
contentLength = be64toh (contentLength); |
|
|
|
s.read ((char *)&contentType, 1); // content type
|
|
|
|
s.seekg (1, std::ios::cur); // unused
|
|
|
|
if (contentType != 0x03) // reseed data
|
|
|
|
uint8_t fileType; |
|
|
|
{ |
|
|
|
s.read ((char *)&fileType, 1); // file type
|
|
|
|
LogPrint (eLogError, "Unexpected content type ", (int)contentType); |
|
|
|
if (fileType != 0x00) // zip file
|
|
|
|
return; |
|
|
|
{ |
|
|
|
} |
|
|
|
LogPrint (eLogError, "Can't handle file type ", (int)fileType); |
|
|
|
s.seekg (12, std::ios::cur); // unused
|
|
|
|
return 0; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
s.seekg (1, std::ios::cur); // unused
|
|
|
|
|
|
|
|
uint8_t contentType; |
|
|
|
|
|
|
|
s.read ((char *)&contentType, 1); // content type
|
|
|
|
|
|
|
|
if (contentType != 0x03) // reseed data
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
LogPrint (eLogError, "Unexpected content type ", (int)contentType); |
|
|
|
|
|
|
|
return 0; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
s.seekg (12, std::ios::cur); // unused
|
|
|
|
|
|
|
|
|
|
|
|
s.seekg (versionLength, std::ios::cur); // skip version
|
|
|
|
s.seekg (versionLength, std::ios::cur); // skip version
|
|
|
|
s.seekg (signerIDLength, std::ios::cur); // skip signer ID
|
|
|
|
s.seekg (signerIDLength, std::ios::cur); // skip signer ID
|
|
|
|
|
|
|
|
|
|
|
|
// handle content
|
|
|
|
// handle content
|
|
|
|
size_t contentPos = s.tellg (); |
|
|
|
int numFiles = 0; |
|
|
|
while (!s.eof ()) |
|
|
|
size_t contentPos = s.tellg (); |
|
|
|
|
|
|
|
while (!s.eof ()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
uint32_t signature; |
|
|
|
|
|
|
|
s.read ((char *)&signature, 4); |
|
|
|
|
|
|
|
if (signature == headerSignature) |
|
|
|
{ |
|
|
|
{ |
|
|
|
uint32_t signature; |
|
|
|
// next local file
|
|
|
|
s.read ((char *)&signature, 4); |
|
|
|
s.seekg (14, std::ios::cur); // skip field we don't care about
|
|
|
|
if (signature == headerSignature) |
|
|
|
uint32_t compressedSize, uncompressedSize; |
|
|
|
|
|
|
|
s.read ((char *)&compressedSize, 4); |
|
|
|
|
|
|
|
compressedSize = le32toh (compressedSize); |
|
|
|
|
|
|
|
s.read ((char *)&uncompressedSize, 4); |
|
|
|
|
|
|
|
uncompressedSize = le32toh (uncompressedSize); |
|
|
|
|
|
|
|
uint16_t fileNameLength, extraFieldLength; |
|
|
|
|
|
|
|
s.read ((char *)&fileNameLength, 2); |
|
|
|
|
|
|
|
fileNameLength = le32toh (fileNameLength); |
|
|
|
|
|
|
|
s.read ((char *)&extraFieldLength, 2); |
|
|
|
|
|
|
|
extraFieldLength = le32toh (extraFieldLength); |
|
|
|
|
|
|
|
char localFileName[255]; |
|
|
|
|
|
|
|
s.read (localFileName, fileNameLength); |
|
|
|
|
|
|
|
localFileName[fileNameLength] = 0; |
|
|
|
|
|
|
|
s.seekg (extraFieldLength, std::ios::cur); |
|
|
|
|
|
|
|
LogPrint (eLogDebug, "Proccessing file ", localFileName, " ", compressedSize, " bytes"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t * compressed = new uint8_t[compressedSize]; |
|
|
|
|
|
|
|
s.read ((char *)compressed, compressedSize); |
|
|
|
|
|
|
|
CryptoPP::Inflator decompressor; |
|
|
|
|
|
|
|
decompressor.Put (compressed, compressedSize); |
|
|
|
|
|
|
|
delete[] compressed; |
|
|
|
|
|
|
|
size_t len = decompressor.MaxRetrievable (); |
|
|
|
|
|
|
|
if (len <= uncompressedSize) |
|
|
|
{ |
|
|
|
{ |
|
|
|
// next local file
|
|
|
|
uint8_t * uncompressed = new uint8_t[uncompressedSize]; |
|
|
|
s.seekg (14, std::ios::cur); // skip field we don't care about
|
|
|
|
decompressor.Get (uncompressed, len); |
|
|
|
uint32_t compressedSize, uncompressedSize; |
|
|
|
i2p::data::netdb.AddRouterInfo (uncompressed, len); |
|
|
|
s.read ((char *)&compressedSize, 4); |
|
|
|
numFiles++; |
|
|
|
compressedSize = le32toh (compressedSize); |
|
|
|
delete[] uncompressed; |
|
|
|
s.read ((char *)&uncompressedSize, 4); |
|
|
|
|
|
|
|
uncompressedSize = le32toh (uncompressedSize); |
|
|
|
|
|
|
|
uint16_t fileNameLength, extraFieldLength; |
|
|
|
|
|
|
|
s.read ((char *)&fileNameLength, 2); |
|
|
|
|
|
|
|
fileNameLength = le32toh (fileNameLength); |
|
|
|
|
|
|
|
s.read ((char *)&extraFieldLength, 2); |
|
|
|
|
|
|
|
extraFieldLength = le32toh (extraFieldLength); |
|
|
|
|
|
|
|
char localFileName[255]; |
|
|
|
|
|
|
|
s.read (localFileName, fileNameLength); |
|
|
|
|
|
|
|
localFileName[fileNameLength] = 0; |
|
|
|
|
|
|
|
s.seekg (extraFieldLength, std::ios::cur); |
|
|
|
|
|
|
|
LogPrint (eLogDebug, "Proccessing file ", localFileName, " ", compressedSize, " bytes"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t * compressed = new uint8_t[compressedSize]; |
|
|
|
|
|
|
|
s.read ((char *)compressed, compressedSize); |
|
|
|
|
|
|
|
CryptoPP::Inflator decompressor; |
|
|
|
|
|
|
|
decompressor.Put (compressed, compressedSize); |
|
|
|
|
|
|
|
delete[] compressed; |
|
|
|
|
|
|
|
if (decompressor.MaxRetrievable () <= uncompressedSize) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
uint8_t * uncompressed = new uint8_t[uncompressedSize]; |
|
|
|
|
|
|
|
decompressor.Get (uncompressed, decompressor.MaxRetrievable ()); |
|
|
|
|
|
|
|
// TODO: save file
|
|
|
|
|
|
|
|
delete[] uncompressed; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
LogPrint (eLogError, "Actual uncompressed size ", decompressor.MaxRetrievable (), " exceed ", uncompressedSize, " from header"); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else |
|
|
|
break; // no more files
|
|
|
|
LogPrint (eLogError, "Actual uncompressed size ", decompressor.MaxRetrievable (), " exceed ", uncompressedSize, " from header"); |
|
|
|
size_t end = s.tellg (); |
|
|
|
|
|
|
|
if (end - contentPos >= contentLength) |
|
|
|
|
|
|
|
break; // we are beyond contentLength
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
break; // no more files
|
|
|
|
|
|
|
|
size_t end = s.tellg (); |
|
|
|
|
|
|
|
if (end - contentPos >= contentLength) |
|
|
|
|
|
|
|
break; // we are beyond contentLength
|
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
return numFiles; |
|
|
|
LogPrint (eLogError, "Can't open file ", filename); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|