2004-03-26 12:39:17 +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"
|
|
|
|
|
2004-03-26 12:39:17 +01:00
|
|
|
#include <string>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <sstream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <cctype>
|
|
|
|
#include <algorithm>
|
2007-12-03 07:03:16 +01:00
|
|
|
#include <iostream>
|
2009-01-27 07:17:55 +01:00
|
|
|
#include <limits>
|
2009-01-27 20:11:39 +01:00
|
|
|
#include <cstring>
|
2007-12-02 20:10:45 +01:00
|
|
|
|
|
|
|
#include <boost/optional.hpp>
|
2009-01-27 07:17:55 +01:00
|
|
|
#include <boost/array.hpp>
|
2004-03-26 12:39:17 +01:00
|
|
|
|
2007-09-10 08:12:41 +02:00
|
|
|
#include "libtorrent/assert.hpp"
|
2009-01-27 07:17:55 +01:00
|
|
|
#include "libtorrent/escape_string.hpp"
|
2007-09-10 08:12:41 +02:00
|
|
|
|
2004-03-26 12:39:17 +01:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
2009-01-27 07:17:55 +01:00
|
|
|
|
|
|
|
// lexical_cast's result depends on the locale. We need
|
|
|
|
// a well defined result
|
|
|
|
boost::array<char, 3 + std::numeric_limits<size_type>::digits10> to_string(size_type n)
|
|
|
|
{
|
|
|
|
boost::array<char, 3 + std::numeric_limits<size_type>::digits10> ret;
|
|
|
|
char *p = &ret.back();;
|
|
|
|
*p = '\0';
|
|
|
|
unsigned_size_type un = n;
|
|
|
|
if (n < 0) un = -un;
|
|
|
|
do {
|
|
|
|
*--p = '0' + un % 10;
|
|
|
|
un /= 10;
|
|
|
|
} while (un);
|
|
|
|
if (n < 0) *--p = '-';
|
|
|
|
std::memmove(&ret.front(), p, sizeof(ret.elems));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-02-18 07:01:24 +01:00
|
|
|
bool is_digit(char c)
|
|
|
|
{
|
|
|
|
return c >= '0' && c <= '9';
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isprint(char c)
|
|
|
|
{
|
|
|
|
return c >= 32 && c < 127;
|
|
|
|
}
|
|
|
|
|
2009-02-23 02:21:19 +01:00
|
|
|
std::string unescape_string(std::string const& s, error_code& ec)
|
2004-03-26 12:39:17 +01:00
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
for (std::string::const_iterator i = s.begin(); i != s.end(); ++i)
|
|
|
|
{
|
|
|
|
if(*i == '+')
|
|
|
|
{
|
2004-06-14 01:30:42 +02:00
|
|
|
ret += ' ';
|
2004-03-26 12:39:17 +01:00
|
|
|
}
|
|
|
|
else if (*i != '%')
|
|
|
|
{
|
|
|
|
ret += *i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i == s.end())
|
2009-02-23 02:21:19 +01:00
|
|
|
{
|
|
|
|
ec = error_code(errors::invalid_escaped_string, libtorrent_category);
|
2007-12-29 02:35:50 +01:00
|
|
|
return ret;
|
2009-02-23 02:21:19 +01:00
|
|
|
}
|
2004-03-26 12:39:17 +01:00
|
|
|
|
|
|
|
int high;
|
2004-06-14 01:30:42 +02:00
|
|
|
if(*i >= '0' && *i <= '9') high = *i - '0';
|
|
|
|
else if(*i >= 'A' && *i <= 'F') high = *i + 10 - 'A';
|
|
|
|
else if(*i >= 'a' && *i <= 'f') high = *i + 10 - 'a';
|
2007-12-29 02:35:50 +01:00
|
|
|
else
|
2009-02-23 02:21:19 +01:00
|
|
|
{
|
|
|
|
ec = error_code(errors::invalid_escaped_string, libtorrent_category);
|
2007-12-29 02:35:50 +01:00
|
|
|
return ret;
|
2009-02-23 02:21:19 +01:00
|
|
|
}
|
2004-03-26 12:39:17 +01:00
|
|
|
|
|
|
|
++i;
|
|
|
|
if (i == s.end())
|
2009-02-23 02:21:19 +01:00
|
|
|
{
|
|
|
|
ec = error_code(errors::invalid_escaped_string, libtorrent_category);
|
2007-12-29 02:35:50 +01:00
|
|
|
return ret;
|
2009-02-23 02:21:19 +01:00
|
|
|
}
|
2004-03-26 12:39:17 +01:00
|
|
|
|
|
|
|
int low;
|
2004-06-14 01:30:42 +02:00
|
|
|
if(*i >= '0' && *i <= '9') low = *i - '0';
|
|
|
|
else if(*i >= 'A' && *i <= 'F') low = *i + 10 - 'A';
|
|
|
|
else if(*i >= 'a' && *i <= 'f') low = *i + 10 - 'a';
|
2007-12-29 02:35:50 +01:00
|
|
|
else
|
2009-02-23 02:21:19 +01:00
|
|
|
{
|
|
|
|
ec = error_code(errors::invalid_escaped_string, libtorrent_category);
|
2007-12-29 02:35:50 +01:00
|
|
|
return ret;
|
2009-02-23 02:21:19 +01:00
|
|
|
}
|
2004-03-26 12:39:17 +01:00
|
|
|
|
|
|
|
ret += char(high * 16 + low);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string escape_string(const char* str, int len)
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(str != 0);
|
|
|
|
TORRENT_ASSERT(len >= 0);
|
2004-03-26 12:39:17 +01:00
|
|
|
// http://www.ietf.org/rfc/rfc2396.txt
|
|
|
|
// section 2.3
|
2004-07-25 22:57:44 +02:00
|
|
|
// some trackers seems to require that ' is escaped
|
|
|
|
// static const char unreserved_chars[] = "-_.!~*'()";
|
2004-11-18 23:33:50 +01:00
|
|
|
static const char unreserved_chars[] = "-_.!~*()"
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
|
|
|
|
"0123456789";
|
2004-03-26 12:39:17 +01:00
|
|
|
|
|
|
|
std::stringstream ret;
|
2005-03-24 13:13:47 +01:00
|
|
|
ret << std::hex << std::setfill('0');
|
2004-03-26 12:39:17 +01:00
|
|
|
for (int i = 0; i < len; ++i)
|
|
|
|
{
|
2004-11-18 23:33:50 +01:00
|
|
|
if (std::count(
|
2004-03-26 12:39:17 +01:00
|
|
|
unreserved_chars
|
|
|
|
, unreserved_chars+sizeof(unreserved_chars)-1
|
|
|
|
, *str))
|
|
|
|
{
|
|
|
|
ret << *str;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret << '%'
|
|
|
|
<< std::setw(2)
|
|
|
|
<< (int)static_cast<unsigned char>(*str);
|
|
|
|
}
|
|
|
|
++str;
|
|
|
|
}
|
|
|
|
return ret.str();
|
|
|
|
}
|
2006-04-25 23:04:48 +02:00
|
|
|
|
|
|
|
std::string escape_path(const char* str, int len)
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(str != 0);
|
|
|
|
TORRENT_ASSERT(len >= 0);
|
2006-04-25 23:04:48 +02:00
|
|
|
static const char unreserved_chars[] = "/-_.!~*()"
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
|
|
|
|
"0123456789";
|
|
|
|
|
|
|
|
std::stringstream ret;
|
|
|
|
ret << std::hex << std::setfill('0');
|
|
|
|
for (int i = 0; i < len; ++i)
|
|
|
|
{
|
|
|
|
if (std::count(
|
|
|
|
unreserved_chars
|
|
|
|
, unreserved_chars+sizeof(unreserved_chars)-1
|
|
|
|
, *str))
|
|
|
|
{
|
|
|
|
ret << *str;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret << '%'
|
|
|
|
<< std::setw(2)
|
|
|
|
<< (int)static_cast<unsigned char>(*str);
|
|
|
|
}
|
|
|
|
++str;
|
|
|
|
}
|
|
|
|
return ret.str();
|
|
|
|
}
|
2007-12-02 19:34:37 +01:00
|
|
|
|
|
|
|
std::string base64encode(const std::string& s)
|
|
|
|
{
|
|
|
|
static const char base64_table[] =
|
|
|
|
{
|
|
|
|
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
|
|
|
|
'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
|
|
|
|
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
|
|
|
|
'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
|
|
|
|
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
|
|
|
|
'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
|
|
|
|
'w', 'x', 'y', 'z', '0', '1', '2', '3',
|
|
|
|
'4', '5', '6', '7', '8', '9', '+', '/'
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned char inbuf[3];
|
|
|
|
unsigned char outbuf[4];
|
|
|
|
|
|
|
|
std::string ret;
|
|
|
|
for (std::string::const_iterator i = s.begin(); i != s.end();)
|
|
|
|
{
|
|
|
|
// available input is 1,2 or 3 bytes
|
|
|
|
// since we read 3 bytes at a time at most
|
|
|
|
int available_input = (std::min)(3, (int)std::distance(i, s.end()));
|
|
|
|
|
|
|
|
// clear input buffer
|
|
|
|
std::fill(inbuf, inbuf+3, 0);
|
|
|
|
|
|
|
|
// read a chunk of input into inbuf
|
2007-12-03 07:03:16 +01:00
|
|
|
std::copy(i, i + available_input, inbuf);
|
|
|
|
i += available_input;
|
2007-12-02 19:34:37 +01:00
|
|
|
|
|
|
|
// encode inbuf to outbuf
|
|
|
|
outbuf[0] = (inbuf[0] & 0xfc) >> 2;
|
|
|
|
outbuf[1] = ((inbuf[0] & 0x03) << 4) | ((inbuf [1] & 0xf0) >> 4);
|
|
|
|
outbuf[2] = ((inbuf[1] & 0x0f) << 2) | ((inbuf [2] & 0xc0) >> 6);
|
|
|
|
outbuf[3] = inbuf[2] & 0x3f;
|
|
|
|
|
|
|
|
// write output
|
|
|
|
for (int j = 0; j < available_input+1; ++j)
|
|
|
|
{
|
|
|
|
ret += base64_table[outbuf[j]];
|
|
|
|
}
|
|
|
|
|
|
|
|
// write pad
|
|
|
|
for (int j = 0; j < 3 - available_input; ++j)
|
|
|
|
{
|
|
|
|
ret += '=';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string base32encode(std::string const& s)
|
|
|
|
{
|
|
|
|
static const char base32_table[] =
|
|
|
|
{
|
|
|
|
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
|
|
|
|
'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
|
|
|
|
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
|
|
|
|
'Y', 'Z', '2', '3', '4', '5', '6', '7'
|
|
|
|
};
|
|
|
|
|
|
|
|
int input_output_mapping[] = {0, 2, 4, 5, 7, 8};
|
|
|
|
|
|
|
|
unsigned char inbuf[5];
|
|
|
|
unsigned char outbuf[8];
|
|
|
|
|
|
|
|
std::string ret;
|
|
|
|
for (std::string::const_iterator i = s.begin(); i != s.end();)
|
|
|
|
{
|
|
|
|
int available_input = (std::min)(5, (int)std::distance(i, s.end()));
|
|
|
|
|
|
|
|
// clear input buffer
|
|
|
|
std::fill(inbuf, inbuf+5, 0);
|
|
|
|
|
|
|
|
// read a chunk of input into inbuf
|
2007-12-03 07:03:16 +01:00
|
|
|
std::copy(i, i + available_input, inbuf);
|
|
|
|
i += available_input;
|
2007-12-02 19:34:37 +01:00
|
|
|
|
|
|
|
// encode inbuf to outbuf
|
|
|
|
outbuf[0] = (inbuf[0] & 0xf8) >> 3;
|
|
|
|
outbuf[1] = ((inbuf[0] & 0x07) << 2) | ((inbuf[1] & 0xc0) >> 6);
|
|
|
|
outbuf[2] = ((inbuf[1] & 0x3e) >> 1);
|
|
|
|
outbuf[3] = ((inbuf[1] & 0x01) << 4) | ((inbuf[2] & 0xf0) >> 4);
|
|
|
|
outbuf[4] = ((inbuf[2] & 0x0f) << 1) | ((inbuf[3] & 0x80) >> 7);
|
|
|
|
outbuf[5] = ((inbuf[3] & 0x7c) >> 2);
|
|
|
|
outbuf[6] = ((inbuf[3] & 0x03) << 3) | ((inbuf[4] & 0xe0) >> 5);
|
|
|
|
outbuf[7] = inbuf[4] & 0x1f;
|
|
|
|
|
|
|
|
// write output
|
|
|
|
int num_out = input_output_mapping[available_input];
|
|
|
|
for (int j = 0; j < num_out; ++j)
|
|
|
|
{
|
|
|
|
ret += base32_table[outbuf[j]];
|
|
|
|
}
|
|
|
|
|
|
|
|
// write pad
|
|
|
|
for (int j = 0; j < 8 - num_out; ++j)
|
|
|
|
{
|
|
|
|
ret += '=';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2007-12-02 20:10:45 +01:00
|
|
|
|
2007-12-03 07:03:16 +01:00
|
|
|
std::string base32decode(std::string const& s)
|
|
|
|
{
|
|
|
|
unsigned char inbuf[8];
|
|
|
|
unsigned char outbuf[5];
|
|
|
|
|
|
|
|
std::string ret;
|
|
|
|
for (std::string::const_iterator i = s.begin(); i != s.end();)
|
|
|
|
{
|
|
|
|
int available_input = (std::min)(8, (int)std::distance(i, s.end()));
|
|
|
|
|
|
|
|
int pad_start = 0;
|
|
|
|
if (available_input < 8) pad_start = available_input;
|
|
|
|
|
|
|
|
// clear input buffer
|
|
|
|
std::fill(inbuf, inbuf+8, 0);
|
|
|
|
for (int j = 0; j < available_input; ++j)
|
|
|
|
{
|
|
|
|
char in = std::toupper(*i++);
|
|
|
|
if (in >= 'A' && in <= 'Z')
|
|
|
|
inbuf[j] = in - 'A';
|
|
|
|
else if (in >= '2' && in <= '7')
|
|
|
|
inbuf[j] = in - '2' + ('Z' - 'A') + 1;
|
|
|
|
else if (in == '=')
|
|
|
|
{
|
|
|
|
inbuf[j] = 0;
|
|
|
|
if (pad_start == 0) pad_start = j;
|
|
|
|
}
|
|
|
|
else if (in == '1')
|
|
|
|
inbuf[j] = 'I' - 'A';
|
|
|
|
else
|
|
|
|
return std::string();
|
|
|
|
TORRENT_ASSERT(inbuf[j] == (inbuf[j] & 0x1f));
|
|
|
|
}
|
|
|
|
|
|
|
|
// decode inbuf to outbuf
|
|
|
|
outbuf[0] = inbuf[0] << 3;
|
|
|
|
outbuf[0] |= inbuf[1] >> 2;
|
|
|
|
outbuf[1] = (inbuf[1] & 0x3) << 6;
|
|
|
|
outbuf[1] |= inbuf[2] << 1;
|
|
|
|
outbuf[1] |= (inbuf[3] & 0x10) >> 4;
|
|
|
|
outbuf[2] = (inbuf[3] & 0x0f) << 4;
|
|
|
|
outbuf[2] |= (inbuf[4] & 0x1e) >> 1;
|
|
|
|
outbuf[3] = (inbuf[4] & 0x01) << 7;
|
|
|
|
outbuf[3] |= (inbuf[5] & 0x1f) << 2;
|
|
|
|
outbuf[3] |= (inbuf[6] & 0x18) >> 3;
|
|
|
|
outbuf[4] = (inbuf[6] & 0x07) << 5;
|
|
|
|
outbuf[4] |= inbuf[7];
|
|
|
|
|
|
|
|
int input_output_mapping[] = {5, 1, 1, 2, 2, 3, 4, 4, 5};
|
|
|
|
int num_out = input_output_mapping[pad_start];
|
|
|
|
|
|
|
|
// write output
|
|
|
|
std::copy(outbuf, outbuf + num_out, std::back_inserter(ret));
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-12-02 20:10:45 +01:00
|
|
|
boost::optional<std::string> url_has_argument(
|
|
|
|
std::string const& url, std::string argument)
|
|
|
|
{
|
|
|
|
size_t i = url.find('?');
|
|
|
|
if (i == std::string::npos) return boost::optional<std::string>();
|
|
|
|
++i;
|
|
|
|
|
|
|
|
argument += '=';
|
|
|
|
|
|
|
|
if (url.compare(i, argument.size(), argument) == 0)
|
|
|
|
{
|
|
|
|
size_t pos = i + argument.size();
|
|
|
|
return url.substr(pos, url.find('&', pos) - pos);
|
|
|
|
}
|
|
|
|
argument.insert(0, "&");
|
|
|
|
i = url.find(argument, i);
|
|
|
|
if (i == std::string::npos) return boost::optional<std::string>();
|
|
|
|
size_t pos = i + argument.size();
|
|
|
|
return url.substr(pos, url.find('&', pos) - pos);
|
|
|
|
}
|
|
|
|
|
2008-05-19 09:36:04 +02:00
|
|
|
TORRENT_EXPORT std::string to_hex(std::string const& s)
|
|
|
|
{
|
|
|
|
std::string ret;
|
2008-12-01 21:37:06 +01:00
|
|
|
char const* digits = "0123456789abcdef";
|
2008-05-19 09:36:04 +02:00
|
|
|
for (std::string::const_iterator i = s.begin(); i != s.end(); ++i)
|
|
|
|
{
|
|
|
|
ret += digits[((unsigned char)*i) >> 4];
|
|
|
|
ret += digits[((unsigned char)*i) & 0xf];
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2004-03-26 12:39:17 +01:00
|
|
|
}
|
2007-12-02 19:34:37 +01:00
|
|
|
|