1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/*
* Part of DNS zone file validator `validns`.
*
* Copyright 2011-2014 Anton Berezin <tobez@tobez.org>
* Modified BSD license.
* (See LICENSE file in the distribution.)
*
*/
#include <sys/types.h>
#include <string.h>
#include <stdio.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <ctype.h>
#include "common.h"
#include "textparse.h"
#include "mempool.h"
#include "carp.h"
#include "rr.h"
/* XXX Does not accept multiple character-strings */
static struct rr *isdn_parse(char *name, long ttl, int type, char *s)
{
struct rr_isdn *rr = getmem(sizeof(*rr));
rr->isdn_address = extract_text(&s, "ISDN-address");
if (rr->isdn_address.length < 0)
return NULL;
if (rr->isdn_address.length > 255)
return bitch("ISDN-address too long");
rr->sa_present = 0;
if (*s) {
rr->sa = extract_text(&s, "subaddress");
if (rr->sa.length < 0)
return NULL;
if (rr->sa.length > 255)
return bitch("subaddress too long");
rr->sa_present = 1;
}
if (*s) {
return bitch("garbage after valid ISDN data");
}
return store_record(type, name, ttl, rr);
}
static char* isdn_human(struct rr *rrv)
{
RRCAST(isdn);
return rr->isdn_address.data;
}
static struct binary_data isdn_wirerdata(struct rr *rrv)
{
RRCAST(isdn);
struct binary_data r, t;
r = bad_binary_data();
t.length = 0;
t.data = NULL;
r = compose_binary_data("db", 1, t, rr->isdn_address);
t = r;
if (rr->sa_present) {
r = compose_binary_data("db", 1, t, rr->sa);
t = r;
}
return r;
}
struct rr_methods isdn_methods = { isdn_parse, isdn_human, isdn_wirerdata, NULL, NULL };
|