dnsserv.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. /* Copyright (c) 2007-2011, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file dnsserv.c \brief Implements client-side DNS proxy server code. Note:
  5. * this is the DNS Server code, not the Server DNS code. Confused? This code
  6. * runs on client-side, and acts as a DNS server. The code in dns.c, on the
  7. * other hand, runs on Tor servers, and acts as a DNS client.
  8. **/
  9. #include "or.h"
  10. #include "dnsserv.h"
  11. #include "config.h"
  12. #include "connection.h"
  13. #include "connection_edge.h"
  14. #include "control.h"
  15. #include "main.h"
  16. #include "policies.h"
  17. #ifdef HAVE_EVENT2_DNS_H
  18. #include <event2/dns.h>
  19. #include <event2/dns_compat.h>
  20. /* XXXX023 this implies we want an improved evdns */
  21. #include <event2/dns_struct.h>
  22. #else
  23. #include "eventdns.h"
  24. #endif
  25. /** Helper function: called by evdns whenever the client sends a request to our
  26. * DNSPort. We need to eventually answer the request <b>req</b>.
  27. */
  28. static void
  29. evdns_server_callback(struct evdns_server_request *req, void *data_)
  30. {
  31. const listener_connection_t *listener = data_;
  32. edge_connection_t *conn;
  33. int i = 0;
  34. struct evdns_server_question *q = NULL;
  35. struct sockaddr_storage addr;
  36. struct sockaddr *sa;
  37. int addrlen;
  38. tor_addr_t tor_addr;
  39. uint16_t port;
  40. int err = DNS_ERR_NONE;
  41. char *q_name;
  42. tor_assert(req);
  43. log_info(LD_APP, "Got a new DNS request!");
  44. req->flags |= 0x80; /* set RA */
  45. /* First, check whether the requesting address matches our SOCKSPolicy. */
  46. if ((addrlen = evdns_server_request_get_requesting_addr(req,
  47. (struct sockaddr*)&addr, (socklen_t)sizeof(addr))) < 0) {
  48. log_warn(LD_APP, "Couldn't get requesting address.");
  49. evdns_server_request_respond(req, DNS_ERR_SERVERFAILED);
  50. return;
  51. }
  52. (void) addrlen;
  53. sa = (struct sockaddr*) &addr;
  54. if (tor_addr_from_sockaddr(&tor_addr, sa, &port)<0) {
  55. log_warn(LD_APP, "Requesting address wasn't recognized.");
  56. evdns_server_request_respond(req, DNS_ERR_SERVERFAILED);
  57. return;
  58. }
  59. if (!socks_policy_permits_address(&tor_addr)) {
  60. log_warn(LD_APP, "Rejecting DNS request from disallowed IP.");
  61. evdns_server_request_respond(req, DNS_ERR_REFUSED);
  62. return;
  63. }
  64. /* Now, let's find the first actual question of a type we can answer in this
  65. * DNS request. It makes us a little noncompliant to act like this; we
  66. * should fix that eventually if it turns out to make a difference for
  67. * anybody. */
  68. if (req->nquestions == 0) {
  69. log_info(LD_APP, "No questions in DNS request; sending back nil reply.");
  70. evdns_server_request_respond(req, 0);
  71. return;
  72. }
  73. if (req->nquestions > 1) {
  74. log_info(LD_APP, "Got a DNS request with more than one question; I only "
  75. "handle one question at a time for now. Skipping the extras.");
  76. }
  77. for (i = 0; i < req->nquestions; ++i) {
  78. if (req->questions[i]->dns_question_class != EVDNS_CLASS_INET)
  79. continue;
  80. switch (req->questions[i]->type) {
  81. case EVDNS_TYPE_A:
  82. case EVDNS_TYPE_PTR:
  83. q = req->questions[i];
  84. default:
  85. break;
  86. }
  87. }
  88. if (!q) {
  89. log_info(LD_APP, "None of the questions we got were ones we're willing "
  90. "to support. Sending NOTIMPL.");
  91. evdns_server_request_respond(req, DNS_ERR_NOTIMPL);
  92. return;
  93. }
  94. if (q->type != EVDNS_TYPE_A) {
  95. tor_assert(q->type == EVDNS_TYPE_PTR);
  96. }
  97. /* Make sure the name isn't too long: This should be impossible, I think. */
  98. if (err == DNS_ERR_NONE && strlen(q->name) > MAX_SOCKS_ADDR_LEN-1)
  99. err = DNS_ERR_FORMAT;
  100. if (err != DNS_ERR_NONE) {
  101. /* We got an error? Then send back an answer immediately; we're done. */
  102. evdns_server_request_respond(req, err);
  103. return;
  104. }
  105. /* Make a new dummy AP connection, and attach the request to it. */
  106. conn = edge_connection_new(CONN_TYPE_AP, AF_INET);
  107. conn->_base.state = AP_CONN_STATE_RESOLVE_WAIT;
  108. conn->is_dns_request = 1;
  109. tor_addr_copy(&TO_CONN(conn)->addr, &tor_addr);
  110. TO_CONN(conn)->port = port;
  111. TO_CONN(conn)->address = tor_dup_addr(&tor_addr);
  112. if (q->type == EVDNS_TYPE_A)
  113. conn->socks_request->command = SOCKS_COMMAND_RESOLVE;
  114. else
  115. conn->socks_request->command = SOCKS_COMMAND_RESOLVE_PTR;
  116. strlcpy(conn->socks_request->address, q->name,
  117. sizeof(conn->socks_request->address));
  118. conn->dns_server_request = req;
  119. conn->isolation_flags = listener->isolation_flags;
  120. conn->session_group = listener->session_group;
  121. conn->nym_epoch = get_signewnym_epoch();
  122. if (connection_add(TO_CONN(conn)) < 0) {
  123. log_warn(LD_APP, "Couldn't register dummy connection for DNS request");
  124. evdns_server_request_respond(req, DNS_ERR_SERVERFAILED);
  125. connection_free(TO_CONN(conn));
  126. return;
  127. }
  128. control_event_stream_status(conn, STREAM_EVENT_NEW, 0);
  129. /* Now, unless a controller asked us to leave streams unattached,
  130. * throw the connection over to get rewritten (which will
  131. * answer it immediately if it's in the cache, or completely bogus, or
  132. * automapped), and then attached to a circuit. */
  133. log_info(LD_APP, "Passing request for %s to rewrite_and_attach.",
  134. escaped_safe_str_client(q->name));
  135. q_name = tor_strdup(q->name); /* q could be freed in rewrite_and_attach */
  136. connection_ap_rewrite_and_attach_if_allowed(conn, NULL, NULL);
  137. /* Now, the connection is marked if it was bad. */
  138. log_info(LD_APP, "Passed request for %s to rewrite_and_attach_if_allowed.",
  139. escaped_safe_str_client(q_name));
  140. tor_free(q_name);
  141. }
  142. /** Helper function: called whenever the client sends a resolve request to our
  143. * controller. We need to eventually answer the request <b>req</b>.
  144. * Returns 0 if the controller will be getting (or has gotten) an event in
  145. * response; -1 if we couldn't launch the request.
  146. */
  147. int
  148. dnsserv_launch_request(const char *name, int reverse)
  149. {
  150. edge_connection_t *conn;
  151. char *q_name;
  152. /* Make a new dummy AP connection, and attach the request to it. */
  153. conn = edge_connection_new(CONN_TYPE_AP, AF_INET);
  154. conn->_base.state = AP_CONN_STATE_RESOLVE_WAIT;
  155. if (reverse)
  156. conn->socks_request->command = SOCKS_COMMAND_RESOLVE_PTR;
  157. else
  158. conn->socks_request->command = SOCKS_COMMAND_RESOLVE;
  159. conn->is_dns_request = 1;
  160. strlcpy(conn->socks_request->address, name,
  161. sizeof(conn->socks_request->address));
  162. conn->original_dest_address = tor_strdup(name);
  163. conn->session_group = SESSION_GROUP_CONTROL_RESOLVE;
  164. conn->nym_epoch = get_signewnym_epoch();
  165. conn->isolation_flags = ISO_DEFAULT;
  166. if (connection_add(TO_CONN(conn))<0) {
  167. log_warn(LD_APP, "Couldn't register dummy connection for RESOLVE request");
  168. connection_free(TO_CONN(conn));
  169. return -1;
  170. }
  171. /* Now, unless a controller asked us to leave streams unattached,
  172. * throw the connection over to get rewritten (which will
  173. * answer it immediately if it's in the cache, or completely bogus, or
  174. * automapped), and then attached to a circuit. */
  175. log_info(LD_APP, "Passing request for %s to rewrite_and_attach.",
  176. escaped_safe_str_client(name));
  177. q_name = tor_strdup(name); /* q could be freed in rewrite_and_attach */
  178. connection_ap_rewrite_and_attach_if_allowed(conn, NULL, NULL);
  179. /* Now, the connection is marked if it was bad. */
  180. log_info(LD_APP, "Passed request for %s to rewrite_and_attach_if_allowed.",
  181. escaped_safe_str_client(q_name));
  182. tor_free(q_name);
  183. return 0;
  184. }
  185. /** If there is a pending request on <b>conn</b> that's waiting for an answer,
  186. * send back an error and free the request. */
  187. void
  188. dnsserv_reject_request(edge_connection_t *conn)
  189. {
  190. if (conn->dns_server_request) {
  191. evdns_server_request_respond(conn->dns_server_request,
  192. DNS_ERR_SERVERFAILED);
  193. conn->dns_server_request = NULL;
  194. }
  195. }
  196. /** Look up the original name that corresponds to 'addr' in req. We use this
  197. * to preserve case in order to facilitate people using 0x20-hacks to avoid
  198. * DNS poisoning. */
  199. static const char *
  200. evdns_get_orig_address(const struct evdns_server_request *req,
  201. int rtype, const char *addr)
  202. {
  203. int i, type;
  204. switch (rtype) {
  205. case RESOLVED_TYPE_IPV4:
  206. type = EVDNS_TYPE_A;
  207. break;
  208. case RESOLVED_TYPE_HOSTNAME:
  209. type = EVDNS_TYPE_PTR;
  210. break;
  211. case RESOLVED_TYPE_IPV6:
  212. type = EVDNS_TYPE_AAAA;
  213. break;
  214. default:
  215. tor_fragile_assert();
  216. return addr;
  217. }
  218. for (i = 0; i < req->nquestions; ++i) {
  219. const struct evdns_server_question *q = req->questions[i];
  220. if (q->type == type && !strcasecmp(q->name, addr))
  221. return q->name;
  222. }
  223. return addr;
  224. }
  225. /** Tell the dns request waiting for an answer on <b>conn</b> that we have an
  226. * answer of type <b>answer_type</b> (RESOLVE_TYPE_IPV4/IPV6/ERR), of length
  227. * <b>answer_len</b>, in <b>answer</b>, with TTL <b>ttl</b>. Doesn't do
  228. * any caching; that's handled elsewhere. */
  229. void
  230. dnsserv_resolved(edge_connection_t *conn,
  231. int answer_type,
  232. size_t answer_len,
  233. const char *answer,
  234. int ttl)
  235. {
  236. struct evdns_server_request *req = conn->dns_server_request;
  237. const char *name;
  238. int err = DNS_ERR_NONE;
  239. if (!req)
  240. return;
  241. name = evdns_get_orig_address(req, answer_type,
  242. conn->socks_request->address);
  243. /* XXXX Re-do; this is dumb. */
  244. if (ttl < 60)
  245. ttl = 60;
  246. /* The evdns interface is: add a bunch of reply items (corresponding to one
  247. * or more of the questions in the request); then, call
  248. * evdns_server_request_respond. */
  249. if (answer_type == RESOLVED_TYPE_IPV6) {
  250. log_info(LD_APP, "Got an IPv6 answer; that's not implemented.");
  251. err = DNS_ERR_NOTIMPL;
  252. } else if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4 &&
  253. conn->socks_request->command == SOCKS_COMMAND_RESOLVE) {
  254. evdns_server_request_add_a_reply(req,
  255. name,
  256. 1, answer, ttl);
  257. } else if (answer_type == RESOLVED_TYPE_HOSTNAME &&
  258. answer_len < 256 &&
  259. conn->socks_request->command == SOCKS_COMMAND_RESOLVE_PTR) {
  260. char *ans = tor_strndup(answer, answer_len);
  261. evdns_server_request_add_ptr_reply(req, NULL,
  262. name,
  263. ans, ttl);
  264. tor_free(ans);
  265. } else if (answer_type == RESOLVED_TYPE_ERROR) {
  266. err = DNS_ERR_NOTEXIST;
  267. } else { /* answer_type == RESOLVED_TYPE_ERROR_TRANSIENT */
  268. err = DNS_ERR_SERVERFAILED;
  269. }
  270. evdns_server_request_respond(req, err);
  271. conn->dns_server_request = NULL;
  272. }
  273. /** Set up the evdns server port for the UDP socket on <b>conn</b>, which
  274. * must be an AP_DNS_LISTENER */
  275. void
  276. dnsserv_configure_listener(connection_t *conn)
  277. {
  278. listener_connection_t *listener_conn;
  279. tor_assert(conn);
  280. tor_assert(SOCKET_OK(conn->s));
  281. tor_assert(conn->type == CONN_TYPE_AP_DNS_LISTENER);
  282. listener_conn = TO_LISTENER_CONN(conn);
  283. listener_conn->dns_server_port =
  284. tor_evdns_add_server_port(conn->s, 0, evdns_server_callback,
  285. listener_conn);
  286. }
  287. /** Free the evdns server port for <b>conn</b>, which must be an
  288. * AP_DNS_LISTENER. */
  289. void
  290. dnsserv_close_listener(connection_t *conn)
  291. {
  292. listener_connection_t *listener_conn;
  293. tor_assert(conn);
  294. tor_assert(conn->type == CONN_TYPE_AP_DNS_LISTENER);
  295. listener_conn = TO_LISTENER_CONN(conn);
  296. if (listener_conn->dns_server_port) {
  297. evdns_close_server_port(listener_conn->dns_server_port);
  298. listener_conn->dns_server_port = NULL;
  299. }
  300. }