File: afsdb.c

package info (click to toggle)
validns 0.8%2Bgit20160720-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,120 kB
  • ctags: 786
  • sloc: ansic: 7,241; perl: 283; makefile: 160
file content (60 lines) | stat: -rw-r--r-- 1,310 bytes parent folder | download | duplicates (3)
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 <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 *afsdb_parse(char *name, long ttl, int type, char *s)
{
	struct rr_afsdb *rr = getmem(sizeof(*rr));

	rr->subtype = extract_integer(&s, "AFSDB subtype", NULL);
	if (rr->subtype < 0)
		return NULL;

	if (rr->subtype != 1 && rr->subtype != 2)
		return bitch("unknown AFSDB subtype");

	rr->hostname = extract_name(&s, "AFSDB hostname", 0);
	if (!rr->hostname)
		return NULL;

	if (*s) {
		return bitch("garbage after valid AFSDB data");
	}

	return store_record(type, name, ttl, rr);
}

static char* afsdb_human(struct rr *rrv)
{
	RRCAST(afsdb);
    char s[1024];

    snprintf(s, 1024, "%d %s",
	     rr->subtype, rr->hostname);
    return quickstrdup_temp(s);
}

static struct binary_data afsdb_wirerdata(struct rr *rrv)
{
	RRCAST(afsdb);

    return compose_binary_data("2d", 1,
		rr->subtype, name2wire_name(rr->hostname));
}

struct rr_methods afsdb_methods = { afsdb_parse, afsdb_human, afsdb_wirerdata, NULL, NULL };