You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/libs/endpoint/matcher.go

52 lines
1.1 KiB

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package endpoint
import (
"net"
"github.com/ryanuber/go-glob"
)
// matcher is a function that given an input returns whether there is a match
type matcher interface {
Match(string) bool
}
var (
_ matcher = (*dnsMatcher)(nil)
_ matcher = (*cidrMatcher)(nil)
)
// DnsMatcher is a function that given an input returns true if there is a
// globbed DNS match
type dnsMatcher struct {
pattern string
}
// Match satisfies the matcher interface
func (m dnsMatcher) Match(in string) bool {
return glob.Glob(m.pattern, in)
}
// cidrMatcher is a function that given an input returns true if the input is
// contained within the given net
type cidrMatcher struct {
ipNet *net.IPNet
}
// Match satisfies the matcher interface
func (m cidrMatcher) Match(in string) bool {
// Can't be created directly since this is unexported so this should never
// actually trigger, but for safety
if m.ipNet == nil {
return false
}
ip := net.ParseIP(in)
if ip == nil {
return false
}
return m.ipNet.Contains(ip)
}