flycast/core/network/dns.cpp

233 lines
6.0 KiB
C++

/*
Created on: Sep 24, 2018
Copyright 2018 flyinghead
This file is part of reicast.
reicast 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.
reicast 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 reicast. If not, see <https://www.gnu.org/licenses/>.
*/
#if !defined(_MSC_VER)
#include "types.h"
#include "net_platform.h"
#include <cstdio>
#include <cerrno>
#include <vector>
extern "C" {
#include <pico_stack.h>
#include <pico_ipv4.h>
#include <pico_dns_common.h>
}
void get_host_by_name(const char *name, struct pico_ip4 dnsaddr);
int get_dns_answer(struct pico_ip4 *address, struct pico_ip4 dnsaddr);
char *read_name(char *reader, char *buffer, int *count);
void set_non_blocking(sock_t fd);
static sock_t sock_fd = INVALID_SOCKET;
static unsigned short qid = PICO_TIME_MS();
static int qname_len;
void get_host_by_name(const char *host, struct pico_ip4 dnsaddr)
{
DEBUG_LOG(NETWORK, "get_host_by_name: %s", host);
if (!VALID(sock_fd))
{
sock_fd = socket(AF_INET , SOCK_DGRAM , IPPROTO_UDP);
set_non_blocking(sock_fd);
}
struct sockaddr_in dest;
dest.sin_family = AF_INET;
dest.sin_port = htons(53);
dest.sin_addr.s_addr = dnsaddr.addr;
// DNS Packet header
char buf[1024];
pico_dns_packet *dns = (pico_dns_packet *)&buf;
dns->id = qid++;
dns->qr = PICO_DNS_QR_QUERY;
dns->opcode = PICO_DNS_OPCODE_QUERY;
dns->aa = PICO_DNS_AA_NO_AUTHORITY;
dns->tc = PICO_DNS_TC_NO_TRUNCATION;
dns->rd = PICO_DNS_RD_IS_DESIRED;
dns->ra = PICO_DNS_RA_NO_SUPPORT;
dns->z = 0;
dns->rcode = PICO_DNS_RCODE_NO_ERROR;
dns->qdcount = htons(1); // One question
dns->ancount = 0;
dns->nscount = 0;
dns->arcount = 0;
char *qname = &buf[sizeof(pico_dns_packet)];
strcpy(qname + 1, host);
pico_dns_name_to_dns_notation(qname, 128);
qname_len = strlen(qname) + 1;
struct pico_dns_question_suffix *qinfo = (struct pico_dns_question_suffix *) &buf[sizeof(pico_dns_packet) + qname_len]; //fill it
qinfo->qtype = htons(PICO_DNS_TYPE_A); // Address record
qinfo->qclass = htons(PICO_DNS_CLASS_IN);
if (sendto(sock_fd, buf, sizeof(pico_dns_packet) + qname_len + sizeof(struct pico_dns_question_suffix), 0, (struct sockaddr *)&dest, sizeof(dest)) < 0)
perror("DNS sendto failed");
}
int get_dns_answer(struct pico_ip4 *address, struct pico_ip4 dnsaddr)
{
struct sockaddr_in peer;
socklen_t peer_len = sizeof(peer);
char buf[1024];
int r = recvfrom(sock_fd, buf, sizeof(buf), 0, (struct sockaddr*)&peer , &peer_len);
if (r < 0)
{
if (get_last_error() != L_EAGAIN && get_last_error() != L_EWOULDBLOCK)
perror("DNS recvfrom failed");
return -1;
}
if (peer.sin_addr.s_addr != dnsaddr.addr)
return -1;
pico_dns_packet *dns = (pico_dns_packet*) buf;
// move to the first answer
char *reader = &buf[sizeof(pico_dns_packet) + qname_len + sizeof(struct pico_dns_question_suffix)];
int stop = 0;
for (int i = 0; i < ntohs(dns->ancount); i++)
{
// FIXME Check name?
free(read_name(reader, buf, &stop));
reader = reader + stop;
struct pico_dns_record_suffix *record = (struct pico_dns_record_suffix *)reader;
reader = reader + sizeof(struct pico_dns_record_suffix);
if (ntohs(record->rtype) == PICO_DNS_TYPE_A) // Address record
{
memcpy(&address->addr, reader, 4);
return 0;
}
reader = reader + ntohs(record->rdlength);
}
return -1;
}
char *read_name(char *reader, char *buffer, int *count)
{
char *name = (char *)malloc(128);
if ((uint8_t)reader[0] & 0xC0)
{
int offset = (((uint8_t)reader[0] & ~0xC0) << 8) + (uint8_t)reader[1];
reader = &buffer[offset];
*count = 2;
}
else
{
*count = strlen(reader) + 1;
}
pico_dns_notation_to_name(reader, 128);
strcpy(name, reader + 1);
return name;
}
#if !defined(_WIN32) && !defined(__SWITCH__)
#include <ifaddrs.h>
#include <net/if.h>
#endif
#ifdef __ANDROID__
extern "C" {
int getifaddrs(struct ifaddrs **ifap);
void freeifaddrs(struct ifaddrs *ifa);
};
#endif
static std::vector<u32> localAddresses;
bool is_local_address(u32 addr)
{
if (localAddresses.empty())
{
#ifdef _WIN32
SOCKET sd = WSASocket(AF_INET, SOCK_DGRAM, 0, 0, 0, 0);
if (sd == INVALID_SOCKET)
{
WARN_LOG(NETWORK, "WSASocket failed");
return false;
}
INTERFACE_INFO ifList[20];
unsigned long size;
if (WSAIoctl(sd, SIO_GET_INTERFACE_LIST, 0, 0, &ifList,
sizeof(ifList), &size, 0, 0) == SOCKET_ERROR)
{
WARN_LOG(NETWORK, "WSAIoctl failed");
closesocket(sd);
return false;
}
int count = size / sizeof(INTERFACE_INFO);
for (int i = 0; i < count; i++)
{
if ((ifList[i].iiFlags & IFF_UP) == 0)
continue;
if (ifList[i].iiAddress.Address.sa_family != AF_INET)
continue;
sockaddr_in *pAddress = (sockaddr_in *)&ifList[i].iiAddress;
localAddresses.push_back(pAddress->sin_addr.s_addr);
}
closesocket(sd);
#elif defined(__SWITCH__)
// TODO
#else // !_WIN32 && !__SWITCH__
ifaddrs *myaddrs;
if (getifaddrs(&myaddrs) != 0)
{
WARN_LOG(NETWORK, "getifaddrs failed");
return false;
}
for (ifaddrs *ifa = myaddrs; ifa != NULL; ifa = ifa->ifa_next)
{
if (ifa->ifa_addr == NULL)
continue;
if (!(ifa->ifa_flags & IFF_UP))
continue;
if (ifa->ifa_addr->sa_family != AF_INET)
continue;
sockaddr_in *sa = (sockaddr_in *)ifa->ifa_addr;
localAddresses.push_back(sa->sin_addr.s_addr);
}
freeifaddrs(myaddrs);
#endif
}
for (auto a : localAddresses)
if (a == addr)
return true;
return false;
}
#endif