123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- /* <!-- copyright */
- /*
- * aria2 - The high speed download utility
- *
- * Copyright (C) 2013 Tatsuhiro Tsujikawa
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * In addition, as a special exception, the copyright holders give
- * permission to link the code of portions of this program with the
- * OpenSSL library under certain conditions as described in each
- * individual source file, and distribute linked combinations
- * including the two.
- * You must obey the GNU General Public License in all respects
- * for all of the code used other than OpenSSL. If you modify
- * file(s) with this exception, you may extend this exception to your
- * version of the file(s), but you are not obligated to do so. If you
- * do not wish to do so, delete this exception statement from your
- * version. If you delete this exception statement from all source
- * files in the program, then also delete it here.
- */
- /* copyright --> */
- #include "NameResolveCommand.h"
- #include "DownloadEngine.h"
- #include "NameResolver.h"
- #include "prefs.h"
- #include "message.h"
- #include "util.h"
- #include "Option.h"
- #include "RequestGroupMan.h"
- #include "Logger.h"
- #include "LogFactory.h"
- #include "fmt.h"
- #include "UDPTrackerRequest.h"
- #include "UDPTrackerClient.h"
- #include "BtRegistry.h"
- #ifdef ENABLE_ASYNC_DNS
- # include "AsyncNameResolverMan.h"
- #endif // ENABLE_ASYNC_DNS
- namespace aria2 {
- NameResolveCommand::NameResolveCommand(
- cuid_t cuid, DownloadEngine* e,
- const std::shared_ptr<UDPTrackerRequest>& req)
- : Command(cuid),
- e_(e),
- #ifdef ENABLE_ASYNC_DNS
- asyncNameResolverMan_(make_unique<AsyncNameResolverMan>()),
- #endif // ENABLE_ASYNC_DNS
- req_(req)
- {
- #ifdef ENABLE_ASYNC_DNS
- configureAsyncNameResolverMan(asyncNameResolverMan_.get(), e_->getOption());
- // Currently we only utilize IPv4 DHT for UDP tracker
- asyncNameResolverMan_->setIPv6(false);
- #endif // ENABLE_ASYNC_DNS
- setStatus(Command::STATUS_ONESHOT_REALTIME);
- }
- NameResolveCommand::~NameResolveCommand()
- {
- #ifdef ENABLE_ASYNC_DNS
- asyncNameResolverMan_->disableNameResolverCheck(e_, this);
- #endif // ENABLE_ASYNC_DNS
- }
- bool NameResolveCommand::execute()
- {
- // This is UDP tracker specific, but we need to keep this command
- // alive until force shutdown is
- // commencing. RequestGroupMan::downloadFinished() is useless here
- // at the moment.
- if (e_->isForceHaltRequested()) {
- onShutdown();
- return true;
- }
- const std::string& hostname = req_->remoteAddr;
- std::vector<std::string> res;
- if (util::isNumericHost(hostname)) {
- res.push_back(hostname);
- }
- else {
- #ifdef ENABLE_ASYNC_DNS
- if (e_->getOption()->getAsBool(PREF_ASYNC_DNS)) {
- if (resolveHostname(res, hostname) == 0) {
- e_->addCommand(std::unique_ptr<Command>(this));
- return false;
- }
- }
- else
- #endif // ENABLE_ASYNC_DNS
- {
- NameResolver resolver;
- resolver.setSocktype(SOCK_DGRAM);
- if (e_->getOption()->getAsBool(PREF_DISABLE_IPV6)) {
- resolver.setFamily(AF_INET);
- }
- try {
- resolver.resolve(res, hostname);
- }
- catch (RecoverableException& e) {
- A2_LOG_ERROR_EX(EX_EXCEPTION_CAUGHT, e);
- }
- }
- }
- if (res.empty()) {
- onFailure();
- }
- else {
- onSuccess(res, e_);
- }
- return true;
- }
- void NameResolveCommand::onShutdown()
- {
- req_->state = UDPT_STA_COMPLETE;
- req_->error = UDPT_ERR_SHUTDOWN;
- }
- void NameResolveCommand::onFailure()
- {
- req_->state = UDPT_STA_COMPLETE;
- req_->error = UDPT_ERR_NETWORK;
- }
- void NameResolveCommand::onSuccess(const std::vector<std::string>& addrs,
- DownloadEngine* e)
- {
- req_->remoteAddr = addrs[0];
- e->getBtRegistry()->getUDPTrackerClient()->addRequest(req_);
- }
- #ifdef ENABLE_ASYNC_DNS
- int NameResolveCommand::resolveHostname(std::vector<std::string>& res,
- const std::string& hostname)
- {
- if (!asyncNameResolverMan_->started()) {
- asyncNameResolverMan_->startAsync(hostname, e_, this);
- }
- switch (asyncNameResolverMan_->getStatus()) {
- case -1:
- A2_LOG_INFO(fmt(MSG_NAME_RESOLUTION_FAILED, getCuid(), hostname.c_str(),
- asyncNameResolverMan_->getLastError().c_str()));
- return -1;
- case 0:
- return 0;
- case 1:
- asyncNameResolverMan_->getResolvedAddress(res);
- if (res.empty()) {
- A2_LOG_INFO(fmt(MSG_NAME_RESOLUTION_FAILED, getCuid(), hostname.c_str(),
- "No address returned"));
- return -1;
- }
- else {
- A2_LOG_INFO(fmt(MSG_NAME_RESOLUTION_COMPLETE, getCuid(), hostname.c_str(),
- res.front().c_str()));
- return 1;
- }
- }
- // Unreachable
- return 0;
- }
- #endif // ENABLE_ASYNC_DNS
- } // namespace aria2
|