forked from tobez/validns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtxt.c
94 lines (83 loc) · 1.87 KB
/
txt.c
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
85
86
87
88
89
90
91
92
93
94
/*
* Part of DNS zone file validator `validns`.
*
* Copyright 2011-2014 Anton Berezin <[email protected]>
* 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;
struct rr_txt_segment *first = NULL;
struct rr_txt_segment *last = NULL;
struct rr_txt_segment *cur = NULL;
int i;
i = 0;
while (*s) {
freeall_temp();
txt = extract_text(&s, "text segment");
if (txt.length < 0)
return NULL;
if (txt.length > 255)
return bitch("TXT segment too long");
i++;
cur = getmem(sizeof(*cur));
cur->txt = txt;
cur->next = NULL;
if (!first)
first = cur;
if (last)
last->next = cur;
last = cur;
}
if (i == 0)
return bitch("empty text record");
rr = getmem(sizeof(*rr));
rr->count = i;
rr->txt = first;
return store_record(type, name, ttl, rr);
}
static char* txt_human(struct rr *rrv)
{
RRCAST(txt);
char ss[1024];
char *s = ss;
int l;
struct rr_txt_segment *seg = rr->txt;
while (seg) {
/* XXX would be nice to escape " with \ in strings */
l = snprintf(s, 1024-(s-ss), "\"%s\" ", seg->txt.data);
s += l;
seg = seg->next;
}
return quickstrdup_temp(ss);
}
static struct binary_data txt_wirerdata(struct rr *rrv)
{
RRCAST(txt);
struct binary_data r, t;
struct rr_txt_segment *seg = rr->txt;
r = bad_binary_data();
t.length = 0;
t.data = NULL;
while (seg) {
r = compose_binary_data("db", 1, t, seg->txt);
t = r;
seg = seg->next;
}
return r;
}
struct rr_methods txt_methods = { txt_parse, txt_human, txt_wirerdata, NULL, NULL };