2018-02-28 19:36:54 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
2018-02-28 22:02:00 +00:00
|
|
|
"fmt"
|
2018-02-28 19:36:54 +00:00
|
|
|
"net/http"
|
2018-02-28 23:54:48 +00:00
|
|
|
"strings"
|
2018-02-28 19:36:54 +00:00
|
|
|
|
2018-02-28 23:54:48 +00:00
|
|
|
"github.com/hashicorp/consul/agent/consul"
|
2018-02-28 19:36:54 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
)
|
|
|
|
|
2018-02-28 22:02:00 +00:00
|
|
|
// /v1/connection/intentions
|
|
|
|
func (s *HTTPServer) IntentionEndpoint(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
switch req.Method {
|
|
|
|
case "GET":
|
|
|
|
return s.IntentionList(resp, req)
|
|
|
|
|
|
|
|
case "POST":
|
|
|
|
return s.IntentionCreate(resp, req)
|
|
|
|
|
|
|
|
default:
|
|
|
|
return nil, MethodNotAllowedError{req.Method, []string{"GET", "POST"}}
|
2018-02-28 19:36:54 +00:00
|
|
|
}
|
2018-02-28 22:02:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GET /v1/connect/intentions
|
|
|
|
func (s *HTTPServer) IntentionList(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
// Method is tested in IntentionEndpoint
|
2018-02-28 19:36:54 +00:00
|
|
|
|
|
|
|
var args structs.DCSpecificRequest
|
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var reply structs.IndexedIntentions
|
|
|
|
if err := s.agent.RPC("Intention.List", &args, &reply); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return reply.Intentions, nil
|
|
|
|
}
|
2018-02-28 22:02:00 +00:00
|
|
|
|
|
|
|
// POST /v1/connect/intentions
|
|
|
|
func (s *HTTPServer) IntentionCreate(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
// Method is tested in IntentionEndpoint
|
|
|
|
|
|
|
|
args := structs.IntentionRequest{
|
|
|
|
Op: structs.IntentionOpCreate,
|
|
|
|
}
|
|
|
|
s.parseDC(req, &args.Datacenter)
|
|
|
|
s.parseToken(req, &args.Token)
|
|
|
|
if err := decodeBody(req, &args.Intention, nil); err != nil {
|
|
|
|
resp.WriteHeader(http.StatusBadRequest)
|
|
|
|
fmt.Fprintf(resp, "Request decode failed: %v", err)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var reply string
|
|
|
|
if err := s.agent.RPC("Intention.Apply", &args, &reply); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return intentionCreateResponse{reply}, nil
|
|
|
|
}
|
|
|
|
|
2018-03-02 22:17:21 +00:00
|
|
|
// GET /v1/connect/intentions/match
|
|
|
|
func (s *HTTPServer) IntentionMatch(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
// Prepare args
|
|
|
|
args := &structs.IntentionQueryRequest{Match: &structs.IntentionQueryMatch{}}
|
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
q := req.URL.Query()
|
|
|
|
|
|
|
|
// Extract the "by" query parameter
|
|
|
|
if by, ok := q["by"]; !ok || len(by) != 1 {
|
|
|
|
return nil, fmt.Errorf("required query parameter 'by' not set")
|
|
|
|
} else {
|
|
|
|
switch v := structs.IntentionMatchType(by[0]); v {
|
|
|
|
case structs.IntentionMatchSource, structs.IntentionMatchDestination:
|
|
|
|
args.Match.Type = v
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("'by' parameter must be one of 'source' or 'destination'")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extract all the match names
|
|
|
|
names, ok := q["name"]
|
|
|
|
if !ok || len(names) == 0 {
|
|
|
|
return nil, fmt.Errorf("required query parameter 'name' not set")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the entries in order. The order matters since that is the
|
|
|
|
// order of the returned responses.
|
|
|
|
args.Match.Entries = make([]structs.IntentionMatchEntry, len(names))
|
|
|
|
for i, n := range names {
|
|
|
|
entry, err := parseIntentionMatchEntry(n)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("name %q is invalid: %s", n, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
args.Match.Entries[i] = entry
|
|
|
|
}
|
|
|
|
|
|
|
|
var reply structs.IndexedIntentionMatches
|
|
|
|
if err := s.agent.RPC("Intention.Match", args, &reply); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// We must have an identical count of matches
|
|
|
|
if len(reply.Matches) != len(names) {
|
|
|
|
return nil, fmt.Errorf("internal error: match response count didn't match input count")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use empty list instead of nil.
|
|
|
|
response := make(map[string]structs.Intentions)
|
|
|
|
for i, ixns := range reply.Matches {
|
|
|
|
response[names[i]] = ixns
|
|
|
|
}
|
|
|
|
|
|
|
|
return response, nil
|
|
|
|
}
|
|
|
|
|
2018-02-28 23:54:48 +00:00
|
|
|
// IntentionSpecific handles the endpoint for /v1/connection/intentions/:id
|
|
|
|
func (s *HTTPServer) IntentionSpecific(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
id := strings.TrimPrefix(req.URL.Path, "/v1/connect/intentions/")
|
|
|
|
|
|
|
|
switch req.Method {
|
|
|
|
case "GET":
|
|
|
|
return s.IntentionSpecificGet(id, resp, req)
|
|
|
|
|
|
|
|
case "PUT":
|
2018-03-02 00:53:31 +00:00
|
|
|
return s.IntentionSpecificUpdate(id, resp, req)
|
2018-02-28 23:54:48 +00:00
|
|
|
|
|
|
|
case "DELETE":
|
2018-03-01 23:54:03 +00:00
|
|
|
return s.IntentionSpecificDelete(id, resp, req)
|
2018-02-28 23:54:48 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
return nil, MethodNotAllowedError{req.Method, []string{"GET", "PUT", "DELETE"}}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GET /v1/connect/intentions/:id
|
|
|
|
func (s *HTTPServer) IntentionSpecificGet(id string, resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
// Method is tested in IntentionEndpoint
|
|
|
|
|
|
|
|
args := structs.IntentionQueryRequest{
|
|
|
|
IntentionID: id,
|
|
|
|
}
|
|
|
|
if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var reply structs.IndexedIntentions
|
|
|
|
if err := s.agent.RPC("Intention.Get", &args, &reply); err != nil {
|
|
|
|
// We have to check the string since the RPC sheds the error type
|
|
|
|
if err.Error() == consul.ErrIntentionNotFound.Error() {
|
|
|
|
resp.WriteHeader(http.StatusNotFound)
|
|
|
|
fmt.Fprint(resp, err.Error())
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-03-03 18:12:05 +00:00
|
|
|
// This shouldn't happen since the called API documents it shouldn't,
|
|
|
|
// but we check since the alternative if it happens is a panic.
|
|
|
|
if len(reply.Intentions) == 0 {
|
|
|
|
resp.WriteHeader(http.StatusNotFound)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2018-02-28 23:54:48 +00:00
|
|
|
return reply.Intentions[0], nil
|
|
|
|
}
|
|
|
|
|
2018-03-02 00:53:31 +00:00
|
|
|
// PUT /v1/connect/intentions/:id
|
|
|
|
func (s *HTTPServer) IntentionSpecificUpdate(id string, resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
// Method is tested in IntentionEndpoint
|
|
|
|
|
|
|
|
args := structs.IntentionRequest{
|
|
|
|
Op: structs.IntentionOpUpdate,
|
|
|
|
}
|
|
|
|
s.parseDC(req, &args.Datacenter)
|
|
|
|
s.parseToken(req, &args.Token)
|
|
|
|
if err := decodeBody(req, &args.Intention, nil); err != nil {
|
|
|
|
resp.WriteHeader(http.StatusBadRequest)
|
|
|
|
fmt.Fprintf(resp, "Request decode failed: %v", err)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the ID from the URL
|
|
|
|
args.Intention.ID = id
|
|
|
|
|
|
|
|
var reply string
|
|
|
|
if err := s.agent.RPC("Intention.Apply", &args, &reply); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-03-01 23:54:03 +00:00
|
|
|
// DELETE /v1/connect/intentions/:id
|
|
|
|
func (s *HTTPServer) IntentionSpecificDelete(id string, resp http.ResponseWriter, req *http.Request) (interface{}, error) {
|
|
|
|
// Method is tested in IntentionEndpoint
|
|
|
|
|
|
|
|
args := structs.IntentionRequest{
|
|
|
|
Op: structs.IntentionOpDelete,
|
|
|
|
Intention: &structs.Intention{ID: id},
|
|
|
|
}
|
|
|
|
s.parseDC(req, &args.Datacenter)
|
|
|
|
s.parseToken(req, &args.Token)
|
|
|
|
|
|
|
|
var reply string
|
|
|
|
if err := s.agent.RPC("Intention.Apply", &args, &reply); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2018-02-28 22:02:00 +00:00
|
|
|
// intentionCreateResponse is the response structure for creating an intention.
|
|
|
|
type intentionCreateResponse struct{ ID string }
|
2018-03-02 22:17:21 +00:00
|
|
|
|
|
|
|
// parseIntentionMatchEntry parses the query parameter for an intention
|
|
|
|
// match query entry.
|
|
|
|
func parseIntentionMatchEntry(input string) (structs.IntentionMatchEntry, error) {
|
|
|
|
var result structs.IntentionMatchEntry
|
2018-03-03 16:51:40 +00:00
|
|
|
result.Namespace = structs.IntentionDefaultNamespace
|
2018-03-02 22:17:21 +00:00
|
|
|
|
|
|
|
// TODO(mitchellh): when namespaces are introduced, set the default
|
|
|
|
// namespace to be the namespace of the requestor.
|
|
|
|
|
|
|
|
// Get the index to the '/'. If it doesn't exist, we have just a name
|
|
|
|
// so just set that and return.
|
|
|
|
idx := strings.IndexByte(input, '/')
|
|
|
|
if idx == -1 {
|
|
|
|
result.Name = input
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
result.Namespace = input[:idx]
|
|
|
|
result.Name = input[idx+1:]
|
|
|
|
if strings.IndexByte(result.Name, '/') != -1 {
|
|
|
|
return result, fmt.Errorf("input can contain at most one '/'")
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|