2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2010-2022 Mnemosyne LLC.
|
2022-02-07 16:25:02 +00:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 18:27:56 +00:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2021-11-10 02:42:18 +00:00
|
|
|
|
2022-05-24 04:05:16 +00:00
|
|
|
#include <algorithm>
|
2021-11-18 00:17:09 +00:00
|
|
|
#include <array>
|
2021-11-10 02:42:18 +00:00
|
|
|
#include <cstring>
|
2022-03-28 22:13:32 +00:00
|
|
|
#include <iterator> // back_inserter
|
2021-11-10 02:42:18 +00:00
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
|
|
|
|
2022-04-07 22:26:59 +00:00
|
|
|
#include <fmt/format.h>
|
|
|
|
|
2021-11-10 02:42:18 +00:00
|
|
|
#include "transmission.h"
|
|
|
|
|
|
|
|
#include "crypto-utils.h"
|
2021-12-15 21:25:42 +00:00
|
|
|
#include "error.h"
|
2021-11-10 02:42:18 +00:00
|
|
|
#include "error-types.h"
|
|
|
|
#include "magnet-metainfo.h"
|
|
|
|
#include "tr-assert.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "web-utils.h"
|
|
|
|
|
|
|
|
using namespace std::literals;
|
|
|
|
|
2021-12-25 21:21:13 +00:00
|
|
|
namespace
|
|
|
|
{
|
2022-02-13 04:16:55 +00:00
|
|
|
|
|
|
|
auto constexpr Base32HashStrLen = size_t{ 32 };
|
|
|
|
|
|
|
|
/* this base32 code converted from code by Robert Kaye and Gordon Mohr
|
|
|
|
* and is public domain. see http://bitzi.com/publicdomain for more info */
|
2021-11-10 02:42:18 +00:00
|
|
|
namespace bitzi
|
|
|
|
{
|
|
|
|
|
2021-11-18 00:17:09 +00:00
|
|
|
auto constexpr Base32Lookup = std::array<int, 80>{
|
2021-11-10 02:42:18 +00:00
|
|
|
0xFF, 0xFF, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, /* '0', '1', '2', '3', '4', '5', '6', '7' */
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, /* '8', '9', ':', ';', '<', '=', '>', '?' */
|
|
|
|
0xFF, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, /* '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G' */
|
|
|
|
0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, /* 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O' */
|
|
|
|
0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, /* 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W' */
|
|
|
|
0x17, 0x18, 0x19, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, /* 'X', 'Y', 'Z', '[', '\', ']', '^', '_' */
|
|
|
|
0xFF, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, /* '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g' */
|
|
|
|
0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, /* 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o' */
|
|
|
|
0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, /* 'p', 'q', 'r', 's', 't', 'u', 'v', 'w' */
|
|
|
|
0x17, 0x18, 0x19, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF /* 'x', 'y', 'z', '{', '|', '}', '~', 'DEL' */
|
|
|
|
};
|
|
|
|
|
|
|
|
void base32_to_sha1(uint8_t* out, char const* in, size_t const inlen)
|
|
|
|
{
|
|
|
|
size_t const outlen = 20;
|
|
|
|
|
|
|
|
memset(out, 0, 20);
|
|
|
|
|
|
|
|
size_t index = 0;
|
|
|
|
size_t offset = 0;
|
|
|
|
for (size_t i = 0; i < inlen; ++i)
|
|
|
|
{
|
2022-07-27 14:03:13 +00:00
|
|
|
int const lookup = in[i] - '0';
|
2021-11-10 02:42:18 +00:00
|
|
|
|
|
|
|
/* Skip chars outside the lookup table */
|
|
|
|
if (lookup < 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If this digit is not in the table, ignore it */
|
2021-11-18 00:17:09 +00:00
|
|
|
int const digit = Base32Lookup[lookup];
|
2021-11-10 02:42:18 +00:00
|
|
|
|
|
|
|
if (digit == 0xFF)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index <= 3)
|
|
|
|
{
|
|
|
|
index = (index + 5) % 8;
|
|
|
|
|
|
|
|
if (index == 0)
|
|
|
|
{
|
|
|
|
out[offset] |= digit;
|
|
|
|
offset++;
|
|
|
|
|
|
|
|
if (offset >= outlen)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
out[offset] |= digit << (8 - index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
index = (index + 5) % 8;
|
|
|
|
out[offset] |= digit >> index;
|
|
|
|
offset++;
|
|
|
|
|
|
|
|
if (offset >= outlen)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
out[offset] |= digit << (8 - index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace bitzi
|
2022-02-13 04:16:55 +00:00
|
|
|
|
|
|
|
std::optional<tr_sha1_digest_t> parseBase32Hash(std::string_view sv)
|
|
|
|
{
|
|
|
|
if (std::size(sv) != Base32HashStrLen)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2022-03-31 17:12:54 +00:00
|
|
|
if (!std::all_of(
|
|
|
|
std::begin(sv),
|
|
|
|
std::end(sv),
|
|
|
|
[](unsigned char ch)
|
2022-04-06 18:22:08 +00:00
|
|
|
{ return '0' <= ch && ch < '0' + std::size(bitzi::Base32Lookup) && bitzi::Base32Lookup[ch - '0'] != 0xFF; }))
|
2022-02-13 04:16:55 +00:00
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
auto digest = tr_sha1_digest_t{};
|
|
|
|
bitzi::base32_to_sha1(reinterpret_cast<uint8_t*>(std::data(digest)), std::data(sv), std::size(sv));
|
|
|
|
return digest;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<tr_sha1_digest_t> parseHash(std::string_view sv)
|
|
|
|
{
|
|
|
|
// http://bittorrent.org/beps/bep_0009.html
|
|
|
|
// Is the info-hash hex encoded, for a total of 40 characters.
|
2022-08-31 16:28:54 +00:00
|
|
|
// For compatibility with existing links in the wild, clients
|
2022-02-13 04:16:55 +00:00
|
|
|
// should also support the 32 character base32 encoded info-hash.
|
|
|
|
|
|
|
|
if (auto const hash = tr_sha1_from_string(sv); hash)
|
|
|
|
{
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
if (auto const hash = parseBase32Hash(sv); hash)
|
|
|
|
{
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2022-07-01 14:49:33 +00:00
|
|
|
std::optional<tr_sha256_digest_t> parseHash2(std::string_view sv)
|
|
|
|
{
|
|
|
|
// http://bittorrent.org/beps/bep_0009.html
|
|
|
|
// Is the info-hash v2 hex encoded and tag removed, for a total of 64 characters.
|
|
|
|
|
|
|
|
if (auto const hash = tr_sha256_from_string(sv); hash)
|
|
|
|
{
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-12-25 21:21:13 +00:00
|
|
|
} // namespace
|
2021-11-10 02:42:18 +00:00
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2022-03-28 22:13:32 +00:00
|
|
|
tr_urlbuf tr_magnet_metainfo::magnet() const
|
2021-11-10 02:42:18 +00:00
|
|
|
{
|
2022-03-28 22:13:32 +00:00
|
|
|
auto s = tr_urlbuf{ "magnet:?xt=urn:btih:"sv, infoHashString() };
|
2021-11-10 02:42:18 +00:00
|
|
|
|
2021-12-25 21:21:13 +00:00
|
|
|
if (!std::empty(name_))
|
2021-11-10 02:42:18 +00:00
|
|
|
{
|
|
|
|
s += "&dn="sv;
|
2022-08-21 13:43:09 +00:00
|
|
|
tr_urlPercentEncode(std::back_inserter(s), name_);
|
2021-11-10 02:42:18 +00:00
|
|
|
}
|
|
|
|
|
2021-12-25 21:21:13 +00:00
|
|
|
for (auto const& tracker : this->announceList())
|
2021-11-10 02:42:18 +00:00
|
|
|
{
|
|
|
|
s += "&tr="sv;
|
2022-08-21 13:43:09 +00:00
|
|
|
tr_urlPercentEncode(std::back_inserter(s), tracker.announce.sv());
|
2021-11-10 02:42:18 +00:00
|
|
|
}
|
|
|
|
|
2021-12-25 21:21:13 +00:00
|
|
|
for (auto const& webseed : webseed_urls_)
|
2021-11-10 02:42:18 +00:00
|
|
|
{
|
|
|
|
s += "&ws="sv;
|
2022-08-21 13:43:09 +00:00
|
|
|
tr_urlPercentEncode(std::back_inserter(s), webseed);
|
2021-11-10 02:42:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2022-05-24 04:05:16 +00:00
|
|
|
void tr_magnet_metainfo::addWebseed(std::string_view webseed)
|
|
|
|
{
|
|
|
|
if (!tr_urlIsValid(webseed))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto& urls = webseed_urls_;
|
|
|
|
auto const it = std::find(std::begin(urls), std::end(urls), webseed);
|
|
|
|
if (it != std::end(urls))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-11 19:35:08 +00:00
|
|
|
urls.emplace_back(webseed);
|
2022-05-24 04:05:16 +00:00
|
|
|
}
|
|
|
|
|
2021-11-10 02:42:18 +00:00
|
|
|
bool tr_magnet_metainfo::parseMagnet(std::string_view magnet_link, tr_error** error)
|
|
|
|
{
|
2022-02-13 04:16:55 +00:00
|
|
|
magnet_link = tr_strvStrip(magnet_link);
|
|
|
|
if (auto const hash = parseHash(magnet_link); hash)
|
|
|
|
{
|
2022-04-07 22:26:59 +00:00
|
|
|
return parseMagnet(fmt::format(FMT_STRING("magnet:?xt=urn:btih:{:s}"), tr_sha1_to_string(*hash)));
|
2022-02-13 04:16:55 +00:00
|
|
|
}
|
|
|
|
|
2021-11-10 02:42:18 +00:00
|
|
|
auto const parsed = tr_urlParse(magnet_link);
|
|
|
|
if (!parsed || parsed->scheme != "magnet"sv)
|
|
|
|
{
|
2021-12-28 02:32:22 +00:00
|
|
|
tr_error_set(error, TR_ERROR_EINVAL, "Error parsing URL"sv);
|
2021-11-10 02:42:18 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-02-13 04:16:55 +00:00
|
|
|
bool got_hash = false;
|
2021-11-10 02:42:18 +00:00
|
|
|
for (auto const& [key, value] : tr_url_query_view{ parsed->query })
|
|
|
|
{
|
|
|
|
if (key == "dn"sv)
|
|
|
|
{
|
2021-12-25 21:21:13 +00:00
|
|
|
this->setName(tr_urlPercentDecode(value));
|
2021-11-10 02:42:18 +00:00
|
|
|
}
|
|
|
|
else if (key == "tr"sv || tr_strvStartsWith(key, "tr."sv))
|
|
|
|
{
|
|
|
|
// "tr." explanation @ https://trac.transmissionbt.com/ticket/3341
|
2022-01-29 21:37:42 +00:00
|
|
|
this->announce_list_.add(tr_urlPercentDecode(value));
|
2021-11-10 02:42:18 +00:00
|
|
|
}
|
|
|
|
else if (key == "ws"sv)
|
|
|
|
{
|
|
|
|
auto const url = tr_urlPercentDecode(value);
|
|
|
|
auto const url_sv = tr_strvStrip(url);
|
|
|
|
if (tr_urlIsValid(url_sv))
|
|
|
|
{
|
2021-12-25 21:21:13 +00:00
|
|
|
this->webseed_urls_.emplace_back(url_sv);
|
2021-11-10 02:42:18 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-31 17:12:54 +00:00
|
|
|
else if (static auto constexpr ValPrefix = "urn:btih:"sv; key == "xt"sv && tr_strvStartsWith(value, ValPrefix))
|
2021-11-10 02:42:18 +00:00
|
|
|
{
|
2022-07-01 14:49:33 +00:00
|
|
|
// v1 info-hash
|
2022-02-14 05:44:38 +00:00
|
|
|
if (auto const hash = parseHash(value.substr(std::size(ValPrefix))); hash)
|
2021-11-10 02:42:18 +00:00
|
|
|
{
|
2022-02-14 05:44:38 +00:00
|
|
|
this->info_hash_ = *hash;
|
|
|
|
got_hash = true;
|
2021-11-10 02:42:18 +00:00
|
|
|
}
|
|
|
|
}
|
2022-07-01 14:49:33 +00:00
|
|
|
else if (static auto constexpr ValPrefix2 = "urn:btmh:1220"sv; key == "xt"sv && tr_strvStartsWith(value, ValPrefix2))
|
|
|
|
{
|
|
|
|
// v2 info-hash
|
|
|
|
// The 1220 tag identifies the hash as sha256, removing tag before sending to parseHash2
|
|
|
|
if (auto const hash = parseHash2(value.substr(std::size(ValPrefix2))); hash)
|
|
|
|
{
|
|
|
|
this->info_hash2_ = *hash;
|
|
|
|
}
|
|
|
|
}
|
2021-11-10 02:42:18 +00:00
|
|
|
}
|
|
|
|
|
2021-12-25 21:21:13 +00:00
|
|
|
info_hash_str_ = tr_sha1_to_string(this->infoHash());
|
|
|
|
|
2022-02-13 04:16:55 +00:00
|
|
|
if (std::empty(name()))
|
|
|
|
{
|
|
|
|
this->setName(info_hash_str_);
|
|
|
|
}
|
|
|
|
|
|
|
|
return got_hash;
|
2021-11-10 02:42:18 +00:00
|
|
|
}
|