forked from traviscross/mtr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dns.c
1499 lines (1334 loc) · 37.2 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
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
mtr -- a network diagnostic tool
Copyright (C) 1997,1998 Matt Kimball
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
Non-blocking DNS portion --
Copyright (C) 1998 by Simon Kirby <[email protected]>
Released under GPL, as above.
*/
#include <config.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/select.h>
#include <sys/stat.h>
#include <sys/errno.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#ifndef __APPLE__
#define BIND_8_COMPAT
#endif
#include <arpa/nameser.h>
#ifdef HAVE_ARPA_NAMESER_COMPAT_H
#include <arpa/nameser_compat.h>
#endif
#include <netdb.h>
#include <resolv.h>
#include <unistd.h>
#include <fcntl.h>
#include <ctype.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <time.h>
#include "mtr.h"
#include "dns.h"
#include "net.h"
#ifdef ENABLE_IPV6
#ifdef __GLIBC__
#define NSCOUNT6 myres._u._ext.nscount6
#define NSSOCKADDR6(i) (myres._u._ext.nsaddrs[i])
#else
#define NSCOUNT6 myres.nscount
#define NSSOCKADDR6(i) (&(myres._u._ext.ext->nsaddrs[i].sin6))
#endif
#endif
#ifdef NO_STRERROR
extern int sys_nerr;
extern char *sys_errlist[];
#define strerror(errno) (((errno) >= 0 && (errno) < sys_nerr) ? sys_errlist[errno] : "unlisted error")
#endif
#if !HAVE_DECL_ERRNO
/* Hmm, it seems Irix requires this */
extern int errno;
#endif
extern int af;
/* Defines */
#undef Debug
#undef CorruptCheck
#undef WipeFrees
#undef WipeMallocs
#define BashSize 8192 /* Size of hash tables */
#define BashModulo(x) ((x) & 8191) /* Modulo for hash table size: */
#define HostnameLength 255 /* From RFC */
#define ResRetryDelay1 3
#define ResRetryDelay2 4
#define ResRetryDelay3 5
/* Macros */
#define nonull(s) (s) ? s : nullstring
/* Structures */
struct resolve {
struct resolve *next;
struct resolve *previous;
struct resolve *nextid;
struct resolve *previousid;
struct resolve *nextip;
struct resolve *previousip;
struct resolve *nexthost;
struct resolve *previoushost;
float expiretime; /* Fucking HPUX has a problem with "double" here. */
char *hostname;
ip_t ip;
word id;
byte state;
};
/* Non-blocking nameserver interface routines */
#define MaxPacketsize (PACKETSZ)
#define DomainLength (MAXDNAME)
#define OpcodeCount 3
char *opcodes[OpcodeCount+1] = {
"standard query",
"inverse query",
"server status request",
"unknown",
};
#define ResponsecodeCount 6
char *responsecodes[ResponsecodeCount+1] = {
"no error",
"format error in query",
"server failure",
"queried domain name does not exist",
"requested query type not implemented",
"refused by name server",
"unknown error",
};
#define ResourcetypeCount 17
char *resourcetypes[ResourcetypeCount+1] = {
"unknown type",
"A: host address",
"NS: authoritative name server",
"MD: mail destination (OBSOLETE)",
"MF: mail forwarder (OBSOLETE)",
"CNAME: name alias",
"SOA: authority record",
"MB: mailbox domain name (EXPERIMENTAL)",
"MG: mail group member (EXPERIMENTAL)",
"MR: mail rename domain name (EXPERIMENTAL)",
"NULL: NULL RR (EXPERIMENTAL)",
"WKS: well known service description",
"PTR: domain name pointer",
"HINFO: host information",
"MINFO: mailbox or mail list information",
"MX: mail exchange",
"TXT: text string",
"unknown type",
};
#define ClasstypeCount 5
char *classtypes[ClasstypeCount+1] = {
"unknown class",
"IN: the Internet",
"CS: CSNET (OBSOLETE)",
"CH: CHAOS",
"HS: Hesoid [Dyer 87]",
"unknown class"
};
char *rrtypes[] = {
"Unknown",
"Query",
"Answer",
"Authority reference",
"Resource reference",
};
/* Please don't use a trailing comma in enumerations: It doesn't
work on all compilers */
enum {
RR_UNKNOWN,
RR_QUERY,
RR_ANSWER,
RR_AUTHORITY,
RR_RESOURCE
};
typedef struct {
word id; /* Packet id */
byte databyte_a;
/* rd:1 recursion desired
* tc:1 truncated message
* aa:1 authoritive answer
* opcode:4 purpose of message
* qr:1 response flag
*/
byte databyte_b;
/* rcode:4 response code
* unassigned:2 unassigned bits
* pr:1 primary server required (non standard)
* ra:1 recursion available
*/
word qdcount; /* Query record count */
word ancount; /* Answer record count */
word nscount; /* Authority reference record count */
word arcount; /* Resource reference record count */
} packetheader;
#ifndef HFIXEDSZ
#define HFIXEDSZ (sizeof(packetheader))
#endif
/*
* Byte order independent macros for packetheader
*/
#define getheader_rd(x) (x->databyte_a & 1)
#define getheader_tc(x) ((x->databyte_a >> 1) & 1)
#define getheader_aa(x) ((x->databyte_a >> 2) & 1)
#define getheader_opcode(x) ((x->databyte_a >> 3) & 15)
#define getheader_qr(x) (x->databyte_a >> 7)
#define getheader_rcode(x) (x->databyte_b & 15)
#define getheader_pr(x) ((x->databyte_b >> 6) & 1)
#define getheader_ra(x) (x->databyte_b >> 7)
#if 0
/* The execution order inside an expression is undefined! That means that
this might work, but then again, it might not... */
#define sucknetword(x) (((word)*(x) << 8) | (((x)+= 2)[-1]))
#define sucknetshort(x) (((short)*(x) << 8) | (((x)+= 2)[-1]))
#define sucknetdword(x) (((dword)*(x) << 24) | ((x)[1] << 16) | ((x)[2] << 8) | (((x)+= 4)[-1]))
#define sucknetlong(x) (((long)*(x) << 24) | ((x)[1] << 16) | ((x)[2] << 8) | (((x)+= 4)[-1]))
#else
#define sucknetword(x) ((x)+=2,((word) (((x)[-2] << 8) | ((x)[-1] << 0))))
#define sucknetshort(x) ((x)+=2,((short) (((x)[-2] << 8) | ((x)[-1] << 0))))
#define sucknetdword(x) ((x)+=4,((dword) (((x)[-4] << 24) | ((x)[-3] << 16) | \
((x)[-2] << 8) | ((x)[-1] << 0))))
#define sucknetlong(x) ((x)+=4,((long) (((x)[-4] << 24) | ((x)[-3] << 16) | \
((x)[-2] << 8) | ((x)[-1] << 0))))
#endif
enum {
STATE_FINISHED,
STATE_FAILED,
STATE_PTRREQ1,
STATE_PTRREQ2,
STATE_PTRREQ3
};
#define Is_PTR(x) ((x->state == STATE_PTRREQ1) || (x->state == STATE_PTRREQ2) || (x->state == STATE_PTRREQ3))
dword resrecvbuf[(MaxPacketsize + 7) >> 2]; /* MUST BE DWORD ALIGNED */
struct resolve *idbash[BashSize];
struct resolve *ipbash[BashSize];
struct resolve *hostbash[BashSize];
struct resolve *expireresolves = NULL;
struct resolve *lastresolve = NULL;
struct logline *streamlog = NULL;
struct logline *lastlog = NULL;
ip_t alignedip;
ip_t localhost;
#ifdef ENABLE_IPV6
ip_t localhost6;
#endif
double sweeptime;
#ifdef Debug
int debug = 1;
#else
int debug = 0;
#endif
dword mem = 0;
dword res_iplookupsuccess = 0;
dword res_reversesuccess = 0;
dword res_nxdomain = 0;
dword res_nserror = 0;
dword res_hostipmismatch = 0;
dword res_unknownid = 0;
dword res_resend = 0;
dword res_timeout = 0;
dword resolvecount = 0;
long idseed = 0xdeadbeef;
long aseed;
#ifdef ENABLE_IPV6
struct sockaddr_storage from_sastruct;
struct sockaddr_in6 * from6 = (struct sockaddr_in6 *) &from_sastruct;
#else
struct sockaddr_in from_sastruct;
#endif
struct sockaddr_in * from4 = (struct sockaddr_in *) &from_sastruct;
struct sockaddr * from = (struct sockaddr *) &from_sastruct;
int resfd;
#ifdef ENABLE_IPV6
int resfd6;
#endif
socklen_t fromlen = sizeof from_sastruct;
char tempstring[16384+1+1];
char sendstring[1024+1];
char namestring[1024+1];
char stackstring[1024+1];
char nullstring[] = "";
int use_dns = 1;
#ifdef res_ninit
#define MY_RES_INIT() res_ninit(&myres);
#define RES_MKQUERY(a, b, c, d, e, f, g, h, i) \
res_nmkquery(&myres, a, b, c, d, e, f, g, h, i)
struct __res_state myres;
#else
#define MY_RES_INIT() res_init();
#define RES_MKQUERY(a, b, c, d, e, f, g, h, i) \
res_mkquery(a, b, c, d, e, f, g, h, i)
#define myres _res
#endif
/* Code */
#ifdef CorruptCheck
#define TOT_SLACK 2
#define HEAD_SLACK 1
/* Need an entry for sparc systems here too.
Don't try this on Sparc for now. */
#else
#ifdef sparc
#define TOT_SLACK 2
#define HEAD_SLACK 2
#else
#define TOT_SLACK 1
#define HEAD_SLACK 1
#endif
#endif
void *statmalloc(size_t size)
{
void *p;
size_t mallocsize;
mem+= size;
mallocsize = size + TOT_SLACK * sizeof(dword);
p = malloc(mallocsize);
if (!p) {
fprintf(stderr,"malloc() of %u bytes failed: %s\n", (unsigned int)size, strerror(errno));
exit(-1);
}
*((dword *)p) = (dword)size;
#ifdef CorruptCheck
*(byte *)((char *)p + size + sizeof(dword) + sizeof(byte) * 0) = 0xde;
*(byte *)((char *)p + size + sizeof(dword) + sizeof(byte) * 1) = 0xad;
*(byte *)((char *)p + size + sizeof(dword) + sizeof(byte) * 2) = 0xbe;
*(byte *)((char *)p + size + sizeof(dword) + sizeof(byte) * 3) = 0xef;
#endif
p = (void *)((dword *)p + HEAD_SLACK);
#ifdef WipeMallocs
memset(p,0xf0,size);
#endif
return p;
}
void statfree(void *p)
{
if (p) {
if (*((dword *)p - HEAD_SLACK) == 0) {
fprintf(stderr,"ERROR: Attempt to free pointer twice.\n");
abort();
exit(-1);
} else {
if (*((dword *)p - HEAD_SLACK) > 8192) {
fprintf (stderr,"ERROR: Corrupted free() buffer. (header)\n");
abort();
exit(-1);
}
#ifdef CorruptCheck
if ((*(byte *)((char *)p + (*((dword *)p - 1)) + sizeof(byte) * 0) != 0xde) ||
(*(byte *)((char *)p + (*((dword *)p - 1)) + sizeof(byte) * 1) != 0xad) ||
(*(byte *)((char *)p + (*((dword *)p - 1)) + sizeof(byte) * 2) != 0xbe) ||
(*(byte *)((char *)p + (*((dword *)p - 1)) + sizeof(byte) * 3) != 0xef)) {
fprintf(stderr,"ERROR: Corrupted free() buffer. (footer)\n");
abort();
exit(-1);
}
#endif
mem-= *((dword *)p - HEAD_SLACK);
#ifdef WipeFrees
memset(p,0xfe,*((dword *)p - HEAD_SLACK));
*((dword *)p - 1) = 0;
#endif
free((dword *)p - HEAD_SLACK);
}
}
}
char *strtdiff(char *d,long signeddiff)
{
dword diff;
dword seconds,minutes,hours;
long days;
if ((diff = labs(signeddiff))) {
seconds = diff % 60; diff/= 60;
minutes = diff % 60; diff/= 60;
hours = diff % 24;
days = signeddiff / (60 * 60 * 24);
if (days)
sprintf(d,"%lid",days);
else
*d = '\0';
if (hours)
sprintf(d + strlen(d),"%luh",hours);
if (minutes)
sprintf(d + strlen(d),"%lum",minutes);
if (seconds)
sprintf(d + strlen(d),"%lus",seconds);
} else
sprintf(d,"0s");
return d;
}
int issetfd(fd_set *set,int fd)
{
return (int)((FD_ISSET(fd,set)) && 1);
}
void setfd(fd_set *set,int fd)
{
FD_SET(fd,set);
}
void clearfd(fd_set *set,int fd)
{
FD_CLR(fd,set);
}
void clearset(fd_set *set)
{
FD_ZERO(set);
}
char *strlongip(ip_t * ip)
{
#ifdef ENABLE_IPV6
static char addrstr[INET6_ADDRSTRLEN];
return (char *) inet_ntop( af, ip, addrstr, sizeof addrstr );
#else
return inet_ntoa( *ip );
#endif
}
int longipstr( char *s, ip_t *dst, int af )
{
#ifdef ENABLE_IPV6
return inet_pton( af, s, dst );
#else
return inet_aton( s, dst );
#endif
}
struct hostent * dns_forward(const char *name)
{
struct hostent *host;
if ((host = gethostbyname(name)))
return host;
else
return NULL;
}
int dns_waitfd(void)
{
return resfd;
}
#ifdef ENABLE_IPV6
int dns_waitfd6(void)
{
return resfd6;
}
#endif
void dns_open(void)
{
int option,i;
if (!dns) return;
MY_RES_INIT();
if (!myres.nscount) {
fprintf(stderr,"No nameservers defined.\n");
exit(-1);
}
myres.options|= RES_RECURSE | RES_DEFNAMES | RES_DNSRCH;
resfd = socket(AF_INET, SOCK_DGRAM, 0);
if (resfd == -1) {
fprintf(stderr,
"Unable to allocate IPv4 socket for nameserver communication: %s\n",
strerror(errno));
exit(-1);
}
#ifdef ENABLE_IPV6
resfd6 = socket(AF_INET6, SOCK_DGRAM, 0);
if (resfd6 == -1) {
fprintf(stderr,
"Unable to allocate IPv6 socket for nameserver communication: %s\n",
strerror(errno));
exit(-1);
}
#endif
option = 1;
if (setsockopt(resfd,SOL_SOCKET,SO_BROADCAST,(char *)&option,sizeof(option))) {
fprintf(stderr,
"Unable to setsockopt() on IPv4 nameserver communication socket: %s\n",
strerror(errno));
exit(-1);
}
#ifdef ENABLE_IPV6
if (setsockopt(resfd6,SOL_SOCKET,SO_BROADCAST,(char *)&option,sizeof(option))) {
fprintf(stderr,
"Unable to setsockopt() on IPv6 nameserver communication socket: %s\n",
strerror(errno));
exit(-1);
}
#endif
longipstr( "127.0.0.1", &localhost, AF_INET );
#ifdef ENABLE_IPV6
longipstr( "::1", &localhost6, AF_INET6 );
#endif
aseed = time(NULL) ^ (time(NULL) << 3) ^ (dword)getpid();
for (i = 0;i < BashSize;i++) {
idbash[i] = NULL;
hostbash[i] = NULL;
}
}
struct resolve *allocresolve(void)
{
struct resolve *rp;
rp = (struct resolve *)statmalloc(sizeof(struct resolve));
if (!rp) {
fprintf(stderr,"statmalloc() failed: %s\n",strerror(errno));
exit(-1);
}
memset(rp,0, sizeof(struct resolve));
return rp;
}
dword getidbash(word id)
{
return (dword)BashModulo(id);
}
dword getipbash(ip_t * ip)
{
char *p = (char *) ip;
int i, len = 0;
dword bashvalue = 0;
switch ( af ) {
case AF_INET:
len = sizeof (struct in_addr);
break;
#ifdef ENABLE_IPV6
case AF_INET6:
len = sizeof (struct in6_addr);
break;
#endif
}
for (i = 0; i < len; i++, p++) {
bashvalue^= *p;
bashvalue+= (*p >> 1) + (bashvalue >> 1);
}
return BashModulo(bashvalue);
}
dword gethostbash(char *host)
{
dword bashvalue = 0;
for (;*host;host++) {
bashvalue^= *host;
bashvalue+= (*host >> 1) + (bashvalue >> 1);
}
return BashModulo(bashvalue);
}
void linkresolveid(struct resolve *addrp)
{
struct resolve *rp;
dword bashnum;
bashnum = getidbash(addrp->id);
rp = idbash[bashnum];
if (rp) {
while ((rp->nextid) && (addrp->id > rp->nextid->id))
rp = rp->nextid;
while ((rp->previousid) && (addrp->id < rp->previousid->id))
rp = rp->previousid;
if (rp->id < addrp->id) {
addrp->previousid = rp;
addrp->nextid = rp->nextid;
if (rp->nextid)
rp->nextid->previousid = addrp;
rp->nextid = addrp;
} else {
addrp->previousid = rp->previousid;
addrp->nextid = rp;
if (rp->previousid)
rp->previousid->nextid = addrp;
rp->previousid = addrp;
}
} else
addrp->nextid = addrp->previousid = NULL;
idbash[bashnum] = addrp;
}
void unlinkresolveid(struct resolve *rp)
{
dword bashnum;
bashnum = getidbash(rp->id);
if (idbash[bashnum] == rp)
idbash[bashnum] = (rp->previousid)? rp->previousid : rp->nextid;
if (rp->nextid)
rp->nextid->previousid = rp->previousid;
if (rp->previousid)
rp->previousid->nextid = rp->nextid;
}
void linkresolvehost(struct resolve *addrp)
{
struct resolve *rp;
dword bashnum;
bashnum = gethostbash(addrp->hostname);
rp = hostbash[bashnum];
if (rp) {
while ((rp->nexthost) && (strcasecmp(addrp->hostname,rp->nexthost->hostname) < 0))
rp = rp->nexthost;
while ((rp->previoushost) && (strcasecmp(addrp->hostname,rp->previoushost->hostname) > 0))
rp = rp->previoushost;
if (strcasecmp(addrp->hostname,rp->hostname) < 0) {
addrp->previoushost = rp;
addrp->nexthost = rp->nexthost;
if (rp->nexthost)
rp->nexthost->previoushost = addrp;
rp->nexthost = addrp;
} else {
addrp->previoushost = rp->previoushost;
addrp->nexthost = rp;
if (rp->previoushost)
rp->previoushost->nexthost = addrp;
rp->previoushost = addrp;
}
} else
addrp->nexthost = addrp->previoushost = NULL;
hostbash[bashnum] = addrp;
}
void unlinkresolvehost(struct resolve *rp)
{
dword bashnum;
bashnum = gethostbash(rp->hostname);
if (hostbash[bashnum] == rp)
hostbash[bashnum] = (rp->previoushost)? rp->previoushost : rp->nexthost;
if (rp->nexthost)
rp->nexthost->previoushost = rp->previoushost;
if (rp->previoushost)
rp->previoushost->nexthost = rp->nexthost;
statfree(rp->hostname);
}
void linkresolveip(struct resolve *addrp)
{
struct resolve *rp;
dword bashnum;
bashnum = getipbash( &(addrp->ip) );
rp = ipbash[bashnum];
if (rp) {
while ((rp->nextip) &&
( addrcmp( (void *) &(addrp->ip),
(void *) &(rp->nextip->ip), af ) > 0 ))
rp = rp->nextip;
while ((rp->previousip) &&
( addrcmp( (void *) &(addrp->ip),
(void *) &(rp->previousip->ip), af ) < 0 ))
rp = rp->previousip;
if ( addrcmp( (void *) &(rp->ip), (void *) &(addrp->ip), af ) < 0 ) {
addrp->previousip = rp;
addrp->nextip = rp->nextip;
if (rp->nextip)
rp->nextip->previousip = addrp;
rp->nextip = addrp;
} else {
addrp->previousip = rp->previousip;
addrp->nextip = rp;
if (rp->previousip)
rp->previousip->nextip = addrp;
rp->previousip = addrp;
}
} else
addrp->nextip = addrp->previousip = NULL;
ipbash[bashnum] = addrp;
}
void unlinkresolveip(struct resolve *rp)
{
dword bashnum;
bashnum = getipbash( &(rp->ip) );
if (ipbash[bashnum] == rp)
ipbash[bashnum] = (rp->previousip)? rp->previousip : rp->nextip;
if (rp->nextip)
rp->nextip->previousip = rp->previousip;
if (rp->previousip)
rp->previousip->nextip = rp->nextip;
}
void linkresolve(struct resolve *rp)
{
struct resolve *irp;
if (expireresolves) {
irp = expireresolves;
while ((irp->next) && (rp->expiretime >= irp->expiretime)) irp = irp->next;
if (rp->expiretime >= irp->expiretime) {
rp->next = NULL;
rp->previous = irp;
irp->next = rp;
lastresolve = rp;
} else {
rp->previous = irp->previous;
rp->next = irp;
if (irp->previous)
irp->previous->next = rp;
else
expireresolves = rp;
irp->previous = rp;
}
} else {
rp->next = NULL;
rp->previous = NULL;
expireresolves = lastresolve = rp;
}
resolvecount++;
}
void lastlinkresolve(struct resolve *rp)
{
struct resolve *irp;
if (lastresolve) {
irp = lastresolve;
while ((irp->previous) && (rp->expiretime < irp->expiretime)) irp = irp->previous;
while ((irp->next) && (rp->expiretime >= irp->expiretime)) irp = irp->next;
if (rp->expiretime >= irp->expiretime) {
rp->next = NULL;
rp->previous = irp;
irp->next = rp;
lastresolve = rp;
} else {
rp->previous = irp->previous;
rp->next = irp;
if (irp->previous)
irp->previous->next = rp;
else
expireresolves = rp;
irp->previous = rp;
}
} else {
rp->next = NULL;
rp->previous = NULL;
expireresolves = lastresolve = rp;
}
resolvecount++;
}
void untieresolve(struct resolve *rp)
{
if (rp->previous)
rp->previous->next = rp->next;
else
expireresolves = rp->next;
if (rp->next)
rp->next->previous = rp->previous;
else
lastresolve = rp->previous;
resolvecount--;
}
void unlinkresolve(struct resolve *rp)
{
untieresolve(rp);
unlinkresolveid(rp);
unlinkresolveip(rp);
if (rp->hostname)
unlinkresolvehost(rp);
}
struct resolve *findid(word id)
{
struct resolve *rp;
int bashnum;
bashnum = getidbash(id);
rp = idbash[bashnum];
if (rp) {
while ((rp->nextid) && (id >= rp->nextid->id))
rp = rp->nextid;
while ((rp->previousid) && (id <= rp->previousid->id))
rp = rp->previousid;
if (id == rp->id) {
idbash[bashnum] = rp;
return rp;
} else
return NULL;
}
return rp; /* NULL */
}
struct resolve *findhost(char *hostname)
{
struct resolve *rp;
int bashnum;
bashnum = gethostbash(hostname);
rp = hostbash[bashnum];
if (rp) {
while ((rp->nexthost) && (strcasecmp(hostname,rp->nexthost->hostname) >= 0))
rp = rp->nexthost;
while ((rp->previoushost) && (strcasecmp(hostname,rp->nexthost->hostname) <= 0))
rp = rp->previoushost;
if (strcasecmp(hostname,rp->hostname))
return NULL;
else {
hostbash[bashnum] = rp;
return rp;
}
}
return rp; /* NULL */
}
struct resolve *findip(ip_t * ip)
{
struct resolve *rp;
dword bashnum;
bashnum = getipbash(ip);
rp = ipbash[bashnum];
if (rp) {
while ((rp->nextip) &&
( addrcmp( (void *) ip, (void *) &(rp->nextip->ip), af ) >= 0 ))
rp = rp->nextip;
while ((rp->previousip) &&
( addrcmp( (void *) ip, (void *) &(rp->previousip->ip), af ) <= 0 ))
rp = rp->previousip;
if ( addrcmp( (void *) ip, (void *) &(rp->ip), af ) == 0 ) {
ipbash[bashnum] = rp;
return rp;
} else
return NULL;
}
return rp; /* NULL */
}
void restell(char *s)
{
fputs(s,stderr);
fputs("\r",stderr);
}
void dorequest(char *s,int type,word id)
{
packetheader *hp;
int r,i;
unsigned char buf[MaxPacketsize];
r = RES_MKQUERY(QUERY,s,C_IN,type,NULL,0,NULL,(unsigned char*)buf,MaxPacketsize);
if (r == -1) {
restell("Resolver error: Query too large.");
return;
}
hp = (packetheader *)buf;
hp->id = id; /* htons() deliberately left out (redundant) */
#ifdef ENABLE_IPV6
for (i = 0;i < NSCOUNT6;i++) {
if (NSSOCKADDR6(i)->sin6_family == AF_INET6)
(void)sendto(resfd6,buf,r,0,(struct sockaddr *) NSSOCKADDR6(i),
sizeof(struct sockaddr_in6));
}
#endif
for (i = 0;i < myres.nscount;i++)
if (myres.nsaddr_list[i].sin_family == AF_INET)
(void)sendto(resfd,buf,r,0,(struct sockaddr *)&myres.nsaddr_list[i],
sizeof(struct sockaddr));
}
void resendrequest(struct resolve *rp,int type)
{
if (type == T_A) {
dorequest(rp->hostname,type,rp->id);
if (debug) {
snprintf(tempstring, sizeof(tempstring), "Resolver: Sent reverse authentication request for \"%s\".",
rp->hostname);
restell(tempstring);
}
} else if (type == T_PTR) {
switch ( af ) {
case AF_INET:
sprintf(tempstring,"%u.%u.%u.%u.in-addr.arpa",
((byte *)&rp->ip)[3],
((byte *)&rp->ip)[2],
((byte *)&rp->ip)[1],
((byte *)&rp->ip)[0]);
break;
#ifdef ENABLE_IPV6
case AF_INET6:
addr2ip6arpa( &(rp->ip), tempstring );
break;
#endif
}
dorequest(tempstring,type,rp->id);
if (debug) {
snprintf(tempstring, sizeof(tempstring), "Resolver: Sent domain lookup request for \"%s\".",
strlongip( &(rp->ip) ));
restell(tempstring);
}
}
}
void sendrequest(struct resolve *rp,int type)
{
do {
idseed = (((idseed + idseed) | (long)time(NULL)) + idseed - 0x54bad4a) ^ aseed;
aseed^= idseed;
rp->id = (word)idseed;
} while (findid(rp->id));
linkresolveid(rp);
resendrequest(rp,type);
}
void failrp(struct resolve *rp)
{
if (rp->state == STATE_FINISHED)
return;
rp->state = STATE_FAILED;
untieresolve(rp);
if (debug)
restell("Resolver: Lookup failed.\n");