2014-09-17 12:41:24 +00:00
|
|
|
/**************************************
|
2013-09-16 09:53:25 +00:00
|
|
|
* AUTHOR: Federico Tomassini *
|
|
|
|
* Copyright (C) Federico Tomassini *
|
|
|
|
* Contact effetom@gmail.com *
|
|
|
|
***********************************************
|
|
|
|
******* BEGIN 3/2006 ********
|
|
|
|
*************************************************************************
|
2014-03-14 03:19:40 +00:00
|
|
|
* *
|
2013-09-16 09:53:25 +00:00
|
|
|
* This program 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. *
|
|
|
|
* *
|
|
|
|
* This program 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. *
|
|
|
|
* *
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <string.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "andns.h"
|
|
|
|
#include "err_errno.h"
|
|
|
|
#include "andna.h"
|
|
|
|
#include "andns_lib.h"
|
|
|
|
#include "andns_net.h"
|
|
|
|
#include "andns_snsd.h"
|
|
|
|
#include "dnslib.h"
|
2014-11-07 03:17:14 +00:00
|
|
|
#include "netsplit.h"
|
|
|
|
#include "netsukuku.h"
|
2013-09-16 09:53:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
static uint8_t _dns_forwarding_;
|
|
|
|
static uint8_t _andns_ns_count_;
|
|
|
|
static uint8_t _default_realm_;
|
|
|
|
|
|
|
|
static struct addrinfo _ns_filter_;
|
|
|
|
static struct addrinfo *_andns_ns_[MAXNSSERVERS];
|
|
|
|
|
|
|
|
static int _ip_len_;
|
|
|
|
|
|
|
|
/* Debugging Functions to isolate andns from andna
|
|
|
|
snsd_service* debug_andna_resolve_hname(char *s,int service,u_char proto,int *records)
|
|
|
|
{
|
|
|
|
char *ciccio="111.222.123.123";
|
|
|
|
debug(DBG_NORMAL,"Entering debug_andna_resolve.");
|
|
|
|
snsd_service *ss;
|
|
|
|
snsd_prio *sp;
|
|
|
|
snsd_node *sn;
|
|
|
|
ss=xmalloc(sizeof(snsd_service));
|
|
|
|
ss->prio=xmalloc(sizeof(snsd_prio));
|
|
|
|
sp=ss->prio;
|
|
|
|
sp->node=xmalloc(sizeof(snsd_node));
|
|
|
|
sn=sp->node;
|
|
|
|
inet_pton(AF_INET,ciccio,sn->record);
|
|
|
|
sn->flags|=SNSD_NODE_MAIN_IP;
|
|
|
|
sn->flags|=SNSD_NODE_IP;
|
|
|
|
ss->next=0;
|
|
|
|
ss->prev=0;
|
|
|
|
sp->next=0;
|
|
|
|
sp->prev=0;
|
|
|
|
sn->next=0;
|
|
|
|
sn->prev=0;
|
|
|
|
*records=1;
|
|
|
|
return ss;
|
|
|
|
}
|
|
|
|
lcl_cache* debug_andna_reverse_resolve(inet_prefix addr)
|
|
|
|
{
|
|
|
|
lcl_cache *lc;
|
|
|
|
debug(DBG_NORMAL,"Entering debug_andna_reverse.");
|
|
|
|
lc=xmalloc(sizeof(lcl_cache));
|
|
|
|
memset(lc,0,sizeof(lcl_cache));
|
|
|
|
lc->hostname=xmalloc(12);
|
|
|
|
strcpy(lc->hostname,"Ciao mamma");
|
|
|
|
return lc;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* INIT FUNCTIONS */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Saves on `nsbuf' and `ns_count' the ip
|
|
|
|
* address ns: these infos will be used for DNS
|
|
|
|
* forwarding.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* -1 on error
|
|
|
|
* 0 if OK
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
int
|
|
|
|
store_ns(char *ns)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
int res;
|
2013-09-16 09:53:25 +00:00
|
|
|
struct addrinfo **ai;
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
if (strstr(ns, "127.0.0.")) /* TODO: make it proto independent */
|
|
|
|
return -1;
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
ai = &_andns_ns_[_andns_ns_count_];
|
|
|
|
res = getaddrinfo(ns, DNS_PORT_STR, &_ns_filter_, ai);
|
2014-11-06 23:44:02 +00:00
|
|
|
printf("store_ns getaddrinfo nameserver: %s "
|
|
|
|
"res: %i: %s",ns ,res, gai_strerror(errno));
|
2013-09-16 09:53:25 +00:00
|
|
|
if (res) {
|
2014-09-17 12:41:24 +00:00
|
|
|
debug(DBG_NORMAL, "In store_ns(): gai `%s' -> %s", ns,
|
|
|
|
gai_strerror(errno));
|
2013-09-16 09:53:25 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
_andns_ns_count_++;
|
2014-09-17 12:41:24 +00:00
|
|
|
return 0;
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
|
2013-09-16 09:53:25 +00:00
|
|
|
/*
|
|
|
|
* Reads resolv.conf, searching nameserver lines.
|
|
|
|
* Takes the ip address from these lines and calls store_ns.
|
|
|
|
* "nameserver 127.0.0.1" is discarded to remove looping behaviors.
|
|
|
|
* The number of stored nameservers is written in
|
|
|
|
* `*ns_count' and it is returned.
|
|
|
|
* If an error occurred or no hostnames are available, -1 is returned.
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
int
|
|
|
|
collect_resolv_conf(char *resolve_conf)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
FILE *erc;
|
|
|
|
char buf[512], *crow;
|
|
|
|
|
|
|
|
if (!(erc = fopen(resolve_conf, "r"))) {
|
|
|
|
error("In collect_resolv_conf: " "error -> %s.", strerror(errno));
|
|
|
|
err_ret(ERR_RSLERC, -1);
|
|
|
|
}
|
|
|
|
while ((crow = fgets(buf, 512, erc))
|
|
|
|
&& _andns_ns_count_ < MAXNSSERVERS) {
|
|
|
|
if (!(crow = strstr(buf, "nameserver "))) /* is a good line? */
|
|
|
|
continue;
|
2014-03-14 03:19:40 +00:00
|
|
|
|
2013-09-16 09:53:25 +00:00
|
|
|
/* Skip if the line is commented */
|
2014-09-17 12:41:24 +00:00
|
|
|
*crow = 0;
|
|
|
|
if (strchr(buf, '#'))
|
2013-09-16 09:53:25 +00:00
|
|
|
continue;
|
2014-03-14 03:19:40 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
crow += 11;
|
2014-03-14 03:19:40 +00:00
|
|
|
|
2013-09-16 09:53:25 +00:00
|
|
|
/* remove unwanted chars */
|
|
|
|
strip_char(crow, '\t');
|
|
|
|
strip_char(crow, ' ');
|
|
|
|
strip_char(crow, '\n');
|
2014-03-14 03:19:40 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
store_ns(crow); /* finally store nameserver */
|
|
|
|
}
|
|
|
|
if (fclose(erc) != 0) {
|
|
|
|
error("In collect_resolv_conf: closing "
|
|
|
|
"resolv.conf -> %s", strerror(errno));
|
|
|
|
err_ret(ERR_RSLERC, -1);
|
|
|
|
}
|
|
|
|
if (!_andns_ns_count_)
|
|
|
|
err_ret(ERR_RSLNNS, -1);
|
|
|
|
return _andns_ns_count_;
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
void
|
|
|
|
reset_andns_ns(void)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
|
|
|
int i;
|
2014-09-17 12:41:24 +00:00
|
|
|
for (i = 0; i < _andns_ns_count_; i++)
|
|
|
|
if (_andns_ns_[i])
|
2013-09-16 09:53:25 +00:00
|
|
|
freeaddrinfo(_andns_ns_[i]);
|
2014-09-17 12:41:24 +00:00
|
|
|
_andns_ns_count_ = 0;
|
|
|
|
setzero(_andns_ns_, sizeof(struct addrinfo *) * MAXNSSERVERS);
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function must be called before all.
|
|
|
|
* Sets the default realm for domain name resolution
|
|
|
|
* and stores infos about nameservers for dns query.
|
|
|
|
* On error -1 is returned.
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
int
|
|
|
|
andns_init(int restricted, char *resolv_conf, int family)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
int i, res;
|
|
|
|
char msg[(INET6_ADDRSTRLEN + 2) * MAXNSSERVERS];
|
|
|
|
char buf[INET6_ADDRSTRLEN];
|
|
|
|
struct addrinfo *ai;
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
memset(&_ns_filter_, 0, sizeof(struct addrinfo));
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
_ns_filter_.ai_socktype = SOCK_DGRAM;
|
|
|
|
_ip_len_ = family == AF_INET ? 4 : 16;
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
_default_realm_ = (restricted) ? INET_REALM : NTK_REALM;
|
|
|
|
_andns_ns_count_ = 0;
|
|
|
|
setzero(_andns_ns_, sizeof(struct addrinfo *) * MAXNSSERVERS);
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
memset(msg, 0, (INET_ADDRSTRLEN + 2) * MAXNSSERVERS);
|
2014-11-06 23:44:02 +00:00
|
|
|
|
|
|
|
if (_default_realm_ == NTK_REALM) {
|
2013-09-16 09:53:25 +00:00
|
|
|
/* We are in NTK realm, every IP is assigned to Netsukuku,
|
|
|
|
* therefore dns forwarding is meaningless */
|
2014-10-26 13:46:44 +00:00
|
|
|
loginfo("We are in the ntk realm %s\n", strerror(errno));
|
2014-09-17 12:41:24 +00:00
|
|
|
_dns_forwarding_ = 0;
|
2013-09-16 09:53:25 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
res = collect_resolv_conf(resolv_conf);
|
|
|
|
if (res <= 0) {
|
2014-10-26 13:46:44 +00:00
|
|
|
loginfo("Some kind of error occurred in collecting the dns nameservers"
|
|
|
|
" %s\n", strerror(errno));
|
2014-09-17 12:41:24 +00:00
|
|
|
_dns_forwarding_ = 0;
|
|
|
|
debug(DBG_NORMAL, err_str);
|
|
|
|
err_ret(ERR_RSLAIE, -1);
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-09-17 12:41:24 +00:00
|
|
|
* Debug message
|
|
|
|
*/
|
|
|
|
for (i = 0; i < _andns_ns_count_; i++) {
|
|
|
|
ai = _andns_ns_[i];
|
|
|
|
res = idp_inet_ntop(ai->ai_family, ai->ai_addr, buf,
|
|
|
|
INET6_ADDRSTRLEN);
|
2013-09-16 09:53:25 +00:00
|
|
|
if (!res) {
|
2014-09-17 12:41:24 +00:00
|
|
|
strncat(msg, buf, INET_ADDRSTRLEN);
|
|
|
|
strncat(msg, i == _andns_ns_count_ - 1 ? ". " : ", ", 2);
|
|
|
|
} else
|
|
|
|
error("In andns_init: error "
|
|
|
|
"converting sockaddr -> %s.", strerror(errno));
|
|
|
|
}
|
|
|
|
loginfo("Inet DNS queries will be forwarded to: %s", msg);
|
|
|
|
|
|
|
|
_dns_forwarding_ = 1;
|
|
|
|
return 0;
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
void
|
|
|
|
andns_close(void)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
|
|
|
reset_andns_ns();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* NET FUNCTIONS */
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
int
|
|
|
|
ns_general_send(char *msg, int msglen, char *answer, int anslen)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
int res, i;
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
for (i = 0; i < _andns_ns_count_; i++) {
|
|
|
|
res = ai_send_recv_close(_andns_ns_[i], msg, msglen,
|
|
|
|
answer, anslen, 0, 0, ANDNS_TIMEOUT);
|
|
|
|
if (res != -1) {
|
|
|
|
return res;
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
}
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
err_ret(ERR_RSLFDQ, -1);
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* UTILS FUNCTIONS */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make a copy of DNS pkt data. If prefix is not NULL,
|
|
|
|
* the prefix is added to strings.
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
void
|
|
|
|
dpktacpy(dns_pkt * dst, dns_pkt * src, const char *prefix)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
dns_pkt_a *dpas, *dpad;
|
|
|
|
int slen;
|
|
|
|
int yet_pref = 0;
|
|
|
|
char temp[257];
|
|
|
|
|
|
|
|
dpas = src->pkt_answ;
|
|
|
|
while (dpas) {
|
|
|
|
dpad = DP_ADD_ANSWER(dst);
|
|
|
|
memcpy(dpad, dpas, sizeof(dns_pkt_a));
|
|
|
|
dpad->next = NULL;
|
|
|
|
if (prefix && !yet_pref) { /* TODO: yet_pref better */
|
|
|
|
slen = strlen(dpad->name);
|
|
|
|
if (dpas->type != T_PTR)
|
|
|
|
memcpy(dpad->name + slen, prefix, REALM_PREFIX_LEN);
|
|
|
|
else {
|
|
|
|
strcpy(temp, dpad->name);
|
|
|
|
memcpy(dpad->name, prefix + 1, REALM_PREFIX_LEN - 1);
|
|
|
|
dpad->name[REALM_PREFIX_LEN - 1] = '.';
|
|
|
|
strcpy(dpad->name + REALM_PREFIX_LEN, temp);
|
|
|
|
}
|
|
|
|
*(dpad->name + slen + REALM_PREFIX_LEN) = 0;
|
|
|
|
yet_pref = 1;
|
|
|
|
}
|
|
|
|
dpas = dpas->next;
|
|
|
|
}
|
|
|
|
dpas = src->pkt_auth;
|
|
|
|
while (dpas) {
|
|
|
|
dpad = DP_ADD_AUTH(dst);
|
|
|
|
memcpy(dpad, dpas, sizeof(dns_pkt_a));
|
|
|
|
dpad->next = NULL;
|
|
|
|
dpas = dpas->next;
|
|
|
|
}
|
|
|
|
dpas = src->pkt_add;
|
|
|
|
while (dpas) {
|
|
|
|
dpad = DP_ADD_ADD(dst);
|
|
|
|
memcpy(dpad, dpas, sizeof(dns_pkt_a));
|
|
|
|
dpad->next = NULL;
|
|
|
|
dpas = dpas->next;
|
|
|
|
}
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make a full copy of a dns pkt. If prefix is not
|
|
|
|
* null, prefix is added to names.
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
dns_pkt *
|
|
|
|
dpktcpy(dns_pkt * src, const char *prefix)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
dns_pkt *dst;
|
|
|
|
dns_pkt_qst *dpq, *dpq_src;
|
|
|
|
|
|
|
|
dst = create_dns_pkt();
|
|
|
|
memcpy(dst, src, sizeof(dns_pkt));
|
|
|
|
dst->pkt_qst = NULL;
|
|
|
|
dst->pkt_answ = NULL;
|
|
|
|
dst->pkt_auth = NULL;
|
|
|
|
dst->pkt_add = NULL;
|
|
|
|
|
|
|
|
dpq_src = src->pkt_qst;
|
|
|
|
while (dpq_src) {
|
|
|
|
dpq = dns_add_qst(dst);
|
|
|
|
memcpy(dpq, dpq_src, sizeof(dns_pkt_qst));
|
|
|
|
dpq->next = NULL;
|
|
|
|
dpq_src = dpq_src->next;
|
|
|
|
}
|
|
|
|
dpktacpy(dst, src, prefix);
|
|
|
|
return dst;
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove the suffix realm, if any.
|
|
|
|
* Writes the result on dst.
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
char *
|
|
|
|
rm_realm_prefix(char *from, char *dst, int type)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
int slen;
|
|
|
|
slen = strlen(from);
|
|
|
|
|
|
|
|
if (slen < 5)
|
|
|
|
strcpy(dst, from);
|
|
|
|
else if (type == T_PTR) {
|
|
|
|
if (strcasestr(from, PTR_INET_REALM_PREFIX) == from ||
|
|
|
|
strcasestr(from, PTR_NTK_REALM_PREFIX) == from)
|
|
|
|
strcpy(dst, from + REALM_PREFIX_LEN);
|
|
|
|
else
|
|
|
|
strcpy(dst, from);
|
|
|
|
|
|
|
|
} else
|
|
|
|
if (strcasestr(from + slen - REALM_PREFIX_LEN, INET_REALM_PREFIX)
|
|
|
|
|| strcasestr(from + slen - REALM_PREFIX_LEN,
|
|
|
|
NTK_REALM_PREFIX)) {
|
|
|
|
strncpy(dst, from, slen - REALM_PREFIX_LEN);
|
|
|
|
dst[slen - REALM_PREFIX_LEN] = 0;
|
2013-09-16 09:53:25 +00:00
|
|
|
} else
|
2014-09-17 12:41:24 +00:00
|
|
|
strcpy(dst, from);
|
|
|
|
return dst;
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Make a copy of a dns pkt, only for headers and questions.
|
|
|
|
* If the question is prefixed, the prefix is removed.
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
dns_pkt *
|
|
|
|
dpktcpy_rm_pref(dns_pkt * src)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
|
|
|
dns_pkt *dst;
|
|
|
|
dns_pkt_qst *dpq;
|
2014-09-17 12:41:24 +00:00
|
|
|
// char temp[DNS_MAX_HNAME_LEN];
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
dst = dpktcpy(src, NULL);
|
|
|
|
dpq = dst->pkt_qst;
|
|
|
|
rm_realm_prefix(src->pkt_qst->qname, dpq->qname, dpq->qtype);
|
|
|
|
// strcpy(dpq->qname,temp);
|
2013-09-16 09:53:25 +00:00
|
|
|
return dst;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
andns_realm(dns_pkt_qst * dpq, int *prefixed)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
int slen;
|
|
|
|
char *qst;
|
|
|
|
|
|
|
|
qst = dpq->qname;
|
|
|
|
|
|
|
|
if (!qst)
|
|
|
|
err_ret(ERR_UFOERR, -1);
|
|
|
|
slen = strlen(qst);
|
|
|
|
|
|
|
|
/* if qst is tto short, it's impossible to
|
|
|
|
consider a prefix. */
|
|
|
|
if (slen < 5)
|
|
|
|
return _default_realm_;
|
|
|
|
|
|
|
|
if (dpq->qtype == T_PTR) {
|
|
|
|
if (strcasestr(qst, PTR_INET_REALM_PREFIX) == qst) {
|
|
|
|
if (prefixed)
|
|
|
|
*prefixed = 1;
|
|
|
|
return INET_REALM;
|
|
|
|
}
|
|
|
|
if (strcasestr(qst, PTR_NTK_REALM_PREFIX) == qst) {
|
|
|
|
if (prefixed)
|
|
|
|
*prefixed = 1;
|
|
|
|
return NTK_REALM;
|
|
|
|
}
|
|
|
|
if (prefixed)
|
|
|
|
*prefixed = 0;
|
|
|
|
return _default_realm_;
|
|
|
|
}
|
|
|
|
if (strcasestr(qst + slen - REALM_PREFIX_LEN, INET_REALM_PREFIX)) {
|
|
|
|
if (prefixed)
|
|
|
|
*prefixed = 1;
|
|
|
|
return INET_REALM;
|
|
|
|
}
|
|
|
|
if (strcasestr(qst + slen - REALM_PREFIX_LEN, NTK_REALM_PREFIX)) {
|
|
|
|
if (prefixed)
|
|
|
|
*prefixed = 1;
|
|
|
|
return NTK_REALM;
|
|
|
|
}
|
|
|
|
if (prefixed)
|
|
|
|
*prefixed = 0;
|
|
|
|
return _default_realm_;
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
|
2013-09-16 09:53:25 +00:00
|
|
|
/*
|
|
|
|
* Returns:
|
|
|
|
* 0 if the question does not have a suffix
|
|
|
|
* 1 if the question has suffix
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
int
|
|
|
|
is_prefixed(dns_pkt * dp)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
int prefix = 0;
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
andns_realm(dp->pkt_qst, &prefix);
|
|
|
|
return prefix;
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-03-14 03:19:40 +00:00
|
|
|
* A very stupid function that converts
|
2013-09-16 09:53:25 +00:00
|
|
|
* ANDNS code to DNS code.
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
int
|
|
|
|
qtype_a_to_d(andns_pkt * ap)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
|
|
|
switch (ap->qtype) {
|
2014-09-17 12:41:24 +00:00
|
|
|
case AT_PTR:
|
|
|
|
return T_PTR;
|
|
|
|
case AT_A:
|
|
|
|
if (ap->service == 25)
|
|
|
|
return T_MX;
|
|
|
|
else if (!ap->service)
|
|
|
|
return T_A;
|
|
|
|
else
|
2013-09-16 09:53:25 +00:00
|
|
|
return -1;
|
2014-09-17 12:41:24 +00:00
|
|
|
default:
|
|
|
|
return -1;
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
apqsttodpqst(andns_pkt * ap, dns_pkt ** dpsrc)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
|
|
|
dns_pkt *dp;
|
|
|
|
dns_pkt_hdr *dph;
|
|
|
|
dns_pkt_qst *dpq;
|
2014-09-17 12:41:24 +00:00
|
|
|
int res, qt;
|
|
|
|
int qlen, family;
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
qt = qtype_a_to_d(ap);
|
|
|
|
if (qt == -1)
|
|
|
|
err_ret(ERR_ANDNCQ, -1);
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
*dpsrc = create_dns_pkt();
|
|
|
|
dp = *dpsrc;
|
|
|
|
dph = &(dp->pkt_hdr);
|
|
|
|
dpq = dns_add_qst(dp);
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
if (qt == T_A || qt == T_MX) {
|
|
|
|
qlen = strlen(ap->qstdata);
|
|
|
|
if (qlen > DNS_MAX_HNAME_LEN)
|
2013-09-16 09:53:25 +00:00
|
|
|
goto incomp_err;
|
2014-09-17 12:41:24 +00:00
|
|
|
strcpy(dpq->qname, ap->qstdata);
|
|
|
|
} else if (qt == T_PTR) {
|
2013-09-16 09:53:25 +00:00
|
|
|
char temp[DNS_MAX_HNAME_LEN];
|
2014-09-17 12:41:24 +00:00
|
|
|
qlen = ap->qstlength;
|
|
|
|
if (qlen == 4)
|
|
|
|
family = AF_INET;
|
|
|
|
else if (qlen == 16)
|
|
|
|
family = AF_INET6;
|
2013-09-16 09:53:25 +00:00
|
|
|
else
|
|
|
|
goto incomp_err;
|
2014-09-17 12:41:24 +00:00
|
|
|
if (!inet_ntop(family, ap->qstdata, temp, DNS_MAX_HNAME_LEN)) {
|
|
|
|
debug(DBG_INSANE, err_str);
|
2013-09-16 09:53:25 +00:00
|
|
|
goto incomp_err;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
res = swapped_straddr_pref(temp, dpq->qname, family);
|
|
|
|
if (res == -1) {
|
|
|
|
debug(DBG_INSANE, err_str);
|
2013-09-16 09:53:25 +00:00
|
|
|
goto incomp_err;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
} else
|
2013-09-16 09:53:25 +00:00
|
|
|
goto incomp_err;
|
2014-09-17 12:41:24 +00:00
|
|
|
dph->id = ap->id;
|
|
|
|
dph->rd = 1;
|
2013-09-16 09:53:25 +00:00
|
|
|
dph->qdcount++;
|
2014-09-17 12:41:24 +00:00
|
|
|
dpq->qtype = qt;
|
|
|
|
dpq->qclass = C_IN;
|
2013-09-16 09:53:25 +00:00
|
|
|
return 0;
|
2014-09-17 12:41:24 +00:00
|
|
|
incomp_err:
|
2013-09-16 09:53:25 +00:00
|
|
|
destroy_dns_pkt(dp);
|
2014-09-17 12:41:24 +00:00
|
|
|
err_ret(ERR_ANDNCQ, -1);
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
dpanswtoapansw(dns_pkt * dp, andns_pkt * ap)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
int i, rcode, qt, ancount, nan = 0;
|
2013-09-16 09:53:25 +00:00
|
|
|
dns_pkt_a *dpa;
|
|
|
|
andns_pkt_data *apd;
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
ancount = DNS_GET_ANCOUNT(dp);
|
|
|
|
rcode = DNS_GET_RCODE(dp);
|
|
|
|
ap->rcode = rcode;
|
|
|
|
ap->qr = 1;
|
2014-03-14 03:19:40 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
if (rcode != DNS_RCODE_NOERR)
|
2013-09-16 09:53:25 +00:00
|
|
|
return 0;
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
qt = dp->pkt_qst->qtype;
|
|
|
|
dpa = dp->pkt_answ;
|
|
|
|
for (i = 0; i < ancount; i++) {
|
2014-03-14 03:19:40 +00:00
|
|
|
if (!dpa)
|
2013-09-16 09:53:25 +00:00
|
|
|
break;
|
2014-09-17 12:41:24 +00:00
|
|
|
apd = andns_add_answ(ap);
|
|
|
|
if (qt == T_A) {
|
|
|
|
apd->rdlength = _ip_len_;
|
2013-09-16 09:53:25 +00:00
|
|
|
APD_ALIGN(apd);
|
2014-09-17 12:41:24 +00:00
|
|
|
memcpy(apd->rdata, dpa->rdata, _ip_len_);
|
2013-09-16 09:53:25 +00:00
|
|
|
nan++;
|
2014-09-17 12:41:24 +00:00
|
|
|
} else if (qt == T_PTR) {
|
|
|
|
apd->rdlength = strlen(dpa->rdata);
|
2013-09-16 09:53:25 +00:00
|
|
|
APD_ALIGN(apd);
|
2014-09-17 12:41:24 +00:00
|
|
|
strcpy(apd->rdata, dpa->rdata);
|
2013-09-16 09:53:25 +00:00
|
|
|
nan++;
|
2014-09-17 12:41:24 +00:00
|
|
|
} else if (qt == T_MX) {
|
2013-09-16 09:53:25 +00:00
|
|
|
struct hostent *h;
|
|
|
|
uint16_t prio;
|
2014-09-17 12:41:24 +00:00
|
|
|
h = gethostbyname(dpa->rdata + 2);
|
2013-09-16 09:53:25 +00:00
|
|
|
if (!h || !(h->h_length)) {
|
|
|
|
andns_del_answ(ap);
|
2014-09-17 12:41:24 +00:00
|
|
|
debug(DBG_INSANE, "MX Ip Record not found.");
|
2013-09-16 09:53:25 +00:00
|
|
|
continue;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
apd->rdlength = h->h_addrtype == AF_INET ? 4 : 16;
|
2013-09-16 09:53:25 +00:00
|
|
|
APD_ALIGN(apd);
|
2014-09-17 12:41:24 +00:00
|
|
|
memcpy(apd->rdata, h->h_addr_list[0], apd->rdlength);
|
|
|
|
memcpy(&prio, dpa->rdata, sizeof(uint16_t));
|
|
|
|
apd->prio = prio >> 8;
|
|
|
|
// (uint8_t)(ntohs((uint16_t)(*(dpa->rdata))));
|
|
|
|
// memcpy(&(apd->prio),dpa->rdata,sizeof(uint16_t));
|
2013-09-16 09:53:25 +00:00
|
|
|
nan++;
|
2014-09-17 12:41:24 +00:00
|
|
|
} else
|
2013-09-16 09:53:25 +00:00
|
|
|
andns_del_answ(ap);
|
2014-09-17 12:41:24 +00:00
|
|
|
dpa = dpa->next;
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
if (i != ancount || nan != ancount)
|
|
|
|
debug(DBG_INSANE, "In dpanswtoapansw: "
|
|
|
|
"ancount=%d, andns answers=%d", DNS_GET_ANCOUNT(dp), i);
|
|
|
|
ap->ancount = nan;
|
2013-09-16 09:53:25 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FINALLY RESOLVING FUNCTIONS */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* His goal is trivial.
|
|
|
|
* DO NOT USE suffixes query, i.e. query with ".INT" or ".NTK".
|
|
|
|
* NXDOMAIN otherwise.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* -1 on error
|
|
|
|
* 0 if OK
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
int
|
|
|
|
andns_gethostbyname(char *hname, inet_prefix * ip)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
dns_pkt *dp;
|
|
|
|
dns_pkt_hdr *dph;
|
|
|
|
dns_pkt_qst *dpq;
|
|
|
|
int res;
|
|
|
|
char msg[DNS_MAX_SZ], answ[DNS_MAX_SZ];
|
|
|
|
uint32_t addr;
|
|
|
|
|
|
|
|
dp = create_dns_pkt();
|
|
|
|
dph = &(dp->pkt_hdr);
|
|
|
|
|
|
|
|
dph->id = (rand() >> 16) ^ (rand() >> 16);
|
|
|
|
dph->rd = 1;
|
|
|
|
|
|
|
|
dpq = dns_add_qst(dp);
|
|
|
|
rm_realm_prefix(hname, dpq->qname, T_A);
|
|
|
|
dpq->qtype = T_A;
|
|
|
|
dpq->qclass = C_IN;
|
|
|
|
|
|
|
|
DP_QDCOUNT(dp)++;
|
|
|
|
|
|
|
|
memset(msg, 0, DNS_MAX_SZ);
|
|
|
|
memset(answ, 0, DNS_MAX_SZ);
|
|
|
|
if ((res = d_p(dp, msg)) == -1) {
|
|
|
|
error(err_str);
|
|
|
|
err_ret(ERR_RSLRSL, -1);
|
|
|
|
}
|
|
|
|
if ((res = ns_general_send(msg, res, answ, DNS_MAX_SZ)) == -1) {
|
|
|
|
error(err_str);
|
|
|
|
err_ret(ERR_RSLRSL, -1);
|
|
|
|
}
|
|
|
|
if ((res = d_u(answ, res, &dp)) == -1) {
|
|
|
|
error(err_str);
|
|
|
|
err_ret(ERR_RSLRSL, -1);
|
|
|
|
}
|
|
|
|
fprintf(stderr, "Addr is %p, rdata is %p rawr %p hai %p\n",
|
|
|
|
(void *) &addr, (void *) dp->pkt_answ->rdata,
|
|
|
|
(void *) dp->pkt_answ, (void *) dp);
|
|
|
|
if ((dp == NULL) || (dp->pkt_answ == NULL)
|
|
|
|
|| (dp->pkt_answ->rdata == NULL))
|
|
|
|
return -1;
|
|
|
|
memcpy(&addr, dp->pkt_answ->rdata, sizeof(uint32_t));
|
|
|
|
addr = ntohl(addr);
|
|
|
|
if ((res = inet_setip_raw(ip, &addr, AF_INET)) == -1) {
|
|
|
|
error("In andns_gethostbyname: can not fill inet_prefix.");
|
|
|
|
err_ret(ERR_RSLRSL, -1);
|
|
|
|
}
|
|
|
|
destroy_dns_pkt(dp);
|
2013-09-16 09:53:25 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* There is a DNS query, internet realm.
|
2014-03-14 03:19:40 +00:00
|
|
|
* I'm going to forward it, but first I have
|
2013-09-16 09:53:25 +00:00
|
|
|
* to control suffix presence.
|
2014-03-14 03:19:40 +00:00
|
|
|
*
|
|
|
|
* After this function, `answer` is the answer to be
|
2013-09-16 09:53:25 +00:00
|
|
|
* sent to the client.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* answer len
|
2014-03-14 03:19:40 +00:00
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
int
|
|
|
|
dns_forward(dns_pkt * dp, char *msg, int msglen, char *answer)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
dns_pkt *dp_forward;
|
|
|
|
char fwdbuf[DNS_MAX_SZ];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (!_dns_forwarding_) {
|
2014-11-06 23:44:02 +00:00
|
|
|
error("In rslv: dns forwarding is disabled.");
|
2014-09-17 12:41:24 +00:00
|
|
|
goto safe_failing;
|
|
|
|
}
|
|
|
|
debug(DBG_INSANE, "Forwarding dns query to inet nameservers...");
|
|
|
|
if (!is_prefixed(dp)) {
|
|
|
|
if ((res =
|
|
|
|
ns_general_send(msg, msglen, answer, ANDNS_MAX_SZ)) == -1) {
|
|
|
|
error(err_str);
|
|
|
|
goto safe_failing;
|
|
|
|
}
|
|
|
|
destroy_dns_pkt(dp);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
/* prepare to re-format query without prefix */
|
|
|
|
dp_forward = dpktcpy_rm_pref(dp);
|
|
|
|
memset(fwdbuf, 0, DNS_MAX_SZ);
|
|
|
|
if ((res = d_p(dp_forward, fwdbuf)) == -1) { /* dp_foward is destroyed */
|
|
|
|
error(err_str);
|
|
|
|
goto safe_failing;
|
|
|
|
}
|
|
|
|
res = ns_general_send(fwdbuf, res, answer, ANDNS_MAX_SZ);
|
|
|
|
if (res == -1) {
|
|
|
|
error(err_str);
|
|
|
|
goto safe_failing;
|
|
|
|
}
|
|
|
|
res = d_u(answer, res, &dp_forward);
|
|
|
|
if (res <= 0) {
|
|
|
|
error(err_str);
|
|
|
|
goto safe_failing;
|
|
|
|
}
|
|
|
|
dpktacpy(dp, dp_forward, INET_REALM_PREFIX);
|
|
|
|
destroy_dns_pkt(dp_forward);
|
|
|
|
DNS_SET_NSCOUNT(dp, 0);
|
|
|
|
DNS_SET_ARCOUNT(dp, 0);
|
|
|
|
if ((res = d_p(dp, answer)) == -1) {
|
|
|
|
error(err_str);
|
2013-09-16 09:53:25 +00:00
|
|
|
goto failing;
|
2014-09-17 12:41:24 +00:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
safe_failing:
|
2013-09-16 09:53:25 +00:00
|
|
|
destroy_dns_pkt(dp);
|
|
|
|
goto failing;
|
2014-09-17 12:41:24 +00:00
|
|
|
failing:
|
|
|
|
memcpy(answer, msg, msglen);
|
|
|
|
ANDNS_SET_RCODE(answer, RCODE_ESRVFAIL);
|
2013-09-16 09:53:25 +00:00
|
|
|
ANDNS_SET_QR(answer);
|
2014-09-17 12:41:24 +00:00
|
|
|
res = msglen;
|
|
|
|
err_ret(ERR_RSLFDQ, res);
|
2013-09-16 09:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* There is a DNS query, netsukuku realm.
|
|
|
|
*
|
|
|
|
* I'm going to resolve it in ANDNA.
|
|
|
|
*
|
2014-03-14 03:19:40 +00:00
|
|
|
* After this function, `answer` is the answer to be
|
2013-09-16 09:53:25 +00:00
|
|
|
* sent to the client.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* answer len
|
|
|
|
*/
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
int
|
|
|
|
inet_rslv(dns_pkt * dp, char *msg, int msglen, char *answer)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
|
|
|
inet_prefix addr;
|
2014-09-17 12:41:24 +00:00
|
|
|
int res, qt, rcode;
|
2013-09-16 09:53:25 +00:00
|
|
|
u_short service;
|
|
|
|
snsd_service *ss;
|
|
|
|
snsd_prio *sp;
|
|
|
|
int records;
|
|
|
|
u_char proto;
|
|
|
|
char temp[DNS_MAX_HNAME_LEN];
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
qt = dp->pkt_qst->qtype;
|
|
|
|
rm_realm_prefix(dp->pkt_qst->qname, temp, qt);
|
2013-09-16 09:53:25 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
if (qt == T_A || qt == T_MX) { /* snsd tcp resolution service */
|
|
|
|
service = (qt == T_A) ? 0 : 25;
|
|
|
|
proto = (qt != T_A);
|
2013-09-16 09:53:25 +00:00
|
|
|
//ss=andna_resolve_hname(temp,service,proto,&records);
|
2014-09-17 12:41:24 +00:00
|
|
|
ss = andna_resolve_hname(temp, service, proto, &records);
|
2013-09-16 09:53:25 +00:00
|
|
|
if (!ss) {
|
2014-09-17 12:41:24 +00:00
|
|
|
rcode = RCODE_ENSDMN;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
sp = ss->prio;
|
|
|
|
snsd_prio_to_dansws(dp, sp, _ip_len_);
|
2013-09-16 09:53:25 +00:00
|
|
|
snsd_service_llist_del(&ss);
|
2014-09-17 12:41:24 +00:00
|
|
|
} else if (qt == T_PTR) {
|
2013-09-16 09:53:25 +00:00
|
|
|
char tomp[DNS_MAX_HNAME_LEN];
|
|
|
|
lcl_cache *lc;
|
2014-03-14 03:19:40 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
res = swapped_straddr(temp, tomp);
|
|
|
|
if (res == -1) {
|
|
|
|
rcode = RCODE_EINTRPRT;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
res = str_to_inet(tomp, &addr);
|
|
|
|
if (res == -1) {
|
|
|
|
rcode = RCODE_ESRVFAIL;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
lc = andna_reverse_resolve(addr);
|
|
|
|
res = lcl_cache_to_dansws(dp, lc); /* destroy lc */
|
2013-09-16 09:53:25 +00:00
|
|
|
if (!res) {
|
2014-09-17 12:41:24 +00:00
|
|
|
rcode = RCODE_ENSDMN;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
|
|
|
} else {
|
2014-09-17 12:41:24 +00:00
|
|
|
rcode = RCODE_ENIMPL;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
DNS_SET_QR(dp, 1);
|
|
|
|
res = d_p(dp, answer);
|
|
|
|
if (res == -1) {
|
|
|
|
rcode = RCODE_ESRVFAIL;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto return_rcode;
|
|
|
|
}
|
|
|
|
return res;
|
2014-09-17 12:41:24 +00:00
|
|
|
safe_return_rcode:
|
2013-09-16 09:53:25 +00:00
|
|
|
destroy_dns_pkt(dp);
|
|
|
|
goto return_rcode;
|
2014-09-17 12:41:24 +00:00
|
|
|
return_rcode:
|
|
|
|
memcpy(answer, msg, msglen);
|
|
|
|
ANDNS_SET_RCODE(answer, rcode);
|
2013-09-16 09:53:25 +00:00
|
|
|
ANDNS_SET_QR(answer);
|
|
|
|
return msglen;
|
|
|
|
}
|
2014-03-14 03:19:40 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
int
|
|
|
|
nk_rslv(andns_pkt * ap, char *msg, int msglen, char *answer)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
int qt, res, rcode, records;
|
2013-09-16 09:53:25 +00:00
|
|
|
inet_prefix ipres;
|
|
|
|
uint8_t recs;
|
|
|
|
uint16_t s;
|
2014-03-14 03:19:40 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
qt = ap->qtype;
|
|
|
|
if (qt == AT_A) {
|
2013-09-16 09:53:25 +00:00
|
|
|
snsd_service *ss;
|
2014-09-17 12:41:24 +00:00
|
|
|
ss = andna_resolve_hash((u_int *) ap->qstdata,
|
|
|
|
ap->service, ap->p + 1, &records);
|
2013-09-16 09:53:25 +00:00
|
|
|
//ss=andna_resolve_hname(ap->qstdata, //USE HASH!
|
2014-09-17 12:41:24 +00:00
|
|
|
// ap->service,ap->p,&records);
|
2013-09-16 09:53:25 +00:00
|
|
|
if (!ss) {
|
2014-09-17 12:41:24 +00:00
|
|
|
rcode = RCODE_ENSDMN;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
res = snsd_prio_to_aansws(answer + msglen,
|
|
|
|
ss->prio, _ip_len_, ap->r, &records);
|
2013-09-16 09:53:25 +00:00
|
|
|
if (!records) {
|
2014-09-17 12:41:24 +00:00
|
|
|
rcode = RCODE_ENSDMN;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
|
|
|
snsd_service_llist_del(&ss);
|
2014-09-17 12:41:24 +00:00
|
|
|
} else if (qt == AT_PTR) {
|
2013-09-16 09:53:25 +00:00
|
|
|
lcl_cache *lc;
|
|
|
|
int family;
|
2014-03-14 03:19:40 +00:00
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
family = ap->qstlength == 4 ? AF_INET : AF_INET6;
|
|
|
|
res = inet_setip_raw(&ipres, (u_int *) ap->qstdata, family);
|
|
|
|
if (res == -1) {
|
|
|
|
rcode = RCODE_EINTRPRT;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
inet_ntohl(ipres.data, family);
|
|
|
|
lc = andna_reverse_resolve(ipres);
|
2013-09-16 09:53:25 +00:00
|
|
|
//lc=andna_reverse_resolve(ipres);
|
|
|
|
if (!lc) {
|
2014-09-17 12:41:24 +00:00
|
|
|
rcode = RCODE_ENSDMN;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
res = lcl_cache_to_aansws(answer + msglen, lc, &records); /* destroys lc */
|
|
|
|
} else if (qt == AT_G) {
|
2013-09-16 09:53:25 +00:00
|
|
|
snsd_service *ss;
|
2014-09-17 12:41:24 +00:00
|
|
|
ss = andna_resolve_hash((u_int *) ap->qstdata, -1, 0, &records);
|
2013-09-16 09:53:25 +00:00
|
|
|
if (!ss) {
|
2014-09-17 12:41:24 +00:00
|
|
|
rcode = RCODE_ENSDMN;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
res = snsd_service_to_aansws(answer + msglen + 2, ss,
|
|
|
|
_ip_len_, &records, ap->r);
|
2013-09-16 09:53:25 +00:00
|
|
|
if (!res) {
|
2014-09-17 12:41:24 +00:00
|
|
|
rcode = RCODE_ENSDMN;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
|
|
|
if (!records) {
|
2014-09-17 12:41:24 +00:00
|
|
|
rcode = RCODE_ESRVFAIL;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
|
|
|
snsd_service_llist_del(&ss);
|
|
|
|
} else {
|
2014-09-17 12:41:24 +00:00
|
|
|
rcode = RCODE_EINTRPRT;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
memcpy(answer, msg, msglen);
|
|
|
|
ANDNS_SET_RCODE(answer, RCODE_NOERR);
|
2013-09-16 09:53:25 +00:00
|
|
|
ANDNS_SET_QR(answer);
|
2014-09-17 12:41:24 +00:00
|
|
|
recs = records;
|
|
|
|
if (qt == AT_G) {
|
|
|
|
ANDNS_SET_ANCOUNT(answer, 1);
|
|
|
|
s = htons(recs);
|
|
|
|
memcpy(answer + msglen, &s, 2);
|
|
|
|
res += 2;
|
|
|
|
} else
|
|
|
|
ANDNS_SET_ANCOUNT(answer, recs);
|
|
|
|
return res + msglen;
|
|
|
|
safe_return_rcode:
|
2013-09-16 09:53:25 +00:00
|
|
|
destroy_andns_pkt(ap);
|
|
|
|
/* goto return_rcode;
|
|
|
|
return_rcode:*/
|
2014-09-17 12:41:24 +00:00
|
|
|
memcpy(answer, msg, msglen);
|
|
|
|
ANDNS_SET_RCODE(answer, rcode);
|
2013-09-16 09:53:25 +00:00
|
|
|
ANDNS_SET_QR(answer);
|
|
|
|
return msglen;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
nk_forward(andns_pkt * ap, char *msg, int msglen, char *answer)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
int res, rcode;
|
2013-09-16 09:53:25 +00:00
|
|
|
dns_pkt *dp;
|
|
|
|
char new_answ[DNS_MAX_SZ];
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
res = apqsttodpqst(ap, &dp);
|
|
|
|
if (res == -1) {
|
|
|
|
rcode = RCODE_EINTRPRT;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
res = d_p(dp, answer);
|
|
|
|
if (res == -1) {
|
|
|
|
rcode = RCODE_ESRVFAIL;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
res = ns_general_send(answer, res, new_answ, DNS_MAX_SZ);
|
|
|
|
if (res == -1) {
|
|
|
|
rcode = RCODE_ESRVFAIL;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
res = d_u(new_answ, res, &dp);
|
|
|
|
if (res == -1) {
|
|
|
|
rcode = RCODE_ESRVFAIL;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
res = dpanswtoapansw(dp, ap);
|
|
|
|
if (res == -1) {
|
|
|
|
rcode = RCODE_ESRVFAIL;
|
2013-09-16 09:53:25 +00:00
|
|
|
destroy_dns_pkt(dp);
|
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
|
|
|
destroy_dns_pkt(dp);
|
2014-09-17 12:41:24 +00:00
|
|
|
res = a_p(ap, answer);
|
|
|
|
if (res == -1) {
|
|
|
|
rcode = RCODE_ESRVFAIL;
|
2013-09-16 09:53:25 +00:00
|
|
|
goto safe_return_rcode;
|
|
|
|
}
|
|
|
|
return res;
|
2014-09-17 12:41:24 +00:00
|
|
|
safe_return_rcode:
|
|
|
|
debug(DBG_INSANE, err_str);
|
2013-09-16 09:53:25 +00:00
|
|
|
destroy_andns_pkt(ap);
|
2014-09-17 12:41:24 +00:00
|
|
|
memcpy(answer, msg, msglen);
|
2013-09-16 09:53:25 +00:00
|
|
|
ANDNS_SET_QR(answer);
|
2014-09-17 12:41:24 +00:00
|
|
|
ANDNS_SET_RCODE(answer, rcode);
|
2013-09-16 09:53:25 +00:00
|
|
|
return msglen;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
|
2013-09-16 09:53:25 +00:00
|
|
|
/*
|
|
|
|
* This is the main function for the resolution: the dns_wrapper receive the
|
|
|
|
* buffer and rslv builds the answer.
|
|
|
|
* `answer' is the buffer where the answer will be stored, it must be at
|
|
|
|
* least of `ANDNS_MAX_SZ' bytes.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* NULL if the pkt has to be discarded.
|
2014-11-06 23:44:02 +00:00
|
|
|
* A ptr to the answer to be sent if OK:
|
2013-09-16 09:53:25 +00:00
|
|
|
* in this case, answ_len is filled with
|
|
|
|
* the answer len.
|
|
|
|
*/
|
2014-09-17 12:41:24 +00:00
|
|
|
char *
|
|
|
|
andns_rslv(char *msg, int msglen, char *answer, int *answ_len)
|
2013-09-16 09:53:25 +00:00
|
|
|
{
|
2014-09-17 12:41:24 +00:00
|
|
|
int proto, res, r;
|
2013-09-16 09:53:25 +00:00
|
|
|
dns_pkt *dp;
|
|
|
|
andns_pkt *ap;
|
|
|
|
|
2014-11-07 03:17:14 +00:00
|
|
|
printf("andns_rslv msg %s answer %s", msg, answer);
|
|
|
|
|
|
|
|
if(netsplit.netsplit_inet_mode == 1)
|
|
|
|
inet_mode (msg);
|
|
|
|
|
2014-09-17 12:41:24 +00:00
|
|
|
proto = GET_NK_BIT(msg);
|
|
|
|
if (proto == NK_DNS)
|
|
|
|
res = d_u(msg, msglen, &dp);
|
|
|
|
else if (proto == NK_INET || proto == NK_NTK)
|
|
|
|
res = a_u(msg, msglen, &ap);
|
2013-09-16 09:53:25 +00:00
|
|
|
else {
|
2014-09-17 12:41:24 +00:00
|
|
|
debug(DBG_INSANE, "andns_rslv(): "
|
|
|
|
"Which language are you speaking?");
|
2013-09-16 09:53:25 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2014-09-17 12:41:24 +00:00
|
|
|
if (res == 0)
|
2013-09-16 09:53:25 +00:00
|
|
|
goto discard;
|
2014-09-17 12:41:24 +00:00
|
|
|
memset(answer, 0, ANDNS_MAX_SZ);
|
|
|
|
if (res == -1)
|
2013-09-16 09:53:25 +00:00
|
|
|
goto intrprt;
|
2014-09-17 12:41:24 +00:00
|
|
|
if (proto == NK_DNS) {
|
|
|
|
r = andns_realm(dp->pkt_qst, NULL);
|
|
|
|
if (r == INET_REALM)
|
|
|
|
res = dns_forward(dp, msg, msglen, answer);
|
2013-09-16 09:53:25 +00:00
|
|
|
else
|
2014-09-17 12:41:24 +00:00
|
|
|
res = inet_rslv(dp, msg, msglen, answer);
|
|
|
|
} else if (proto == NK_NTK)
|
|
|
|
res = nk_rslv(ap, msg, msglen, answer);
|
|
|
|
else if (proto == NK_INET)
|
|
|
|
res = nk_forward(ap, msg, msglen, answer);
|
|
|
|
*answ_len = res;
|
2013-09-16 09:53:25 +00:00
|
|
|
return answer;
|
2014-09-17 12:41:24 +00:00
|
|
|
discard:
|
|
|
|
debug(DBG_INSANE, err_str);
|
|
|
|
err_ret(ERR_RSLAQD, NULL);
|
|
|
|
intrprt:
|
|
|
|
debug(DBG_INSANE, err_str);
|
|
|
|
memcpy(answer, msg, msglen);
|
|
|
|
ANDNS_SET_RCODE(answer, 1);
|
2013-09-16 09:53:25 +00:00
|
|
|
//ANDNS_SET_RCODE(answer,RCODE_EINTRPRT);
|
|
|
|
ANDNS_SET_QR(answer);
|
2014-09-17 12:41:24 +00:00
|
|
|
*answ_len = msglen;
|
2013-09-16 09:53:25 +00:00
|
|
|
return answer;
|
|
|
|
}
|