2018-03-19 20:53:57 +00:00
|
|
|
package connect
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
"regexp"
|
2018-03-24 18:46:12 +00:00
|
|
|
"strings"
|
2018-03-26 00:39:18 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2018-03-19 20:53:57 +00:00
|
|
|
)
|
|
|
|
|
2018-03-24 18:39:43 +00:00
|
|
|
// CertURI represents a Connect-valid URI value for a TLS certificate.
|
|
|
|
// The user should type switch on the various implementations in this
|
|
|
|
// package to determine the type of URI and the data encoded within it.
|
|
|
|
//
|
|
|
|
// Note that the current implementations of this are all also SPIFFE IDs.
|
|
|
|
// However, we anticipate that we may accept URIs that are also not SPIFFE
|
|
|
|
// compliant and therefore the interface is named as such.
|
|
|
|
type CertURI interface {
|
2018-03-26 00:39:18 +00:00
|
|
|
// Authorize tests the authorization for this URI as a client
|
|
|
|
// for the given intention. The return value `auth` is only valid if
|
|
|
|
// the second value `match` is true. If the second value `match` is
|
|
|
|
// false, then the intention doesn't match this client and any
|
|
|
|
// result should be ignored.
|
|
|
|
Authorize(*structs.Intention) (auth bool, match bool)
|
|
|
|
|
|
|
|
// URI is the valid URI value used in the cert.
|
2018-03-19 20:53:57 +00:00
|
|
|
URI() *url.URL
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
spiffeIDServiceRegexp = regexp.MustCompile(
|
2018-03-27 03:31:17 +00:00
|
|
|
`^/ns/([^/]+)/dc/([^/]+)/svc/([^/]+)$`)
|
2019-06-27 20:22:07 +00:00
|
|
|
spiffeIDAgentRegexp = regexp.MustCompile(
|
|
|
|
`^/agent/client/dc/([^/]+)/id/([^/]+)$`)
|
2018-03-19 20:53:57 +00:00
|
|
|
)
|
|
|
|
|
2018-10-03 18:18:55 +00:00
|
|
|
// ParseCertURIFromString attempts to parse a string representation of a
|
2019-03-06 17:13:28 +00:00
|
|
|
// certificate URI as a convenience helper around ParseCertURI.
|
2018-10-03 18:18:55 +00:00
|
|
|
func ParseCertURIFromString(input string) (CertURI, error) {
|
|
|
|
// Parse the certificate URI from the string
|
|
|
|
uriRaw, err := url.Parse(input)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ParseCertURI(uriRaw)
|
|
|
|
}
|
|
|
|
|
2018-03-24 18:39:43 +00:00
|
|
|
// ParseCertURI parses a the URI value from a TLS certificate.
|
|
|
|
func ParseCertURI(input *url.URL) (CertURI, error) {
|
2018-03-19 20:53:57 +00:00
|
|
|
if input.Scheme != "spiffe" {
|
|
|
|
return nil, fmt.Errorf("SPIFFE ID must have 'spiffe' scheme")
|
|
|
|
}
|
|
|
|
|
2018-03-27 03:31:17 +00:00
|
|
|
// Path is the raw value of the path without url decoding values.
|
|
|
|
// RawPath is empty if there were no encoded values so we must
|
|
|
|
// check both.
|
|
|
|
path := input.Path
|
|
|
|
if input.RawPath != "" {
|
|
|
|
path = input.RawPath
|
|
|
|
}
|
|
|
|
|
2018-03-19 20:53:57 +00:00
|
|
|
// Test for service IDs
|
2018-03-27 03:31:17 +00:00
|
|
|
if v := spiffeIDServiceRegexp.FindStringSubmatch(path); v != nil {
|
|
|
|
// Determine the values. We assume they're sane to save cycles,
|
|
|
|
// but if the raw path is not empty that means that something is
|
|
|
|
// URL encoded so we go to the slow path.
|
|
|
|
ns := v[1]
|
|
|
|
dc := v[2]
|
|
|
|
service := v[3]
|
|
|
|
if input.RawPath != "" {
|
|
|
|
var err error
|
|
|
|
if ns, err = url.PathUnescape(v[1]); err != nil {
|
|
|
|
return nil, fmt.Errorf("Invalid namespace: %s", err)
|
|
|
|
}
|
|
|
|
if dc, err = url.PathUnescape(v[2]); err != nil {
|
|
|
|
return nil, fmt.Errorf("Invalid datacenter: %s", err)
|
|
|
|
}
|
|
|
|
if service, err = url.PathUnescape(v[3]); err != nil {
|
|
|
|
return nil, fmt.Errorf("Invalid service: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-19 20:53:57 +00:00
|
|
|
return &SpiffeIDService{
|
|
|
|
Host: input.Host,
|
2018-03-27 03:31:17 +00:00
|
|
|
Namespace: ns,
|
|
|
|
Datacenter: dc,
|
|
|
|
Service: service,
|
2018-03-19 20:53:57 +00:00
|
|
|
}, nil
|
2019-06-27 20:22:07 +00:00
|
|
|
} else if v := spiffeIDAgentRegexp.FindStringSubmatch(path); v != nil {
|
|
|
|
// Determine the values. We assume they're sane to save cycles,
|
|
|
|
// but if the raw path is not empty that means that something is
|
|
|
|
// URL encoded so we go to the slow path.
|
|
|
|
dc := v[1]
|
|
|
|
agent := v[2]
|
|
|
|
if input.RawPath != "" {
|
|
|
|
var err error
|
|
|
|
if dc, err = url.PathUnescape(v[1]); err != nil {
|
|
|
|
return nil, fmt.Errorf("Invalid datacenter: %s", err)
|
|
|
|
}
|
|
|
|
if agent, err = url.PathUnescape(v[2]); err != nil {
|
|
|
|
return nil, fmt.Errorf("Invalid node: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &SpiffeIDAgent{
|
|
|
|
Host: input.Host,
|
|
|
|
Datacenter: dc,
|
|
|
|
Agent: agent,
|
|
|
|
}, nil
|
2018-03-19 20:53:57 +00:00
|
|
|
}
|
|
|
|
|
2018-03-24 18:46:12 +00:00
|
|
|
// Test for signing ID
|
|
|
|
if input.Path == "" {
|
|
|
|
idx := strings.Index(input.Host, ".")
|
|
|
|
if idx > 0 {
|
|
|
|
return &SpiffeIDSigning{
|
|
|
|
ClusterID: input.Host[:idx],
|
|
|
|
Domain: input.Host[idx+1:],
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-27 20:22:07 +00:00
|
|
|
return nil, fmt.Errorf("SPIFFE ID is not in the expected format: %s", input.String())
|
2018-03-19 20:53:57 +00:00
|
|
|
}
|