-
Notifications
You must be signed in to change notification settings - Fork 7
/
rbldnsd_dnhash.c
565 lines (458 loc) · 13 KB
/
rbldnsd_dnhash.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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
/*
* RBLDNSD
* Copyright (C) 2019 Vsevolod Stakhov
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA.
*/
/*
* Hashed dataset with wildcards
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
#include <syslog.h>
#include "khash.h"
#include "t1ha/t1ha.h"
#include "rbldnsd.h"
struct key {
unsigned len;
const unsigned char *ldn;
};
struct entry {
const char *rr; /* A and TXT RRs */
};
#if defined(__SSE4_2__) && defined(__x86_64) && defined(__GNUC__)
/* Machdep hash ported from openresty luajit: https://github.com/openresty/luajit2 */
#include <smmintrin.h>
#include <time.h> /* for time() */
#include <sys/types.h>
#include <unistd.h> /* for getpid() */
static const uint64_t* cast_uint64p(const char* str)
{
return (const uint64_t*)(void*)str;
}
static const uint32_t* cast_uint32p(const char* str)
{
return (const uint32_t*)(void*)str;
}
/* hash string with len in [1, 4) */
static inline uint32_t str_hash_1_4(const char* str, uint32_t len)
{
uint32_t v = str[0];
v = (v << 8) | str[len >> 1];
v = (v << 8) | str[len - 1];
v = (v << 8) | len;
return _mm_crc32_u32(0, v);
}
/* hash string with len in [4, 16) */
static inline uint32_t str_hash_4_16(const char* str, uint32_t len)
{
uint64_t v1, v2, h;
if (len >= 8) {
v1 = *cast_uint64p(str);
v2 = *cast_uint64p(str + len - 8);
} else {
v1 = *cast_uint32p(str);
v2 = *cast_uint32p(str + len - 4);
}
h = _mm_crc32_u32(0, len);
h = _mm_crc32_u64(h, v1);
h = _mm_crc32_u64(h, v2);
return h;
}
/* hash string with length in [16, 128) */
static inline uint32_t str_hash_16_128(const char* str, uint32_t len)
{
uint64_t h1, h2;
uint32_t i;
h1 = _mm_crc32_u32(0, len);
h2 = 0;
for (i = 0; i < len - 16; i += 16) {
h1 += _mm_crc32_u64(h1, *cast_uint64p(str + i));
h2 += _mm_crc32_u64(h2, *cast_uint64p(str + i + 8));
};
h1 = _mm_crc32_u64(h1, *cast_uint64p(str + len - 16));
h2 = _mm_crc32_u64(h2, *cast_uint64p(str + len - 8));
return _mm_crc32_u32(h1, h2);
}
/* **************************************************************************
*
* Following is code about hashing string with length >= 128
*
* **************************************************************************
*/
static uint32_t random_pos[32][2];
static const int8_t log2_tab[128] = { -1,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,
4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6 };
static inline uint32_t log2_floor(uint32_t n)
{
if (n <= 127) {
return log2_tab[n];
}
if ((n >> 8) <= 127) {
return log2_tab[n >> 8] + 8;
}
if ((n >> 16) <= 127) {
return log2_tab[n >> 16] + 16;
}
if ((n >> 24) <= 127) {
return log2_tab[n >> 24] + 24;
}
return 31;
}
#define POW2_MASK(n) ((1L << (n)) - 1)
/* This function is to populate `random_pos` such that random_pos[i][*]
* contains random value in the range of [2**i, 2**(i+1)).
*/
static void x64_init_random(void)
{
int i, seed, rml;
/* Calculate the ceil(log2(RAND_MAX)) */
rml = log2_floor(RAND_MAX);
if (RAND_MAX & (RAND_MAX - 1)) {
rml += 1;
}
/* Init seed */
seed = _mm_crc32_u32(0, getpid());
seed = _mm_crc32_u32(seed, time(NULL));
srandom(seed);
/* Now start to populate the random_pos[][]. */
for (i = 0; i < 3; i++) {
/* No need to provide random value for chunk smaller than 8 bytes */
random_pos[i][0] = random_pos[i][1] = 0;
}
for (; i < rml; i++) {
random_pos[i][0] = random() & POW2_MASK(i+1);
random_pos[i][1] = random() & POW2_MASK(i+1);
}
for (; i < 31; i++) {
int j;
for (j = 0; j < 2; j++) {
uint32_t v, scale;
scale = random_pos[i - rml][0];
if (scale == 0) {
scale = 1;
}
v = (random() * scale) & POW2_MASK(i+1);
random_pos[i][j] = v;
}
}
}
#undef POW2_MASK
void __attribute__((constructor)) x64_init_random_constructor()
{
x64_init_random();
}
/* Return a pre-computed random number in the range of [1**chunk_sz_order,
* 1**(chunk_sz_order+1)). It is "unsafe" in the sense that the return value
* may be greater than chunk-size; it is up to the caller to make sure
* "chunk-base + return-value-of-this-func" has valid virtual address.
*/
static inline uint32_t get_random_pos_unsafe(uint32_t chunk_sz_order,
uint32_t idx)
{
uint32_t pos = random_pos[chunk_sz_order][idx & 1];
return pos;
}
static inline uint32_t str_hash_128_above(const char* str,
uint32_t len)
{
uint32_t chunk_num, chunk_sz, chunk_sz_log2, i, pos1, pos2;
uint64_t h1, h2, v;
const char* chunk_ptr;
chunk_num = 16;
chunk_sz = len / chunk_num;
chunk_sz_log2 = log2_floor(chunk_sz);
pos1 = get_random_pos_unsafe(chunk_sz_log2, 0);
pos2 = get_random_pos_unsafe(chunk_sz_log2, 1);
h1 = _mm_crc32_u32(0, len);
h2 = 0;
/* loop over 14 chunks, 2 chunks at a time */
for (i = 0, chunk_ptr = str; i < (chunk_num / 2 - 1);
chunk_ptr += chunk_sz, i++) {
v = *cast_uint64p(chunk_ptr + pos1);
h1 = _mm_crc32_u64(h1, v);
v = *cast_uint64p(chunk_ptr + chunk_sz + pos2);
h2 = _mm_crc32_u64(h2, v);
}
/* the last two chunks */
v = *cast_uint64p(chunk_ptr + pos1);
h1 = _mm_crc32_u64(h1, v);
v = *cast_uint64p(chunk_ptr + chunk_sz - 8 - pos2);
h2 = _mm_crc32_u64(h2, v);
/* process the trailing part */
h1 = _mm_crc32_u64(h1, *cast_uint64p(str));
h2 = _mm_crc32_u64(h2, *cast_uint64p(str + len - 8));
h1 = _mm_crc32_u32(h1, h2);
return h1;
}
/* NOTE: the "len" should not be zero */
static inline uint32_t str_hash_machdep(const char* str, size_t len)
{
if (len < 128) {
if (len >= 16) { /* [16, 128) */
return str_hash_16_128(str, len);
}
if (len >= 4) { /* [4, 16) */
return str_hash_4_16(str, len);
}
/* [0, 4) */
return str_hash_1_4(str, len);
}
/* [128, inf) */
return str_hash_128_above(str, len);
}
#define ARCH_STR_HASH(key, len) str_hash_machdep((key), (len))
#else
#define ARCH_STR_HASH(key, len) t1ha2_atonce((key), (len), 0x0f0a13905c0bfd77ULL)
#endif
static inline int64_t
key_hash_func(struct key k)
{
return ARCH_STR_HASH(k.ldn, k.len);
}
static inline int
key_eq_func(struct key k1, struct key k2)
{
return k1.len == k2.len && memcmp(k1.ldn, k2.ldn, k1.len) == 0;
}
KHASH_INIT(dnhash, struct key, struct entry, 1, key_hash_func, key_eq_func);
/* There are two similar arrays -
* for plain entries and for wildcard entries.
*/
#define MAX_WILDCARD 5
struct dsdata {
khash_t(dnhash) *direct;
khash_t(dnhash) *wild[MAX_WILDCARD];
const char *def_rr; /* default A and TXT RRs */
int w_maxlab;
};
definedstype_update(dnhash, 0, "set of (domain name, value) pairs, hashed version");
static void ds_dnhash_reset(struct dsdata *dsd, int UNUSED unused_freeall) {
kh_clear(dnhash, dsd->direct);
for (int i = 0; i < MAX_WILDCARD; i ++) {
kh_clear(dnhash, dsd->wild[i]);
}
dsd->w_maxlab = 0;
}
static void ds_dnhash_start(struct dataset *ds) {
struct dsdata *dsd = ds->ds_dsd;
ds->ds_dsd->def_rr = def_rr;
dsd->w_maxlab = 0;
if (dsd->direct == NULL) {
dsd->direct = kh_init(dnhash);
for (int i = 0; i < MAX_WILDCARD; i++) {
dsd->wild[i] = kh_init(dnhash);
}
}
}
static int
ds_dnhash_addent(khash_t(dnhash) *h,
const unsigned char *ldn,
const char *rr,
unsigned dnlen) {
struct entry *e;
khiter_t k;
struct key key;
int ret;
key.ldn = ldn;
key.len = dnlen;
k = kh_put(dnhash, h, key, &ret);
if (ret < 0) {
return 0;
}
e = &kh_value(h, k);
e->rr = rr;
return 1;
}
static int
ds_dnhash_line(struct dataset *ds, char *s, struct dsctx *dsc) {
struct dsdata *dsd = ds->ds_dsd;
unsigned char dn[DNS_MAXDN];
const char *rr;
unsigned char *ldn;
unsigned dnlen, size;
int not, iswild, isplain;
if (*s == ':') { /* default entry */
if (!(size = parse_a_txt(s, &rr, def_rr, dsc)))
return 1;
if (!(dsd->def_rr = mp_dmemdup(ds->ds_mp, rr, size)))
return 0;
return 1;
}
/* check negation */
if (*s == '!') {
not = 1;
++s; SKIPSPACE(s);
}
else {
not = 0;
}
/* check for wildcard: .xxx or *.xxx */
if (*s == '.') {
iswild = 1; isplain = 1; ++s;
}
else if (s[0] == '*' && s[1] == '.') {
iswild = 1; isplain = 0; s += 2;
}
else {
iswild = 0; isplain = 1;
}
/* disallow emptry DN to be listed (i.e. "all"?) */
if (!(s = parse_dn(s, dn, &dnlen)) || dnlen == 1) {
dswarn(dsc, "invalid domain name");
return 1;
}
dns_dntol(dn, dn); /* lowercase */
if (not) {
rr = NULL; /* negation entry */
}
else {
/* else parse rest */
SKIPSPACE(s);
if (!*s || ISCOMMENT(*s)) {
/* use default if none given */
rr = dsd->def_rr;
} else if (!(size = parse_a_txt(s, &rr, dsd->def_rr, dsc))) {
return 1;
} else if (!(rr = mp_dmemdup(ds->ds_mp, rr, size))) {
return 0;
}
}
ldn = (unsigned char*)mp_alloc(ds->ds_mp, dnlen, 0);
if (!ldn)
return 0;
memcpy(ldn, dn, dnlen);
if (iswild) {
int dnlab = dns_dnlabels(dn);
if (dnlab <= 0 || dnlab > MAX_WILDCARD) {
dslog(LOG_ERR, dsc, "cannot insert wildcard %s to hash table, too many labels", s);
return 0;
}
if (dsd->w_maxlab < dnlab) {
dsd->w_maxlab = dnlab;
}
if (!ds_dnhash_addent(dsd->wild[dnlab - 1], ldn, rr, dnlen - 1)) {
return 0;
}
}
if (isplain) {
if (!ds_dnhash_addent(dsd->direct, ldn, rr, dnlen - 1)) {
return 0;
}
}
return 1;
}
static int
ds_dnhash_update(struct dataset *ds, char *s, struct dsctx *dsc) {
return ds_dnhash_line(ds, s, dsc);
}
static void ds_dnhash_finish(struct dataset *ds, struct dsctx *dsc) {
struct dsdata *dsd = ds->ds_dsd;
unsigned nwild = 0;
for (int i = 0; i < MAX_WILDCARD; i ++) {
nwild += kh_size(dsd->wild[i]);
}
dsloaded(dsc, "plain=%u, wild=%u", kh_size(dsd->direct), nwild);
}
static int
ds_dnhash_query(const struct dataset *ds, const struct dnsqinfo *qi,
struct dnspacket *pkt) {
const struct dsdata *dsd = ds->ds_dsd;
const unsigned char *dn = qi->qi_dn;
unsigned qlab = qi->qi_dnlab;
unsigned qlen0 = qi->qi_dnlen0;
const struct entry *e;
char name[DNS_MAXDOMAIN+1];
khiter_t k;
struct key srch, *pkey;
if (!qlab) return 0; /* do not match empty dn */
check_query_overwrites(qi);
/* First, search for plain match */
srch.len = qi->qi_dnlen0;
srch.ldn = dn;
k = kh_get(dnhash, dsd->direct, srch);
if (k != kh_end(dsd->direct)) {
e = &kh_value(dsd->direct, k);
if (qi->qi_tflag & NSQUERY_TXT) {
pkey = &kh_key(dsd->direct, k);
dns_dntop(pkey->ldn + 1, name, sizeof(name));
}
if (e->rr) {
addrr_a_txt(pkt, qi->qi_tflag, e->rr, name, ds);
return NSQUERY_FOUND;
}
}
/* Now check for wildcards */
/*
* remove labels until number of labels in query is greather
* than we have in wildcard array, but remove at least 1 label
* for wildcard itself.
*/
do {
--qlab, qlen0 -= *dn + 1, dn += *dn + 1;
} while (qlab > dsd->w_maxlab);
/* now, lookup every so long dn in wildcard array */
for(;;) {
if (qlab == 0) {
break;
}
srch.len = qlen0;
srch.ldn = dn;
k = kh_get(dnhash, dsd->wild[qlab - 1], srch);
if (k != kh_end(dsd->wild[qlab - 1])) {
e = &kh_value(dsd->wild[qlab - 1], k);
if (qi->qi_tflag & NSQUERY_TXT) {
pkey = &kh_key(dsd->wild[qlab - 1], k);
dns_dntop(pkey->ldn + 1, name, sizeof(name));
}
if (e->rr) {
addrr_a_txt(pkt, qi->qi_tflag, e->rr, name, ds);
return NSQUERY_FOUND;
}
}
/* remove next label at the end of rdn */
qlen0 -= *dn + 1;
dn += *dn + 1;
--qlab;
}
return 0;
}
#ifndef NO_MASTER_DUMP
static void
ds_dnhash_dump(const struct dataset *ds,
const unsigned char UNUSED *unused_odn,
FILE *f) {
const struct dsdata *dsd = ds->ds_dsd;
struct entry e;
struct key k;
char name[DNS_MAXDOMAIN+4];
kh_foreach(dsd->direct, k, e, {
dns_dntop(k.ldn + 1, name, sizeof(name));
dump_a_txt(name, e.rr, name, ds, f);
});
for (unsigned int i = 0; i < MAX_WILDCARD; i++) {
name[0] = '*'; name[1] = '.';
kh_foreach(dsd->wild[i], k, e, {
dns_dntop(k.ldn + 1, name + 2, sizeof(name) - 2);
dump_a_txt(name, e.rr, name, ds, f);
});
}
}
#endif