2006-08-11 12:29:55 +00:00
|
|
|
/* <!-- copyright */
|
|
|
|
/*
|
2006-09-21 15:31:24 +00:00
|
|
|
* aria2 - The high speed download utility
|
2006-08-11 12:29:55 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006 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
|
2006-09-21 15:31:24 +00:00
|
|
|
* 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.
|
2006-08-11 12:29:55 +00:00
|
|
|
*/
|
|
|
|
/* copyright --> */
|
|
|
|
#include "NameResolver.h"
|
2008-03-01 09:31:54 +00:00
|
|
|
#include "DlAbortEx.h"
|
2008-02-08 15:53:45 +00:00
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
namespace aria2 {
|
2006-08-11 12:29:55 +00:00
|
|
|
|
2007-03-28 15:08:22 +00:00
|
|
|
#ifdef ENABLE_ASYNC_DNS
|
|
|
|
|
2007-11-25 04:41:31 +00:00
|
|
|
#ifdef HAVE_LIBCARES1_5
|
2008-02-08 15:53:45 +00:00
|
|
|
void callback(void* arg, int status, int timeouts, struct hostent* host)
|
2007-11-25 04:41:31 +00:00
|
|
|
#else
|
2008-02-08 15:53:45 +00:00
|
|
|
void callback(void* arg, int status, struct hostent* host)
|
2007-11-25 04:41:31 +00:00
|
|
|
#endif // HAVE_LIBCARES1_5
|
2008-02-08 15:53:45 +00:00
|
|
|
{
|
2006-08-11 12:29:55 +00:00
|
|
|
NameResolver* resolverPtr = (NameResolver*)arg;
|
2006-08-28 13:30:24 +00:00
|
|
|
#ifdef HAVE_LIBARES
|
|
|
|
// This block is required since the assertion in ares_strerror fails
|
|
|
|
// if status = ARES_EDESTRUCTION is passed to ares_strerror as 1st argument.
|
|
|
|
// This does not happen in c-ares.
|
|
|
|
if(status == ARES_EDESTRUCTION) {
|
|
|
|
// we simply return in this case.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2006-08-11 12:29:55 +00:00
|
|
|
if(status != ARES_SUCCESS) {
|
2006-08-21 13:18:51 +00:00
|
|
|
#ifdef HAVE_LIBCARES
|
|
|
|
resolverPtr->error = ares_strerror(status);
|
|
|
|
#else
|
2006-08-11 12:29:55 +00:00
|
|
|
resolverPtr->error = ares_strerror(status, 0);
|
2006-08-21 13:18:51 +00:00
|
|
|
#endif // HAVE_LIBCARES
|
2006-08-11 12:29:55 +00:00
|
|
|
resolverPtr->status = NameResolver::STATUS_ERROR;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
memcpy(&resolverPtr->addr, *host->h_addr_list, sizeof(struct in_addr));
|
|
|
|
resolverPtr->status = NameResolver::STATUS_SUCCESS;
|
|
|
|
}
|
2007-03-28 15:08:22 +00:00
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
void NameResolver::resolve(const std::string& name)
|
|
|
|
{
|
|
|
|
status = STATUS_QUERYING;
|
|
|
|
ares_gethostbyname(channel, name.c_str(), AF_INET, callback, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string NameResolver::getAddrString() const
|
|
|
|
{
|
|
|
|
return inet_ntoa(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NameResolver::setAddr(const std::string& addrString)
|
|
|
|
{
|
|
|
|
inet_aton(addrString.c_str(), &addr);
|
|
|
|
}
|
|
|
|
|
2008-02-13 15:17:08 +00:00
|
|
|
void NameResolver::reset()
|
|
|
|
{
|
|
|
|
status = STATUS_READY;
|
|
|
|
ares_destroy(channel);
|
|
|
|
// TODO evaluate return value
|
|
|
|
ares_init(&channel);
|
|
|
|
}
|
|
|
|
|
2007-03-28 15:08:22 +00:00
|
|
|
#else // ENABLE_ASYNC_DNS
|
|
|
|
|
|
|
|
#include "DlAbortEx.h"
|
|
|
|
#include "message.h"
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
void NameResolver::resolve(const std::string& hostname)
|
2007-03-28 15:08:22 +00:00
|
|
|
{
|
|
|
|
memset(&_addr, 0, sizeof(in_addr));
|
|
|
|
struct addrinfo ai;
|
|
|
|
memset((char*)&ai, 0, sizeof(ai));
|
|
|
|
ai.ai_flags = 0;
|
|
|
|
ai.ai_family = PF_INET;
|
|
|
|
ai.ai_socktype = SOCK_STREAM;
|
|
|
|
ai.ai_protocol = 0;
|
|
|
|
struct addrinfo* res;
|
2007-07-31 16:45:16 +00:00
|
|
|
int ec;
|
2007-03-28 15:08:22 +00:00
|
|
|
if((ec = getaddrinfo(hostname.c_str(), 0, &ai, &res)) != 0) {
|
|
|
|
throw new DlAbortEx(EX_RESOLVE_HOSTNAME,
|
|
|
|
hostname.c_str(), gai_strerror(ec));
|
|
|
|
}
|
|
|
|
_addr = ((struct sockaddr_in*)res->ai_addr)->sin_addr;
|
|
|
|
freeaddrinfo(res);
|
|
|
|
}
|
|
|
|
|
2008-02-08 15:53:45 +00:00
|
|
|
std::string NameResolver::getAddrString() const
|
|
|
|
{
|
|
|
|
return inet_ntoa(_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NameResolver::setAddr(const std::string& addrString)
|
|
|
|
{
|
|
|
|
inet_aton(addrString.c_str(), &_addr);
|
|
|
|
}
|
|
|
|
|
2008-02-13 15:17:08 +00:00
|
|
|
void NameResolver::reset() {}
|
|
|
|
|
2007-03-28 15:08:22 +00:00
|
|
|
#endif // ENABLE_ASYNC_DNS
|
2008-02-08 15:53:45 +00:00
|
|
|
|
|
|
|
} // namespace aria2
|