/* Copyright (c) 2014, 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/hex.hpp" // for from_hex #include "libtorrent/alert_types.hpp" #include "libtorrent/bencode.hpp" // for bencode() #include "libtorrent/kademlia/item.hpp" // for sign_mutable_item #include "libtorrent/kademlia/ed25519.hpp" #include "libtorrent/span.hpp" #include #include // for snprintf #include // for PRId64 et.al. #include #include using namespace lt; using namespace lt::dht; using namespace std::placeholders; // TODO: don't use internal functions to libtorrent using lt::aux::from_hex; using lt::aux::to_hex; #ifdef TORRENT_DISABLE_DHT int main(int argc, char* argv[]) { std::fprintf(stderr, "not built with DHT support\n"); return 1; } #else namespace { void usage() { std::fprintf(stderr, "USAGE:\ndht \n\nCOMMANDS:\n" "get - retrieves and prints out the immutable\n" " item stored under hash.\n" "put - puts the specified string as an immutable\n" " item onto the DHT. The resulting target hash\n" "gen-key - generate ed25519 keypair and save it in\n" " the specified file\n" "dump-key - dump ed25519 keypair from the specified key\n" " file.\n" "mput - puts the specified string as a mutable\n" " object under the public key in key-file\n" "mget - get a mutable object under the specified\n" " public key\n" ); exit(1); } alert* wait_for_alert(lt::session& s, int alert_type) { alert* ret = nullptr; bool found = false; while (!found) { s.wait_for_alert(seconds(5)); std::vector alerts; s.pop_alerts(&alerts); for (std::vector::iterator i = alerts.begin() , end(alerts.end()); i != end; ++i) { if ((*i)->type() != alert_type) { static int spinner = 0; static const char anim[] = {'-', '\\', '|', '/'}; std::printf("\r%c", anim[spinner]); std::fflush(stdout); spinner = (spinner + 1) & 3; //print some alerts? continue; } ret = *i; found = true; } } std::printf("\n"); return ret; } void put_string(entry& e, std::array& sig , std::int64_t& seq , std::string const& salt , std::array const& pk , std::array const& sk , char const* str) { using lt::dht::sign_mutable_item; e = std::string(str); std::vector buf; bencode(std::back_inserter(buf), e); dht::signature sign; ++seq; sign = sign_mutable_item(buf, salt, dht::sequence_number(seq) , dht::public_key(pk.data()) , dht::secret_key(sk.data())); sig = sign.bytes; } void bootstrap(lt::session& s) { std::printf("bootstrapping\n"); wait_for_alert(s, dht_bootstrap_alert::alert_type); std::printf("bootstrap done.\n"); } int dump_key(char const* filename) { std::array seed; std::fstream f(filename, std::ios_base::in | std::ios_base::binary); f.read(seed.data(), seed.size()); if (f.fail()) { std::fprintf(stderr, "invalid key file.\n"); return 1; } public_key pk; secret_key sk; std::tie(pk, sk) = ed25519_create_keypair(seed); std::printf("public key: %s\nprivate key: %s\n" , to_hex(pk.bytes).c_str() , to_hex(sk.bytes).c_str()); return 0; } int generate_key(char const* filename) { std::array seed = ed25519_create_seed(); std::fstream f(filename, std::ios_base::out | std::ios_base::binary); f.write(seed.data(), seed.size()); if (f.fail()) { std::fprintf(stderr, "failed to write key file.\n"); return 1; } return 0; } void load_dht_state(lt::session& s) { std::fstream f(".dht", std::ios_base::in | std::ios_base::binary | std::ios_base::ate); auto const size = f.tellg(); if (static_cast(size) <= 0) return; f.seekg(0, std::ios_base::beg); std::vector state; state.resize(static_cast(size)); f.read(state.data(), size); if (f.fail()) { std::fprintf(stderr, "failed to read .dht"); return; } bdecode_node e; error_code ec; bdecode(state.data(), state.data() + state.size(), e, ec); if (ec) std::fprintf(stderr, "failed to parse .dht file: (%d) %s\n" , ec.value(), ec.message().c_str()); else { std::printf("load dht state from .dht\n"); s.load_state(e); } } int save_dht_state(lt::session& s) { entry e; s.save_state(e, session::save_dht_state); std::vector state; bencode(std::back_inserter(state), e); std::fstream f(".dht", std::ios_base::out | std::ios_base::binary | std::ios_base::trunc); f.write(state.data(), static_cast(state.size())); return 0; } } // anonymous namespace int main(int argc, char* argv[]) { // skip pointer to self ++argv; --argc; if (argc < 1) usage(); if (argv[0] == "dump-key"_sv) { ++argv; --argc; if (argc < 1) usage(); return dump_key(argv[0]); } if (argv[0] == "gen-key"_sv) { ++argv; --argc; if (argc < 1) usage(); return generate_key(argv[0]); } settings_pack sett; sett.set_bool(settings_pack::enable_dht, false); sett.set_int(settings_pack::alert_mask, 0x7fffffff); lt::session s(sett); sett.set_bool(settings_pack::enable_dht, true); s.apply_settings(sett); load_dht_state(s); if (argv[0] == "get"_sv) { ++argv; --argc; if (argc < 1) usage(); if (strlen(argv[0]) != 40) { std::fprintf(stderr, "the hash is expected to be 40 hex characters\n"); usage(); } sha1_hash target; bool ret = from_hex({argv[0], 40}, target.data()); if (!ret) { std::fprintf(stderr, "invalid hex encoding of target hash\n"); return 1; } bootstrap(s); s.dht_get_item(target); std::printf("GET %s\n", to_hex(target).c_str()); alert* a = wait_for_alert(s, dht_immutable_item_alert::alert_type); dht_immutable_item_alert* item = alert_cast(a); std::string str = item->item.to_string(); std::printf("%s", str.c_str()); } else if (argv[0] == "put"_sv) { ++argv; --argc; if (argc < 1) usage(); entry data; data = std::string(argv[0]); bootstrap(s); sha1_hash const target = s.dht_put_item(data); std::printf("PUT %s\n", to_hex(target).c_str()); alert* a = wait_for_alert(s, dht_put_alert::alert_type); dht_put_alert* pa = alert_cast(a); std::printf("%s\n", pa->message().c_str()); } else if (argv[0] == "mput"_sv) { ++argv; --argc; if (argc < 1) usage(); std::array seed; std::fstream f(argv[0], std::ios_base::in | std::ios_base::binary); f.read(seed.data(), seed.size()); ++argv; --argc; if (argc < 1) usage(); public_key pk; secret_key sk; std::tie(pk, sk) = ed25519_create_keypair(seed); bootstrap(s); s.dht_put_item(pk.bytes, std::bind(&put_string, _1, _2, _3, _4 , pk.bytes, sk.bytes, argv[0])); std::printf("MPUT public key: %s\n", to_hex(pk.bytes).c_str()); alert* a = wait_for_alert(s, dht_put_alert::alert_type); dht_put_alert* pa = alert_cast(a); std::printf("%s\n", pa->message().c_str()); } else if (argv[0] == "mget"_sv) { ++argv; --argc; if (argc < 1) usage(); auto const len = static_cast(strlen(argv[0])); if (len != 64) { std::fprintf(stderr, "public key is expected to be 64 hex digits\n"); return 1; } std::array public_key; bool ret = from_hex({argv[0], len}, &public_key[0]); if (!ret) { std::fprintf(stderr, "invalid hex encoding of public key\n"); return 1; } bootstrap(s); s.dht_get_item(public_key); std::printf("MGET %s\n", argv[0]); bool authoritative = false; while (!authoritative) { alert* a = wait_for_alert(s, dht_mutable_item_alert::alert_type); dht_mutable_item_alert* item = alert_cast(a); authoritative = item->authoritative; std::string str = item->item.to_string(); std::printf("%s: %s", authoritative ? "auth" : "non-auth", str.c_str()); } } else { usage(); } return save_dht_state(s); } #endif