2003-12-22 08:14:35 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-03-17 18:15:16 +01:00
|
|
|
#include "libtorrent/pch.hpp"
|
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
#include <cctype>
|
2005-03-13 13:52:21 +01:00
|
|
|
#include <algorithm>
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <boost/optional.hpp>
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
#include "libtorrent/identify_client.hpp"
|
|
|
|
#include "libtorrent/fingerprint.hpp"
|
|
|
|
|
2004-02-19 12:35:08 +01:00
|
|
|
namespace
|
2003-12-22 08:14:35 +01:00
|
|
|
{
|
|
|
|
|
2004-02-19 12:35:08 +01:00
|
|
|
using namespace libtorrent;
|
|
|
|
|
2004-07-18 02:39:58 +02:00
|
|
|
int decode_digit(char c)
|
|
|
|
{
|
|
|
|
if (std::isdigit(c)) return c - '0';
|
2005-06-12 02:21:37 +02:00
|
|
|
return unsigned(c) - 'A' + 10;
|
2004-07-18 02:39:58 +02:00
|
|
|
}
|
|
|
|
|
2004-02-19 12:35:08 +01:00
|
|
|
// takes a peer id and returns a valid boost::optional
|
|
|
|
// object if the peer id matched the azureus style encoding
|
|
|
|
// the returned fingerprint contains information about the
|
|
|
|
// client's id
|
|
|
|
boost::optional<fingerprint> parse_az_style(const peer_id& id)
|
2003-12-22 08:14:35 +01:00
|
|
|
{
|
2004-02-19 12:35:08 +01:00
|
|
|
fingerprint ret("..", 0, 0, 0, 0);
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2005-06-12 02:21:37 +02:00
|
|
|
if (id[0] != '-' || !std::isprint(id[1]) || (id[2] < '0')
|
|
|
|
|| (id[3] < '0') || (id[4] < '0')
|
|
|
|
|| (id[5] < '0') || (id[6] < '0')
|
2004-08-08 23:26:40 +02:00
|
|
|
|| id[7] != '-')
|
|
|
|
return boost::optional<fingerprint>();
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
ret.name[0] = id[1];
|
|
|
|
ret.name[1] = id[2];
|
2004-08-08 23:26:40 +02:00
|
|
|
ret.major_version = decode_digit(id[3]);
|
|
|
|
ret.minor_version = decode_digit(id[4]);
|
|
|
|
ret.revision_version = decode_digit(id[5]);
|
|
|
|
ret.tag_version = decode_digit(id[6]);
|
2004-02-19 12:35:08 +01:00
|
|
|
|
|
|
|
return boost::optional<fingerprint>(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
// checks if a peer id can possibly contain a shadow-style
|
|
|
|
// identification
|
|
|
|
boost::optional<fingerprint> parse_shadow_style(const peer_id& id)
|
|
|
|
{
|
|
|
|
fingerprint ret("..", 0, 0, 0, 0);
|
|
|
|
|
2004-08-08 23:26:40 +02:00
|
|
|
if (!std::isalnum(id[0]))
|
|
|
|
return boost::optional<fingerprint>();
|
2004-02-19 12:35:08 +01:00
|
|
|
|
2005-06-23 01:04:37 +02:00
|
|
|
if (std::equal(id.begin()+4, id.begin()+6, "--"))
|
2004-02-19 12:35:08 +01:00
|
|
|
{
|
2005-06-23 01:04:37 +02:00
|
|
|
if ((id[1] < '0') || (id[2] < '0')
|
2005-06-12 02:21:37 +02:00
|
|
|
|| (id[3] < '0'))
|
2004-08-08 23:26:40 +02:00
|
|
|
return boost::optional<fingerprint>();
|
|
|
|
ret.major_version = decode_digit(id[1]);
|
|
|
|
ret.minor_version = decode_digit(id[2]);
|
|
|
|
ret.revision_version = decode_digit(id[3]);
|
2004-02-19 12:35:08 +01:00
|
|
|
}
|
2004-08-08 23:26:40 +02:00
|
|
|
else
|
2004-02-19 12:35:08 +01:00
|
|
|
{
|
2004-08-08 23:26:40 +02:00
|
|
|
if (id[8] != 0 || id[1] > 127 || id[2] > 127 || id[3] > 127)
|
|
|
|
return boost::optional<fingerprint>();
|
|
|
|
ret.major_version = id[1];
|
|
|
|
ret.minor_version = id[2];
|
|
|
|
ret.revision_version = id[3];
|
2003-12-22 08:14:35 +01:00
|
|
|
}
|
2004-08-08 23:26:40 +02:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
ret.name[0] = id[0];
|
|
|
|
ret.name[1] = 0;
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2004-02-19 12:35:08 +01:00
|
|
|
ret.tag_version = 0;
|
|
|
|
return boost::optional<fingerprint>(ret);
|
|
|
|
}
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
// checks if a peer id can possibly contain a mainline-style
|
|
|
|
// identification
|
|
|
|
boost::optional<fingerprint> parse_mainline_style(const peer_id& id)
|
|
|
|
{
|
2006-07-23 21:42:13 +02:00
|
|
|
char ids[21];
|
|
|
|
std::copy(id.begin(), id.end(), ids);
|
|
|
|
ids[20] = 0;
|
2004-06-14 01:30:42 +02:00
|
|
|
fingerprint ret("..", 0, 0, 0, 0);
|
2006-04-25 23:04:48 +02:00
|
|
|
ret.name[1] = 0;
|
2004-08-08 23:26:40 +02:00
|
|
|
ret.tag_version = 0;
|
2006-07-23 21:42:59 +02:00
|
|
|
if (sscanf(ids, "%c%d-%d-%d--", &ret.name[0], &ret.major_version, &ret.minor_version
|
2006-07-23 21:42:13 +02:00
|
|
|
, &ret.revision_version) != 4
|
2006-07-23 21:42:59 +02:00
|
|
|
|| !std::isprint(ret.name[0]))
|
2006-07-23 21:42:13 +02:00
|
|
|
return boost::optional<fingerprint>();
|
|
|
|
|
2004-08-08 23:26:40 +02:00
|
|
|
return boost::optional<fingerprint>(ret);
|
|
|
|
}
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2007-05-14 14:02:57 +02:00
|
|
|
struct map_entry
|
|
|
|
{
|
|
|
|
char const* id;
|
|
|
|
char const* name;
|
|
|
|
};
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2004-10-13 15:13:52 +02:00
|
|
|
// only support BitTorrentSpecification
|
2004-08-08 23:26:40 +02:00
|
|
|
// must be ordered alphabetically
|
|
|
|
map_entry name_map[] =
|
|
|
|
{
|
2007-05-14 14:02:57 +02:00
|
|
|
{"A", "ABC"}
|
|
|
|
, {"AG", "Ares"}
|
|
|
|
, {"AR", "Arctic Torrent"}
|
|
|
|
, {"AV", "Avicora"}
|
|
|
|
, {"AX", "BitPump"}
|
|
|
|
, {"AZ", "Azureus"}
|
|
|
|
, {"A~", "Ares"}
|
|
|
|
, {"BB", "BitBuddy"}
|
|
|
|
, {"BC", "BitComet"}
|
|
|
|
, {"BF", "Bitflu"}
|
|
|
|
, {"BG", "BTG"}
|
|
|
|
, {"BR", "BitRocket"}
|
|
|
|
, {"BS", "BTSlave"}
|
|
|
|
, {"BX", "BittorrentX"}
|
|
|
|
, {"CD", "Enhanced CTorrent"}
|
|
|
|
, {"CT", "CTorrent"}
|
|
|
|
, {"DE", "Deluge Torrent"}
|
|
|
|
, {"EB", "EBit"}
|
|
|
|
, {"ES", "electric sheep"}
|
|
|
|
, {"HL", "Halite"}
|
|
|
|
, {"HN", "Hydranode"}
|
|
|
|
, {"KT", "KTorrent"}
|
|
|
|
, {"LK", "Linkage"}
|
|
|
|
, {"LP", "lphant"}
|
|
|
|
, {"LT", "libtorrent"}
|
|
|
|
, {"M", "Mainline"}
|
|
|
|
, {"ML", "MLDonkey"}
|
|
|
|
, {"MO", "Mono Torrent"}
|
|
|
|
, {"MP", "MooPolice"}
|
|
|
|
, {"MT", "Moonlight Torrent"}
|
|
|
|
, {"O", "Osprey Permaseed"}
|
|
|
|
, {"PD", "Pando"}
|
|
|
|
, {"Q", "BTQueue"}
|
|
|
|
, {"QT", "Qt 4"}
|
|
|
|
, {"R", "Tribler"}
|
|
|
|
, {"S", "Shadow"}
|
|
|
|
, {"SB", "Swiftbit"}
|
|
|
|
, {"SN", "ShareNet"}
|
|
|
|
, {"SS", "SwarmScope"}
|
|
|
|
, {"SZ", "Shareaza"}
|
2007-05-14 19:49:36 +02:00
|
|
|
, {"S~", "Shareaza (beta)"}
|
2007-05-14 14:02:57 +02:00
|
|
|
, {"T", "BitTornado"}
|
|
|
|
, {"TN", "Torrent.NET"}
|
|
|
|
, {"TR", "Transmission"}
|
|
|
|
, {"TS", "TorrentStorm"}
|
|
|
|
, {"TT", "TuoTu"}
|
|
|
|
, {"U", "UPnP"}
|
|
|
|
, {"UL", "uLeecher"}
|
2007-07-02 18:47:32 +02:00
|
|
|
, {"UT", "uTorrent"}
|
2007-05-14 14:02:57 +02:00
|
|
|
, {"XT", "XanTorrent"}
|
|
|
|
, {"XX", "Xtorrent"}
|
|
|
|
, {"ZT", "ZipTorrent"}
|
2007-05-30 11:52:36 +02:00
|
|
|
, {"lt", "rTorrent"}
|
2007-05-14 14:02:57 +02:00
|
|
|
, {"pX", "pHoeniX"}
|
|
|
|
, {"qB", "qBittorrent"}
|
2004-08-08 23:26:40 +02:00
|
|
|
};
|
|
|
|
|
2007-05-14 14:02:57 +02:00
|
|
|
bool compare_id(map_entry const& lhs, map_entry const& rhs)
|
2004-08-08 23:26:40 +02:00
|
|
|
{
|
2007-05-14 14:02:57 +02:00
|
|
|
return lhs.id[0] < rhs.id[0]
|
|
|
|
|| ((lhs.id[0] == rhs.id[0]) && (lhs.id[1] < rhs.id[1]));
|
2004-08-08 23:26:40 +02:00
|
|
|
}
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2004-08-08 23:26:40 +02:00
|
|
|
std::string lookup(fingerprint const& f)
|
|
|
|
{
|
|
|
|
std::stringstream identity;
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2004-08-08 23:26:40 +02:00
|
|
|
const int size = sizeof(name_map)/sizeof(name_map[0]);
|
2007-05-14 14:02:57 +02:00
|
|
|
map_entry tmp = {f.name, ""};
|
2004-08-08 23:26:40 +02:00
|
|
|
map_entry* i =
|
|
|
|
std::lower_bound(name_map, name_map + size
|
2007-05-14 14:02:57 +02:00
|
|
|
, tmp, &compare_id);
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2005-03-13 13:52:21 +01:00
|
|
|
#ifndef NDEBUG
|
|
|
|
for (int i = 1; i < size; ++i)
|
|
|
|
{
|
2007-05-14 14:02:57 +02:00
|
|
|
assert(compare_id(name_map[i-1]
|
2005-11-03 00:24:18 +01:00
|
|
|
, name_map[i]));
|
2005-03-13 13:52:21 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-05-14 14:02:57 +02:00
|
|
|
if (i < name_map + size && std::equal(f.name, f.name + 2, i->id))
|
|
|
|
identity << i->name;
|
2004-08-08 23:26:40 +02:00
|
|
|
else
|
2005-10-13 23:37:32 +02:00
|
|
|
{
|
2006-04-25 23:04:48 +02:00
|
|
|
identity << f.name[0];
|
|
|
|
if (f.name[1] != 0) identity << f.name[1];
|
2005-10-13 23:37:32 +02:00
|
|
|
}
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2004-08-08 23:26:40 +02:00
|
|
|
identity << " " << (int)f.major_version
|
|
|
|
<< "." << (int)f.minor_version
|
2005-10-13 23:37:32 +02:00
|
|
|
<< "." << (int)f.revision_version;
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
if (f.name[1] != 0)
|
2005-10-13 23:37:32 +02:00
|
|
|
identity << "." << (int)f.tag_version;
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2004-08-08 23:26:40 +02:00
|
|
|
return identity.str();
|
2004-06-14 01:30:42 +02:00
|
|
|
}
|
|
|
|
|
2004-08-08 23:26:40 +02:00
|
|
|
bool find_string(unsigned char const* id, char const* search)
|
|
|
|
{
|
|
|
|
return std::equal(search, search + std::strlen(search), id);
|
|
|
|
}
|
|
|
|
}
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2004-02-19 12:35:08 +01:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2006-05-15 00:30:05 +02:00
|
|
|
boost::optional<fingerprint> client_fingerprint(peer_id const& p)
|
|
|
|
{
|
|
|
|
// look for azureus style id
|
|
|
|
boost::optional<fingerprint> f;
|
|
|
|
f = parse_az_style(p);
|
|
|
|
if (f) return f;
|
|
|
|
|
|
|
|
// look for shadow style id
|
|
|
|
f = parse_shadow_style(p);
|
|
|
|
if (f) return f;
|
|
|
|
|
|
|
|
// look for mainline style id
|
|
|
|
f = parse_mainline_style(p);
|
|
|
|
if (f) return f;
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string identify_client(peer_id const& p)
|
2003-12-22 08:14:35 +01:00
|
|
|
{
|
|
|
|
peer_id::const_iterator PID = p.begin();
|
|
|
|
boost::optional<fingerprint> f;
|
2004-06-30 09:53:42 +02:00
|
|
|
|
2004-07-18 02:39:58 +02:00
|
|
|
if (p.is_all_zeros()) return "Unknown";
|
2003-12-22 08:14:35 +01:00
|
|
|
|
|
|
|
// ----------------------
|
|
|
|
// non standard encodings
|
|
|
|
// ----------------------
|
|
|
|
|
2004-08-08 23:26:40 +02:00
|
|
|
if (find_string(PID, "Deadman Walking-")) return "Deadman";
|
|
|
|
if (find_string(PID + 5, "Azureus")) return "Azureus 2.0.3.2";
|
|
|
|
if (find_string(PID, "DansClient")) return "XanTorrent";
|
|
|
|
if (find_string(PID + 4, "btfans")) return "SimpleBT";
|
|
|
|
if (find_string(PID, "PRC.P---")) return "Bittorrent Plus! II";
|
|
|
|
if (find_string(PID, "P87.P---")) return "Bittorrent Plus!";
|
|
|
|
if (find_string(PID, "S587Plus")) return "Bittorrent Plus!";
|
|
|
|
if (find_string(PID, "martini")) return "Martini Man";
|
|
|
|
if (find_string(PID, "Plus---")) return "Bittorrent Plus";
|
|
|
|
if (find_string(PID, "turbobt")) return "TurboBT";
|
2005-02-27 10:30:34 +01:00
|
|
|
if (find_string(PID, "a00---0")) return "Swarmy";
|
|
|
|
if (find_string(PID, "a02---0")) return "Swarmy";
|
|
|
|
if (find_string(PID, "T00---0")) return "Teeweety";
|
2004-08-08 23:26:40 +02:00
|
|
|
if (find_string(PID, "BTDWV-")) return "Deadman Walking";
|
|
|
|
if (find_string(PID + 2, "BS")) return "BitSpirit";
|
2007-08-23 21:10:43 +02:00
|
|
|
if (find_string(PID, "Pando-")) return "Pando";
|
|
|
|
if (find_string(PID, "LIME")) return "LimeWire";
|
2004-08-08 23:26:40 +02:00
|
|
|
if (find_string(PID, "btuga")) return "BTugaXP";
|
|
|
|
if (find_string(PID, "oernu")) return "BTugaXP";
|
|
|
|
if (find_string(PID, "Mbrst")) return "Burst!";
|
|
|
|
if (find_string(PID, "Plus")) return "Plus!";
|
2005-09-21 23:44:38 +02:00
|
|
|
if (find_string(PID, "-Qt-")) return "Qt";
|
2004-08-08 23:26:40 +02:00
|
|
|
if (find_string(PID, "exbc")) return "BitComet";
|
2007-08-23 21:10:43 +02:00
|
|
|
if (find_string(PID, "DNA")) return "BitTorrent DNA";
|
2004-08-08 23:26:40 +02:00
|
|
|
if (find_string(PID, "-G3")) return "G3 Torrent";
|
|
|
|
if (find_string(PID, "XBT")) return "XBT";
|
2005-10-05 16:06:39 +02:00
|
|
|
if (find_string(PID, "OP")) return "Opera";
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2005-02-27 10:30:34 +01:00
|
|
|
if (find_string(PID, "-BOW") && PID[7] == '-')
|
|
|
|
return "Bits on Wheels " + std::string(PID + 4, PID + 7);
|
|
|
|
|
2005-08-09 01:32:38 +02:00
|
|
|
|
2005-02-27 10:30:34 +01:00
|
|
|
if (find_string(PID, "eX"))
|
|
|
|
{
|
2005-03-11 18:21:56 +01:00
|
|
|
std::string user(PID + 2, PID + 14);
|
|
|
|
return std::string("eXeem ('") + user.c_str() + "')";
|
2005-02-27 10:30:34 +01:00
|
|
|
}
|
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
if (std::equal(PID, PID + 13, "\0\0\0\0\0\0\0\0\0\0\0\0\x97"))
|
|
|
|
return "Experimental 3.2.1b2";
|
|
|
|
|
|
|
|
if (std::equal(PID, PID + 13, "\0\0\0\0\0\0\0\0\0\0\0\0\0"))
|
|
|
|
return "Experimental 3.1";
|
|
|
|
|
2005-02-27 10:30:34 +01:00
|
|
|
|
|
|
|
// look for azureus style id
|
|
|
|
f = parse_az_style(p);
|
|
|
|
if (f) return lookup(*f);
|
|
|
|
|
|
|
|
// look for shadow style id
|
|
|
|
f = parse_shadow_style(p);
|
|
|
|
if (f) return lookup(*f);
|
|
|
|
|
|
|
|
// look for mainline style id
|
|
|
|
f = parse_mainline_style(p);
|
|
|
|
if (f) return lookup(*f);
|
|
|
|
|
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
if (std::equal(PID, PID + 12, "\0\0\0\0\0\0\0\0\0\0\0\0"))
|
|
|
|
return "Generic";
|
|
|
|
|
2004-05-21 01:26:40 +02:00
|
|
|
std::string unknown("Unknown [");
|
|
|
|
for (peer_id::const_iterator i = p.begin(); i != p.end(); ++i)
|
|
|
|
{
|
|
|
|
unknown += std::isprint(*i)?*i:'.';
|
|
|
|
}
|
|
|
|
unknown += "]";
|
|
|
|
return unknown;
|
2003-12-22 08:14:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|