-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #404 from weaveworks/scope-364
reverse resolutions for remote side of connections.
- Loading branch information
Showing
6 changed files
with
173 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
package endpoint | ||
|
||
import ( | ||
"net" | ||
"strings" | ||
"time" | ||
|
||
"github.com/bluele/gcache" | ||
) | ||
|
||
const ( | ||
rAddrCacheLen = 500 // Default cache length | ||
rAddrBacklog = 1000 | ||
rAddrCacheExpiration = 30 * time.Minute | ||
) | ||
|
||
type revResFunc func(addr string) (names []string, err error) | ||
|
||
// ReverseResolver is a caching, reverse resolver. | ||
type ReverseResolver struct { | ||
addresses chan string | ||
cache gcache.Cache | ||
Throttle <-chan time.Time // Made public for mocking | ||
Resolver revResFunc | ||
} | ||
|
||
// NewReverseResolver starts a new reverse resolver that performs reverse | ||
// resolutions and caches the result. | ||
func NewReverseResolver() *ReverseResolver { | ||
r := ReverseResolver{ | ||
addresses: make(chan string, rAddrBacklog), | ||
cache: gcache.New(rAddrCacheLen).LRU().Expiration(rAddrCacheExpiration).Build(), | ||
Throttle: time.Tick(time.Second / 10), | ||
Resolver: net.LookupAddr, | ||
} | ||
go r.loop() | ||
return &r | ||
} | ||
|
||
// Get the reverse resolution for an IP address if already in the cache, a | ||
// gcache.NotFoundKeyError error otherwise. Note: it returns one of the | ||
// possible names that can be obtained for that IP. | ||
func (r *ReverseResolver) Get(address string) (string, error) { | ||
val, err := r.cache.Get(address) | ||
if err == nil { | ||
return val.(string), nil | ||
} | ||
if err == gcache.NotFoundKeyError { | ||
// We trigger a asynchronous reverse resolution when not cached | ||
select { | ||
case r.addresses <- address: | ||
default: | ||
} | ||
} | ||
return "", err | ||
} | ||
|
||
func (r *ReverseResolver) loop() { | ||
for request := range r.addresses { | ||
<-r.Throttle // rate limit our DNS resolutions | ||
// and check if the answer is already in the cache | ||
if _, err := r.cache.Get(request); err == nil { | ||
continue | ||
} | ||
names, err := r.Resolver(request) | ||
if err == nil && len(names) > 0 { | ||
name := strings.TrimRight(names[0], ".") | ||
r.cache.Set(request, name) | ||
} | ||
} | ||
} | ||
|
||
// Stop the async reverse resolver. | ||
func (r *ReverseResolver) Stop() { | ||
close(r.addresses) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package endpoint_test | ||
|
||
import ( | ||
"errors" | ||
"testing" | ||
"time" | ||
|
||
. "github.com/weaveworks/scope/probe/endpoint" | ||
"github.com/weaveworks/scope/test" | ||
) | ||
|
||
func TestReverseResolver(t *testing.T) { | ||
tests := map[string]string{ | ||
"1.2.3.4": "test.domain.name", | ||
"4.3.2.1": "im.a.little.tea.pot", | ||
} | ||
|
||
revRes := NewReverseResolver() | ||
defer revRes.Stop() | ||
|
||
// Use a mocked resolver function. | ||
revRes.Resolver = func(addr string) (names []string, err error) { | ||
if name, ok := tests[addr]; ok { | ||
return []string{name}, nil | ||
} | ||
return []string{}, errors.New("invalid IP") | ||
} | ||
|
||
// Up the rate limit so the test runs faster. | ||
revRes.Throttle = time.Tick(time.Millisecond) | ||
|
||
for ip, hostname := range tests { | ||
test.Poll(t, 100*time.Millisecond, hostname, func() interface{} { | ||
result, _ := revRes.Get(ip) | ||
return result | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters