mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
When tor_lookup_hostname says 0.0.0.0, treat it as an error. (Backport to 0.0.7 branch)
svn:r2004
This commit is contained in:
@@ -585,6 +585,7 @@ static int dnsworker_main(void *data) {
|
||||
uint32_t ip;
|
||||
int *fdarray = data;
|
||||
int fd;
|
||||
int result;
|
||||
|
||||
tor_close_socket(fdarray[0]); /* this is the side of the socketpair the parent uses */
|
||||
fd = fdarray[1]; /* this side is ours */
|
||||
@@ -606,7 +607,11 @@ static int dnsworker_main(void *data) {
|
||||
}
|
||||
address[address_len] = 0; /* null terminate it */
|
||||
|
||||
switch (tor_lookup_hostname(address, &ip)) {
|
||||
result = tor_lookup_hostname(address, &ip);
|
||||
/* Make 0.0.0.0 an error, so that we can use "0" to mean "no addr") */
|
||||
if (!ip)
|
||||
result = -1;
|
||||
switch (result) {
|
||||
case 1:
|
||||
log_fn(LOG_INFO,"Could not resolve dest addr %s (transient).",address);
|
||||
answer[0] = DNS_RESOLVE_FAILED_TRANSIENT;
|
||||
|
||||
@@ -481,7 +481,8 @@ int router_load_routerlist_from_directory(const char *s,
|
||||
static int
|
||||
router_resolve(routerinfo_t *router)
|
||||
{
|
||||
if (tor_lookup_hostname(router->address, &router->addr) != 0) {
|
||||
if (tor_lookup_hostname(router->address, &router->addr) != 0
|
||||
|| !router->addr) {
|
||||
log_fn(LOG_WARN,"Could not get address for router %s (%s).",
|
||||
router->address, router->nickname);
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user