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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
#include "byte.h"
#include "case.h"
#include "dnsresolv.h"
#include "ip.h"
#include "socket_if.h"
#include "str.h"
#include "stralloc.h"
/**
@file dns_ipq.c
@author djb, feh
@source ucspi-tcp
@brief DNS hostname qualification for ipv4 and ipv6
*/
/**
@fn int doit -> @return number of added chars to name
*/
static int doit(stralloc *work, const char *rule)
{
char ch;
unsigned int colon;
unsigned int prefixlen;
ch = *rule++;
if ((ch != '?') && (ch != '=') && (ch != '*') && (ch != '-')) return 1;
colon = str_chr((char *)rule, ':');
if (!rule[colon]) return 1;
if (work->len < colon) return 1;
prefixlen = work->len - colon;
if ((ch == '=') && prefixlen) return 1;
if (case_diffb((char *)rule, colon, work->s + prefixlen)) return 1;
if (ch == '?') {
if (byte_chr(work->s, prefixlen, '.') < prefixlen) return 1;
if (byte_chr(work->s, prefixlen, '[') < prefixlen) return 1;
if (byte_chr(work->s, prefixlen, ']') < prefixlen) return 1;
}
work->len = prefixlen;
if (ch == '-') work->len = 0;
return stralloc_cats(work, rule + colon + 1);
}
/** @fn int dns_ip4_qualify_rules -> @return number of IPv4 addresss with rules */
int dns_ip4_qualify_rules(stralloc *ipout, stralloc *fqdn, const stralloc *in, const stralloc *rules)
{
unsigned int i;
unsigned int j;
unsigned int plus;
unsigned int fqdnlen;
int rc = 0;
if (!stralloc_copy(fqdn, (stralloc *)in)) return DNS_MEM;
for (j = i = 0; j < rules->len; ++j)
if (!rules->s[j]) {
if (!doit(fqdn, rules->s + i)) return DNS_INT;
i = j + 1;
}
fqdnlen = fqdn->len;
plus = byte_chr(fqdn->s, fqdnlen, '+');
if (plus >= fqdnlen) return dns_ip4(ipout, fqdn);
i = plus + 1;
for (;;) {
j = byte_chr(fqdn->s + i, fqdnlen - i, '+');
byte_copy(fqdn->s + plus, j, fqdn->s + i);
fqdn->len = plus + j;
if (rc += dns_ip4(ipout, fqdn) < 0) return DNS_ERR;
i += j;
if (i >= fqdnlen) return rc;
++i;
}
return 0;
}
/** @fn int dns_ip4_qualify -> @return number of IPv4 addresss qualified */
int dns_ip4_qualify(stralloc *ipout, stralloc *fqdn, const stralloc *in)
{
int r;
static stralloc rules;
if ((r = dns_ip_qualify_localhost(ipout, fqdn, in)) > 0) return r;
if (dns_resolvconfrewrite(&rules) < 0) return DNS_INT;
return dns_ip4_qualify_rules(ipout, fqdn, in, &rules);
}
/** @fn int dns_ip4_qualify_rules -> @return number of IPv6 addresss with rules */
int dns_ip6_qualify_rules(stralloc *ipout, stralloc *fqdn, const stralloc *in, const stralloc *rules)
{
unsigned int i;
unsigned int j;
unsigned int plus;
unsigned int fqdnlen;
int rc = 0;
if (!stralloc_copy(fqdn, (stralloc *)in)) return DNS_MEM;
for (j = i = 0; j < rules->len; ++j)
if (!rules->s[j]) {
if (!doit(fqdn, rules->s + i)) return DNS_INT;
i = j + 1;
}
fqdnlen = fqdn->len;
plus = byte_chr(fqdn->s, fqdnlen, '+');
if (plus >= fqdnlen) return dns_ip6(ipout, fqdn);
i = plus + 1;
for (;;) {
j = byte_chr(fqdn->s + i, fqdnlen - i, '+');
byte_copy(fqdn->s + plus, j, fqdn->s + i);
fqdn->len = plus + j;
if ((rc += dns_ip6(ipout, fqdn)) < 0) return DNS_ERR;
i += j;
if (i >= fqdnlen) return rc;
++i;
}
return 0;
}
/** @fn int dns_ip6_qualify -> @return number of IPv6 addresss qualified */
int dns_ip6_qualify(stralloc *ipout, stralloc *fqdn, const stralloc *in)
{
int r;
static stralloc rules;
if ((r = dns_ip_qualify_localhost(ipout, fqdn, in)) > 0) return r;
if (dns_resolvconfrewrite(&rules) < 0) return DNS_INT;
return dns_ip6_qualify_rules(ipout, fqdn, in, &rules);
}
/** @fn int dns_ip_qualify_rules -> @return number of IPv6+IPv4 addresss with rules */
int dns_ip_qualify_rules(stralloc *ipout, stralloc *fqdn, const stralloc *in, const stralloc *rules)
{
unsigned int i;
unsigned int j;
unsigned int k;
unsigned int plus;
unsigned int fqdnlen;
stralloc tmp = {0};
int rc = 0;
if (!stralloc_copy(fqdn, (stralloc *)in)) return DNS_MEM;
if (!stralloc_copys(ipout, "")) return DNS_MEM;
for (j = i = 0; j < rules->len; ++j)
if (!rules->s[j]) {
if (!doit(fqdn, rules->s + i)) return DNS_INT;
i = j + 1;
}
fqdnlen = fqdn->len;
plus = byte_chr(fqdn->s, fqdnlen, '+');
if (plus >= fqdnlen) {
rc = dns_ip6(ipout, fqdn);
if (dns_ip4(&tmp, fqdn) > 0) {
for (k = 0; k < tmp.len; k += 4) {
if (!stralloc_catb(ipout, (const char *)V4mappedprefix, 12)) return DNS_MEM;
if (!stralloc_catb(ipout, tmp.s + k, 4)) return DNS_MEM;
rc++;
}
}
return rc;
}
i = plus + 1;
for (;;) {
j = byte_chr(fqdn->s + i, fqdnlen - i, '+');
byte_copy(fqdn->s + plus, j, fqdn->s + i);
fqdn->len = plus + j;
if (!stralloc_copys(ipout, "")) return DNS_MEM;
rc = dns_ip6(&tmp, fqdn);
if (rc)
if (!stralloc_cat(ipout, &tmp)) return DNS_MEM;
if (dns_ip4(&tmp, fqdn) > 0) {
for (k = 0; k < tmp.len; k += 4) {
if (!stralloc_catb(ipout, (const char *)V4mappedprefix, 12)) return DNS_MEM;
if (!stralloc_catb(ipout, tmp.s + k, 4)) return DNS_MEM;
rc++;
}
}
if (rc < 0) return DNS_ERR;
i += j;
if (i >= fqdnlen) return rc;
++i;
}
return 0;
}
/** @fn int dns_ip_qualify_localhost -> @return number of IP addresss */
int dns_ip_qualify_localhost(stralloc *ipout, stralloc *fqdn, const stralloc *in)
{
if (!stralloc_copys(ipout, "")) return DNS_MEM;
if (!stralloc_copys(fqdn, "")) return DNS_MEM;
ipout->len = 0;
if (byte_equal(in->s, 9, LOCALHOST)) {
if (!stralloc_copyb(ipout, (const char *)V6loopback, 16)) return DNS_MEM;
if (!stralloc_catb(ipout, (const char *)V46loopback, 16)) return DNS_MEM;
if (!stralloc_copys(fqdn, "localhost.localhost.")) return DNS_MEM;
}
if (byte_equal(in->s, 13, IP4_LOOPBACK)) {
if (!stralloc_copyb(ipout, (const char *)V46loopback, 16)) return DNS_MEM;
if (!stralloc_copys(fqdn, "ip4-loopback.localhost.")) return DNS_MEM;
}
if (byte_equal(in->s, 13, IP6_LOOPBACK)) {
if (!stralloc_copyb(ipout, (const char *)V6loopback, 16)) return DNS_MEM;
if (!stralloc_copys(fqdn, "ip6-loopback.localhost.")) return DNS_MEM;
}
// if (!stralloc_0(fqdn)) return DNS_MEM; // don't do it
return ipout->len ? ipout->len % 15 : 0;
}
/** @fn int dns_ip_qualify -> @return number of IP addresss */
int dns_ip_qualify(stralloc *ipout, stralloc *fqdn, const stralloc *in)
{
int r;
static stralloc rules;
if ((r = dns_ip_qualify_localhost(ipout, fqdn, in)) > 0) return r;
if (dns_resolvconfrewrite(&rules) < 0) return DNS_INT;
return dns_ip_qualify_rules(ipout, fqdn, in, &rules);
}
|