-
Notifications
You must be signed in to change notification settings - Fork 0
/
dns.c
838 lines (770 loc) · 20.5 KB
/
dns.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
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
/* dns.c
* (c) 2002 Mikulas Patocka
* This file is a part of the Links program, released under GPL
*/
#include "links.h"
#ifdef SUPPORT_IPV6
int support_ipv6;
#endif
#if !defined(USE_GETADDRINFO) && (defined(HAVE_GETHOSTBYNAME_BUG) || !defined(HAVE_GETHOSTBYNAME))
#define EXTERNAL_LOOKUP
#endif
#if defined(WIN) || defined(INTERIX)
#define EXTRA_IPV6_LOOKUP
#endif
#ifdef OPENVMS_64BIT
/* 64-bit getaddrinfo with _SOCKADDR_LEN is broken and returns garbage */
#undef addrinfo
#undef getaddrinfo
#undef freeaddrinfo
#define addrinfo __addrinfo32
static int my_getaddrinfo(const char *host, const char *service, const struct addrinfo *hints, struct addrinfo **res)
{
int r;
#pragma __pointer_size 32
char *host_32;
struct addrinfo hints_32;
struct addrinfo *res_32;
#pragma __pointer_size 64
host_32 = _malloc32(strlen(host) + 1);
if (!host_32) {
errno = ENOMEM;
return EAI_SYSTEM;
}
strcpy(host_32, host);
memcpy(&hints_32, hints, sizeof(struct addrinfo));
r = __getaddrinfo32(host_32, NULL, &hints_32, &res_32);
free(host_32);
if (!r)
*res = res_32;
return r;
}
static void my_freeaddrinfo(struct addrinfo *res)
{
#pragma __pointer_size 32
struct addrinfo *res_32 = (struct addrinfo *)res;
#pragma __pointer_size 64
__freeaddrinfo32(res_32);
}
#define getaddrinfo my_getaddrinfo
#define freeaddrinfo my_freeaddrinfo
#endif
struct dnsentry {
list_entry_1st
uttime absolute_time;
struct lookup_result addr;
list_entry_last
unsigned char name[1];
};
#ifndef THREAD_SAFE_LOOKUP
struct dnsquery *dns_queue = NULL;
#endif
struct dnsquery {
#ifndef THREAD_SAFE_LOOKUP
struct dnsquery *next_in_queue;
#endif
void (*fn)(void *, int);
void *data;
int h;
struct dnsquery **s;
struct lookup_result *addr;
int addr_preference;
unsigned char name[1];
};
static int dns_cache_addr_preference = -1;
static struct list_head dns_cache = {&dns_cache, &dns_cache};
static void end_dns_lookup(struct dnsquery *q, int a);
static int shrink_dns_cache(int u);
static int get_addr_byte(unsigned char **ptr, unsigned char *res, unsigned char stp)
{
unsigned u = 0;
if (!(**ptr >= '0' && **ptr <= '9')) return -1;
while (**ptr >= '0' && **ptr <= '9') {
u = u * 10 + **ptr - '0';
if (u >= 256) return -1;
(*ptr)++;
}
if (stp != 255 && **ptr != stp) return -1;
(*ptr)++;
*res = (unsigned char)u;
return 0;
}
int numeric_ip_address(unsigned char *name, unsigned char address[4])
{
unsigned char dummy[4];
if (!address) address = dummy;
if (get_addr_byte(&name, address + 0, '.')) return -1;
if (get_addr_byte(&name, address + 1, '.')) return -1;
if (get_addr_byte(&name, address + 2, '.')) return -1;
if (get_addr_byte(&name, address + 3, 0)) return -1;
return 0;
}
#ifdef SUPPORT_IPV6
static int extract_ipv6_address(struct addrinfo *p, unsigned char address[16], unsigned *scope_id)
{
/*{
int i;
for (i = 0; i < p->ai_addrlen; i++)
fprintf(stderr, "%02x%c", ((unsigned char *)p->ai_addr)[i], i != p->ai_addrlen - 1 ? ':' : '\n');
}*/
if (p->ai_family == AF_INET6 && (socklen_t)p->ai_addrlen >= (socklen_t)sizeof(struct sockaddr_in6) && p->ai_addr->sa_family == AF_INET6) {
memcpy(address, &((struct sockaddr_in6 *)p->ai_addr)->sin6_addr, 16);
#ifdef SUPPORT_IPV6_SCOPE
*scope_id = ((struct sockaddr_in6 *)p->ai_addr)->sin6_scope_id;
#else
*scope_id = 0;
#endif
return 0;
}
return -1;
}
int numeric_ipv6_address(unsigned char *name, unsigned char address[16], unsigned *scope_id)
{
unsigned char dummy_a[16];
unsigned dummy_s;
int r;
#ifdef HAVE_INET_PTON
struct in6_addr i6a;
#endif
struct addrinfo hints, *res;
if (!address) address = dummy_a;
if (!scope_id) scope_id = &dummy_s;
#ifdef HAVE_INET_PTON
if (inet_pton(AF_INET6, cast_const_char name, &i6a) == 1) {
memcpy(address, &i6a, 16);
*scope_id = 0;
return 0;
}
if (!strchr(cast_const_char name, '%'))
return -1;
#endif
memset(&hints, 0, sizeof(struct addrinfo));
hints.ai_family = AF_INET6;
hints.ai_flags = AI_NUMERICHOST;
if (getaddrinfo(cast_const_char name, NULL, &hints, &res))
return -1;
r = extract_ipv6_address(res, address, scope_id);
freeaddrinfo(res);
return r;
}
#endif
#ifdef EXTERNAL_LOOKUP
static int do_external_lookup(unsigned char *name, unsigned char *host)
{
unsigned char buffer[1024];
unsigned char sink[16];
int rd;
int pi[2];
pid_t f;
unsigned char *n;
int rs;
if (c_pipe(pi) == -1)
return -1;
EINTRLOOP(f, fork());
if (f == -1) {
EINTRLOOP(rs, close(pi[0]));
EINTRLOOP(rs, close(pi[1]));
return -1;
}
if (!f) {
#ifdef HAVE_SETSID
/* without setsid it gets stuck when on background */
EINTRLOOP(rs, setsid());
#endif
EINTRLOOP(rs, close(pi[0]));
EINTRLOOP(rs, dup2(pi[1], 1));
if (rs == -1) _exit(1);
EINTRLOOP(rs, dup2(pi[1], 2));
if (rs == -1) _exit(1);
EINTRLOOP(rs, close(pi[1]));
EINTRLOOP(rs, execlp("host", "host", cast_const_char name, (char *)NULL));
EINTRLOOP(rs, execl("/usr/sbin/host", "host", cast_const_char name, (char *)NULL));
_exit(1);
}
EINTRLOOP(rs, close(pi[1]));
rd = hard_read(pi[0], buffer, sizeof buffer - 1);
if (rd >= 0) buffer[rd] = 0;
if (rd > 0) {
while (hard_read(pi[0], sink, sizeof sink) > 0);
}
EINTRLOOP(rs, close(pi[0]));
/* Don't wait for the process, we already have sigchld handler that
* does cleanup.
* waitpid(f, NULL, 0); */
if (rd < 0) return -1;
/*fprintf(stderr, "query: '%s', result: %s\n", name, buffer);*/
while ((n = strstr(buffer, name))) {
memset(n, '-', strlen(cast_const_char name));
}
for (n = buffer; n < buffer + rd; n++) {
if (*n >= '0' && *n <= '9') {
if (get_addr_byte(&n, host + 0, '.')) goto skip_addr;
if (get_addr_byte(&n, host + 1, '.')) goto skip_addr;
if (get_addr_byte(&n, host + 2, '.')) goto skip_addr;
if (get_addr_byte(&n, host + 3, 255)) goto skip_addr;
return 0;
skip_addr:
if (n >= buffer + rd) break;
}
}
return -1;
}
#endif
#if MAX_ADDRESSES > 1
static int memcmp_host_address(struct host_address *a, struct host_address *b)
{
if (a->af != b->af || a->scope_id != b->scope_id)
return 1;
return memcmp(a->addr, b->addr, sizeof a->addr);
}
#endif
static void add_address(struct lookup_result *host, int af, unsigned char *address, unsigned scope_id, int preference)
{
struct host_address neww;
struct host_address *e, *t;
#if MAX_ADDRESSES > 1
struct host_address *n;
#endif
if (af != AF_INET && preference == ADDR_PREFERENCE_IPV4_ONLY)
return;
#ifdef SUPPORT_IPV6
if (af != AF_INET6 && preference == ADDR_PREFERENCE_IPV6_ONLY)
return;
#endif
if (host->n >= MAX_ADDRESSES)
return;
memset(&neww, 0, sizeof(struct host_address));
neww.af = af;
memcpy(neww.addr, address, af == AF_INET ? 4 : 16);
neww.scope_id = scope_id;
e = &host->a[host->n];
t = e;
#if MAX_ADDRESSES > 1
for (n = host->a; n != e; n++) {
if (!memcmp_host_address(n, &neww))
return;
if (preference == ADDR_PREFERENCE_IPV4 && af == AF_INET && n->af != AF_INET) {
t = n;
break;
}
#ifdef SUPPORT_IPV6
if (preference == ADDR_PREFERENCE_IPV6 && af == AF_INET6 && n->af != AF_INET6) {
t = n;
break;
}
#endif
}
memmove(t + 1, t, (e - t) * sizeof(struct host_address));
#endif
memcpy(t, &neww, sizeof(struct host_address));
host->n++;
}
#ifdef USE_GETADDRINFO
static int use_getaddrinfo(unsigned char *name, struct addrinfo *hints, int preference, struct lookup_result *host)
{
int gai_err;
struct addrinfo *res, *p;
#ifdef OPENVMS
struct addrinfo default_hints;
if (!hints) {
memset(&default_hints, 0, sizeof default_hints);
default_hints.ai_flags = AI_V4MAPPED | AI_ADDRCONFIG;
hints = &default_hints;
}
#endif
gai_err = getaddrinfo(cast_const_char name, NULL, hints, &res);
if (gai_err)
return gai_err;
for (p = res; p; p = p->ai_next) {
if (p->ai_family == AF_INET && (socklen_t)p->ai_addrlen >= (socklen_t)sizeof(struct sockaddr_in) && p->ai_addr->sa_family == AF_INET) {
add_address(host, AF_INET, (unsigned char *)&((struct sockaddr_in *)p->ai_addr)->sin_addr.s_addr, 0, preference);
continue;
}
#ifdef SUPPORT_IPV6
{
unsigned char address[16];
unsigned scope_id;
if (!extract_ipv6_address(p, address, &scope_id)) {
add_address(host, AF_INET6, address, scope_id, preference);
continue;
}
}
#endif
}
freeaddrinfo(res);
return 0;
}
#endif
void rotate_addresses(struct lookup_result *host)
{
#if MAX_ADDRESSES > 1
int first_type, first_different, i;
if (host->n <= 2)
return;
first_type = host->a[0].af;
for (i = 1; i < host->n; i++) {
if (host->a[i].af != first_type) {
first_different = i;
goto do_swap;
}
}
return;
do_swap:
if (first_different > 1) {
struct host_address ha;
memcpy(&ha, &host->a[first_different], sizeof(struct host_address));
memmove(&host->a[2], &host->a[1], (first_different - 1) * sizeof(struct host_address));
memcpy(&host->a[1], &ha, sizeof(struct host_address));
}
#endif
}
void do_real_lookup(unsigned char *name, int preference, struct lookup_result *host)
{
unsigned char address[16];
#ifdef SUPPORT_IPV6
size_t nl;
#endif
memset(host, 0, sizeof(struct lookup_result));
if (strlen(cast_const_char name) >= 6 && !casestrcmp(name + strlen(cast_const_char name) - 6, cast_uchar ".onion"))
goto ret;
if (!support_ipv6) preference = ADDR_PREFERENCE_IPV4_ONLY;
if (!numeric_ip_address(name, address)) {
add_address(host, AF_INET, address, 0, preference);
goto ret;
}
#ifdef SUPPORT_IPV6
nl = strlen(cast_const_char name);
if (name[0] == '[' && name[nl - 1] == ']') {
unsigned char *n2 = cast_uchar strdup(cast_const_char(name + 1));
if (n2) {
unsigned scope_id;
n2[nl - 2] = 0;
if (!numeric_ipv6_address(n2, address, &scope_id)) {
free(n2);
add_address(host, AF_INET6, address, scope_id, preference);
goto ret;
}
free(n2);
}
} else {
unsigned scope_id;
if (!numeric_ipv6_address(name, address, &scope_id)) {
add_address(host, AF_INET6, address, scope_id, preference);
goto ret;
}
}
#endif
#if defined(USE_GETADDRINFO)
use_getaddrinfo(name, NULL, preference, host);
#if defined(SUPPORT_IPV6) && defined(EXTRA_IPV6_LOOKUP)
if ((preference == ADDR_PREFERENCE_IPV4 && !host->n) ||
preference == ADDR_PREFERENCE_IPV6 ||
preference == ADDR_PREFERENCE_IPV6_ONLY) {
struct addrinfo hints;
int i;
for (i = 0; i < host->n; i++)
if (host->a[i].af == AF_INET6)
goto already_have_inet6;
memset(&hints, 0, sizeof hints);
hints.ai_family = AF_INET6;
hints.ai_flags = 0;
use_getaddrinfo(name, &hints, preference, host);
}
already_have_inet6:;
#endif
#elif defined(HAVE_GETHOSTBYNAME)
{
int i;
struct hostent *hst;
if ((hst = gethostbyname(cast_const_char name))) {
if (hst->h_addrtype != AF_INET || hst->h_length != 4 || !hst->h_addr)
goto ret;
#ifdef h_addr
for (i = 0; hst->h_addr_list[i]; i++) {
add_address(host, AF_INET, cast_uchar hst->h_addr_list[i], 0, preference);
}
#else
add_address(host, AF_INET, cast_uchar hst->h_addr, 0, preference);
#endif
goto ret;
}
}
#endif
#ifdef EXTERNAL_LOOKUP
if (!do_external_lookup(name, address)) {
add_address(host, AF_INET, address, 0, preference);
goto ret;
}
#endif
ret:
return;
}
#ifndef NO_ASYNC_LOOKUP
static void lookup_fn(void *q_, int h)
{
struct dnsquery *q = (struct dnsquery *)q_;
struct lookup_result host;
do_real_lookup(q->name, q->addr_preference, &host);
/*{
int i;
for (i = 0; i < sizeof(struct lookup_result); i++) {
if (i == 1) portable_sleep(1000);
hard_write(h, (unsigned char *)&host + i, 1);
}
}*/
hard_write(h, (unsigned char *)&host, sizeof(struct lookup_result));
}
static void end_real_lookup(void *q_)
{
struct dnsquery *q = (struct dnsquery *)q_;
int r = 1;
int rs;
if (!q->addr || hard_read(q->h, (unsigned char *)q->addr, sizeof(struct lookup_result)) != sizeof(struct lookup_result) || !q->addr->n) goto end;
r = 0;
end:
set_handlers(q->h, NULL, NULL, NULL);
EINTRLOOP(rs, close(q->h));
end_dns_lookup(q, r);
}
#endif
static int do_lookup(struct dnsquery *q, int force_async)
{
/*debug("starting lookup for %s", q->name);*/
#ifndef NO_ASYNC_LOOKUP
if (!async_lookup && !force_async) {
#endif
#ifndef NO_ASYNC_LOOKUP
sync_lookup:
#endif
do_real_lookup(q->name, q->addr_preference, q->addr);
end_dns_lookup(q, !q->addr->n);
return 0;
#ifndef NO_ASYNC_LOOKUP
} else {
q->h = start_thread(lookup_fn, q, (int)((unsigned char *)strchr(cast_const_char q->name, 0) + 1 - (unsigned char *)q), 1);
if (q->h == -1) goto sync_lookup;
set_handlers(q->h, end_real_lookup, NULL, q);
return 1;
}
#endif
}
static int do_queued_lookup(struct dnsquery *q)
{
#ifndef THREAD_SAFE_LOOKUP
q->next_in_queue = NULL;
if (!dns_queue) {
dns_queue = q;
/*debug("direct lookup");*/
#endif
return do_lookup(q, 0);
#ifndef THREAD_SAFE_LOOKUP
} else {
/*debug("queuing lookup for %s", q->name);*/
if (dns_queue->next_in_queue) internal_error("DNS queue corrupted");
dns_queue->next_in_queue = q;
dns_queue = q;
return 1;
}
#endif
}
static void check_dns_cache_addr_preference(void)
{
if (dns_cache_addr_preference != ipv6_options.addr_preference) {
shrink_dns_cache(SH_FREE_ALL);
dns_cache_addr_preference = ipv6_options.addr_preference;
}
}
static int find_in_dns_cache(unsigned char *name, struct dnsentry **dnsentry)
{
struct dnsentry *e;
struct list_head *le;
check_dns_cache_addr_preference();
foreach(struct dnsentry, e, le, dns_cache)
if (!casestrcmp(e->name, name)) {
del_from_list(e);
add_to_list(dns_cache, e);
*dnsentry = e;
return 0;
}
return -1;
}
static void free_dns_entry(struct dnsentry *dnsentry)
{
del_from_list(dnsentry);
mem_free(dnsentry);
}
static void end_dns_lookup(struct dnsquery *q, int a)
{
struct dnsentry *dnsentry;
size_t sl;
void (*fn)(void *, int);
void *data;
/*debug("end lookup %s", q->name);*/
#ifndef THREAD_SAFE_LOOKUP
if (q->next_in_queue) {
/*debug("processing next in queue: %s", q->next_in_queue->name);*/
do_lookup(q->next_in_queue, 1);
} else dns_queue = NULL;
#endif
if (!q->fn || !q->addr) {
free(q);
return;
}
if (!find_in_dns_cache(q->name, &dnsentry)) {
if (a) {
memcpy(q->addr, &dnsentry->addr, sizeof(struct lookup_result));
a = 0;
goto e;
}
free_dns_entry(dnsentry);
}
if (a) goto e;
if (q->addr_preference != ipv6_options.addr_preference) goto e;
check_dns_cache_addr_preference();
sl = strlen(cast_const_char q->name);
if (sl > MAXINT - sizeof(struct dnsentry)) overalloc();
dnsentry = mem_alloc(sizeof(struct dnsentry) + sl);
strcpy(cast_char dnsentry->name, cast_const_char q->name);
memcpy(&dnsentry->addr, q->addr, sizeof(struct lookup_result));
dnsentry->absolute_time = get_absolute_time();
add_to_list(dns_cache, dnsentry);
e:
if (q->s) *q->s = NULL;
fn = q->fn;
data = q->data;
free(q);
fn(data, a);
}
int find_host_no_cache(unsigned char *name, struct lookup_result *addr, void **qp, void (*fn)(void *, int), void *data)
{
struct dnsquery *q;
retry:
q = (struct dnsquery *)malloc(sizeof(struct dnsquery) + strlen(cast_const_char name));
if (!q) {
if (out_of_memory(0, NULL, 0))
goto retry;
fn(data, 1);
return 0;
}
q->fn = fn;
q->data = data;
q->s = (struct dnsquery **)qp;
q->addr = addr;
q->addr_preference = ipv6_options.addr_preference;
strcpy(cast_char q->name, cast_const_char name);
if (qp) *qp = q;
return do_queued_lookup(q);
}
int find_host(unsigned char *name, struct lookup_result *addr, void **qp, void (*fn)(void *, int), void *data)
{
struct dnsentry *dnsentry;
if (qp) *qp = NULL;
if (!find_in_dns_cache(name, &dnsentry)) {
if (get_absolute_time() - dnsentry->absolute_time > DNS_TIMEOUT) goto timeout;
memcpy(addr, &dnsentry->addr, sizeof(struct lookup_result));
fn(data, 0);
return 0;
}
timeout:
return find_host_no_cache(name, addr, qp, fn, data);
}
void kill_dns_request(void **qp)
{
struct dnsquery *q = *qp;
q->fn = NULL;
q->addr = NULL;
*qp = NULL;
}
#ifndef NO_ASYNC_LOOKUP
static void dns_prefetch_end(void *addr_, int status)
{
struct lookup_result *addr = (struct lookup_result *)addr_;
free(addr);
}
#endif
void dns_prefetch(unsigned char *name)
{
#ifndef NO_ASYNC_LOOKUP
struct lookup_result *addr;
if (!async_lookup)
return;
addr = (struct lookup_result *)malloc(sizeof(struct lookup_result));
if (!addr)
return;
find_host(name, addr, NULL, dns_prefetch_end, addr);
#endif
}
#if MAX_ADDRESSES > 1
void dns_set_priority(unsigned char *name, struct host_address *address, int prefer)
{
int i;
struct dnsentry *dnsentry;
if (find_in_dns_cache(name, &dnsentry))
return;
for (i = 0; i < dnsentry->addr.n; i++)
if (!memcmp_host_address(&dnsentry->addr.a[i], address)) goto found_it;
return;
found_it:
if (prefer) {
memmove(&dnsentry->addr.a[1], &dnsentry->addr.a[0], i * sizeof(struct host_address));
memcpy(&dnsentry->addr.a[0], address, sizeof(struct host_address));
} else {
memmove(&dnsentry->addr.a[i], &dnsentry->addr.a[i + 1], (dnsentry->addr.n - i - 1) * sizeof(struct host_address));
memcpy(&dnsentry->addr.a[dnsentry->addr.n - 1], address, sizeof(struct host_address));
}
}
#endif
void dns_clear_host(unsigned char *name)
{
struct dnsentry *dnsentry;
if (find_in_dns_cache(name, &dnsentry))
return;
free_dns_entry(dnsentry);
}
unsigned long dns_info(int type)
{
switch (type) {
case CI_FILES:
return list_size(&dns_cache);
default:
internal_error("dns_info: bad request");
}
return 0;
}
static int shrink_dns_cache(int u)
{
uttime now = get_absolute_time();
struct dnsentry *d;
struct list_head *ld;
int f = 0;
if (u == SH_FREE_SOMETHING && !list_empty(dns_cache)) {
d = list_struct(dns_cache.prev, struct dnsentry);
goto delete_last;
}
foreach(struct dnsentry, d, ld, dns_cache) if (u == SH_FREE_ALL || now - d->absolute_time > DNS_TIMEOUT) {
delete_last:
ld = d->list_entry.prev;
free_dns_entry(d);
f = ST_SOMETHING_FREED;
}
return f | (list_empty(dns_cache) ? ST_CACHE_EMPTY : 0);
}
unsigned char *print_address(struct host_address *a)
{
#define SCOPE_ID_LEN 11
#ifdef SUPPORT_IPV6
static unsigned char buffer[INET6_ADDRSTRLEN + SCOPE_ID_LEN];
#else
static unsigned char buffer[INET_ADDRSTRLEN + SCOPE_ID_LEN];
#endif
#ifdef HAVE_INET_NTOP
union {
struct in_addr in;
#ifdef SUPPORT_IPV6
struct in6_addr in6;
#endif
char pad[16];
} u;
memcpy(&u, a->addr, 16);
if (!inet_ntop(a->af, &u, cast_char buffer, sizeof buffer - SCOPE_ID_LEN))
return NULL;
#else
if (a->af == AF_INET)
snprintf(cast_char buffer, sizeof buffer, "%d.%d.%d.%d", a->addr[0], a->addr[1], a->addr[2], a->addr[3]);
#ifdef SUPPORT_IPV6
else if (a->af == AF_INET6)
snprintf(cast_char buffer, sizeof buffer, "%x:%x:%x:%x:%x:%x:%x:%x",
(a->addr[0] << 8) | a->addr[1],
(a->addr[2] << 8) | a->addr[3],
(a->addr[4] << 8) | a->addr[5],
(a->addr[6] << 8) | a->addr[7],
(a->addr[8] << 8) | a->addr[9],
(a->addr[10] << 8) | a->addr[11],
(a->addr[12] << 8) | a->addr[13],
(a->addr[14] << 8) | a->addr[15]);
#endif
else
return NULL;
#endif
if (a->scope_id) {
unsigned char *end = cast_uchar strchr(cast_const_char buffer, 0);
snprintf(cast_char end, buffer + sizeof(buffer) - end, "%%%u", a->scope_id);
}
return buffer;
}
int ipv6_full_access(void)
{
#ifdef SUPPORT_IPV6
/*
* Test if we can access global IPv6 address space.
* This doesn't send anything anywhere, it just creates an UDP socket,
* connects it and closes it.
*/
struct sockaddr_in6 sin6;
int h, c, rs;
if (!support_ipv6) return 0;
h = c_socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
if (h == -1) return 0;
memset(&sin6, 0, sizeof sin6);
sin6.sin6_family = AF_INET6;
sin6.sin6_port = htons(1024);
memcpy(&sin6.sin6_addr.s6_addr, "\052\001\004\060\000\015\000\000\002\314\236\377\376\044\176\032", 16);
EINTRLOOP(c, connect(h, (struct sockaddr *)(void *)&sin6, sizeof sin6));
EINTRLOOP(rs, close(h));
if (!c) return 1;
#endif
return 0;
}
#ifdef FLOOD_MEMORY
void flood_memory(void)
{
struct list_head list;
size_t s = 32768 * 32;
struct dnsentry *de;
dns_cache_addr_preference = ipv6_options.addr_preference;
#if defined(HAVE__HEAPMIN)
_heapmin();
#endif
init_list(list);
while (!list_empty(dns_cache)) {
de = list_struct(dns_cache.prev, struct dnsentry);
del_from_list(de);
add_to_list(list, de);
}
while (1) {
while ((de = mem_alloc_mayfail(s))) {
de->absolute_time = get_absolute_time();
memset(&de->addr, 0, sizeof de->addr);
de->name[0] = 0;
add_to_list(list, de);
}
if (s == sizeof(struct dnsentry)) break;
s = s / 2;
if (s < sizeof(struct dnsentry)) s = sizeof(struct dnsentry);
}
while (!list_empty(list)) {
de = list_struct(list.prev, struct dnsentry);
del_from_list(de);
add_to_list(dns_cache, de);
}
}
#endif
void init_dns(void)
{
register_cache_upcall(shrink_dns_cache, 0, cast_uchar "dns");
#ifdef FLOOD_MEMORY
flood_memory();
#endif
#ifdef SUPPORT_IPV6
{
int h, rs;
h = c_socket(AF_INET6, SOCK_STREAM, 0);
if (h == -1) {
support_ipv6 = 0;
} else {
EINTRLOOP(rs, close(h));
support_ipv6 = 1;
}
}
#endif
}