2008-02-07 06:31:47 +01:00
|
|
|
/* Copyright (c) 2007-2008, The Tor Project, Inc. */
|
2007-05-24 22:31:30 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
const char dnsserv_c_id[] =
|
|
|
|
"$Id$";
|
|
|
|
|
|
|
|
/**
|
2008-02-12 21:20:52 +01:00
|
|
|
* \file dnsserv.c \brief Implements client-side DNS proxy server code. Note:
|
2007-09-05 02:31:01 +02:00
|
|
|
* this is the DNS Server code, not the Server DNS code. Confused? This code
|
|
|
|
* runs on client-side, and acts as a DNS server. The code in dns.c, on the
|
|
|
|
* other hand, runs on Tor servers, and acts as a DNS client.
|
2007-05-24 22:31:30 +02:00
|
|
|
**/
|
|
|
|
|
|
|
|
#include "or.h"
|
|
|
|
#include "eventdns.h"
|
|
|
|
|
2007-05-29 19:31:13 +02:00
|
|
|
/* Helper function: called by evdns whenever the client sends a request to our
|
|
|
|
* DNSPort. We need to eventually answer the request <b>req</b>.
|
|
|
|
*/
|
2007-05-24 22:31:30 +02:00
|
|
|
static void
|
|
|
|
evdns_server_callback(struct evdns_server_request *req, void *_data)
|
|
|
|
{
|
|
|
|
edge_connection_t *conn;
|
|
|
|
int i = 0;
|
|
|
|
struct evdns_server_question *q = NULL;
|
|
|
|
struct sockaddr_storage addr;
|
|
|
|
struct sockaddr *sa;
|
|
|
|
int addrlen;
|
2008-08-05 22:08:19 +02:00
|
|
|
tor_addr_t tor_addr;
|
|
|
|
uint16_t port;
|
2007-05-24 22:31:30 +02:00
|
|
|
int err = DNS_ERR_NONE;
|
2007-05-29 19:31:13 +02:00
|
|
|
char *q_name;
|
2007-05-24 22:31:30 +02:00
|
|
|
|
|
|
|
tor_assert(req);
|
|
|
|
tor_assert(_data == NULL);
|
|
|
|
log_info(LD_APP, "Got a new DNS request!");
|
|
|
|
|
2007-06-01 01:40:35 +02:00
|
|
|
req->flags |= 0x80; /* set RA */
|
|
|
|
|
2007-05-29 19:31:13 +02:00
|
|
|
/* First, check whether the requesting address matches our SOCKSPolicy. */
|
2007-05-24 22:31:30 +02:00
|
|
|
if ((addrlen = evdns_server_request_get_requesting_addr(req,
|
2008-02-22 20:09:45 +01:00
|
|
|
(struct sockaddr*)&addr, (socklen_t)sizeof(addr))) < 0) {
|
2007-05-24 22:31:30 +02:00
|
|
|
log_warn(LD_APP, "Couldn't get requesting address.");
|
|
|
|
evdns_server_request_respond(req, DNS_ERR_SERVERFAILED);
|
|
|
|
return;
|
|
|
|
}
|
2007-06-02 14:44:54 +02:00
|
|
|
(void) addrlen;
|
2007-05-24 22:31:30 +02:00
|
|
|
sa = (struct sockaddr*) &addr;
|
2008-08-07 21:13:35 +02:00
|
|
|
if (tor_addr_from_sockaddr(&tor_addr, sa, &port)<0) {
|
2008-08-05 22:08:19 +02:00
|
|
|
log_warn(LD_APP, "Requesting address wasn't recognized.");
|
2007-05-24 22:31:30 +02:00
|
|
|
evdns_server_request_respond(req, DNS_ERR_SERVERFAILED);
|
|
|
|
return;
|
|
|
|
}
|
2007-06-17 17:59:27 +02:00
|
|
|
|
2008-08-05 22:08:19 +02:00
|
|
|
if (!socks_policy_permits_address(&tor_addr)) {
|
2007-05-24 22:31:30 +02:00
|
|
|
log_warn(LD_APP, "Rejecting DNS request from disallowed IP.");
|
|
|
|
evdns_server_request_respond(req, DNS_ERR_REFUSED);
|
|
|
|
return;
|
|
|
|
}
|
2007-05-29 19:31:13 +02:00
|
|
|
|
|
|
|
/* Now, let's find the first actual question of a type we can answer in this
|
|
|
|
* DNS request. It makes us a little noncompliant to act like this; we
|
|
|
|
* should fix that eventually if it turns out to make a difference for
|
|
|
|
* anybody. */
|
2007-05-24 22:31:30 +02:00
|
|
|
if (req->nquestions == 0) {
|
|
|
|
log_info(LD_APP, "No questions in DNS request; sending back nil reply.");
|
|
|
|
evdns_server_request_respond(req, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (req->nquestions > 1) {
|
|
|
|
log_info(LD_APP, "Got a DNS request with more than one question; I only "
|
|
|
|
"handle one question at a time for now. Skipping the extras.");
|
|
|
|
}
|
|
|
|
for (i = 0; i < req->nquestions; ++i) {
|
|
|
|
if (req->questions[i]->class != EVDNS_CLASS_INET)
|
|
|
|
continue;
|
|
|
|
switch (req->questions[i]->type) {
|
|
|
|
case EVDNS_TYPE_A:
|
|
|
|
case EVDNS_TYPE_PTR:
|
|
|
|
q = req->questions[i];
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!q) {
|
|
|
|
log_info(LD_APP, "None of the questions we got were ones we're willing "
|
2007-06-01 01:40:35 +02:00
|
|
|
"to support. Sending NODATA.");
|
|
|
|
evdns_server_request_respond(req, DNS_ERR_NONE);
|
2007-05-24 22:31:30 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (q->type == EVDNS_TYPE_A) {
|
2007-05-29 19:31:13 +02:00
|
|
|
/* Refuse any attempt to resolve a noconnect address, right now. */
|
2007-05-24 22:31:30 +02:00
|
|
|
if (hostname_is_noconnect_address(q->name)) {
|
|
|
|
err = DNS_ERR_REFUSED;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tor_assert(q->type == EVDNS_TYPE_PTR);
|
|
|
|
}
|
2007-05-29 19:31:13 +02:00
|
|
|
|
|
|
|
/* Make sure the name isn't too long: This should be impossible, I think. */
|
2007-05-24 22:31:30 +02:00
|
|
|
if (err == DNS_ERR_NONE && strlen(q->name) > MAX_SOCKS_ADDR_LEN-1)
|
|
|
|
err = DNS_ERR_FORMAT;
|
|
|
|
|
|
|
|
if (err != DNS_ERR_NONE) {
|
2007-05-29 19:31:13 +02:00
|
|
|
/* We got an error? Then send back an answer immediately; we're done. */
|
2007-05-24 22:31:30 +02:00
|
|
|
evdns_server_request_respond(req, err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-05-29 19:31:13 +02:00
|
|
|
/* Make a new dummy AP connection, and attach the request to it. */
|
2008-09-06 00:09:44 +02:00
|
|
|
conn = edge_connection_new(CONN_TYPE_AP, AF_INET);
|
2007-05-25 20:22:42 +02:00
|
|
|
conn->_base.state = AP_CONN_STATE_RESOLVE_WAIT;
|
2007-07-10 19:14:51 +02:00
|
|
|
conn->is_dns_request = 1;
|
2007-06-17 17:59:27 +02:00
|
|
|
|
2008-08-05 22:08:19 +02:00
|
|
|
tor_addr_copy(&TO_CONN(conn)->addr, &tor_addr);
|
|
|
|
TO_CONN(conn)->port = port;
|
|
|
|
TO_CONN(conn)->address = tor_dup_addr(&tor_addr);
|
2007-06-17 17:59:27 +02:00
|
|
|
|
2007-05-24 22:31:30 +02:00
|
|
|
if (q->type == EVDNS_TYPE_A)
|
|
|
|
conn->socks_request->command = SOCKS_COMMAND_RESOLVE;
|
|
|
|
else
|
|
|
|
conn->socks_request->command = SOCKS_COMMAND_RESOLVE_PTR;
|
|
|
|
|
|
|
|
strlcpy(conn->socks_request->address, q->name,
|
|
|
|
sizeof(conn->socks_request->address));
|
|
|
|
|
|
|
|
conn->dns_server_request = req;
|
|
|
|
|
2008-01-14 20:00:23 +01:00
|
|
|
if (connection_add(TO_CONN(conn)) < 0) {
|
|
|
|
log_warn(LD_APP, "Couldn't register dummy connection for DNS request");
|
|
|
|
evdns_server_request_respond(req, DNS_ERR_SERVERFAILED);
|
|
|
|
connection_free(TO_CONN(conn));
|
|
|
|
return;
|
|
|
|
}
|
2007-06-13 21:50:18 +02:00
|
|
|
|
2007-07-05 16:50:13 +02:00
|
|
|
control_event_stream_status(conn, STREAM_EVENT_NEW, 0);
|
2007-07-05 16:50:05 +02:00
|
|
|
|
2007-05-29 19:31:13 +02:00
|
|
|
/* Now, throw the connection over to get rewritten (which will answer it
|
|
|
|
* immediately if it's in the cache, or completely bogus, or automapped),
|
|
|
|
* and then attached to a circuit. */
|
|
|
|
log_info(LD_APP, "Passing request for %s to rewrite_and_attach.",
|
|
|
|
escaped_safe_str(q->name));
|
|
|
|
q_name = tor_strdup(q->name); /* q could be freed in rewrite_and_attach */
|
2007-05-24 22:31:30 +02:00
|
|
|
connection_ap_handshake_rewrite_and_attach(conn, NULL, NULL);
|
2007-05-29 19:31:13 +02:00
|
|
|
/* Now, the connection is marked if it was bad. */
|
2007-05-24 22:31:30 +02:00
|
|
|
|
2007-05-29 19:31:13 +02:00
|
|
|
log_info(LD_APP, "Passed request for %s to rewrite_and_attach.",
|
|
|
|
escaped_safe_str(q_name));
|
|
|
|
tor_free(q_name);
|
2007-05-24 22:31:30 +02:00
|
|
|
}
|
|
|
|
|
2007-07-10 19:13:24 +02:00
|
|
|
/* Helper function: called whenever the client sends a resolve request to our
|
|
|
|
* controller. We need to eventually answer the request <b>req</b>.
|
2008-02-05 22:39:40 +01:00
|
|
|
* Returns 0 if the controller will be getting (or has gotten) an event in
|
|
|
|
* response; -1 if we couldn't launch the request.
|
2007-07-10 19:13:24 +02:00
|
|
|
*/
|
2008-02-05 22:39:40 +01:00
|
|
|
int
|
2007-07-10 19:14:51 +02:00
|
|
|
dnsserv_launch_request(const char *name, int reverse)
|
2007-07-10 19:13:24 +02:00
|
|
|
{
|
|
|
|
edge_connection_t *conn;
|
|
|
|
char *q_name;
|
|
|
|
|
|
|
|
/* Make a new dummy AP connection, and attach the request to it. */
|
2008-09-06 00:09:44 +02:00
|
|
|
conn = edge_connection_new(CONN_TYPE_AP, AF_INET);
|
2007-07-10 19:13:24 +02:00
|
|
|
conn->_base.state = AP_CONN_STATE_RESOLVE_WAIT;
|
|
|
|
|
2007-07-10 19:14:51 +02:00
|
|
|
if (reverse)
|
|
|
|
conn->socks_request->command = SOCKS_COMMAND_RESOLVE_PTR;
|
2007-07-10 19:13:24 +02:00
|
|
|
else
|
2007-07-10 19:14:51 +02:00
|
|
|
conn->socks_request->command = SOCKS_COMMAND_RESOLVE;
|
|
|
|
|
|
|
|
conn->is_dns_request = 1;
|
2007-07-10 19:13:24 +02:00
|
|
|
|
|
|
|
strlcpy(conn->socks_request->address, name,
|
|
|
|
sizeof(conn->socks_request->address));
|
|
|
|
|
2008-01-14 20:00:23 +01:00
|
|
|
if (connection_add(TO_CONN(conn))<0) {
|
|
|
|
log_warn(LD_APP, "Couldn't register dummy connection for RESOLVE request");
|
|
|
|
connection_free(TO_CONN(conn));
|
2008-02-05 22:39:40 +01:00
|
|
|
return -1;
|
2008-01-14 20:00:23 +01:00
|
|
|
}
|
2007-07-10 19:13:24 +02:00
|
|
|
|
|
|
|
/* Now, throw the connection over to get rewritten (which will answer it
|
|
|
|
* immediately if it's in the cache, or completely bogus, or automapped),
|
|
|
|
* and then attached to a circuit. */
|
|
|
|
log_info(LD_APP, "Passing request for %s to rewrite_and_attach.",
|
|
|
|
escaped_safe_str(name));
|
|
|
|
q_name = tor_strdup(name); /* q could be freed in rewrite_and_attach */
|
|
|
|
connection_ap_handshake_rewrite_and_attach(conn, NULL, NULL);
|
|
|
|
/* Now, the connection is marked if it was bad. */
|
|
|
|
|
|
|
|
log_info(LD_APP, "Passed request for %s to rewrite_and_attach.",
|
|
|
|
escaped_safe_str(q_name));
|
|
|
|
tor_free(q_name);
|
2008-02-05 22:39:40 +01:00
|
|
|
return 0;
|
2007-07-10 19:13:24 +02:00
|
|
|
}
|
|
|
|
|
2007-05-29 19:31:13 +02:00
|
|
|
/** If there is a pending request on <b>conn</b> that's waiting for an answer,
|
|
|
|
* send back an error and free the request. */
|
2007-05-24 22:31:30 +02:00
|
|
|
void
|
|
|
|
dnsserv_reject_request(edge_connection_t *conn)
|
|
|
|
{
|
2007-05-29 19:31:13 +02:00
|
|
|
if (conn->dns_server_request) {
|
|
|
|
evdns_server_request_respond(conn->dns_server_request,
|
|
|
|
DNS_ERR_SERVERFAILED);
|
|
|
|
conn->dns_server_request = NULL;
|
|
|
|
}
|
2007-05-24 22:31:30 +02:00
|
|
|
}
|
|
|
|
|
2008-10-29 16:31:26 +01:00
|
|
|
/** Look up the original name that corresponds to 'addr' in req. We use this
|
|
|
|
* to preserve case in order to facilitate people using 0x20-hacks to avoid
|
|
|
|
* DNS poisoning. */
|
|
|
|
static const char *
|
|
|
|
evdns_get_orig_address(const struct evdns_server_request *req,
|
|
|
|
int rtype, const char *addr)
|
|
|
|
{
|
|
|
|
int i, type;
|
|
|
|
|
|
|
|
switch (rtype) {
|
|
|
|
case RESOLVED_TYPE_IPV4:
|
|
|
|
type = EVDNS_TYPE_A;
|
|
|
|
break;
|
|
|
|
case RESOLVED_TYPE_HOSTNAME:
|
|
|
|
type = EVDNS_TYPE_PTR;
|
|
|
|
break;
|
|
|
|
case RESOLVED_TYPE_IPV6:
|
|
|
|
type = EVDNS_TYPE_AAAA;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tor_fragile_assert();
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < req->nquestions; ++i) {
|
|
|
|
const struct evdns_server_question *q = req->questions[i];
|
|
|
|
if (q->type == type && !strcasecmp(q->name, addr))
|
|
|
|
return q->name;
|
|
|
|
}
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
2007-05-29 19:31:13 +02:00
|
|
|
/** Tell the dns request waiting for an answer on <b>conn</b> that we have an
|
|
|
|
* answer of type <b>answer_type</b> (RESOLVE_TYPE_IPV4/IPV6/ERR), of length
|
|
|
|
* <b>answer_len</b>, in <b>answer</b>, with TTL <b>ttl</b>. Doesn't do
|
|
|
|
* any caching; that's handled elsewhere. */
|
2007-05-24 22:31:30 +02:00
|
|
|
void
|
|
|
|
dnsserv_resolved(edge_connection_t *conn,
|
|
|
|
int answer_type,
|
|
|
|
size_t answer_len,
|
|
|
|
const char *answer,
|
|
|
|
int ttl)
|
|
|
|
{
|
|
|
|
struct evdns_server_request *req = conn->dns_server_request;
|
2008-10-29 16:31:26 +01:00
|
|
|
const char *name;
|
2007-05-24 22:31:30 +02:00
|
|
|
int err = DNS_ERR_NONE;
|
|
|
|
if (!req)
|
|
|
|
return;
|
2008-10-29 16:31:26 +01:00
|
|
|
name = evdns_get_orig_address(req, answer_type, conn->socks_request->address);
|
2007-05-24 22:31:30 +02:00
|
|
|
|
2008-02-16 00:39:04 +01:00
|
|
|
/* XXXX021 Re-do; this is dumb. */
|
2007-05-24 22:31:30 +02:00
|
|
|
if (ttl < 60)
|
|
|
|
ttl = 60;
|
|
|
|
|
2007-05-29 19:31:13 +02:00
|
|
|
/* The evdns interface is: add a bunch of reply items (corresponding to one
|
|
|
|
* or more of the questions in the request); then, call
|
|
|
|
* evdns_server_request_respond. */
|
2007-05-24 22:31:30 +02:00
|
|
|
if (answer_type == RESOLVED_TYPE_IPV6) {
|
2007-07-10 19:41:26 +02:00
|
|
|
log_info(LD_APP, "Got an IPv6 answer; that's not implemented.");
|
|
|
|
err = DNS_ERR_NOTIMPL;
|
2007-05-24 22:31:30 +02:00
|
|
|
} else if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4 &&
|
|
|
|
conn->socks_request->command == SOCKS_COMMAND_RESOLVE) {
|
2007-07-10 19:41:26 +02:00
|
|
|
evdns_server_request_add_a_reply(req,
|
2008-10-29 16:31:26 +01:00
|
|
|
name,
|
2007-07-10 19:41:26 +02:00
|
|
|
1, (char*)answer, ttl);
|
2007-05-24 22:31:30 +02:00
|
|
|
} else if (answer_type == RESOLVED_TYPE_HOSTNAME &&
|
|
|
|
conn->socks_request->command == SOCKS_COMMAND_RESOLVE_PTR) {
|
2007-07-10 19:41:26 +02:00
|
|
|
char *ans = tor_strndup(answer, answer_len);
|
|
|
|
evdns_server_request_add_ptr_reply(req, NULL,
|
2008-10-29 16:31:26 +01:00
|
|
|
name,
|
2007-05-24 22:31:30 +02:00
|
|
|
(char*)answer, ttl);
|
2007-07-10 19:41:26 +02:00
|
|
|
tor_free(ans);
|
2007-06-01 01:40:35 +02:00
|
|
|
} else if (answer_type == RESOLVED_TYPE_ERROR) {
|
2007-07-10 19:41:26 +02:00
|
|
|
err = DNS_ERR_NOTEXIST;
|
2007-06-01 01:40:35 +02:00
|
|
|
} else { /* answer_type == RESOLVED_TYPE_ERROR_TRANSIENT */
|
2007-07-10 19:41:26 +02:00
|
|
|
err = DNS_ERR_SERVERFAILED;
|
2007-05-24 22:31:30 +02:00
|
|
|
}
|
|
|
|
|
2007-07-10 19:41:26 +02:00
|
|
|
evdns_server_request_respond(req, err);
|
2007-07-10 19:14:51 +02:00
|
|
|
|
2007-05-24 22:31:30 +02:00
|
|
|
conn->dns_server_request = NULL;
|
|
|
|
}
|
|
|
|
|
2007-05-29 19:31:13 +02:00
|
|
|
/* Set up the evdns server port for the UDP socket on <b>conn</b>, which
|
|
|
|
* must be an AP_DNS_LISTENER */
|
2007-05-24 22:31:30 +02:00
|
|
|
void
|
|
|
|
dnsserv_configure_listener(connection_t *conn)
|
|
|
|
{
|
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(conn->s);
|
2007-05-29 19:31:13 +02:00
|
|
|
tor_assert(conn->type == CONN_TYPE_AP_DNS_LISTENER);
|
2007-05-24 22:31:30 +02:00
|
|
|
|
2007-07-26 00:57:07 +02:00
|
|
|
conn->dns_server_port = evdns_add_server_port(conn->s, 0,
|
|
|
|
evdns_server_callback, NULL);
|
2007-05-24 22:31:30 +02:00
|
|
|
}
|
|
|
|
|
2007-05-29 19:31:13 +02:00
|
|
|
/** Free the evdns server port for <b>conn</b>, which must be an
|
|
|
|
* AP_DNS_LISTENER. */
|
2007-05-24 22:31:30 +02:00
|
|
|
void
|
|
|
|
dnsserv_close_listener(connection_t *conn)
|
|
|
|
{
|
2007-05-29 19:31:13 +02:00
|
|
|
tor_assert(conn);
|
|
|
|
tor_assert(conn->type == CONN_TYPE_AP_DNS_LISTENER);
|
|
|
|
|
|
|
|
if (conn->dns_server_port) {
|
|
|
|
evdns_close_server_port(conn->dns_server_port);
|
|
|
|
conn->dns_server_port = NULL;
|
|
|
|
}
|
2007-05-24 22:31:30 +02:00
|
|
|
}
|
|
|
|
|