This repository has been archived by the owner on Mar 31, 2022. It is now read-only.
forked from rs/dnscache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dnscache.go
190 lines (172 loc) · 4.4 KB
/
dnscache.go
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
package dnscache
import (
"context"
"net"
"sync"
"time"
"github.com/team-lab/dnscache/internal/singleflight"
)
type Resolver struct {
// Timeout defines the maximum allowed time allowed for a lookup.
Timeout time.Duration
// Resolver is the net.Resolver used to perform actual DNS lookup. If nil,
// net.DefaultResolver is used instead.
Resolver *net.Resolver
once sync.Once
mu sync.RWMutex
cache map[string]*cacheEntry
onCacheMiss func()
}
type cacheEntry struct {
rrs []string
err error
used bool
}
// LookupAddr performs a reverse lookup for the given address, returning a list
// of names mapping to that address.
func (r *Resolver) LookupAddr(ctx context.Context, addr string) (names []string, err error) {
r.once.Do(r.init)
return r.lookup(ctx, "r"+addr)
}
// LookupHost looks up the given host using the local resolver. It returns a
// slice of that host's addresses.
func (r *Resolver) LookupHost(ctx context.Context, host string) (addrs []string, err error) {
r.once.Do(r.init)
return r.lookup(ctx, "h"+host)
}
// Refresh refreshes cached entries which has been used at least once since the
// last Refresh. If clearUnused is true, entries which hasn't be used since the
// last Refresh are removed from the cache.
func (r *Resolver) Refresh(clearUnused bool) {
r.once.Do(r.init)
r.mu.RLock()
update := make([]string, 0, len(r.cache))
for key, entry := range r.cache {
if entry.used {
update = append(update, key)
} else if clearUnused {
delete(r.cache, key)
}
}
r.mu.RUnlock()
for _, key := range update {
r.update(context.Background(), key, false)
}
}
func (r *Resolver) init() {
r.cache = make(map[string]*cacheEntry)
}
// lookupGroup merges lookup calls together for lookups for the same host. The
// lookupGroup key is is the LookupIPAddr.host argument.
var lookupGroup singleflight.Group
func (r *Resolver) lookup(ctx context.Context, key string) (rrs []string, err error) {
var found bool
rrs, err, found = r.load(key)
if !found {
if r.onCacheMiss != nil {
r.onCacheMiss()
}
rrs, err = r.update(ctx, key, true)
}
return
}
func (r *Resolver) update(ctx context.Context, key string, used bool) (rrs []string, err error) {
c := lookupGroup.DoChan(key, r.lookupFunc(key))
select {
case <-ctx.Done():
err = ctx.Err()
if err == context.DeadlineExceeded {
// If DNS request timed out for some reason, force future
// request to start the DNS lookup again rather than waiting
// for the current lookup to complete.
lookupGroup.Forget(key)
}
case res := <-c:
if res.Shared {
// We had concurrent lookups, check if the cache is already updated
// by a friend.
var found bool
rrs, err, found = r.load(key)
if found {
return
}
}
err = res.Err
if err == nil {
rrs, _ = res.Val.([]string)
}
r.mu.Lock()
r.storeLocked(key, rrs, used, err)
r.mu.Unlock()
}
return
}
// lookupFunc returns lookup function for key. The type of the key is stored as
// the first char and the lookup subject is the rest of the key.
func (r *Resolver) lookupFunc(key string) func() (interface{}, error) {
if len(key) == 0 {
panic("lookupFunc with empty key")
}
resolver := net.DefaultResolver
if r.Resolver != nil {
resolver = r.Resolver
}
switch key[0] {
case 'h':
return func() (interface{}, error) {
ctx, cancel := r.getCtx()
defer cancel()
return resolver.LookupHost(ctx, key[1:])
}
case 'r':
return func() (interface{}, error) {
ctx, cancel := r.getCtx()
defer cancel()
return resolver.LookupAddr(ctx, key[1:])
}
default:
panic("lookupFunc invalid key type: " + key)
}
}
func (r *Resolver) getCtx() (ctx context.Context, cancel context.CancelFunc) {
ctx = context.Background()
if r.Timeout > 0 {
ctx, cancel = context.WithTimeout(ctx, r.Timeout)
} else {
cancel = func() {}
}
return
}
func (r *Resolver) load(key string) (rrs []string, err error, found bool) {
r.mu.RLock()
var entry *cacheEntry
entry, found = r.cache[key]
if !found {
r.mu.RUnlock()
return
}
rrs = entry.rrs
err = entry.err
used := entry.used
r.mu.RUnlock()
if !used {
r.mu.Lock()
entry.used = true
r.mu.Unlock()
}
return rrs, err, true
}
func (r *Resolver) storeLocked(key string, rrs []string, used bool, err error) {
if entry, found := r.cache[key]; found {
// Update existing entry in place
entry.rrs = rrs
entry.err = err
entry.used = used
return
}
r.cache[key] = &cacheEntry{
rrs: rrs,
err: err,
used: used,
}
}