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
|
/*
* 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 "common.h"
#include "textparse.h"
#include "mempool.h"
#include "carp.h"
#include "rr.h"
static struct rr *hinfo_parse(char *name, long ttl, int type, char *s)
{
struct rr_hinfo *rr = getmem(sizeof(*rr));
rr->cpu = extract_text(&s, "CPU");
if (rr->cpu.length < 0)
return NULL;
if (rr->cpu.length > 255)
return bitch("CPU string is too long");
rr->os = extract_text(&s, "OS");
if (rr->os.length < 0)
return NULL;
if (rr->os.length > 255)
return bitch("OS string is too long");
if (*s) {
return bitch("garbage after valid HINFO data");
}
return store_record(type, name, ttl, rr);
}
static char* hinfo_human(struct rr *rrv)
{
RRCAST(hinfo);
char s[1024];
snprintf(s, 1024, "\"%s\" \"%s\"", rr->cpu.data, rr->os.data);
return quickstrdup_temp(s);
}
static struct binary_data hinfo_wirerdata(struct rr *rrv)
{
RRCAST(hinfo);
return compose_binary_data("bb", 1, rr->cpu, rr->os);
}
struct rr_methods hinfo_methods = { hinfo_parse, hinfo_human, hinfo_wirerdata, NULL, NULL };
|