You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.4 KiB
C
69 lines
1.4 KiB
C
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include "byte.h"
|
|
#include "dns.h"
|
|
|
|
int dns_domain_fromdot(char **out,const char *buf,size_t n)
|
|
{
|
|
char label[63];
|
|
unsigned int labellen = 0; /* <= sizeof label */
|
|
char name[255];
|
|
unsigned int namelen = 0; /* <= sizeof name */
|
|
char ch;
|
|
char *x;
|
|
|
|
errno = EINVAL;
|
|
|
|
for (;;) {
|
|
if (!n) break;
|
|
ch = *buf++; --n;
|
|
if (ch == '.') {
|
|
if (labellen) {
|
|
if (namelen + labellen + 1 > sizeof name) return 0;
|
|
name[namelen++] = labellen;
|
|
byte_copy(name + namelen,labellen,label);
|
|
namelen += labellen;
|
|
labellen = 0;
|
|
}
|
|
continue;
|
|
}
|
|
if (ch == '\\') {
|
|
if (!n) break;
|
|
ch = *buf++; --n;
|
|
if ((ch >= '0') && (ch <= '7')) {
|
|
ch -= '0';
|
|
if (n && (*buf >= '0') && (*buf <= '7')) {
|
|
ch <<= 3;
|
|
ch += *buf - '0';
|
|
++buf; --n;
|
|
if (n && (*buf >= '0') && (*buf <= '7')) {
|
|
ch <<= 3;
|
|
ch += *buf - '0';
|
|
++buf; --n;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (labellen >= sizeof label) return 0;
|
|
label[labellen++] = ch;
|
|
}
|
|
|
|
if (labellen) {
|
|
if (namelen + labellen + 1 > sizeof name) return 0;
|
|
name[namelen++] = labellen;
|
|
byte_copy(name + namelen,labellen,label);
|
|
namelen += labellen;
|
|
}
|
|
|
|
if (namelen + 1 > sizeof name) return 0;
|
|
name[namelen++] = 0;
|
|
|
|
x = malloc(namelen);
|
|
if (!x) return 0;
|
|
byte_copy(x,namelen,name);
|
|
|
|
if (*out) free(*out);
|
|
*out = x;
|
|
return 1;
|
|
}
|