2009-09-16 05:46:36 +02:00
|
|
|
/*
|
|
|
|
|
2018-04-09 09:04:33 +02:00
|
|
|
Copyright (c) 2009-2018, Arvid Norberg
|
2009-09-16 05:46:36 +02:00
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "libtorrent/error_code.hpp"
|
|
|
|
#include "libtorrent/socket.hpp"
|
2010-01-10 06:06:13 +01:00
|
|
|
#include "libtorrent/socket_io.hpp"
|
2009-11-23 09:38:50 +01:00
|
|
|
#include "libtorrent/address.hpp"
|
2013-10-14 01:04:40 +02:00
|
|
|
#include "libtorrent/io.hpp" // for write_uint16
|
2010-12-24 02:31:41 +01:00
|
|
|
#include "libtorrent/hasher.hpp" // for hasher
|
2017-03-31 04:55:54 +02:00
|
|
|
#include "libtorrent/aux_/escape_string.hpp" // for trim
|
2009-09-16 05:46:36 +02:00
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
2009-09-16 05:46:36 +02:00
|
|
|
|
|
|
|
std::string print_address(address const& addr)
|
|
|
|
{
|
|
|
|
error_code ec;
|
|
|
|
return addr.to_string(ec);
|
|
|
|
}
|
|
|
|
|
2010-12-11 10:38:07 +01:00
|
|
|
std::string address_to_bytes(address const& a)
|
|
|
|
{
|
2013-10-14 01:04:40 +02:00
|
|
|
std::string ret;
|
|
|
|
std::back_insert_iterator<std::string> out(ret);
|
|
|
|
detail::write_address(a, out);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string endpoint_to_bytes(udp::endpoint const& ep)
|
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
std::back_insert_iterator<std::string> out(ret);
|
|
|
|
detail::write_endpoint(ep, out);
|
|
|
|
return ret;
|
2010-12-11 10:38:07 +01:00
|
|
|
}
|
|
|
|
|
2016-06-03 04:38:56 +02:00
|
|
|
std::string print_endpoint(address const& addr, int port)
|
2009-09-16 05:46:36 +02:00
|
|
|
{
|
|
|
|
error_code ec;
|
2013-07-20 03:02:15 +02:00
|
|
|
char buf[200];
|
2009-09-16 05:46:36 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
if (addr.is_v6())
|
2016-06-03 04:38:56 +02:00
|
|
|
std::snprintf(buf, sizeof(buf), "[%s]:%d", addr.to_string(ec).c_str(), port);
|
2009-09-16 05:46:36 +02:00
|
|
|
else
|
|
|
|
#endif
|
2016-06-03 04:38:56 +02:00
|
|
|
std::snprintf(buf, sizeof(buf), "%s:%d", addr.to_string(ec).c_str(), port);
|
2013-07-20 03:02:15 +02:00
|
|
|
return buf;
|
2009-09-16 05:46:36 +02:00
|
|
|
}
|
|
|
|
|
2016-06-03 04:38:56 +02:00
|
|
|
std::string print_endpoint(tcp::endpoint const& ep)
|
|
|
|
{
|
|
|
|
return print_endpoint(ep.address(), ep.port());
|
|
|
|
}
|
|
|
|
|
2009-09-16 05:46:36 +02:00
|
|
|
std::string print_endpoint(udp::endpoint const& ep)
|
|
|
|
{
|
2016-06-03 04:38:56 +02:00
|
|
|
return print_endpoint(ep.address(), ep.port());
|
2009-09-16 05:46:36 +02:00
|
|
|
}
|
|
|
|
|
2017-03-31 04:55:54 +02:00
|
|
|
tcp::endpoint parse_endpoint(string_view str, error_code& ec)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
tcp::endpoint ret;
|
|
|
|
|
2017-03-31 04:55:54 +02:00
|
|
|
str = trim(str);
|
|
|
|
|
|
|
|
string_view addr;
|
|
|
|
string_view port;
|
|
|
|
|
|
|
|
if (str.empty())
|
|
|
|
{
|
|
|
|
ec = errors::invalid_port;
|
|
|
|
return ret;
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
|
|
|
|
// this is for IPv6 addresses
|
2017-03-31 04:55:54 +02:00
|
|
|
if (str.front() == '[')
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
2017-03-31 04:55:54 +02:00
|
|
|
auto const close_bracket = str.find_first_of(']');
|
|
|
|
if (close_bracket == string_view::npos)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
ec = errors::expected_close_bracket_in_address;
|
|
|
|
return ret;
|
|
|
|
}
|
2017-03-31 04:55:54 +02:00
|
|
|
addr = str.substr(1, close_bracket - 1);
|
|
|
|
port = str.substr(close_bracket + 1);
|
|
|
|
if (port.empty() || port.front() != ':')
|
2016-05-27 18:00:54 +02:00
|
|
|
{
|
|
|
|
ec = errors::invalid_port;
|
|
|
|
return ret;
|
|
|
|
}
|
2017-03-31 04:55:54 +02:00
|
|
|
// shave off the ':'
|
|
|
|
port = port.substr(1);
|
2014-07-06 21:18:00 +02:00
|
|
|
#if TORRENT_USE_IPV6
|
2018-01-04 10:48:22 +01:00
|
|
|
ret.address(make_address_v6(addr.to_string(), ec));
|
2014-07-06 21:18:00 +02:00
|
|
|
#else
|
|
|
|
ec = boost::asio::error::address_family_not_supported;
|
|
|
|
#endif
|
|
|
|
if (ec) return ret;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-03-31 04:55:54 +02:00
|
|
|
auto const port_pos = str.find_first_of(':');
|
|
|
|
if (port_pos == string_view::npos)
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
ec = errors::invalid_port;
|
|
|
|
return ret;
|
|
|
|
}
|
2017-03-31 04:55:54 +02:00
|
|
|
addr = str.substr(0, port_pos);
|
|
|
|
port = str.substr(port_pos + 1);
|
2018-01-04 10:48:22 +01:00
|
|
|
ret.address(make_address_v4(addr.to_string(), ec));
|
2014-07-06 21:18:00 +02:00
|
|
|
if (ec) return ret;
|
|
|
|
}
|
|
|
|
|
2017-03-31 04:55:54 +02:00
|
|
|
if (port.empty())
|
2014-07-06 21:18:00 +02:00
|
|
|
{
|
|
|
|
ec = errors::invalid_port;
|
|
|
|
return ret;
|
|
|
|
}
|
2016-05-27 18:00:54 +02:00
|
|
|
|
2017-03-31 04:55:54 +02:00
|
|
|
int const port_num = std::atoi(port.to_string().c_str());
|
|
|
|
if (port_num <= 0 || port_num > std::numeric_limits<std::uint16_t>::max())
|
|
|
|
{
|
|
|
|
ec = errors::invalid_port;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret.port(static_cast<std::uint16_t>(port_num));
|
2014-07-06 21:18:00 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-09-16 03:13:43 +02:00
|
|
|
sha1_hash hash_address(address const& ip)
|
2010-12-24 02:31:41 +01:00
|
|
|
{
|
|
|
|
#if TORRENT_USE_IPV6
|
|
|
|
if (ip.is_v6())
|
|
|
|
{
|
|
|
|
address_v6::bytes_type b = ip.to_v6().to_bytes();
|
2016-09-16 03:13:43 +02:00
|
|
|
return hasher(reinterpret_cast<char const*>(b.data()), int(b.size())).final();
|
2010-12-24 02:31:41 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
address_v4::bytes_type b = ip.to_v4().to_bytes();
|
2016-09-16 03:13:43 +02:00
|
|
|
return hasher(reinterpret_cast<char const*>(b.data()), int(b.size())).final();
|
2010-12-24 02:31:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-16 05:46:36 +02:00
|
|
|
}
|