/* Copyright (c) 2008-2013, 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. */ #include "libtorrent/session.hpp" #include "libtorrent/hasher.hpp" #include "libtorrent/file_pool.hpp" #include "libtorrent/file.hpp" #include "libtorrent/storage.hpp" #include "libtorrent/bencode.hpp" #include "libtorrent/create_torrent.hpp" #include "libtorrent/thread.hpp" #include "libtorrent/alert_types.hpp" #include "test.hpp" #include "setup_transfer.hpp" #include "web_seed_suite.hpp" #include #include #include #include "setup_transfer.hpp" #include using namespace libtorrent; namespace lt = libtorrent; namespace { int peer_disconnects = 0; bool on_alert(alert const* a) { if (alert_cast(a)) ++peer_disconnects; else if (alert_cast(a)) ++peer_disconnects; return false; } const int num_pieces = 9; /* static sha1_hash file_hash(std::string const& name) { std::vector buf; error_code ec; load_file(name, buf, ec); if (buf.empty()) return sha1_hash(0); hasher h(&buf[0], buf.size()); return h.final(); } */ static char const* proxy_name[] = {"", "_socks4", "_socks5", "_socks5_pw", "_http", "_http_pw", "_i2p"}; } // anonymous namespace // proxy: 0=none, 1=socks4, 2=socks5, 3=socks5_pw 4=http 5=http_pw void test_transfer(lt::session& ses, boost::shared_ptr torrent_file , int proxy, int port, char const* protocol, bool url_seed , bool chunked_encoding, bool test_ban, bool keepalive) { using namespace libtorrent; TORRENT_ASSERT(torrent_file->web_seeds().size() > 0); std::string save_path = "tmp2_web_seed"; save_path += proxy_name[proxy]; error_code ec; remove_all(save_path, ec); static char const* test_name[] = {"no", "SOCKS4", "SOCKS5", "SOCKS5 password", "HTTP", "HTTP password"}; fprintf(stderr, "\n\n ==== TESTING === proxy: %s ==== protocol: %s " "==== seed: %s === transfer-encoding: %s === corruption: %s " "==== keepalive: %s\n\n\n" , test_name[proxy], protocol, url_seed ? "URL seed" : "HTTP seed" , chunked_encoding ? "chunked": "none", test_ban ? "yes" : "no" , keepalive ? "yes" : "no"); int proxy_port = 0; if (proxy) { proxy_port = start_proxy(proxy); if (proxy_port < 0) { fprintf(stderr, "failed to start proxy"); return; } settings_pack pack; pack.set_str(settings_pack::proxy_hostname, "127.0.0.1"); pack.set_str(settings_pack::proxy_username, "testuser"); pack.set_str(settings_pack::proxy_password, "testpass"); pack.set_int(settings_pack::proxy_type, (settings_pack::proxy_type_t)proxy); pack.set_int(settings_pack::proxy_port, proxy_port); ses.apply_settings(pack); } else { settings_pack pack; pack.set_str(settings_pack::proxy_hostname, ""); pack.set_str(settings_pack::proxy_username, ""); pack.set_str(settings_pack::proxy_password, ""); pack.set_int(settings_pack::proxy_type, settings_pack::none); pack.set_int(settings_pack::proxy_port, 0); ses.apply_settings(pack); } add_torrent_params p; p.flags &= ~add_torrent_params::flag_paused; p.flags &= ~add_torrent_params::flag_auto_managed; p.ti = torrent_file; p.save_path = save_path; #ifndef TORRENT_NO_DEPRECATE p.storage_mode = storage_mode_compact; #endif torrent_handle th = ses.add_torrent(p, ec); printf("adding torrent, save_path = \"%s\" cwd = \"%s\" torrent = \"%s\"\n" , save_path.c_str(), current_working_directory().c_str() , torrent_file->name().c_str()); std::vector empty; th.replace_trackers(empty); const boost::int64_t total_size = torrent_file->total_size(); file_storage const& fs = torrent_file->files(); int pad_file_size = 0; for (int i = 0; i < fs.num_files(); ++i) { if (fs.file_flags(i) & file_storage::flag_pad_file) pad_file_size += fs.file_size(i); } peer_disconnects = 0; std::map cnt = get_counters(ses); for (int i = 0; i < 40; ++i) { torrent_status s = th.status(); cnt = get_counters(ses); print_ses_rate(i / 10.f, &s, NULL); print_alerts(ses, " >> ses", test_ban, false, false, &on_alert); if (test_ban && th.url_seeds().empty() && th.http_seeds().empty()) { fprintf(stderr, "testing ban: URL seed removed\n"); // when we don't have any web seeds left, we know we successfully banned it break; } if (s.is_seeding) { fprintf(stderr, "SEEDING\n"); fprintf(stderr, "session.payload: %d session.redundant: %d\n" , int(cnt["net.recv_payload_bytes"]), int(cnt["net.recv_redundant_bytes"])); fprintf(stderr, "torrent.payload: %d torrent.redundant: %d\n" , int(s.total_payload_download), int(s.total_redundant_bytes)); TEST_EQUAL(s.total_payload_download - s.total_redundant_bytes, total_size - pad_file_size); // we need to sleep here a bit to let the session sync with the torrent stats // commented out because it takes such a long time // TEST_EQUAL(ses.status().total_payload_download - ses.status().total_redundant_bytes // , total_size - pad_file_size); break; } // if the web seed connection is disconnected, we're going to fail // the test. make sure to do so quickly if (keepalive && peer_disconnects >= 1) break; test_sleep(100); } // for test_ban tests, make sure we removed // the url seed (i.e. banned it) TEST_CHECK(!test_ban || (th.url_seeds().empty() && th.http_seeds().empty())); cnt = get_counters(ses); // if the web seed senr corrupt data and we banned it, we probably didn't // end up using all the cache anyway if (!test_ban) { torrent_status st = th.status(); TEST_EQUAL(st.is_seeding, true); if (st.is_seeding) { for (int i = 0; i < 50; ++i) { cnt = get_counters(ses); if (cnt["disk.read_cache_blocks"] == (torrent_file->total_size() + 0x3fff) / 0x4000 && cnt["disk.disk_blocks_in_use"] == (torrent_file->total_size() + 0x3fff) / 0x4000) break; fprintf(stderr, "cache_size: %d/%d\n", int(cnt["disk.read_cache_blocks"]) , int(cnt["disk.disk_blocks_in_use"])); test_sleep(100); } TEST_EQUAL(cnt["disk.disk_blocks_in_use"] , (torrent_file->total_size() + 0x3fff) / 0x4000); } } std::cerr << "total_size: " << total_size << " read cache size: " << cnt["disk.disk_blocks_in_use"] << " total used buffer: " << cnt["disk.disk_blocks_in_use"] << " session total download: " << cnt["net.recv_payload_bytes"] << " torrent total download: " << th.status().total_payload_download << " redundant: " << th.status().total_redundant_bytes << std::endl; // if test_ban is true, we're not supposed to have completed the download // otherwise, we are supposed to have TEST_CHECK(th.status().is_seeding == !test_ban); if (proxy) stop_proxy(proxy_port); th.flush_cache(); // synchronize to make sure the files have been created on disk wait_for_alert(ses, cache_flushed_alert::alert_type, "ses"); print_alerts(ses, " >> ses", true, true, false, &on_alert, true); if (!test_ban) { std::string first_file_path = combine_path(save_path, torrent_file->files().file_path(0)); fprintf(stderr, "checking file: %s\n", first_file_path.c_str()); TEST_CHECK(exists(first_file_path)); } ses.remove_torrent(th); remove_all(save_path, ec); } // proxy: 0=none, 1=socks4, 2=socks5, 3=socks5_pw 4=http 5=http_pw // protocol: "http" or "https" // test_url_seed determines whether to use url-seed or http-seed int EXPORT run_http_suite(int proxy, char const* protocol, bool test_url_seed , bool chunked_encoding, bool test_ban, bool keepalive, bool test_rename) { using namespace libtorrent; std::string save_path = "web_seed"; save_path += proxy_name[proxy]; error_code ec; create_directories(combine_path(save_path, "torrent_dir"), ec); file_storage fs; std::srand(10); int piece_size = 0x4000; static const int file_sizes[] = { 5, 16 - 5, 16000, 17, 10, 8000, 8000, 1,1,1,1,1,100,1,1,1,1,100,1,1,1,1,1,1 ,1,1,1,1,1,1,13,65000,34,75,2,30,400,500,23000,900,43000,400,4300,6, 4}; if (test_url_seed) { create_random_files(combine_path(save_path, "torrent_dir"), file_sizes, sizeof(file_sizes)/sizeof(file_sizes[0])); add_files(fs, combine_path(save_path, "torrent_dir")); } else { piece_size = 64 * 1024; char* random_data = (char*)malloc(64 * 1024 * num_pieces); std::generate(random_data, random_data + 64 * 1024 * num_pieces, random_byte); std::string seed_filename = combine_path(save_path, "seed"); fprintf(stderr, "creating file: %s %s\n" , current_working_directory().c_str(), seed_filename.c_str()); save_file(seed_filename.c_str(), random_data, 64 * 1024 * num_pieces); fs.add_file("seed", 64 * 1024 * num_pieces); free(random_data); } int port = start_web_server(strcmp(protocol, "https") == 0, chunked_encoding, keepalive); // generate a torrent with pad files to make sure they // are not requested web seeds libtorrent::create_torrent t(fs, piece_size, 0x4000, libtorrent::create_torrent::optimize); char tmp[512]; if (test_url_seed) { snprintf(tmp, sizeof(tmp), ("%s://127.0.0.1:%d/" + save_path).c_str(), protocol, port); t.add_url_seed(tmp); } else { snprintf(tmp, sizeof(tmp), "%s://127.0.0.1:%d/%s/seed", protocol, port, save_path.c_str()); t.add_http_seed(tmp); } fprintf(stderr, "testing: %s\n", tmp); /* for (int i = 0; i < fs.num_files(); ++i) { file_entry f = fs.at(i); fprintf(stderr, " %04x: %d %s\n", int(f.offset), f.pad_file, f.path.c_str()); } */ // calculate the hash for all pieces set_piece_hashes(t, save_path, ec); if (ec) { fprintf(stderr, "error creating hashes for test torrent: %s\n" , ec.message().c_str()); TEST_CHECK(false); return 0; } if (test_ban) { // corrupt the files now, so that the web seed will be banned if (test_url_seed) { create_random_files(combine_path(save_path, "torrent_dir"), file_sizes, sizeof(file_sizes)/sizeof(file_sizes[0])); } else { piece_size = 64 * 1024; char* random_data = (char*)malloc(64 * 1024 * num_pieces); std::generate(random_data, random_data + 64 * 1024 * num_pieces, random_byte); save_file(combine_path(save_path, "seed").c_str(), random_data, 64 * 1024 * num_pieces); free(random_data); } } std::vector buf; bencode(std::back_inserter(buf), t.generate()); boost::shared_ptr torrent_file(boost::make_shared(&buf[0], buf.size(), boost::ref(ec), 0)); // TODO: file hashes don't work with the new torrent creator reading async /* // no point in testing the hashes since we know the data is corrupt if (!test_ban) { // verify that the file hashes are correct for (int i = 0; i < torrent_file->num_files(); ++i) { sha1_hash h1 = torrent_file->file_at(i).filehash; sha1_hash h2 = file_hash(combine_path(save_path , torrent_file->file_at(i).path)); // fprintf(stderr, "%s: %s == %s\n" // , torrent_file->file_at(i).path.c_str() // , to_hex(h1.to_string()).c_str(), to_hex(h2.to_string()).c_str()); TEST_EQUAL(h1, h2); } } */ { const int mask = alert::all_categories & ~(alert::progress_notification | alert::performance_warning | alert::stats_notification); settings_pack pack; pack.set_int(settings_pack::max_queued_disk_bytes, 256 * 1024); pack.set_str(settings_pack::listen_interfaces, "0.0.0.0:51000"); pack.set_int(settings_pack::max_retry_port_bind, 1000); pack.set_int(settings_pack::alert_mask, mask); pack.set_bool(settings_pack::enable_lsd, false); pack.set_bool(settings_pack::enable_natpmp, false); pack.set_bool(settings_pack::enable_upnp, false); pack.set_bool(settings_pack::enable_dht, false); libtorrent::session ses(pack, 0); test_transfer(ses, torrent_file, proxy, port, protocol, test_url_seed , chunked_encoding, test_ban, keepalive); if (test_url_seed && test_rename) { torrent_file->rename_file(0, combine_path(save_path, combine_path("torrent_dir", "renamed_test1"))); test_transfer(ses, torrent_file, 0, port, protocol, test_url_seed , chunked_encoding, test_ban, keepalive); } } stop_web_server(); remove_all(save_path, ec); return 0; }