2018-07-22 03:34:28 +00:00
|
|
|
#include "dnsc.hpp"
|
|
|
|
#include <llarp/dns.h>
|
2018-07-20 10:28:21 +00:00
|
|
|
#include "buffer.hpp"
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-30 04:38:14 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h> /* getaddrinfo, getnameinfo */
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
#include <stdlib.h> /* exit */
|
|
|
|
#include <string.h> /* memset */
|
|
|
|
#include <sys/types.h>
|
2018-07-30 04:38:14 +00:00
|
|
|
#ifndef _MSC_VER
|
2018-07-16 21:26:16 +00:00
|
|
|
#include <unistd.h> /* close */
|
2018-07-30 04:38:14 +00:00
|
|
|
#endif
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-24 06:20:05 +00:00
|
|
|
#include <cstdio>
|
|
|
|
|
2018-07-16 12:48:04 +00:00
|
|
|
#include <llarp/dns.h>
|
2018-07-27 00:21:57 +00:00
|
|
|
#include "llarp/net.hpp" // for llarp::Addr
|
2018-07-16 21:26:16 +00:00
|
|
|
#include "logger.hpp"
|
2018-07-16 12:48:04 +00:00
|
|
|
|
|
|
|
// FIXME: make configurable
|
|
|
|
#define SERVER "8.8.8.8"
|
|
|
|
#define PORT 53
|
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
#define DNC_BUF_SIZE 512
|
|
|
|
// a question to be asked remotely
|
|
|
|
// header, question
|
|
|
|
struct dns_query
|
|
|
|
{
|
|
|
|
uint16_t length;
|
2018-07-25 00:35:11 +00:00
|
|
|
// char *url;
|
2018-07-22 03:34:28 +00:00
|
|
|
unsigned char request[DNC_BUF_SIZE];
|
2018-07-25 00:35:11 +00:00
|
|
|
// uint16_t reqType;
|
2018-07-22 03:34:28 +00:00
|
|
|
};
|
|
|
|
|
2018-07-25 00:35:11 +00:00
|
|
|
struct dns_query *
|
2018-07-22 03:34:28 +00:00
|
|
|
build_dns_packet(char *url, uint16_t id, uint16_t reqType)
|
|
|
|
{
|
|
|
|
dns_query *dnsQuery = new dns_query;
|
2018-07-25 00:35:11 +00:00
|
|
|
dnsQuery->length = 12;
|
2018-07-22 03:34:28 +00:00
|
|
|
// ID
|
|
|
|
// buffer[0] = (value & 0xFF00) >> 8;
|
|
|
|
// buffer[1] = value & 0xFF;
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("building request ", id);
|
2018-07-24 01:06:56 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
dnsQuery->request[0] = (id & 0xFF00) >> 8;
|
|
|
|
dnsQuery->request[1] = (id & 0x00FF) >> 0;
|
|
|
|
// field
|
|
|
|
dnsQuery->request[2] = 0x01;
|
|
|
|
dnsQuery->request[3] = 0x00;
|
|
|
|
// questions
|
|
|
|
dnsQuery->request[4] = 0x00;
|
|
|
|
dnsQuery->request[5] = 0x01;
|
|
|
|
// answers
|
|
|
|
dnsQuery->request[6] = 0x00;
|
|
|
|
dnsQuery->request[7] = 0x00;
|
|
|
|
// ns
|
|
|
|
dnsQuery->request[8] = 0x00;
|
|
|
|
dnsQuery->request[9] = 0x00;
|
|
|
|
// ar
|
|
|
|
dnsQuery->request[10] = 0x00;
|
|
|
|
dnsQuery->request[11] = 0x00;
|
2018-07-24 01:06:56 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
char *word;
|
|
|
|
// llarp::LogDebug("Asking DNS server %s about %s", SERVER, dnsQuery->url);
|
2018-07-24 01:06:56 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
char *strTemp = strdup(url);
|
|
|
|
word = strtok(strTemp, ".");
|
|
|
|
while(word)
|
|
|
|
{
|
|
|
|
// llarp::LogDebug("parsing hostname: \"%s\" is %zu characters", word,
|
|
|
|
// strlen(word));
|
|
|
|
dnsQuery->request[dnsQuery->length++] = strlen(word);
|
|
|
|
for(unsigned int i = 0; i < strlen(word); i++)
|
|
|
|
{
|
|
|
|
dnsQuery->request[dnsQuery->length++] = word[i];
|
|
|
|
}
|
2018-07-30 04:38:14 +00:00
|
|
|
word = strtok(nullptr, ".");
|
2018-07-22 03:34:28 +00:00
|
|
|
}
|
2018-07-24 01:06:56 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
dnsQuery->request[dnsQuery->length++] = 0x00; // End of the host name
|
|
|
|
dnsQuery->request[dnsQuery->length++] =
|
2018-07-25 00:35:11 +00:00
|
|
|
0x00; // 0x0001 - Query is a Type A query (host address)
|
2018-07-22 03:34:28 +00:00
|
|
|
dnsQuery->request[dnsQuery->length++] = reqType;
|
|
|
|
dnsQuery->request[dnsQuery->length++] =
|
2018-07-25 00:35:11 +00:00
|
|
|
0x00; // 0x0001 - Query is class IN (Internet address)
|
2018-07-22 03:34:28 +00:00
|
|
|
dnsQuery->request[dnsQuery->length++] = 0x01;
|
|
|
|
return dnsQuery;
|
|
|
|
}
|
2018-07-21 13:19:06 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
struct sockaddr *
|
2018-07-22 03:34:28 +00:00
|
|
|
raw_resolve_host(const char *url)
|
2018-07-16 21:26:16 +00:00
|
|
|
{
|
2018-07-25 00:35:11 +00:00
|
|
|
// char *sUrl = strdup(url);
|
|
|
|
// struct dns_query dnsQuery;
|
2018-07-22 03:34:28 +00:00
|
|
|
dns_query *dns_packet = build_dns_packet((char *)url, 0xDB42, 1);
|
2018-07-24 01:06:56 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
/*
|
2018-07-16 12:48:04 +00:00
|
|
|
dnsQuery.length = 12;
|
|
|
|
dnsQuery.url = sUrl;
|
|
|
|
dnsQuery.reqType = 0x01;
|
2018-07-16 21:26:16 +00:00
|
|
|
// dnsQuery.request = { 0xDB, 0x42, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
|
|
|
// 0x00, 0x00, 0x00 };
|
|
|
|
dnsQuery.request[0] = 0xDB;
|
|
|
|
dnsQuery.request[1] = 0x42;
|
|
|
|
dnsQuery.request[2] = 0x01;
|
|
|
|
dnsQuery.request[3] = 0x00;
|
|
|
|
dnsQuery.request[4] = 0x00;
|
|
|
|
dnsQuery.request[5] = 0x01;
|
|
|
|
dnsQuery.request[6] = 0x00;
|
|
|
|
dnsQuery.request[7] = 0x00;
|
|
|
|
dnsQuery.request[8] = 0x00;
|
|
|
|
dnsQuery.request[9] = 0x00;
|
2018-07-16 12:48:04 +00:00
|
|
|
dnsQuery.request[10] = 0x00;
|
|
|
|
dnsQuery.request[11] = 0x00;
|
2018-07-22 03:34:28 +00:00
|
|
|
*/
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-27 00:21:57 +00:00
|
|
|
// char *word;
|
2018-07-16 12:48:04 +00:00
|
|
|
unsigned int i;
|
2018-07-21 13:19:06 +00:00
|
|
|
llarp::LogDebug("Asking DNS server ", SERVER, " about ", url);
|
2018-07-16 21:26:16 +00:00
|
|
|
// dnsQuery.reqType = 0x01;
|
2018-07-22 03:34:28 +00:00
|
|
|
/*
|
2018-07-16 12:48:04 +00:00
|
|
|
word = strtok(sUrl, ".");
|
2018-07-16 21:26:16 +00:00
|
|
|
while(word)
|
|
|
|
{
|
|
|
|
llarp::LogDebug("parsing hostname: \"%s\" is %zu characters\n", word,
|
|
|
|
strlen(word));
|
2018-07-16 12:48:04 +00:00
|
|
|
dnsQuery.request[dnsQuery.length++] = strlen(word);
|
2018-07-16 21:26:16 +00:00
|
|
|
for(i = 0; i < strlen(word); i++)
|
|
|
|
{
|
2018-07-16 12:48:04 +00:00
|
|
|
dnsQuery.request[dnsQuery.length++] = word[i];
|
|
|
|
}
|
2018-07-30 04:38:14 +00:00
|
|
|
word = strtok(nullptr, ".");
|
2018-07-16 12:48:04 +00:00
|
|
|
}
|
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
dnsQuery.request[dnsQuery.length++] = 0x00; // End of the host name
|
|
|
|
dnsQuery.request[dnsQuery.length++] =
|
|
|
|
0x00; // 0x0001 - Query is a Type A query (host address)
|
2018-07-16 12:48:04 +00:00
|
|
|
dnsQuery.request[dnsQuery.length++] = dnsQuery.reqType;
|
2018-07-16 21:26:16 +00:00
|
|
|
dnsQuery.request[dnsQuery.length++] =
|
|
|
|
0x00; // 0x0001 - Query is class IN (Internet address)
|
2018-07-16 12:48:04 +00:00
|
|
|
dnsQuery.request[dnsQuery.length++] = 0x01;
|
2018-07-22 03:34:28 +00:00
|
|
|
*/
|
2018-07-16 12:48:04 +00:00
|
|
|
|
|
|
|
struct sockaddr_in addr;
|
2018-07-16 21:26:16 +00:00
|
|
|
// int socket;
|
2018-07-16 12:48:04 +00:00
|
|
|
ssize_t ret;
|
|
|
|
int rcode;
|
|
|
|
socklen_t size;
|
|
|
|
int ip = 0;
|
2018-07-27 00:21:57 +00:00
|
|
|
// int length;
|
2018-07-16 12:48:04 +00:00
|
|
|
unsigned char buffer[DNC_BUF_SIZE];
|
2018-07-16 21:26:16 +00:00
|
|
|
// unsigned char tempBuf[3];
|
2018-07-27 00:21:57 +00:00
|
|
|
uint16_t QDCOUNT; // No. of items in Question Section
|
|
|
|
uint16_t ANCOUNT; // No. of items in Answer Section
|
|
|
|
uint16_t NSCOUNT; // No. of items in Authority Section
|
|
|
|
uint16_t ARCOUNT; // No. of items in Additional Section
|
|
|
|
// uint16_t QCLASS; // Specifies the class of the query
|
|
|
|
uint16_t ATYPE; // Specifies the meaning of the data in the RDATA field
|
|
|
|
// uint16_t ACLASS; // Specifies the class of the data in the RDATA field
|
|
|
|
// uint32_t TTL; // The number of seconds the results can be cached
|
|
|
|
// uint16_t RDLENGTH; // The length of the RDATA field
|
|
|
|
// uint16_t MSGID;
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-30 04:38:14 +00:00
|
|
|
#ifndef _WIN32
|
2018-07-16 12:48:04 +00:00
|
|
|
int sockfd;
|
2018-07-30 04:38:14 +00:00
|
|
|
#else
|
|
|
|
SOCKET sockfd;
|
|
|
|
#endif
|
2018-07-16 12:48:04 +00:00
|
|
|
|
|
|
|
sockfd = socket(AF_INET, SOCK_DGRAM, 0);
|
2018-07-16 21:26:16 +00:00
|
|
|
if(sockfd < 0)
|
|
|
|
{
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogWarn("Error creating socket!\n");
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-07-16 21:26:16 +00:00
|
|
|
// socket = sockfd;
|
2018-07-16 12:48:04 +00:00
|
|
|
|
|
|
|
memset(&addr, 0, sizeof(addr));
|
2018-07-16 21:26:16 +00:00
|
|
|
addr.sin_family = AF_INET;
|
2018-07-16 12:48:04 +00:00
|
|
|
addr.sin_addr.s_addr = inet_addr(SERVER);
|
2018-07-16 21:26:16 +00:00
|
|
|
addr.sin_port = htons(PORT);
|
|
|
|
size = sizeof(addr);
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
// hexdump("sending packet", &dnsQuery.request, dnsQuery.length);
|
2018-07-30 04:38:14 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
ret = sendto(sockfd, (const char *)dns_packet->request, dns_packet->length, 0,
|
|
|
|
(struct sockaddr *)&addr, size);
|
|
|
|
#else
|
2018-07-22 03:34:28 +00:00
|
|
|
ret = sendto(sockfd, dns_packet->request, dns_packet->length, 0,
|
2018-07-16 21:26:16 +00:00
|
|
|
(struct sockaddr *)&addr, size);
|
2018-07-30 04:38:14 +00:00
|
|
|
#endif
|
2018-07-22 03:34:28 +00:00
|
|
|
delete dns_packet;
|
2018-07-16 21:26:16 +00:00
|
|
|
if(ret < 0)
|
|
|
|
{
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogWarn("Error Sending Request");
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-07-21 13:24:47 +00:00
|
|
|
// llarp::LogInfo("Sent\n");
|
2018-07-16 12:48:04 +00:00
|
|
|
|
|
|
|
memset(&buffer, 0, DNC_BUF_SIZE);
|
2018-07-30 04:38:14 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
ret = recvfrom(sockfd, (char *)buffer, DNC_BUF_SIZE, 0,
|
|
|
|
(struct sockaddr *)&addr, &size);
|
|
|
|
#else
|
2018-08-08 17:43:46 +00:00
|
|
|
ret = recvfrom(sockfd, buffer, DNC_BUF_SIZE, 0, (struct sockaddr *)&addr,
|
|
|
|
&size);
|
2018-07-30 04:38:14 +00:00
|
|
|
#endif
|
2018-07-16 21:26:16 +00:00
|
|
|
if(ret < 0)
|
|
|
|
{
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogWarn("Error Receiving Response");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
// hexdump("received packet", &buffer, ret);
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-30 04:38:14 +00:00
|
|
|
#ifndef _WIN32
|
2018-07-16 12:48:04 +00:00
|
|
|
close(sockfd);
|
2018-07-30 04:38:14 +00:00
|
|
|
#else
|
|
|
|
closesocket(sockfd);
|
|
|
|
#endif
|
2018-07-16 12:48:04 +00:00
|
|
|
|
|
|
|
rcode = (buffer[3] & 0x0F);
|
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
// tempBuf[0] = buffer[4];
|
|
|
|
// tempBuf[1] = buffer[5];
|
|
|
|
// tempBuf[2] = '\0';
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
// printf("%0x %0x %0x %0x\n", buffer[4], buffer[5], tempBuf[0], tempBuf[1]);
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-30 04:38:14 +00:00
|
|
|
// QDCOUNT = (uint16_t) strtol(tempBuf, nullptr, 16);
|
2018-07-16 21:26:16 +00:00
|
|
|
QDCOUNT = (uint16_t)buffer[4] * 0x100 + buffer[5];
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("entries in question section: %u\n", QDCOUNT);
|
2018-07-16 21:26:16 +00:00
|
|
|
ANCOUNT = (uint16_t)buffer[6] * 0x100 + buffer[7];
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("records in answer section: %u\n", ANCOUNT);
|
2018-07-16 21:26:16 +00:00
|
|
|
NSCOUNT = (uint16_t)buffer[8] * 0x100 + buffer[9];
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("name server resource record count: %u\n", NSCOUNT);
|
2018-07-16 21:26:16 +00:00
|
|
|
ARCOUNT = (uint16_t)buffer[10] * 0x100 + buffer[11];
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("additional records count: %u\n", ARCOUNT);
|
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
/*
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("query type: %u\n", dnsQuery.reqType);
|
2018-07-16 21:26:16 +00:00
|
|
|
QCLASS = (uint16_t)dnsQuery.request[dnsQuery.length - 2] * 0x100
|
|
|
|
+ dnsQuery.request[dnsQuery.length - 1];
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("query class: %u\n", QCLASS);
|
2018-07-16 21:26:16 +00:00
|
|
|
length = dnsQuery.length + 1; // to skip 0xc00c
|
|
|
|
ATYPE = (uint16_t)buffer[length + 1] * 0x100 + buffer[length + 2];
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("answer type: %u\n", ATYPE);
|
2018-07-16 21:26:16 +00:00
|
|
|
ACLASS = (uint16_t)buffer[length + 3] * 0x100 + buffer[length + 4];
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("answer class: %u\n", ACLASS);
|
2018-07-16 21:26:16 +00:00
|
|
|
TTL = (uint32_t)buffer[length + 5] * 0x1000000 + buffer[length + 6] * 0x10000
|
|
|
|
+ buffer[length + 7] * 0x100 + buffer[length + 8];
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("seconds to cache: %u\n", TTL);
|
2018-07-16 21:26:16 +00:00
|
|
|
RDLENGTH = (uint16_t)buffer[length + 9] * 0x100 + buffer[length + 10];
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("bytes in answer: %u\n", RDLENGTH);
|
2018-07-16 21:26:16 +00:00
|
|
|
MSGID = (uint16_t)buffer[0] * 0x100 + buffer[1];
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("answer msg id: %u\n", MSGID);
|
2018-07-22 03:34:28 +00:00
|
|
|
*/
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
if(rcode == 2)
|
|
|
|
{
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogWarn("nameserver %s returned SERVFAIL:\n", SERVER);
|
2018-07-16 21:26:16 +00:00
|
|
|
llarp::LogWarn(
|
|
|
|
" the name server was unable to process this query due to a\n "
|
|
|
|
"problem with the name server.\n");
|
2018-07-16 12:48:04 +00:00
|
|
|
return nullptr;
|
2018-07-16 21:26:16 +00:00
|
|
|
}
|
|
|
|
else if(rcode == 3)
|
|
|
|
{
|
2018-07-22 03:34:28 +00:00
|
|
|
llarp::LogWarn("nameserver %s returned NXDOMAIN for ", SERVER);
|
2018-07-16 21:26:16 +00:00
|
|
|
llarp::LogWarn(
|
|
|
|
" the domain name referenced in the query does not exist\n");
|
2018-07-16 12:48:04 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* search for and print IPv4 addresses */
|
2018-07-25 00:35:11 +00:00
|
|
|
// if(dnsQuery.reqType == 0x01)
|
|
|
|
if(1)
|
2018-07-16 21:26:16 +00:00
|
|
|
{
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogDebug("DNS server's answer is: (type#=%u):", ATYPE);
|
2018-07-16 21:26:16 +00:00
|
|
|
// printf("IPv4 address(es) for %s:\n", dnsQuery.url);
|
|
|
|
for(i = 0; i < ret; i++)
|
|
|
|
{
|
|
|
|
if(buffer[i] == 0xC0 && buffer[i + 3] == 0x01)
|
|
|
|
{
|
|
|
|
ip++;
|
|
|
|
i += 12; /* ! += buf[i+1]; */
|
|
|
|
llarp::LogDebug(" %u.%u.%u.%u\n", buffer[i], buffer[i + 1],
|
|
|
|
buffer[i + 2], buffer[i + 3]);
|
2018-07-16 12:48:04 +00:00
|
|
|
struct sockaddr *g_addr = new sockaddr;
|
2018-07-16 21:26:16 +00:00
|
|
|
g_addr->sa_family = AF_INET;
|
2018-07-25 00:35:11 +00:00
|
|
|
#if((__APPLE__ && __MACH__) || __FreeBSD__)
|
|
|
|
g_addr->sa_len = sizeof(in_addr);
|
2018-07-24 01:06:56 +00:00
|
|
|
#endif
|
2018-07-25 00:35:11 +00:00
|
|
|
struct in_addr *addr = &((struct sockaddr_in *)g_addr)->sin_addr;
|
2018-07-16 21:26:16 +00:00
|
|
|
unsigned char *ip;
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
// have ip point to s_addr
|
|
|
|
ip = (unsigned char *)&(addr->s_addr);
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
ip[0] = buffer[i + 0];
|
|
|
|
ip[1] = buffer[i + 1];
|
|
|
|
ip[2] = buffer[i + 2];
|
|
|
|
ip[3] = buffer[i + 3];
|
2018-07-16 12:48:04 +00:00
|
|
|
|
|
|
|
return g_addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
if(!ip)
|
|
|
|
{
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogWarn(" No IPv4 address found in the DNS response!\n");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-07-22 03:34:28 +00:00
|
|
|
llarp_handle_dnsc_recvfrom(struct llarp_udp_io *udp,
|
2018-07-25 00:35:11 +00:00
|
|
|
const struct sockaddr *saddr, const void *buf,
|
|
|
|
ssize_t sz)
|
2018-07-16 12:48:04 +00:00
|
|
|
{
|
2018-07-25 00:35:11 +00:00
|
|
|
// lock_t lock(m_dnsc_Mutex);
|
2018-07-21 13:24:47 +00:00
|
|
|
// llarp::LogInfo("got a response, udp user is ", udp->user);
|
|
|
|
|
2018-07-21 13:19:06 +00:00
|
|
|
unsigned char *castBuf = (unsigned char *)buf;
|
2018-07-27 00:21:57 +00:00
|
|
|
// auto buffer = llarp::StackBuffer< decltype(castBuf) >(castBuf);
|
|
|
|
dns_msg_header *hdr = decode_hdr((const char *)castBuf);
|
2018-07-21 13:24:47 +00:00
|
|
|
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("Header got client responses for id: ", hdr->id);
|
2018-07-21 13:24:47 +00:00
|
|
|
|
2018-07-21 13:19:06 +00:00
|
|
|
// if we sent this out, then there's an id
|
2018-07-25 00:35:11 +00:00
|
|
|
struct dns_tracker *tracker = (struct dns_tracker *)udp->user;
|
2018-07-22 03:34:28 +00:00
|
|
|
struct dnsc_answer_request *request = tracker->client_request[hdr->id];
|
2018-07-21 13:19:06 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
if(!request)
|
2018-07-16 12:48:04 +00:00
|
|
|
{
|
2018-07-16 21:26:16 +00:00
|
|
|
llarp::LogError(
|
2018-07-22 03:34:28 +00:00
|
|
|
"User data to DNS Client response not a dnsc_answer_request");
|
2018-07-16 12:48:04 +00:00
|
|
|
// we can't call back the hook
|
|
|
|
return;
|
|
|
|
}
|
2018-07-21 13:24:47 +00:00
|
|
|
// llarp_dnsc_unbind(request);
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
if(sz < 0)
|
|
|
|
{
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogWarn("Error Receiving DNS Client Response");
|
2018-07-20 10:28:21 +00:00
|
|
|
request->resolved(request);
|
2018-07-16 12:48:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-21 13:24:47 +00:00
|
|
|
// unsigned char *castBuf = (unsigned char *)buf;
|
|
|
|
// auto buffer = llarp::StackBuffer< decltype(castBuf) >(castBuf);
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-21 13:24:47 +00:00
|
|
|
// hexdump("received packet", &buffer, ret);
|
2018-07-22 03:34:28 +00:00
|
|
|
/*
|
2018-07-16 21:26:16 +00:00
|
|
|
uint16_t QDCOUNT; // No. of items in Question Section
|
|
|
|
uint16_t ANCOUNT; // No. of items in Answer Section
|
|
|
|
uint16_t NSCOUNT; // No. of items in Authority Section
|
|
|
|
uint16_t ARCOUNT; // No. of items in Additional Section
|
|
|
|
uint16_t QCLASS; // Specifies the class of the query
|
|
|
|
uint16_t ATYPE; // Specifies the meaning of the data in the RDATA field
|
|
|
|
uint16_t ACLASS; // Specifies the class of the data in the RDATA field
|
|
|
|
uint32_t TTL; // The number of seconds the results can be cached
|
|
|
|
uint16_t RDLENGTH; // The length of the RDATA field
|
2018-07-16 12:48:04 +00:00
|
|
|
uint16_t MSGID;
|
2018-07-22 03:34:28 +00:00
|
|
|
*/
|
|
|
|
uint8_t rcode;
|
2018-07-25 00:35:11 +00:00
|
|
|
// int length;
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-25 00:35:11 +00:00
|
|
|
// struct dns_query *dnsQuery = &request->query;
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-25 00:35:11 +00:00
|
|
|
// rcode = (buffer[3] & 0x0F);
|
|
|
|
// llarp::LogInfo("dnsc rcode ", rcode);
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-21 13:24:47 +00:00
|
|
|
dns_msg_header *msg = decode_hdr((const char *)castBuf);
|
2018-07-21 13:19:06 +00:00
|
|
|
castBuf += 12;
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("msg id ", msg->id);
|
2018-07-22 03:34:28 +00:00
|
|
|
uint8_t qr = msg->qr;
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("msg qr ", qr);
|
2018-07-22 03:34:28 +00:00
|
|
|
uint8_t opcode = msg->opcode;
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("msg op ", opcode);
|
2018-07-22 03:34:28 +00:00
|
|
|
rcode = msg->rcode;
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("msg rc ", rcode);
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("msg qdc ", msg->qdCount);
|
|
|
|
llarp::LogDebug("msg anc ", msg->anCount);
|
|
|
|
llarp::LogDebug("msg nsc ", msg->nsCount);
|
|
|
|
llarp::LogDebug("msg arc ", msg->arCount);
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-21 13:19:06 +00:00
|
|
|
// we may need to parse question first
|
2018-07-24 01:06:56 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
/*
|
2018-07-21 13:24:47 +00:00
|
|
|
dns_msg_question *question = decode_question((const char *)castBuf);
|
2018-07-21 13:19:06 +00:00
|
|
|
llarp::LogInfo("que name ", question->name);
|
|
|
|
castBuf += question->name.length() + 8;
|
2018-07-21 13:24:47 +00:00
|
|
|
|
|
|
|
dns_msg_answer *answer = decode_answer((const char *)castBuf);
|
2018-07-21 13:19:06 +00:00
|
|
|
castBuf += answer->name.length() + 4 + 4 + 4 + answer->rdLen;
|
2018-07-22 03:34:28 +00:00
|
|
|
*/
|
2018-07-21 13:24:47 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
// FIXME: only handling one atm
|
|
|
|
dns_msg_question *question = nullptr;
|
|
|
|
for(uint i = 0; i < hdr->qdCount; i++)
|
|
|
|
{
|
2018-07-25 00:35:11 +00:00
|
|
|
question = decode_question((const char *)castBuf);
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("Read a question");
|
2018-07-22 03:34:28 +00:00
|
|
|
castBuf += question->name.length() + 8;
|
|
|
|
}
|
2018-07-24 01:06:56 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
// FIXME: only handling one atm
|
|
|
|
dns_msg_answer *answer = nullptr;
|
|
|
|
for(uint i = 0; i < hdr->anCount; i++)
|
|
|
|
{
|
2018-07-25 00:35:11 +00:00
|
|
|
answer = decode_answer((const char *)castBuf);
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("Read an answer");
|
2018-07-22 03:34:28 +00:00
|
|
|
castBuf += answer->name.length() + 4 + 4 + 4 + answer->rdLen;
|
|
|
|
}
|
2018-07-25 00:35:11 +00:00
|
|
|
// handle authority records (usually no answers with these, so we'll just
|
|
|
|
// stomp) usually NS records tho
|
2018-07-22 03:34:28 +00:00
|
|
|
for(uint i = 0; i < hdr->nsCount; i++)
|
|
|
|
{
|
2018-07-25 00:35:11 +00:00
|
|
|
answer = decode_answer((const char *)castBuf);
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("Read an authority");
|
2018-07-22 03:34:28 +00:00
|
|
|
castBuf += answer->name.length() + 4 + 4 + 4 + answer->rdLen;
|
|
|
|
}
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-21 13:24:47 +00:00
|
|
|
// dns_msg_answer *answer2 = decode_answer((const char*)castBuf);
|
|
|
|
// castBuf += answer->name.length() + 4 + 4 + 4 + answer->rdLen;
|
|
|
|
|
|
|
|
// llarp::LogDebug("query type: %u\n", dnsQuery->reqType);
|
2018-07-22 03:34:28 +00:00
|
|
|
/*
|
2018-07-16 21:26:16 +00:00
|
|
|
QCLASS = (uint16_t)dnsQuery->request[dnsQuery->length - 2] * 0x100
|
|
|
|
+ dnsQuery->request[dnsQuery->length - 1];
|
2018-07-21 13:19:06 +00:00
|
|
|
llarp::LogInfo("query class: ", QCLASS);
|
2018-07-21 13:24:47 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
length = dnsQuery->length + 1; // to skip 0xc00c
|
2018-07-21 13:24:47 +00:00
|
|
|
// printf("length [%d] from [%d]\n", length, buffer.base);
|
|
|
|
ATYPE = (uint16_t)buffer[length + 1] * 0x100 + buffer[length + 2];
|
2018-07-21 13:19:06 +00:00
|
|
|
llarp::LogInfo("answer type: ", ATYPE);
|
2018-07-16 21:26:16 +00:00
|
|
|
ACLASS = (uint16_t)buffer[length + 3] * 0x100 + buffer[length + 4];
|
2018-07-21 13:19:06 +00:00
|
|
|
llarp::LogInfo("answer class: ", ACLASS);
|
2018-07-16 21:26:16 +00:00
|
|
|
TTL = (uint32_t)buffer[length + 5] * 0x1000000 + buffer[length + 6] * 0x10000
|
|
|
|
+ buffer[length + 7] * 0x100 + buffer[length + 8];
|
2018-07-21 13:19:06 +00:00
|
|
|
llarp::LogInfo("seconds to cache: ", TTL);
|
2018-07-16 21:26:16 +00:00
|
|
|
RDLENGTH = (uint16_t)buffer[length + 9] * 0x100 + buffer[length + 10];
|
2018-07-21 13:19:06 +00:00
|
|
|
llarp::LogInfo("bytes in answer: ", RDLENGTH);
|
2018-07-21 13:24:47 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
MSGID = (uint16_t)buffer[0] * 0x100 + buffer[1];
|
2018-07-21 13:24:47 +00:00
|
|
|
// llarp::LogDebug("answer msg id: %u\n", MSGID);
|
2018-07-22 03:34:28 +00:00
|
|
|
*/
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
if(answer == nullptr)
|
|
|
|
{
|
|
|
|
llarp::LogWarn("nameserver ", SERVER, " didnt return any answers:");
|
|
|
|
request->resolved(request);
|
|
|
|
return;
|
|
|
|
}
|
2018-07-24 01:06:56 +00:00
|
|
|
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("ans class ", answer->aClass);
|
|
|
|
llarp::LogDebug("ans type ", answer->type);
|
|
|
|
llarp::LogDebug("ans ttl ", answer->ttl);
|
|
|
|
llarp::LogDebug("ans rdlen ", answer->rdLen);
|
2018-07-21 13:24:47 +00:00
|
|
|
|
2018-07-21 13:19:06 +00:00
|
|
|
/*
|
|
|
|
llarp::LogInfo("ans2 class ", answer2->aClass);
|
|
|
|
llarp::LogInfo("ans2 type ", answer2->type);
|
|
|
|
llarp::LogInfo("ans2 ttl ", answer2->ttl);
|
|
|
|
llarp::LogInfo("ans2 rdlen ", answer2->rdLen);
|
|
|
|
*/
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
if(rcode == 2)
|
|
|
|
{
|
2018-07-21 13:19:06 +00:00
|
|
|
llarp::LogWarn("nameserver ", SERVER, " returned SERVFAIL:");
|
2018-07-16 21:26:16 +00:00
|
|
|
llarp::LogWarn(
|
2018-07-21 13:24:47 +00:00
|
|
|
" the name server was unable to process this query due to a problem "
|
|
|
|
"with the name server.");
|
2018-07-20 10:28:21 +00:00
|
|
|
request->resolved(request);
|
2018-07-16 12:48:04 +00:00
|
|
|
return;
|
2018-07-16 21:26:16 +00:00
|
|
|
}
|
|
|
|
else if(rcode == 3)
|
|
|
|
{
|
2018-07-21 13:24:47 +00:00
|
|
|
llarp::LogWarn("nameserver ", SERVER,
|
2018-07-22 03:34:28 +00:00
|
|
|
" returned NXDOMAIN for: ", request->question.name);
|
2018-07-21 13:19:06 +00:00
|
|
|
llarp::LogWarn(" the domain name referenced in the query does not exist");
|
2018-07-20 10:28:21 +00:00
|
|
|
request->resolved(request);
|
2018-07-16 12:48:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ip = 0;
|
|
|
|
|
|
|
|
/* search for and print IPv4 addresses */
|
2018-07-25 00:35:11 +00:00
|
|
|
// if(dnsQuery->reqType == 0x01)
|
2018-07-22 03:34:28 +00:00
|
|
|
if(request->question.type == 1)
|
2018-07-16 21:26:16 +00:00
|
|
|
{
|
2018-07-25 00:35:11 +00:00
|
|
|
// llarp::LogInfo("DNS server's answer is: (type#=", ATYPE, "):");
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug("IPv4 address(es) for ", request->question.name, ":");
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-25 00:35:11 +00:00
|
|
|
if(answer->rdLen == 4)
|
2018-07-16 21:26:16 +00:00
|
|
|
{
|
2018-07-22 03:34:28 +00:00
|
|
|
request->result.sa_family = AF_INET;
|
2018-07-25 00:35:11 +00:00
|
|
|
#if((__APPLE__ && __MACH__) || __FreeBSD__)
|
|
|
|
request->result.sa_len = sizeof(in_addr);
|
2018-07-24 01:06:56 +00:00
|
|
|
#endif
|
2018-07-22 03:34:28 +00:00
|
|
|
struct in_addr *addr =
|
2018-07-25 00:35:11 +00:00
|
|
|
&((struct sockaddr_in *)&request->result)->sin_addr;
|
2018-07-22 03:34:28 +00:00
|
|
|
|
|
|
|
unsigned char *ip = (unsigned char *)&(addr->s_addr);
|
2018-07-25 00:35:11 +00:00
|
|
|
ip[0] = answer->rData[0];
|
|
|
|
ip[1] = answer->rData[1];
|
|
|
|
ip[2] = answer->rData[2];
|
|
|
|
ip[3] = answer->rData[3];
|
2018-07-22 03:34:28 +00:00
|
|
|
|
|
|
|
llarp::Addr test(request->result);
|
2018-07-23 23:56:26 +00:00
|
|
|
llarp::LogDebug(test);
|
2018-07-22 03:34:28 +00:00
|
|
|
request->found = true;
|
|
|
|
request->resolved(request);
|
2018-07-16 12:48:04 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-07-16 21:26:16 +00:00
|
|
|
|
2018-07-21 13:24:47 +00:00
|
|
|
if(!ip)
|
2018-07-16 21:26:16 +00:00
|
|
|
{
|
2018-07-22 03:34:28 +00:00
|
|
|
llarp::LogWarn(" No IPv4 address found in the DNS answer!");
|
2018-07-20 10:28:21 +00:00
|
|
|
request->resolved(request);
|
2018-07-16 12:48:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
bool
|
2018-07-21 13:24:47 +00:00
|
|
|
llarp_resolve_host(struct dnsc_context *dnsc, const char *url,
|
2018-07-22 03:34:28 +00:00
|
|
|
dnsc_answer_hook_func resolved, void *user)
|
2018-07-16 12:48:04 +00:00
|
|
|
{
|
2018-07-22 03:34:28 +00:00
|
|
|
dnsc_answer_request *request = new dnsc_answer_request;
|
2018-07-25 00:35:11 +00:00
|
|
|
request->sock = (void *)&dnsc->udp;
|
|
|
|
request->user = user;
|
|
|
|
request->resolved = resolved;
|
|
|
|
request->found = false;
|
|
|
|
request->context = dnsc;
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-25 00:35:11 +00:00
|
|
|
char *sUrl = strdup(url);
|
2018-07-22 03:34:28 +00:00
|
|
|
request->question.name = sUrl;
|
|
|
|
request->question.type = 1;
|
|
|
|
request->question.qClass = 1;
|
|
|
|
|
|
|
|
// register request with udp response tracker
|
2018-07-25 00:35:11 +00:00
|
|
|
dns_tracker *tracker = (dns_tracker *)dnsc->udp->user;
|
2018-07-21 13:24:47 +00:00
|
|
|
|
2018-07-21 13:19:06 +00:00
|
|
|
/*
|
2018-07-22 03:34:28 +00:00
|
|
|
uint16_t length = 0;
|
|
|
|
dns_msg_header header;
|
|
|
|
header.id = htons(id);
|
|
|
|
header.qr = 0;
|
|
|
|
header.opcode = 0;
|
|
|
|
header.aa = 0;
|
|
|
|
header.tc = 0;
|
|
|
|
header.rd = 1;
|
|
|
|
header.ra = 0;
|
|
|
|
header.rcode = 0;
|
|
|
|
header.qdCount = htons(1);
|
|
|
|
header.anCount = 0;
|
|
|
|
header.nsCount = 0;
|
|
|
|
header.arCount = 0;
|
|
|
|
length += 12;
|
|
|
|
|
|
|
|
//request->question.name = sUrl;
|
|
|
|
request->question.type = htons(1);
|
|
|
|
request->question.qClass = htons(1);
|
|
|
|
|
|
|
|
uint16_t qLen = request->question.name.length() + 8;
|
|
|
|
length += qLen;
|
2018-07-24 01:06:56 +00:00
|
|
|
|
2018-07-22 03:34:28 +00:00
|
|
|
unsigned char bytes[length];
|
|
|
|
// memcpy isn't going to fix the network endian issue
|
|
|
|
// encode header into bytes
|
|
|
|
memcpy(bytes, &header, 12);
|
|
|
|
// encode question into bytes
|
|
|
|
memcpy(bytes + 12, &request->question, qLen);
|
2018-07-21 13:19:06 +00:00
|
|
|
*/
|
2018-07-24 01:06:56 +00:00
|
|
|
|
2018-07-25 00:35:11 +00:00
|
|
|
uint16_t id = ++tracker->c_requests;
|
2018-07-22 03:34:28 +00:00
|
|
|
tracker->client_request[id] = request;
|
2018-07-25 00:35:11 +00:00
|
|
|
// llarp::LogInfo("Sending request #", tracker->c_requests, " ", length, "
|
|
|
|
// bytes");
|
2018-07-22 03:34:28 +00:00
|
|
|
|
|
|
|
dns_query *dns_packet = build_dns_packet((char *)url, id, 1);
|
2018-07-25 00:35:11 +00:00
|
|
|
// ssize_t ret = llarp_ev_udp_sendto(dnsc->udp, dnsc->server, bytes, length);
|
|
|
|
ssize_t ret = llarp_ev_udp_sendto(dnsc->udp, dnsc->server,
|
|
|
|
dns_packet->request, dns_packet->length);
|
2018-07-22 03:34:28 +00:00
|
|
|
delete dns_packet;
|
2018-07-16 21:26:16 +00:00
|
|
|
if(ret < 0)
|
|
|
|
{
|
2018-07-16 12:48:04 +00:00
|
|
|
llarp::LogWarn("Error Sending Request");
|
|
|
|
return false;
|
|
|
|
}
|
2018-07-16 21:26:16 +00:00
|
|
|
|
2018-07-16 12:48:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-07-20 10:28:21 +00:00
|
|
|
void
|
2018-07-22 03:34:28 +00:00
|
|
|
llarp_host_resolved(dnsc_answer_request *request)
|
2018-07-16 12:48:04 +00:00
|
|
|
{
|
2018-07-20 10:28:21 +00:00
|
|
|
delete request;
|
|
|
|
}
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-16 21:26:16 +00:00
|
|
|
bool
|
2018-07-21 13:19:06 +00:00
|
|
|
llarp_dnsc_init(struct dnsc_context *dnsc, struct llarp_udp_io *udp,
|
2018-07-21 13:24:47 +00:00
|
|
|
const char *dnsc_hostname, uint16_t dnsc_port)
|
2018-07-16 12:48:04 +00:00
|
|
|
{
|
2018-07-21 13:24:47 +00:00
|
|
|
sockaddr_in *trgaddr = new sockaddr_in;
|
2018-07-20 10:28:21 +00:00
|
|
|
trgaddr->sin_addr.s_addr = inet_addr(dnsc_hostname);
|
2018-07-21 13:24:47 +00:00
|
|
|
trgaddr->sin_port = htons(dnsc_port);
|
|
|
|
trgaddr->sin_family = AF_INET;
|
|
|
|
dnsc->server = (sockaddr *)trgaddr;
|
|
|
|
dnsc->udp = udp;
|
2018-07-20 10:28:21 +00:00
|
|
|
return true;
|
|
|
|
}
|
2018-07-16 12:48:04 +00:00
|
|
|
|
2018-07-20 10:28:21 +00:00
|
|
|
bool
|
|
|
|
llarp_dnsc_stop(struct dnsc_context *dnsc)
|
|
|
|
{
|
2018-07-21 13:24:47 +00:00
|
|
|
delete(sockaddr_in *)dnsc->server; // deallocation
|
2018-07-16 12:48:04 +00:00
|
|
|
return true;
|
|
|
|
}
|