2014-08-06 00:05:59 +00:00
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-08-08 23:00:32 +00:00
|
|
|
"time"
|
|
|
|
|
2014-08-06 00:05:59 +00:00
|
|
|
"github.com/armon/go-metrics"
|
2014-08-08 23:00:32 +00:00
|
|
|
"github.com/hashicorp/consul/acl"
|
2014-08-06 00:05:59 +00:00
|
|
|
"github.com/hashicorp/consul/consul/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ACL endpoint is used to manipulate ACLs
|
|
|
|
type ACL struct {
|
|
|
|
srv *Server
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apply is used to apply a modifying request to the data store. This should
|
|
|
|
// only be used for operations that modify the data
|
|
|
|
func (a *ACL) Apply(args *structs.ACLRequest, reply *string) error {
|
|
|
|
if done, err := a.srv.forward("ACL.Apply", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer metrics.MeasureSince([]string{"consul", "acl", "apply"}, time.Now())
|
|
|
|
|
2014-08-12 22:32:44 +00:00
|
|
|
// Verify we are allowed to serve this request
|
|
|
|
if a.srv.config.ACLDatacenter != a.srv.config.Datacenter {
|
|
|
|
return fmt.Errorf(aclDisabled)
|
|
|
|
}
|
|
|
|
|
2014-08-22 21:55:09 +00:00
|
|
|
// Verify token is permitted to modify ACLs
|
2014-08-12 22:32:44 +00:00
|
|
|
if acl, err := a.srv.resolveToken(args.Token); err != nil {
|
|
|
|
return err
|
|
|
|
} else if acl == nil || !acl.ACLModify() {
|
|
|
|
return permissionDeniedErr
|
|
|
|
}
|
|
|
|
|
2014-08-06 17:30:47 +00:00
|
|
|
switch args.Op {
|
|
|
|
case structs.ACLSet:
|
|
|
|
// Verify the ACL type
|
|
|
|
switch args.ACL.Type {
|
|
|
|
case structs.ACLTypeClient:
|
|
|
|
case structs.ACLTypeManagement:
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("Invalid ACL Type")
|
|
|
|
}
|
|
|
|
|
2014-08-22 21:55:09 +00:00
|
|
|
// Verify this is not a root ACL
|
|
|
|
if acl.RootACL(args.ACL.ID) != nil {
|
|
|
|
return fmt.Errorf("%s: Cannot modify root ACL", permissionDenied)
|
|
|
|
}
|
|
|
|
|
2014-08-08 23:00:32 +00:00
|
|
|
// Validate the rules compile
|
|
|
|
_, err := acl.Parse(args.ACL.Rules)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("ACL rule compilation failed: %v", err)
|
|
|
|
}
|
2014-08-06 00:05:59 +00:00
|
|
|
|
2015-05-06 02:19:45 +00:00
|
|
|
// If no ID is provided, generate a new ID. This must
|
2014-10-09 19:23:32 +00:00
|
|
|
// be done prior to appending to the raft log, because the ID is not
|
|
|
|
// deterministic. Once the entry is in the log, the state update MUST
|
|
|
|
// be deterministic or the followers will not converge.
|
2015-05-06 02:19:45 +00:00
|
|
|
if args.ACL.ID == "" {
|
|
|
|
state := a.srv.fsm.State()
|
2014-10-09 19:23:32 +00:00
|
|
|
for {
|
|
|
|
args.ACL.ID = generateUUID()
|
|
|
|
_, acl, err := state.ACLGet(args.ACL.ID)
|
|
|
|
if err != nil {
|
|
|
|
a.srv.logger.Printf("[ERR] consul.acl: ACL lookup failed: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if acl == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-06 17:30:47 +00:00
|
|
|
case structs.ACLDelete:
|
|
|
|
if args.ACL.ID == "" {
|
|
|
|
return fmt.Errorf("Missing ACL ID")
|
2014-08-22 21:55:09 +00:00
|
|
|
} else if args.ACL.ID == anonymousToken {
|
|
|
|
return fmt.Errorf("%s: Cannot delete anonymous token", permissionDenied)
|
2014-08-06 17:30:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("Invalid ACL Operation")
|
2014-08-06 00:05:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Apply the update
|
|
|
|
resp, err := a.srv.raftApply(structs.ACLRequestType, args)
|
|
|
|
if err != nil {
|
|
|
|
a.srv.logger.Printf("[ERR] consul.acl: Apply failed: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if respErr, ok := resp.(error); ok {
|
|
|
|
return respErr
|
|
|
|
}
|
|
|
|
|
2014-08-18 22:23:02 +00:00
|
|
|
// Clear the cache if applicable
|
|
|
|
if args.ACL.ID != "" {
|
|
|
|
a.srv.aclAuthCache.ClearACL(args.ACL.ID)
|
|
|
|
}
|
|
|
|
|
2014-08-06 00:05:59 +00:00
|
|
|
// Check if the return type is a string
|
|
|
|
if respString, ok := resp.(string); ok {
|
|
|
|
*reply = respString
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get is used to retrieve a single ACL
|
|
|
|
func (a *ACL) Get(args *structs.ACLSpecificRequest,
|
|
|
|
reply *structs.IndexedACLs) error {
|
|
|
|
if done, err := a.srv.forward("ACL.Get", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-08-12 22:32:44 +00:00
|
|
|
// Verify we are allowed to serve this request
|
|
|
|
if a.srv.config.ACLDatacenter != a.srv.config.Datacenter {
|
|
|
|
return fmt.Errorf(aclDisabled)
|
|
|
|
}
|
|
|
|
|
2014-08-06 00:05:59 +00:00
|
|
|
// Get the local state
|
|
|
|
state := a.srv.fsm.State()
|
|
|
|
return a.srv.blockingRPC(&args.QueryOptions,
|
|
|
|
&reply.QueryMeta,
|
|
|
|
state.QueryTables("ACLGet"),
|
|
|
|
func() error {
|
|
|
|
index, acl, err := state.ACLGet(args.ACL)
|
|
|
|
reply.Index = index
|
|
|
|
if acl != nil {
|
|
|
|
reply.ACLs = structs.ACLs{acl}
|
2015-01-13 20:02:30 +00:00
|
|
|
} else {
|
|
|
|
reply.ACLs = nil
|
2014-08-06 00:05:59 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-08-08 22:32:43 +00:00
|
|
|
// GetPolicy is used to retrieve a compiled policy object with a TTL. Does not
|
|
|
|
// support a blocking query.
|
2014-08-08 23:55:47 +00:00
|
|
|
func (a *ACL) GetPolicy(args *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error {
|
2014-08-08 22:32:43 +00:00
|
|
|
if done, err := a.srv.forward("ACL.GetPolicy", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-08-12 22:32:44 +00:00
|
|
|
// Verify we are allowed to serve this request
|
|
|
|
if a.srv.config.ACLDatacenter != a.srv.config.Datacenter {
|
|
|
|
return fmt.Errorf(aclDisabled)
|
|
|
|
}
|
|
|
|
|
2014-08-08 22:32:43 +00:00
|
|
|
// Get the policy via the cache
|
2014-08-12 17:54:56 +00:00
|
|
|
parent, policy, err := a.srv.aclAuthCache.GetACLPolicy(args.ACL)
|
2014-08-08 22:32:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-08-08 23:55:47 +00:00
|
|
|
// Generate an ETag
|
2014-08-08 22:52:52 +00:00
|
|
|
conf := a.srv.config
|
2014-08-12 17:54:56 +00:00
|
|
|
etag := fmt.Sprintf("%s:%s", parent, policy.ID)
|
2014-08-08 23:55:47 +00:00
|
|
|
|
|
|
|
// Setup the response
|
|
|
|
reply.ETag = etag
|
2014-08-08 22:52:52 +00:00
|
|
|
reply.TTL = conf.ACLTTL
|
2014-08-08 22:32:43 +00:00
|
|
|
a.srv.setQueryMeta(&reply.QueryMeta)
|
2014-08-08 23:55:47 +00:00
|
|
|
|
|
|
|
// Only send the policy on an Etag mis-match
|
|
|
|
if args.ETag != etag {
|
2014-08-12 17:54:56 +00:00
|
|
|
reply.Parent = parent
|
2014-08-08 23:55:47 +00:00
|
|
|
reply.Policy = policy
|
|
|
|
}
|
2014-08-08 22:32:43 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-06 00:05:59 +00:00
|
|
|
// List is used to list all the ACLs
|
|
|
|
func (a *ACL) List(args *structs.DCSpecificRequest,
|
|
|
|
reply *structs.IndexedACLs) error {
|
|
|
|
if done, err := a.srv.forward("ACL.List", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-08-12 22:32:44 +00:00
|
|
|
// Verify we are allowed to serve this request
|
|
|
|
if a.srv.config.ACLDatacenter != a.srv.config.Datacenter {
|
|
|
|
return fmt.Errorf(aclDisabled)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify token is permitted to list ACLs
|
|
|
|
if acl, err := a.srv.resolveToken(args.Token); err != nil {
|
|
|
|
return err
|
|
|
|
} else if acl == nil || !acl.ACLList() {
|
|
|
|
return permissionDeniedErr
|
|
|
|
}
|
|
|
|
|
2014-08-06 00:05:59 +00:00
|
|
|
// Get the local state
|
|
|
|
state := a.srv.fsm.State()
|
|
|
|
return a.srv.blockingRPC(&args.QueryOptions,
|
|
|
|
&reply.QueryMeta,
|
|
|
|
state.QueryTables("ACLList"),
|
|
|
|
func() error {
|
|
|
|
var err error
|
|
|
|
reply.Index, reply.ACLs, err = state.ACLList()
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|