/* 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/session_settings.hpp" #include "libtorrent/hasher.hpp" #include "libtorrent/alert_types.hpp" #include "libtorrent/bencode.hpp" #include "libtorrent/thread.hpp" #include "libtorrent/time.hpp" #include "libtorrent/file.hpp" #include #include #include "test.hpp" #include "setup_transfer.hpp" #include "udp_tracker.hpp" #include #include using namespace libtorrent; namespace lt = libtorrent; using boost::tuples::ignore; const int mask = alert::all_categories & ~(alert::performance_warning | alert::stats_notification); int peer_disconnects = 0; int tracker_responses = 0; bool on_alert(alert* a) { if (alert_cast(a)) ++tracker_responses; else if (alert_cast(a)) ++peer_disconnects; else if (alert_cast(a)) ++peer_disconnects; return false; } void test_transfer(settings_pack const& sett) { // in case the previous run was terminated error_code ec; remove_all("tmp1_priority", ec); remove_all("tmp2_priority", ec); remove_all("tmp1_priority_moved", ec); remove_all("tmp2_priority_moved", ec); // these are declared before the session objects // so that they are destructed last. This enables // the sessions to destruct in parallel session_proxy p1; session_proxy p2; lt::session ses1(fingerprint("LT", 0, 1, 0, 0), std::make_pair(48075, 49000), "0.0.0.0", 0, mask); lt::session ses2(fingerprint("LT", 0, 1, 0, 0), std::make_pair(49075, 50000), "0.0.0.0", 0, mask); settings_pack pack = sett; // we need a short reconnect time since we // finish the torrent and then restart it // immediately to complete the second half. // using a reconnect time > 0 will just add // to the time it will take to complete the test pack.set_int(settings_pack::min_reconnect_time, 0); pack.set_int(settings_pack::stop_tracker_timeout, 1); pack.set_bool(settings_pack::announce_to_all_trackers, true); pack.set_bool(settings_pack::announce_to_all_tiers, true); // make sure we announce to both http and udp trackers pack.set_bool(settings_pack::prefer_udp_trackers, false); pack.set_bool(settings_pack::enable_outgoing_utp, false); pack.set_bool(settings_pack::enable_incoming_utp, false); pack.set_int(settings_pack::alert_mask, mask); pack.set_int(settings_pack::out_enc_policy, settings_pack::pe_disabled); pack.set_int(settings_pack::in_enc_policy, settings_pack::pe_disabled); pack.set_bool(settings_pack::allow_multiple_connections_per_ip, false); pack.set_int(settings_pack::unchoke_slots_limit, 0); ses1.apply_settings(pack); TEST_CHECK(ses1.get_settings().get_int(settings_pack::unchoke_slots_limit) == 0); pack.set_int(settings_pack::unchoke_slots_limit, -1); ses1.apply_settings(pack); TEST_CHECK(ses1.get_settings().get_int(settings_pack::unchoke_slots_limit) == -1); pack.set_int(settings_pack::unchoke_slots_limit, 8); ses1.apply_settings(pack); TEST_CHECK(ses1.get_settings().get_int(settings_pack::unchoke_slots_limit) == 8); ses2.apply_settings(pack); torrent_handle tor1; torrent_handle tor2; create_directory("tmp1_priority", ec); std::ofstream file("tmp1_priority/temporary"); boost::shared_ptr t = ::create_torrent(&file, 16 * 1024, 13, false); file.close(); int udp_tracker_port = start_udp_tracker(); int tracker_port = start_web_server(); char tracker_url[200]; snprintf(tracker_url, sizeof(tracker_url), "http://127.0.0.1:%d/announce", tracker_port); t->add_tracker(tracker_url); snprintf(tracker_url, sizeof(tracker_url), "udp://127.0.0.1:%d/announce", udp_tracker_port); t->add_tracker(tracker_url); add_torrent_params addp; addp.flags &= ~add_torrent_params::flag_paused; addp.flags &= ~add_torrent_params::flag_auto_managed; wait_for_listen(ses1, "ses1"); wait_for_listen(ses2, "ses1"); peer_disconnects = 0; // test using piece sizes smaller than 16kB boost::tie(tor1, tor2, ignore) = setup_transfer(&ses1, &ses2, 0 , true, false, true, "_priority", 8 * 1024, &t, false, 0); int num_pieces = tor2.torrent_file()->num_pieces(); std::vector priorities(num_pieces, 1); // set half of the pieces to priority 0 std::fill(priorities.begin(), priorities.begin() + (num_pieces / 2), 0); tor2.prioritize_pieces(priorities); std::cerr << "setting priorities: "; std::copy(priorities.begin(), priorities.end(), std::ostream_iterator(std::cerr, ", ")); std::cerr << std::endl; tracker_responses = 0; for (int i = 0; i < 200; ++i) { print_alerts(ses1, "ses1", true, true, true, &on_alert); print_alerts(ses2, "ses2", true, true, true, &on_alert); torrent_status st1 = tor1.status(); torrent_status st2 = tor2.status(); if (i % 10 == 0) { print_ses_rate(i / 10.f, &st1, &st2); } // st2 is finished when we have downloaded half of the pieces if (st2.is_finished) break; if (st2.state != torrent_status::downloading) { static char const* state_str[] = {"checking (q)", "checking", "dl metadata" , "downloading", "finished", "seeding", "allocating", "checking (r)"}; std::cerr << "st2 state: " << state_str[st2.state] << std::endl; } TEST_CHECK(st1.state == torrent_status::seeding || st1.state == torrent_status::checking_files); TEST_CHECK(st2.state == torrent_status::downloading || st2.state == torrent_status::checking_resume_data); if (peer_disconnects >= 2) break; // if nothing is being transferred after 2 seconds, we're failing the test if (st1.upload_payload_rate == 0 && i > 20) break; test_sleep(100); } // 1 announce per tracker to start TEST_CHECK(tracker_responses >= 2); TEST_CHECK(!tor2.status().is_seeding); TEST_CHECK(tor2.status().is_finished); if (tor2.status().is_finished) std::cerr << "torrent is finished (50% complete)" << std::endl; else return; std::vector priorities2 = tor2.piece_priorities(); std::copy(priorities2.begin(), priorities2.end(), std::ostream_iterator(std::cerr, ", ")); std::cerr << std::endl; TEST_CHECK(std::equal(priorities.begin(), priorities.end(), priorities2.begin())); std::cerr << "force recheck" << std::endl; tor2.force_recheck(); priorities2 = tor2.piece_priorities(); std::copy(priorities2.begin(), priorities2.end(), std::ostream_iterator(std::cerr, ", ")); std::cerr << std::endl; TEST_CHECK(std::equal(priorities.begin(), priorities.end(), priorities2.begin())); peer_disconnects = 0; // when we're done checking, we're likely to be put in downloading state // for a split second before transitioning to finished. This loop waits // for the finished state torrent_status st2; for (int i = 0; i < 50; ++i) { print_alerts(ses1, "ses1", true, true, true, &on_alert); print_alerts(ses2, "ses2", true, true, true, &on_alert); st2 = tor2.status(); if (i % 10 == 0) { std::cerr << int(st2.progress * 100) << "% " << std::endl; } if (st2.state == torrent_status::finished) break; test_sleep(100); } TEST_EQUAL(st2.state, torrent_status::finished); if (st2.state != torrent_status::finished) return; std::cerr << "recheck complete" << std::endl; priorities2 = tor2.piece_priorities(); std::copy(priorities2.begin(), priorities2.end(), std::ostream_iterator(std::cerr, ", ")); std::cerr << std::endl; TEST_CHECK(std::equal(priorities.begin(), priorities.end(), priorities2.begin())); tor2.pause(); wait_for_alert(ses2, torrent_paused_alert::alert_type, "ses2"); std::vector tr = tor2.trackers(); tr.push_back(announce_entry("http://test.com/announce")); tor2.replace_trackers(tr); tr.clear(); fprintf(stderr, "save resume data\n"); tor2.save_resume_data(); std::vector resume_data; alert const* a = ses2.wait_for_alert(seconds(10)); ptime start = time_now_hires(); while (a) { std::auto_ptr holder = ses2.pop_alert(); std::cerr << "ses2: " << a->message() << std::endl; if (alert_cast(a)) { bencode(std::back_inserter(resume_data) , *alert_cast(a)->resume_data); fprintf(stderr, "saved resume data\n"); break; } else if (alert_cast(a)) { fprintf(stderr, "save resume failed\n"); break; } if (total_seconds(time_now_hires() - start) > 10) break; a = ses2.wait_for_alert(seconds(10)); } TEST_CHECK(resume_data.size()); fprintf(stderr, "%s\n", resume_data.data()); ses2.remove_torrent(tor2); std::cerr << "removed" << std::endl; test_sleep(100); std::cout << "re-adding" << std::endl; add_torrent_params p; p.flags &= ~add_torrent_params::flag_paused; p.flags &= ~add_torrent_params::flag_auto_managed; p.ti = t; p.save_path = "tmp2_priority"; p.resume_data = resume_data; tor2 = ses2.add_torrent(p, ec); tor2.prioritize_pieces(priorities); std::cout << "resetting priorities" << std::endl; tor2.resume(); tr = tor2.trackers(); TEST_CHECK(std::find_if(tr.begin(), tr.end() , boost::bind(&announce_entry::url, _1) == "http://test.com/announce") != tr.end()); // wait for torrent 2 to settle in back to finished state (it will // start as checking) torrent_status st1; for (int i = 0; i < 5; ++i) { print_alerts(ses1, "ses1", true, true, true, &on_alert); print_alerts(ses2, "ses2", true, true, true, &on_alert); st1 = tor1.status(); st2 = tor2.status(); TEST_CHECK(st1.state == torrent_status::seeding); if (st2.is_finished) break; test_sleep(100); } // torrent 2 should not be seeding yet, it should // just be 50% finished TEST_CHECK(!st2.is_seeding); TEST_CHECK(st2.is_finished); std::fill(priorities.begin(), priorities.end(), 1); tor2.prioritize_pieces(priorities); std::cout << "setting priorities to 1" << std::endl; TEST_EQUAL(tor2.status().is_finished, false); std::copy(priorities.begin(), priorities.end(), std::ostream_iterator(std::cerr, ", ")); std::cerr << std::endl; // drain alerts print_alerts(ses1, "ses1", true, true, true, &on_alert); print_alerts(ses2, "ses2", true, true, true, &on_alert); peer_disconnects = 0; // this loop makes sure ses2 reconnects to the peer now that it's // in download mode again. If this fails, the reconnect logic may // not work or be inefficient st1 = tor1.status(); st2 = tor2.status(); for (int i = 0; i < 130; ++i) { print_alerts(ses1, "ses1", true, true, true, &on_alert); print_alerts(ses2, "ses2", true, true, true, &on_alert); st1 = tor1.status(); st2 = tor2.status(); if (i % 10 == 0) print_ses_rate(i / 10.f, &st1, &st2); if (st2.is_seeding) break; TEST_EQUAL(st1.state, torrent_status::seeding); TEST_EQUAL(st2.state, torrent_status::downloading); if (peer_disconnects >= 2) { fprintf(stderr, "too many disconnects (%d), exiting\n", peer_disconnects); break; } test_sleep(100); } st2 = tor2.status(); if (!st2.is_seeding) fprintf(stderr, "ses2 failed to reconnect to ses1!\n"); TEST_CHECK(st2.is_seeding); // this allows shutting down the sessions in parallel p1 = ses1.abort(); p2 = ses2.abort(); stop_udp_tracker(); stop_web_server(); } int test_main() { using namespace libtorrent; // test with all kinds of proxies settings_pack p; // test no contiguous_recv_buffers p = settings_pack(); p.set_bool(settings_pack::contiguous_recv_buffer, false); test_transfer(p); error_code ec; remove_all("tmp1_priorities", ec); remove_all("tmp2_priorities", ec); remove_all("tmp1_priorities_moved", ec); remove_all("tmp2_priorities_moved", ec); return 0; }