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
|
/* $Id: dnscache.c,v 1.2 2000-03-11 20:37:44 rjkaes Exp $
*
* This is a caching DNS system. When a host name is needed we look it up here
* and see if there is already an answer for it. The domains are placed in a
* hashed linked list. If the name is not here, then we need to look it up and
* add it to the system. This really speeds up the connection to servers since
* the DNS name does not need to be looked up each time. It's kind of cool. :)
*
* Copyright (C) 1999 Robert James Kaes (rjkaes@flarenet.com)
* Copyright (C) 2000 Chris Lightfoot (chris@ex-parrot.com)
*
* 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, 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.
*/
#ifdef HAVE_CONFIG_H
#include <defines.h>
#endif
#include <stdlib.h>
#include <string.h>
#include <netdb.h>
#include <time.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <assert.h>
#include <ctype.h>
#include "utils.h"
#include "dnscache.h"
#define HASH_BOX 25
#define DNSEXPIRE (5 * 60)
struct dnscache_s {
struct in_addr ipaddr;
char *domain;
time_t expire;
struct dnscache_s *next;
};
struct dnscache_s *cache[HASH_BOX];
static unsigned int hash(unsigned char *keystr, unsigned int box)
{
unsigned long hashc = 0;
unsigned char ch;
assert(keystr);
assert(box > 0);
while ((ch = *keystr++))
hashc += tolower(ch);
return hashc % box;
}
int lookup(struct in_addr *addr, char *domain)
{
unsigned int box = hash(domain, HASH_BOX);
struct dnscache_s **rptr = &cache[box];
struct dnscache_s *ptr = cache[box];
assert(domain);
while (ptr && strcasecmp(ptr->domain, domain)) {
rptr = &ptr->next;
ptr = ptr->next;
}
if (ptr && !strcasecmp(ptr->domain, domain)) {
/* Woohoo... found it. Make sure it hasn't expired */
if (difftime(time(NULL), ptr->expire) > DNSEXPIRE) {
/* Oops... expired */
*rptr = ptr->next;
safefree(ptr->domain);
safefree(ptr);
return -1;
}
/* chris - added this so that the routine can be used to just
* look stuff up.
*/
if (addr)
*addr = ptr->ipaddr;
return 0;
}
return -1;
}
int insert(struct in_addr *addr, char *domain)
{
unsigned int box = hash(domain, HASH_BOX);
struct dnscache_s **rptr = &cache[box];
struct dnscache_s *ptr = cache[box];
struct dnscache_s *newptr;
assert(addr);
assert(domain);
while (ptr) {
rptr = &ptr->next;
ptr = ptr->next;
}
if (!(newptr = xmalloc(sizeof(struct dnscache_s)))) {
return -1;
}
if (!(newptr->domain = xstrdup(domain))) {
safefree(newptr);
return -1;
}
newptr->ipaddr = *addr;
newptr->expire = time(NULL);
*rptr = newptr;
newptr->next = ptr;
return 0;
}
int dnscache(struct in_addr *addr, char *domain)
{
struct hostent *resolv;
assert(addr);
assert(domain);
if (inet_aton(domain, (struct in_addr *) addr) != 0)
return 0;
/* Well, we're not dotted-decimal so we need to look it up */
if (lookup(addr, domain) == 0)
return 0;
/* Okay, so not in the list... need to actually look it up. */
if (!(resolv = gethostbyname(domain)))
return -1;
memcpy(addr, resolv->h_addr_list[0], resolv->h_length);
insert(addr, domain);
return 0;
}
static void dnsdelete(unsigned int c, struct dnscache_s *del)
{
struct dnscache_s **rptr;
struct dnscache_s *ptr;
assert(c > 0);
assert(del);
rptr = &cache[c];
ptr = cache[c];
while (ptr && (ptr != del)) {
rptr = &ptr->next;
ptr = ptr->next;
}
if (ptr == del) {
*rptr = ptr->next;
safefree(ptr->domain);
safefree(ptr);
}
}
void dnsclean(void)
{
unsigned int c;
struct dnscache_s *ptr, *tmp;
for (c = 0; c < HASH_BOX; c++) {
ptr = cache[c];
while (ptr) {
tmp = ptr->next;
if (difftime(time(NULL), ptr->expire) > DNSEXPIRE)
dnsdelete(c, ptr);
ptr = tmp;
}
}
}
|