File: txt.c

package info (click to toggle)
validns 0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,056 kB
  • ctags: 756
  • sloc: ansic: 6,964; perl: 249; makefile: 160
file content (84 lines) | stat: -rw-r--r-- 1,743 bytes parent folder | download
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
76
77
78
79
80
81
82
83
84
/*
 * 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"

/* XXX Does not accept multiple character-strings */

static struct rr *txt_parse(char *name, long ttl, int type, char *s)
{
	struct rr_txt *rr;
	struct binary_data txt[20];
	int i;

	i = 0;
	while (*s) {
		if (i >= 20)
			return bitch("program limit: too many text segments");
		txt[i] = extract_text(&s, "text segment");
		if (txt[i].length < 0)
			return NULL;
		if (txt[i].length > 255)
			return bitch("TXT segment too long");
		i++;
	}
	if (i == 0)
		return bitch("empty text record");

   	rr = getmem(sizeof(*rr) + sizeof(struct binary_data) * (i-1));
	rr->count = i;
	for (i = 0; i < rr->count; i++) {
		rr->txt[i] = txt[i];
	}

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

static char* txt_human(struct rr *rrv)
{
	RRCAST(txt);
    char ss[1024];
	int i;
	char *s = ss;
	int l;

	for (i = 0; i < rr->count; i++) {
		/* XXX would be nice to escape " with \ in strings */
		l = snprintf(s, 1024-(s-ss), "\"%s\" ", rr->txt[i].data);
		s += l;
	}
    return quickstrdup_temp(ss);
}

static struct binary_data txt_wirerdata(struct rr *rrv)
{
	RRCAST(txt);
	struct binary_data r, t;
	int i;

	r = bad_binary_data();
	t.length = 0;
	t.data = NULL;
	for (i = 0; i < rr->count; i++) {
		r = compose_binary_data("db", 1, t, rr->txt[i]);
		t = r;
	}
    return r;
}

struct rr_methods txt_methods = { txt_parse, txt_human, txt_wirerdata, NULL, NULL };