#include "stralloc.h"
#include "uint16.h"
#include "byte.h"
#include "dns.h"
#include "ip6.h"
#include "ip4.h"
#include "alloc.h"
int dns_ip6_packet(stralloc *out,const char *buf,unsigned int len)
{
unsigned int pos;
char header[16];
uint16 numanswers;
uint16 datalen;
if (!stralloc_copys(out,"")) return -1;
pos = dns_packet_copy(buf,len,0,header,12); if (!pos) return -1;
uint16_unpack_big(header + 6,&numanswers);
pos = dns_packet_skipname(buf,len,pos); if (!pos) return -1;
pos += 4;
while (numanswers--) {
pos = dns_packet_skipname(buf,len,pos); if (!pos) return -1;
pos = dns_packet_copy(buf,len,pos,header,10); if (!pos) return -1;
uint16_unpack_big(header + 8,&datalen);
if (byte_equal(header,2,DNS_T_AAAA))
if (byte_equal(header + 2,2,DNS_C_IN))
if (datalen == 16) {
if (!dns_packet_copy(buf,len,pos,header,16)) return -1;
if (!stralloc_catb(out,header,16)) return -1;
}
pos += datalen;
}
dns_sortip6(out->s,out->len);
return 0;
}
static char *q = 0;
static int doit(stralloc *out,stralloc *fqdn)
{
unsigned int i;
char code;
char ch;
char ip[16];
if (!stralloc_copys(out,"")) return -1;
if (!stralloc_readyplus(fqdn,1)) return -1;
fqdn->s[fqdn->len]=0;
if ((i=ip6_scan(fqdn->s,ip))) {
if (!fqdn->s[i]) {
stralloc_copyb(out,ip,16);
return 1;
}
}
if ((i=ip4_scan(fqdn->s,ip+12))) {
if (!fqdn->s[i]) {
byte_zero(ip,10);
ip[10]=ip[11]=(char)0xff;
stralloc_copyb(out,ip,16);
return 1;
}
}
code = 0;
for (i = 0;i <= fqdn->len;++i) {
if (i < fqdn->len)
ch = fqdn->s[i];
else
ch = '.';
if ((ch == '[') || (ch == ']')) continue;
if (ch == '.') {
if (!stralloc_append(out,&code)) return -1;
code = 0;
continue;
}
if ((ch >= '0') && (ch <= '9')) {
code *= 10;
code += ch - '0';
continue;
}
if (!dns_domain_fromdot(&q,fqdn->s,fqdn->len)) return -1;
if (dns_resolve(q,DNS_T_AAAA) == -1) return -1;
if (dns_ip6_packet(out,dns_resolve_tx.packet,dns_resolve_tx.packetlen) == -1) return -1;
dns_transmit_free(&dns_resolve_tx);
dns_domain_free(&q);
return 0;
}
out->len &= ~3;
return 0;
}
int dns_ip6(stralloc *out,stralloc *fqdn) {
stralloc tmp={0};
int i;
int result=doit(out,fqdn);
if (result==1) /* shortcut: it was an IP number. No need to do an A lookup. */
return 0;
if (result==0) {
result=dns_ip4(&tmp,fqdn);
if (result==0) {
for (i = 0;i + 4 <= tmp.len;i += 4) {
stralloc_catb(out,(char *)V4mappedprefix,12);
stralloc_catb(out,tmp.s + i,4);
}
alloc_free(tmp.s);
return 0;
}
return 0;
}
return -1;
}
int dns_ip6_4mapped(stralloc *out,stralloc *fqdn) {
stralloc tmp={0};
int i;
int result=dns_ip4(&tmp,fqdn);
if (result==0) {
for (i = 0;i + 4 <= tmp.len;i += 4) {
stralloc_catb(out,(char *)V4mappedprefix,12);
stralloc_catb(out,tmp.s + i,4);
}
alloc_free(tmp.s);
return 0;
}
return -1;
}
|