2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
Copyright (c) 2003-2008, Arvid Norberg
|
2003-10-23 01:00:57 +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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-03-17 18:15:16 +01:00
|
|
|
#include "libtorrent/pch.hpp"
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include <ctime>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <iterator>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2004-03-05 13:04:47 +01:00
|
|
|
#include <boost/filesystem/path.hpp>
|
2008-05-12 08:35:24 +02:00
|
|
|
#include <boost/filesystem.hpp>
|
2004-11-01 00:16:08 +01:00
|
|
|
#include <boost/bind.hpp>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/torrent_info.hpp"
|
|
|
|
#include "libtorrent/bencode.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/entry.hpp"
|
2008-07-01 01:14:31 +02:00
|
|
|
#include "libtorrent/file.hpp"
|
2008-12-01 08:52:59 +01:00
|
|
|
#include "libtorrent/utf8.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2007-04-05 00:27:36 +02:00
|
|
|
namespace gr = boost::gregorian;
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2007-06-10 22:46:09 +02:00
|
|
|
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
2006-10-13 01:51:10 +02:00
|
|
|
void convert_to_utf8(std::string& str, unsigned char chr)
|
|
|
|
{
|
|
|
|
str += 0xc0 | ((chr & 0xff) >> 6);
|
|
|
|
str += 0x80 | (chr & 0x3f);
|
|
|
|
}
|
|
|
|
|
2008-12-31 11:18:19 +01:00
|
|
|
bool verify_encoding(std::string& target)
|
2006-10-13 01:51:10 +02:00
|
|
|
{
|
|
|
|
std::string tmp_path;
|
|
|
|
bool valid_encoding = true;
|
2008-12-31 11:18:19 +01:00
|
|
|
for (std::string::iterator i = target.begin()
|
|
|
|
, end(target.end()); i != end; ++i)
|
2006-10-13 01:51:10 +02:00
|
|
|
{
|
|
|
|
// valid ascii-character
|
|
|
|
if ((*i & 0x80) == 0)
|
|
|
|
{
|
|
|
|
tmp_path += *i;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (std::distance(i, end) < 2)
|
|
|
|
{
|
|
|
|
convert_to_utf8(tmp_path, *i);
|
|
|
|
valid_encoding = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// valid 2-byte utf-8 character
|
|
|
|
if ((i[0] & 0xe0) == 0xc0
|
|
|
|
&& (i[1] & 0xc0) == 0x80)
|
|
|
|
{
|
|
|
|
tmp_path += i[0];
|
|
|
|
tmp_path += i[1];
|
|
|
|
i += 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (std::distance(i, end) < 3)
|
|
|
|
{
|
|
|
|
convert_to_utf8(tmp_path, *i);
|
|
|
|
valid_encoding = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// valid 3-byte utf-8 character
|
|
|
|
if ((i[0] & 0xf0) == 0xe0
|
|
|
|
&& (i[1] & 0xc0) == 0x80
|
|
|
|
&& (i[2] & 0xc0) == 0x80)
|
|
|
|
{
|
|
|
|
tmp_path += i[0];
|
|
|
|
tmp_path += i[1];
|
|
|
|
tmp_path += i[2];
|
|
|
|
i += 2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (std::distance(i, end) < 4)
|
|
|
|
{
|
|
|
|
convert_to_utf8(tmp_path, *i);
|
|
|
|
valid_encoding = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// valid 4-byte utf-8 character
|
|
|
|
if ((i[0] & 0xf0) == 0xe0
|
|
|
|
&& (i[1] & 0xc0) == 0x80
|
|
|
|
&& (i[2] & 0xc0) == 0x80
|
|
|
|
&& (i[3] & 0xc0) == 0x80)
|
|
|
|
{
|
|
|
|
tmp_path += i[0];
|
|
|
|
tmp_path += i[1];
|
|
|
|
tmp_path += i[2];
|
|
|
|
tmp_path += i[3];
|
|
|
|
i += 3;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_to_utf8(tmp_path, *i);
|
|
|
|
valid_encoding = false;
|
|
|
|
}
|
|
|
|
// the encoding was not valid utf-8
|
|
|
|
// save the original encoding and replace the
|
|
|
|
// commonly used path with the correctly
|
|
|
|
// encoded string
|
2008-12-31 11:18:19 +01:00
|
|
|
if (!valid_encoding) target = tmp_path;
|
|
|
|
return valid_encoding;
|
|
|
|
}
|
|
|
|
|
|
|
|
void verify_encoding(file_entry& target)
|
|
|
|
{
|
|
|
|
std::string p = target.path.string();
|
|
|
|
if (!verify_encoding(p)) target.path = p;
|
2006-10-13 01:51:10 +02:00
|
|
|
}
|
|
|
|
|
2008-11-17 09:01:35 +01:00
|
|
|
void trim_path_element(std::string& path_element)
|
|
|
|
{
|
2008-11-17 19:31:42 +01:00
|
|
|
// on windows, NAME_MAX refers to Unicode characters
|
|
|
|
// on linux it refers to bytes (utf-8 encoded)
|
|
|
|
// TODO: Make this count Unicode characters instead of bytes on windows
|
2008-11-17 09:01:35 +01:00
|
|
|
if (path_element.size() > NAME_MAX)
|
|
|
|
{
|
|
|
|
// truncate filenames that are too long. But keep extensions!
|
|
|
|
std::string ext = fs::extension(path_element);
|
|
|
|
if (ext.size() > 15)
|
|
|
|
{
|
|
|
|
path_element.resize(NAME_MAX);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
path_element.resize(NAME_MAX - ext.size());
|
|
|
|
path_element += ext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
bool extract_single_file(lazy_entry const& dict, file_entry& target
|
2005-05-12 01:03:12 +02:00
|
|
|
, std::string const& root_dir)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* length = dict.dict_find("length");
|
|
|
|
if (length == 0 || length->type() != lazy_entry::int_t)
|
2007-12-28 21:11:10 +01:00
|
|
|
return false;
|
2008-05-14 07:29:42 +02:00
|
|
|
target.size = length->int_value();
|
2005-05-12 01:03:12 +02:00
|
|
|
target.path = root_dir;
|
2007-11-25 11:47:05 +01:00
|
|
|
target.file_base = 0;
|
2005-08-17 03:35:37 +02:00
|
|
|
|
|
|
|
// prefer the name.utf-8
|
|
|
|
// because if it exists, it is more
|
|
|
|
// likely to be correctly encoded
|
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* p = dict.dict_find("path.utf-8");
|
|
|
|
if (p == 0 || p->type() != lazy_entry::list_t)
|
|
|
|
p = dict.dict_find("path");
|
|
|
|
if (p == 0 || p->type() != lazy_entry::list_t)
|
|
|
|
return false;
|
2005-08-17 03:35:37 +02:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
for (int i = 0, end(p->list_size()); i < end; ++i)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
if (p->list_at(i)->type() != lazy_entry::string_t)
|
2007-12-28 21:11:10 +01:00
|
|
|
return false;
|
2008-05-14 07:29:42 +02:00
|
|
|
std::string path_element = p->list_at(i)->string_value();
|
2008-11-17 09:01:35 +01:00
|
|
|
trim_path_element(path_element);
|
2008-05-14 07:29:42 +02:00
|
|
|
if (path_element != "..")
|
|
|
|
target.path /= path_element;
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
2006-10-13 01:51:10 +02:00
|
|
|
verify_encoding(target);
|
2007-12-28 21:11:10 +01:00
|
|
|
if (target.path.is_complete())
|
|
|
|
return false;
|
2008-10-03 07:49:41 +02:00
|
|
|
|
|
|
|
// bitcomet pad file
|
2009-01-11 11:32:57 +01:00
|
|
|
if (target.path.string().find("_____padding_file_") != std::string::npos)
|
2008-10-03 07:49:41 +02:00
|
|
|
target.pad_file = true;
|
|
|
|
|
2009-01-11 23:27:43 +01:00
|
|
|
lazy_entry const* attr = dict.dict_find_string("attr");
|
|
|
|
if (attr)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < attr->string_length(); ++i)
|
|
|
|
{
|
|
|
|
switch (attr->string_ptr()[i])
|
|
|
|
{
|
|
|
|
case 'x': target.executable_attribute = true; break;
|
|
|
|
case 'h': target.hidden_attribute = true; break;
|
|
|
|
case 'p': target.pad_file = true; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-28 21:11:10 +01:00
|
|
|
return true;
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
bool extract_files(lazy_entry const& list, file_storage& target
|
2005-05-12 01:03:12 +02:00
|
|
|
, std::string const& root_dir)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
if (list.type() != lazy_entry::list_t) return false;
|
|
|
|
for (int i = 0, end(list.list_size()); i < end; ++i)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-05-28 10:44:40 +02:00
|
|
|
file_entry e;
|
|
|
|
if (!extract_single_file(*list.list_at(i), e, root_dir))
|
2007-12-28 21:11:10 +01:00
|
|
|
return false;
|
2008-05-28 10:44:40 +02:00
|
|
|
target.add_file(e);
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
2007-12-28 21:11:10 +01:00
|
|
|
return true;
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
2008-07-01 13:00:00 +02:00
|
|
|
|
|
|
|
int load_file(fs::path const& filename, std::vector<char>& v)
|
|
|
|
{
|
|
|
|
file f;
|
2008-07-18 01:41:46 +02:00
|
|
|
error_code ec;
|
2008-10-19 07:03:17 +02:00
|
|
|
if (!f.open(filename, file::read_only, ec)) return -1;
|
2009-01-11 03:02:34 +01:00
|
|
|
size_type s = f.get_size(ec);
|
2008-07-18 01:41:46 +02:00
|
|
|
if (ec) return -1;
|
2008-07-01 13:00:00 +02:00
|
|
|
if (s > 5000000) return -2;
|
|
|
|
v.resize(s);
|
2008-10-05 06:52:01 +02:00
|
|
|
if (s == 0) return 0;
|
2009-01-11 03:02:34 +01:00
|
|
|
file::iovec_t b = {&v[0], s};
|
|
|
|
size_type read = f.readv(0, &b, 1, ec);
|
2008-07-01 13:00:00 +02:00
|
|
|
if (read != s) return -3;
|
2008-07-18 01:41:46 +02:00
|
|
|
if (ec) return -3;
|
2008-07-01 13:00:00 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-03 17:14:08 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2004-03-03 14:47:12 +01:00
|
|
|
// standard constructor that parses a torrent file
|
2008-05-14 07:29:42 +02:00
|
|
|
torrent_info::torrent_info(entry const& torrent_file)
|
2008-05-28 10:44:40 +02:00
|
|
|
: m_creation_date(pt::ptime(pt::not_a_date_time))
|
2005-05-12 01:03:12 +02:00
|
|
|
, m_multifile(false)
|
2006-08-01 17:27:08 +02:00
|
|
|
, m_private(false)
|
2008-05-14 07:29:42 +02:00
|
|
|
, m_info_section_size(0)
|
|
|
|
, m_piece_hashes(0)
|
|
|
|
{
|
|
|
|
std::vector<char> tmp;
|
|
|
|
std::back_insert_iterator<std::vector<char> > out(tmp);
|
|
|
|
bencode(out, torrent_file);
|
|
|
|
|
|
|
|
lazy_entry e;
|
|
|
|
lazy_bdecode(&tmp[0], &tmp[0] + tmp.size(), e);
|
|
|
|
std::string error;
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (!parse_torrent_file(e, error))
|
|
|
|
throw invalid_torrent_file();
|
|
|
|
#else
|
2008-07-01 13:00:00 +02:00
|
|
|
parse_torrent_file(e, error);
|
2007-05-10 00:54:26 +02:00
|
|
|
#endif
|
2008-05-14 07:29:42 +02:00
|
|
|
}
|
2008-08-03 17:14:08 +02:00
|
|
|
#endif
|
2008-05-14 07:29:42 +02:00
|
|
|
|
|
|
|
torrent_info::torrent_info(lazy_entry const& torrent_file)
|
2008-05-28 10:44:40 +02:00
|
|
|
: m_creation_date(pt::ptime(pt::not_a_date_time))
|
2008-05-14 07:29:42 +02:00
|
|
|
, m_multifile(false)
|
|
|
|
, m_private(false)
|
|
|
|
, m_info_section_size(0)
|
|
|
|
, m_piece_hashes(0)
|
2004-03-03 14:47:12 +01:00
|
|
|
{
|
2007-12-28 21:11:10 +01:00
|
|
|
std::string error;
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2008-05-14 07:29:42 +02:00
|
|
|
if (!parse_torrent_file(torrent_file, error))
|
2004-03-03 14:47:12 +01:00
|
|
|
throw invalid_torrent_file();
|
2007-12-28 21:11:10 +01:00
|
|
|
#else
|
2008-07-01 13:00:00 +02:00
|
|
|
parse_torrent_file(torrent_file, error);
|
2007-12-28 21:11:10 +01:00
|
|
|
#endif
|
2004-03-03 14:47:12 +01:00
|
|
|
}
|
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
torrent_info::torrent_info(char const* buffer, int size)
|
2008-05-28 10:44:40 +02:00
|
|
|
: m_creation_date(pt::ptime(pt::not_a_date_time))
|
2008-05-14 07:29:42 +02:00
|
|
|
, m_multifile(false)
|
|
|
|
, m_private(false)
|
|
|
|
, m_info_section_size(0)
|
|
|
|
, m_piece_hashes(0)
|
|
|
|
{
|
|
|
|
std::string error;
|
|
|
|
lazy_entry e;
|
|
|
|
lazy_bdecode(buffer, buffer + size, e);
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (!parse_torrent_file(e, error))
|
|
|
|
throw invalid_torrent_file();
|
|
|
|
#else
|
2008-07-01 13:00:00 +02:00
|
|
|
parse_torrent_file(e, error);
|
2008-05-14 07:29:42 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2004-03-03 14:47:12 +01:00
|
|
|
// constructor used for creating new torrents
|
|
|
|
// will not contain any hashes, comments, creation date
|
|
|
|
// just the necessary to use it with piece manager
|
2005-07-06 02:58:23 +02:00
|
|
|
// used for torrents with no metadata
|
2004-10-10 02:42:48 +02:00
|
|
|
torrent_info::torrent_info(sha1_hash const& info_hash)
|
2008-05-28 10:44:40 +02:00
|
|
|
: m_info_hash(info_hash)
|
2007-04-05 00:27:36 +02:00
|
|
|
, m_creation_date(pt::second_clock::universal_time())
|
2005-05-12 01:03:12 +02:00
|
|
|
, m_multifile(false)
|
2006-11-14 01:08:16 +01:00
|
|
|
, m_private(false)
|
2008-05-14 07:29:42 +02:00
|
|
|
, m_info_section_size(0)
|
|
|
|
, m_piece_hashes(0)
|
2008-05-28 10:44:40 +02:00
|
|
|
{}
|
2004-10-10 02:42:48 +02:00
|
|
|
|
2008-07-01 13:00:00 +02:00
|
|
|
torrent_info::torrent_info(fs::path const& filename)
|
2008-05-28 10:44:40 +02:00
|
|
|
: m_creation_date(pt::ptime(pt::not_a_date_time))
|
2008-05-12 08:35:24 +02:00
|
|
|
, m_multifile(false)
|
|
|
|
, m_private(false)
|
|
|
|
{
|
2008-07-01 01:14:31 +02:00
|
|
|
std::vector<char> buf;
|
|
|
|
int ret = load_file(filename, buf);
|
|
|
|
if (ret < 0) return;
|
2008-05-14 07:29:42 +02:00
|
|
|
|
2008-12-01 08:52:59 +01:00
|
|
|
if (buf.empty())
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
throw invalid_torrent_file();
|
|
|
|
#else
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
lazy_entry e;
|
|
|
|
lazy_bdecode(&buf[0], &buf[0] + buf.size(), e);
|
|
|
|
std::string error;
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
if (!parse_torrent_file(e, error))
|
|
|
|
throw invalid_torrent_file();
|
|
|
|
#else
|
|
|
|
parse_torrent_file(e, error);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
torrent_info::torrent_info(fs::wpath const& filename)
|
|
|
|
: m_creation_date(pt::ptime(pt::not_a_date_time))
|
|
|
|
, m_multifile(false)
|
|
|
|
, m_private(false)
|
|
|
|
{
|
|
|
|
std::vector<char> buf;
|
|
|
|
std::string utf8;
|
|
|
|
wchar_utf8(filename.string(), utf8);
|
|
|
|
int ret = load_file(utf8, buf);
|
|
|
|
if (ret < 0) return;
|
|
|
|
|
2008-10-17 03:46:06 +02:00
|
|
|
if (buf.empty())
|
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
|
|
|
throw invalid_torrent_file();
|
|
|
|
#else
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry e;
|
|
|
|
lazy_bdecode(&buf[0], &buf[0] + buf.size(), e);
|
2008-07-01 01:14:31 +02:00
|
|
|
std::string error;
|
2008-05-12 08:35:24 +02:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2008-05-14 07:29:42 +02:00
|
|
|
if (!parse_torrent_file(e, error))
|
2008-05-12 08:35:24 +02:00
|
|
|
throw invalid_torrent_file();
|
|
|
|
#else
|
2008-07-01 13:00:00 +02:00
|
|
|
parse_torrent_file(e, error);
|
2008-05-12 08:35:24 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2004-10-29 15:21:09 +02:00
|
|
|
torrent_info::~torrent_info()
|
|
|
|
{}
|
|
|
|
|
2008-12-24 21:07:34 +01:00
|
|
|
void torrent_info::copy_on_write()
|
|
|
|
{
|
|
|
|
if (m_orig_files) return;
|
|
|
|
m_orig_files.reset(new file_storage(m_files));
|
|
|
|
}
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
void torrent_info::swap(torrent_info& ti)
|
|
|
|
{
|
|
|
|
using std::swap;
|
|
|
|
m_urls.swap(ti.m_urls);
|
|
|
|
m_url_seeds.swap(ti.m_url_seeds);
|
|
|
|
m_files.swap(ti.m_files);
|
2008-12-24 21:07:34 +01:00
|
|
|
m_orig_files.swap(ti.m_orig_files);
|
2007-06-10 22:46:09 +02:00
|
|
|
m_nodes.swap(ti.m_nodes);
|
|
|
|
swap(m_info_hash, ti.m_info_hash);
|
|
|
|
swap(m_creation_date, ti.m_creation_date);
|
|
|
|
m_comment.swap(ti.m_comment);
|
|
|
|
m_created_by.swap(ti.m_created_by);
|
|
|
|
swap(m_multifile, ti.m_multifile);
|
|
|
|
swap(m_private, ti.m_private);
|
2008-05-14 07:29:42 +02:00
|
|
|
swap(m_info_section, ti.m_info_section);
|
|
|
|
swap(m_info_section_size, ti.m_info_section_size);
|
|
|
|
swap(m_piece_hashes, ti.m_piece_hashes);
|
|
|
|
swap(m_info_dict, ti.m_info_dict);
|
2004-10-10 02:42:48 +02:00
|
|
|
}
|
2004-03-03 14:47:12 +01:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
bool torrent_info::parse_info_section(lazy_entry const& info, std::string& error)
|
2004-06-14 01:30:42 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
if (info.type() != lazy_entry::dict_t)
|
2007-12-28 21:11:10 +01:00
|
|
|
{
|
|
|
|
error = "'info' entry is not a dictionary";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
// hash the info-field to calculate info-hash
|
2004-06-14 01:30:42 +02:00
|
|
|
hasher h;
|
2008-05-14 07:29:42 +02:00
|
|
|
std::pair<char const*, int> section = info.data_section();
|
|
|
|
h.update(section.first, section.second);
|
2004-06-14 01:30:42 +02:00
|
|
|
m_info_hash = h.final();
|
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
// copy the info section
|
|
|
|
m_info_section_size = section.second;
|
|
|
|
m_info_section.reset(new char[m_info_section_size]);
|
|
|
|
memcpy(m_info_section.get(), section.first, m_info_section_size);
|
|
|
|
TORRENT_ASSERT(section.first[0] == 'd');
|
|
|
|
TORRENT_ASSERT(section.first[m_info_section_size-1] == 'e');
|
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
// extract piece length
|
2008-05-28 10:44:40 +02:00
|
|
|
int piece_length = info.dict_find_int_value("piece length", -1);
|
|
|
|
if (piece_length <= 0)
|
2007-12-28 21:11:10 +01:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
error = "invalid or missing 'piece length' entry in torrent file";
|
2007-12-28 21:11:10 +01:00
|
|
|
return false;
|
|
|
|
}
|
2008-05-28 10:44:40 +02:00
|
|
|
m_files.set_piece_length(piece_length);
|
2004-06-14 01:30:42 +02:00
|
|
|
|
|
|
|
// extract file name (or the directory name if it's a multifile libtorrent)
|
2008-05-28 10:44:40 +02:00
|
|
|
std::string name = info.dict_find_string_value("name.utf-8");
|
|
|
|
if (name.empty()) name = info.dict_find_string_value("name");
|
|
|
|
if (name.empty())
|
2007-12-28 21:11:10 +01:00
|
|
|
{
|
2008-05-28 10:44:40 +02:00
|
|
|
error = "missing name in torrent file";
|
2008-05-14 07:29:42 +02:00
|
|
|
return false;
|
2007-12-28 21:11:10 +01:00
|
|
|
}
|
2008-05-14 07:29:42 +02:00
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
fs::path tmp = name;
|
2007-12-28 21:11:10 +01:00
|
|
|
if (tmp.is_complete())
|
|
|
|
{
|
2008-05-28 10:44:40 +02:00
|
|
|
name = tmp.leaf();
|
2008-11-17 09:01:35 +01:00
|
|
|
trim_path_element(name);
|
2008-01-06 08:35:32 +01:00
|
|
|
}
|
2008-08-16 23:11:27 +02:00
|
|
|
#if BOOST_VERSION < 103600
|
2008-01-06 08:35:32 +01:00
|
|
|
else if (tmp.has_branch_path())
|
2008-08-16 23:11:27 +02:00
|
|
|
#else
|
|
|
|
else if (tmp.has_parent_path())
|
|
|
|
#endif
|
2008-01-06 08:35:32 +01:00
|
|
|
{
|
|
|
|
fs::path p;
|
|
|
|
for (fs::path::iterator i = tmp.begin()
|
|
|
|
, end(tmp.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
if (*i == "." || *i == "..") continue;
|
2008-11-17 09:01:35 +01:00
|
|
|
std::string path_element = *i;
|
|
|
|
trim_path_element(path_element);
|
|
|
|
p /= path_element;
|
2008-01-06 08:35:32 +01:00
|
|
|
}
|
2008-05-28 10:44:40 +02:00
|
|
|
name = p.string();
|
2007-12-28 21:11:10 +01:00
|
|
|
}
|
2008-11-17 09:01:35 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
trim_path_element(name);
|
|
|
|
}
|
2008-05-28 10:44:40 +02:00
|
|
|
if (name == ".." || name == ".")
|
2007-12-28 21:11:10 +01:00
|
|
|
{
|
2008-01-06 08:35:32 +01:00
|
|
|
error = "invalid 'name' of torrent (possible exploit attempt)";
|
2007-12-28 21:11:10 +01:00
|
|
|
return false;
|
|
|
|
}
|
2008-12-31 11:18:19 +01:00
|
|
|
|
|
|
|
// correct utf-8 encoding errors
|
|
|
|
verify_encoding(name);
|
2005-05-12 01:03:12 +02:00
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
// extract file list
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* i = info.dict_find_list("files");
|
2004-06-14 01:30:42 +02:00
|
|
|
if (i == 0)
|
|
|
|
{
|
|
|
|
// if there's no list of files, there has to be a length
|
|
|
|
// field.
|
|
|
|
file_entry e;
|
2008-05-28 10:44:40 +02:00
|
|
|
e.path = name;
|
2006-06-18 00:04:25 +02:00
|
|
|
e.offset = 0;
|
2008-05-14 07:29:42 +02:00
|
|
|
e.size = info.dict_find_int_value("length", -1);
|
2008-10-03 07:49:41 +02:00
|
|
|
// bitcomet pad file
|
2009-01-11 23:27:43 +01:00
|
|
|
if (e.path.string().find("_____padding_file_") != std::string::npos)
|
2008-10-03 07:49:41 +02:00
|
|
|
e.pad_file = true;
|
2008-05-14 07:29:42 +02:00
|
|
|
if (e.size < 0)
|
|
|
|
{
|
|
|
|
error = "invalid length of torrent";
|
|
|
|
return false;
|
|
|
|
}
|
2008-05-28 10:44:40 +02:00
|
|
|
m_files.add_file(e);
|
2008-05-14 07:29:42 +02:00
|
|
|
m_multifile = false;
|
2004-06-14 01:30:42 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-05-28 10:44:40 +02:00
|
|
|
if (!extract_files(*i, m_files, name))
|
2007-12-28 21:11:10 +01:00
|
|
|
{
|
|
|
|
error = "failed to parse files from torrent file";
|
|
|
|
return false;
|
|
|
|
}
|
2005-05-12 01:03:12 +02:00
|
|
|
m_multifile = true;
|
2004-06-14 01:30:42 +02:00
|
|
|
}
|
2008-05-28 10:44:40 +02:00
|
|
|
m_files.set_name(name);
|
2004-06-14 01:30:42 +02:00
|
|
|
|
|
|
|
// extract sha-1 hashes for all pieces
|
|
|
|
// we want this division to round upwards, that's why we have the
|
|
|
|
// extra addition
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
m_files.set_num_pieces(int((m_files.total_size() + m_files.piece_length() - 1)
|
|
|
|
/ m_files.piece_length()));
|
2008-05-14 07:29:42 +02:00
|
|
|
|
|
|
|
lazy_entry const* pieces = info.dict_find("pieces");
|
|
|
|
if (pieces == 0 || pieces->type() != lazy_entry::string_t)
|
2007-12-28 21:11:10 +01:00
|
|
|
{
|
|
|
|
error = "invalid or missing 'pieces' entry in torrent file";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
if (pieces->string_length() != m_files.num_pieces() * 20)
|
2007-12-28 21:11:10 +01:00
|
|
|
{
|
|
|
|
error = "incorrect number of piece hashes in torrent file";
|
|
|
|
return false;
|
|
|
|
}
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
m_piece_hashes = m_info_section.get() + (pieces->string_ptr() - section.first);
|
|
|
|
TORRENT_ASSERT(m_piece_hashes >= m_info_section.get());
|
|
|
|
TORRENT_ASSERT(m_piece_hashes < m_info_section.get() + m_info_section_size);
|
2005-10-16 18:58:41 +02:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
m_private = info.dict_find_int_value("private", 0);
|
2007-12-28 21:11:10 +01:00
|
|
|
return true;
|
2004-06-14 01:30:42 +02:00
|
|
|
}
|
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
bool torrent_info::parse_torrent_file(lazy_entry const& torrent_file, std::string& error)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
if (torrent_file.type() != lazy_entry::dict_t)
|
2007-12-28 21:11:10 +01:00
|
|
|
{
|
|
|
|
error = "torrent file is not a dictionary";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// extract the url of the tracker
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* i = torrent_file.dict_find_list("announce-list");
|
|
|
|
if (i)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
m_urls.reserve(i->list_size());
|
|
|
|
for (int j = 0, end(i->list_size()); j < end; ++j)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* tier = i->list_at(j);
|
2008-05-14 21:44:36 +02:00
|
|
|
if (tier->type() != lazy_entry::list_t) continue;
|
2008-05-14 07:29:42 +02:00
|
|
|
for (int k = 0, end(tier->list_size()); k < end; ++k)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
announce_entry e(tier->list_string_value_at(k));
|
|
|
|
if (e.url.empty()) continue;
|
|
|
|
e.tier = j;
|
2008-11-27 21:51:59 +01:00
|
|
|
e.fail_limit = 0;
|
2008-11-29 09:38:40 +01:00
|
|
|
e.source = announce_entry::source_torrent;
|
2003-10-23 01:00:57 +02:00
|
|
|
m_urls.push_back(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-16 02:26:35 +01:00
|
|
|
if (!m_urls.empty())
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-12-16 02:26:35 +01:00
|
|
|
// shuffle each tier
|
|
|
|
std::vector<announce_entry>::iterator start = m_urls.begin();
|
|
|
|
std::vector<announce_entry>::iterator stop;
|
|
|
|
int current_tier = m_urls.front().tier;
|
|
|
|
for (stop = m_urls.begin(); stop != m_urls.end(); ++stop)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-12-16 02:26:35 +01:00
|
|
|
if (stop->tier != current_tier)
|
|
|
|
{
|
|
|
|
std::random_shuffle(start, stop);
|
|
|
|
start = stop;
|
|
|
|
current_tier = stop->tier;
|
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
2008-12-16 02:26:35 +01:00
|
|
|
std::random_shuffle(start, stop);
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
}
|
2007-12-28 21:11:10 +01:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
|
|
|
|
if (m_urls.empty())
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
announce_entry e(torrent_file.dict_find_string_value("announce"));
|
2008-11-27 21:51:59 +01:00
|
|
|
e.fail_limit = 0;
|
2008-11-29 09:38:40 +01:00
|
|
|
e.source = announce_entry::source_torrent;
|
2008-05-14 07:29:42 +02:00
|
|
|
if (!e.url.empty()) m_urls.push_back(e);
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* nodes = torrent_file.dict_find_list("nodes");
|
|
|
|
if (nodes)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
for (int i = 0, end(nodes->list_size()); i < end; ++i)
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* n = nodes->list_at(i);
|
|
|
|
if (n->type() != lazy_entry::list_t
|
|
|
|
|| n->list_size() < 2
|
|
|
|
|| n->list_at(0)->type() != lazy_entry::string_t
|
|
|
|
|| n->list_at(1)->type() != lazy_entry::int_t)
|
|
|
|
continue;
|
|
|
|
m_nodes.push_back(std::make_pair(
|
|
|
|
n->list_at(0)->string_value()
|
|
|
|
, int(n->list_at(1)->int_value())));
|
2006-08-01 17:27:08 +02:00
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
2004-01-24 18:14:03 +01:00
|
|
|
// extract creation date
|
2008-05-14 07:29:42 +02:00
|
|
|
size_type cd = torrent_file.dict_find_int_value("creation date", -1);
|
|
|
|
if (cd >= 0)
|
2004-01-24 18:14:03 +01:00
|
|
|
{
|
2007-04-05 00:27:36 +02:00
|
|
|
m_creation_date = pt::ptime(gr::date(1970, gr::Jan, 1))
|
2008-05-14 07:29:42 +02:00
|
|
|
+ pt::seconds(long(cd));
|
2004-01-24 18:14:03 +01:00
|
|
|
}
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
// if there are any url-seeds, extract them
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* url_seeds = torrent_file.dict_find("url-list");
|
|
|
|
if (url_seeds && url_seeds->type() == lazy_entry::string_t)
|
2006-04-25 23:04:48 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
m_url_seeds.push_back(url_seeds->string_value());
|
2007-12-28 21:11:10 +01:00
|
|
|
}
|
2008-05-14 07:29:42 +02:00
|
|
|
else if (url_seeds && url_seeds->type() == lazy_entry::list_t)
|
2007-12-28 21:11:10 +01:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
for (int i = 0, end(url_seeds->list_size()); i < end; ++i)
|
2006-04-25 23:04:48 +02:00
|
|
|
{
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* url = url_seeds->list_at(i);
|
|
|
|
if (url->type() != lazy_entry::string_t) continue;
|
|
|
|
m_url_seeds.push_back(url->string_value());
|
2008-12-30 04:54:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if there are any http-seeds, extract them
|
|
|
|
lazy_entry const* http_seeds = torrent_file.dict_find("httpseeds");
|
|
|
|
if (http_seeds && http_seeds->type() == lazy_entry::string_t)
|
|
|
|
{
|
|
|
|
m_http_seeds.push_back(http_seeds->string_value());
|
|
|
|
}
|
|
|
|
else if (http_seeds && http_seeds->type() == lazy_entry::list_t)
|
|
|
|
{
|
|
|
|
for (int i = 0, end(http_seeds->list_size()); i < end; ++i)
|
|
|
|
{
|
|
|
|
lazy_entry const* url = http_seeds->list_at(i);
|
|
|
|
if (url->type() != lazy_entry::string_t) continue;
|
|
|
|
m_http_seeds.push_back(url->string_value());
|
2006-04-25 23:04:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
m_comment = torrent_file.dict_find_string_value("comment.utf-8");
|
|
|
|
if (m_comment.empty()) m_comment = torrent_file.dict_find_string_value("comment");
|
2008-12-31 11:18:19 +01:00
|
|
|
verify_encoding(m_comment);
|
2005-08-11 04:01:03 +02:00
|
|
|
|
2008-05-15 19:42:28 +02:00
|
|
|
m_created_by = torrent_file.dict_find_string_value("created by.utf-8");
|
2008-05-15 23:48:11 +02:00
|
|
|
if (m_created_by.empty()) m_created_by = torrent_file.dict_find_string_value("created by");
|
2008-12-31 11:18:19 +01:00
|
|
|
verify_encoding(m_created_by);
|
2005-08-18 00:59:21 +02:00
|
|
|
|
2008-05-14 07:29:42 +02:00
|
|
|
lazy_entry const* info = torrent_file.dict_find_dict("info");
|
|
|
|
if (info == 0)
|
2007-12-28 21:11:10 +01:00
|
|
|
{
|
|
|
|
error = "missing or invalid 'info' section in torrent file";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return parse_info_section(*info, error);
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
2007-04-05 00:27:36 +02:00
|
|
|
boost::optional<pt::ptime>
|
2004-03-05 13:04:47 +01:00
|
|
|
torrent_info::creation_date() const
|
2003-12-01 06:01:40 +01:00
|
|
|
{
|
2007-04-05 00:27:36 +02:00
|
|
|
if (m_creation_date != pt::ptime(gr::date(pt::not_a_date_time)))
|
2003-12-01 06:01:40 +01:00
|
|
|
{
|
2007-04-05 00:27:36 +02:00
|
|
|
return boost::optional<pt::ptime>(m_creation_date);
|
2004-03-05 13:04:47 +01:00
|
|
|
}
|
2007-04-05 00:27:36 +02:00
|
|
|
return boost::optional<pt::ptime>();
|
2004-03-05 13:04:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void torrent_info::add_tracker(std::string const& url, int tier)
|
|
|
|
{
|
2004-09-12 12:12:16 +02:00
|
|
|
announce_entry e(url);
|
2004-03-05 13:04:47 +01:00
|
|
|
e.tier = tier;
|
2008-11-29 09:38:40 +01:00
|
|
|
e.source = announce_entry::source_client;
|
2004-03-05 13:04:47 +01:00
|
|
|
m_urls.push_back(e);
|
2004-11-01 00:16:08 +01:00
|
|
|
|
|
|
|
using boost::bind;
|
2008-11-29 09:38:40 +01:00
|
|
|
std::sort(m_urls.begin(), m_urls.end(), bind(&announce_entry::tier, _1)
|
|
|
|
< bind(&announce_entry::tier, _2));
|
2004-03-05 13:04:47 +01:00
|
|
|
}
|
|
|
|
|
2008-08-03 17:14:08 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2007-04-10 11:11:32 +02:00
|
|
|
// ------- start deprecation -------
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
void torrent_info::print(std::ostream& os) const
|
|
|
|
{
|
|
|
|
os << "trackers:\n";
|
|
|
|
for (std::vector<announce_entry>::const_iterator i = trackers().begin();
|
2006-08-06 18:36:00 +02:00
|
|
|
i != trackers().end(); ++i)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
os << i->tier << ": " << i->url << "\n";
|
|
|
|
}
|
2003-11-20 20:58:29 +01:00
|
|
|
if (!m_comment.empty())
|
|
|
|
os << "comment: " << m_comment << "\n";
|
2007-04-10 11:11:32 +02:00
|
|
|
// if (m_creation_date != pt::ptime(gr::date(pt::not_a_date_time)))
|
|
|
|
// os << "creation date: " << to_simple_string(m_creation_date) << "\n";
|
2006-08-06 18:36:00 +02:00
|
|
|
os << "private: " << (m_private?"yes":"no") << "\n";
|
2003-10-23 01:00:57 +02:00
|
|
|
os << "number of pieces: " << num_pieces() << "\n";
|
|
|
|
os << "piece length: " << piece_length() << "\n";
|
|
|
|
os << "files:\n";
|
2008-05-28 10:44:40 +02:00
|
|
|
for (file_storage::iterator i = m_files.begin(); i != m_files.end(); ++i)
|
2004-03-05 13:04:47 +01:00
|
|
|
os << " " << std::setw(11) << i->size << " " << i->path.string() << "\n";
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
2007-04-10 11:11:32 +02:00
|
|
|
// ------- end deprecation -------
|
2008-08-03 17:14:08 +02:00
|
|
|
#endif
|
2007-04-10 11:11:32 +02:00
|
|
|
|
2003-10-26 04:18:17 +01:00
|
|
|
}
|
2007-12-28 21:11:10 +01:00
|
|
|
|