2013-12-11 22:04:44 +00:00
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
2013-12-24 20:43:34 +00:00
|
|
|
"fmt"
|
2014-06-06 21:12:40 +00:00
|
|
|
"sort"
|
2014-02-20 23:16:26 +00:00
|
|
|
"time"
|
2014-12-01 04:05:15 +00:00
|
|
|
|
|
|
|
"github.com/armon/go-metrics"
|
|
|
|
"github.com/hashicorp/consul/consul/structs"
|
2013-12-11 22:04:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Catalog endpoint is used to manipulate the service catalog
|
|
|
|
type Catalog struct {
|
2013-12-11 22:57:40 +00:00
|
|
|
srv *Server
|
2013-12-11 22:04:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Register is used register that a node is providing a given service.
|
2013-12-19 20:03:57 +00:00
|
|
|
func (c *Catalog) Register(args *structs.RegisterRequest, reply *struct{}) error {
|
2014-04-19 00:17:12 +00:00
|
|
|
if done, err := c.srv.forward("Catalog.Register", args, args, reply); done {
|
2013-12-11 22:04:44 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-02-20 23:16:26 +00:00
|
|
|
defer metrics.MeasureSince([]string{"consul", "catalog", "register"}, time.Now())
|
2013-12-11 22:04:44 +00:00
|
|
|
|
2013-12-24 20:43:34 +00:00
|
|
|
// Verify the args
|
|
|
|
if args.Node == "" || args.Address == "" {
|
|
|
|
return fmt.Errorf("Must provide node and address")
|
|
|
|
}
|
|
|
|
|
2014-01-08 21:39:40 +00:00
|
|
|
if args.Service != nil {
|
|
|
|
// If no service id, but service name, use default
|
|
|
|
if args.Service.ID == "" && args.Service.Service != "" {
|
|
|
|
args.Service.ID = args.Service.Service
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify ServiceName provided if ID
|
|
|
|
if args.Service.ID != "" && args.Service.Service == "" {
|
|
|
|
return fmt.Errorf("Must provide service name with ID")
|
|
|
|
}
|
2014-12-01 04:05:15 +00:00
|
|
|
|
|
|
|
// Apply the ACL policy if any
|
|
|
|
// The 'consul' service is excluded since it is managed
|
|
|
|
// automatically internally.
|
|
|
|
if args.Service.Service != ConsulServiceName {
|
|
|
|
acl, err := c.srv.resolveToken(args.Token)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if acl != nil && !acl.ServiceWrite(args.Service.Service) {
|
|
|
|
c.srv.logger.Printf("[WARN] consul.catalog: Register of service '%s' on '%s' denied due to ACLs",
|
|
|
|
args.Service.Service, args.Node)
|
|
|
|
return permissionDeniedErr
|
|
|
|
}
|
|
|
|
}
|
2014-01-06 22:18:38 +00:00
|
|
|
}
|
|
|
|
|
2014-01-08 21:39:40 +00:00
|
|
|
if args.Check != nil {
|
2015-01-14 01:52:17 +00:00
|
|
|
args.Checks = append(args.Checks, args.Check)
|
|
|
|
args.Check = nil
|
|
|
|
}
|
|
|
|
for _, check := range args.Checks {
|
|
|
|
if check.CheckID == "" && check.Name != "" {
|
|
|
|
check.CheckID = check.Name
|
2014-01-08 21:39:40 +00:00
|
|
|
}
|
2015-01-14 01:52:17 +00:00
|
|
|
if check.Node == "" {
|
|
|
|
check.Node = args.Node
|
2014-01-08 21:39:40 +00:00
|
|
|
}
|
2014-01-06 22:18:38 +00:00
|
|
|
}
|
|
|
|
|
2013-12-19 20:03:57 +00:00
|
|
|
_, err := c.srv.raftApply(structs.RegisterRequestType, args)
|
2013-12-11 22:04:44 +00:00
|
|
|
if err != nil {
|
2014-01-10 19:07:04 +00:00
|
|
|
c.srv.logger.Printf("[ERR] consul.catalog: Register failed: %v", err)
|
2013-12-11 22:04:44 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-01-14 01:52:17 +00:00
|
|
|
|
2013-12-11 22:04:44 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deregister is used to remove a service registration for a given node.
|
2013-12-19 20:03:57 +00:00
|
|
|
func (c *Catalog) Deregister(args *structs.DeregisterRequest, reply *struct{}) error {
|
2014-04-19 00:17:12 +00:00
|
|
|
if done, err := c.srv.forward("Catalog.Deregister", args, args, reply); done {
|
2013-12-11 23:34:10 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-02-20 23:16:26 +00:00
|
|
|
defer metrics.MeasureSince([]string{"consul", "catalog", "deregister"}, time.Now())
|
2013-12-11 23:34:10 +00:00
|
|
|
|
2013-12-24 20:43:34 +00:00
|
|
|
// Verify the args
|
|
|
|
if args.Node == "" {
|
|
|
|
return fmt.Errorf("Must provide node")
|
|
|
|
}
|
|
|
|
|
2013-12-19 20:03:57 +00:00
|
|
|
_, err := c.srv.raftApply(structs.DeregisterRequestType, args)
|
2013-12-11 23:34:10 +00:00
|
|
|
if err != nil {
|
2014-01-10 19:07:04 +00:00
|
|
|
c.srv.logger.Printf("[ERR] consul.catalog: Deregister failed: %v", err)
|
2013-12-11 23:34:10 +00:00
|
|
|
return err
|
|
|
|
}
|
2013-12-11 22:04:44 +00:00
|
|
|
return nil
|
|
|
|
}
|
2013-12-12 18:35:50 +00:00
|
|
|
|
|
|
|
// ListDatacenters is used to query for the list of known datacenters
|
|
|
|
func (c *Catalog) ListDatacenters(args *struct{}, reply *[]string) error {
|
|
|
|
c.srv.remoteLock.RLock()
|
|
|
|
defer c.srv.remoteLock.RUnlock()
|
|
|
|
|
|
|
|
// Read the known DCs
|
|
|
|
var dcs []string
|
|
|
|
for dc := range c.srv.remoteConsuls {
|
|
|
|
dcs = append(dcs, dc)
|
|
|
|
}
|
|
|
|
|
2014-06-06 21:12:40 +00:00
|
|
|
// Sort the DCs
|
|
|
|
sort.Strings(dcs)
|
|
|
|
|
2013-12-12 18:35:50 +00:00
|
|
|
// Return
|
|
|
|
*reply = dcs
|
|
|
|
return nil
|
|
|
|
}
|
2013-12-12 18:48:36 +00:00
|
|
|
|
|
|
|
// ListNodes is used to query the nodes in a DC
|
2014-02-05 19:00:43 +00:00
|
|
|
func (c *Catalog) ListNodes(args *structs.DCSpecificRequest, reply *structs.IndexedNodes) error {
|
2014-04-19 00:17:12 +00:00
|
|
|
if done, err := c.srv.forward("Catalog.ListNodes", args, args, reply); done {
|
2013-12-12 18:48:36 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-02-05 19:00:43 +00:00
|
|
|
// Get the local state
|
2013-12-12 18:48:36 +00:00
|
|
|
state := c.srv.fsm.State()
|
2014-04-21 18:31:15 +00:00
|
|
|
return c.srv.blockingRPC(&args.QueryOptions,
|
2014-04-21 18:04:52 +00:00
|
|
|
&reply.QueryMeta,
|
2014-02-05 19:00:43 +00:00
|
|
|
state.QueryTables("Nodes"),
|
2014-04-21 18:18:27 +00:00
|
|
|
func() error {
|
2014-02-05 19:00:43 +00:00
|
|
|
reply.Index, reply.Nodes = state.Nodes()
|
2015-06-11 23:46:15 +00:00
|
|
|
return nil
|
2014-02-05 19:00:43 +00:00
|
|
|
})
|
2013-12-12 18:48:36 +00:00
|
|
|
}
|
2013-12-12 19:07:14 +00:00
|
|
|
|
|
|
|
// ListServices is used to query the services in a DC
|
2014-02-05 19:00:43 +00:00
|
|
|
func (c *Catalog) ListServices(args *structs.DCSpecificRequest, reply *structs.IndexedServices) error {
|
2014-04-19 00:17:12 +00:00
|
|
|
if done, err := c.srv.forward("Catalog.ListServices", args, args, reply); done {
|
2013-12-12 19:07:14 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the current nodes
|
|
|
|
state := c.srv.fsm.State()
|
2014-04-21 18:31:15 +00:00
|
|
|
return c.srv.blockingRPC(&args.QueryOptions,
|
2014-04-21 18:04:52 +00:00
|
|
|
&reply.QueryMeta,
|
2014-02-05 19:00:43 +00:00
|
|
|
state.QueryTables("Services"),
|
2014-04-21 18:18:27 +00:00
|
|
|
func() error {
|
2014-02-05 19:00:43 +00:00
|
|
|
reply.Index, reply.Services = state.Services()
|
2015-06-11 19:48:38 +00:00
|
|
|
return c.srv.filterACL(args.Token, reply)
|
2014-02-05 19:00:43 +00:00
|
|
|
})
|
2013-12-12 19:07:14 +00:00
|
|
|
}
|
2013-12-12 19:37:19 +00:00
|
|
|
|
|
|
|
// ServiceNodes returns all the nodes registered as part of a service
|
2014-02-05 19:10:10 +00:00
|
|
|
func (c *Catalog) ServiceNodes(args *structs.ServiceSpecificRequest, reply *structs.IndexedServiceNodes) error {
|
2014-04-19 00:17:12 +00:00
|
|
|
if done, err := c.srv.forward("Catalog.ServiceNodes", args, args, reply); done {
|
2013-12-12 19:37:19 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-12-24 20:43:34 +00:00
|
|
|
// Verify the arguments
|
|
|
|
if args.ServiceName == "" {
|
|
|
|
return fmt.Errorf("Must provide service name")
|
|
|
|
}
|
|
|
|
|
2013-12-12 19:37:19 +00:00
|
|
|
// Get the nodes
|
|
|
|
state := c.srv.fsm.State()
|
2014-04-21 18:31:15 +00:00
|
|
|
err := c.srv.blockingRPC(&args.QueryOptions,
|
2014-04-21 18:04:52 +00:00
|
|
|
&reply.QueryMeta,
|
2014-02-05 19:10:10 +00:00
|
|
|
state.QueryTables("ServiceNodes"),
|
2014-04-21 18:18:27 +00:00
|
|
|
func() error {
|
2014-02-05 19:10:10 +00:00
|
|
|
if args.TagFilter {
|
|
|
|
reply.Index, reply.ServiceNodes = state.ServiceTagNodes(args.ServiceName, args.ServiceTag)
|
|
|
|
} else {
|
|
|
|
reply.Index, reply.ServiceNodes = state.ServiceNodes(args.ServiceName)
|
|
|
|
}
|
2015-06-11 19:48:38 +00:00
|
|
|
return c.srv.filterACL(args.Token, reply)
|
2014-02-05 19:10:10 +00:00
|
|
|
})
|
2014-04-04 21:55:44 +00:00
|
|
|
|
|
|
|
// Provide some metrics
|
|
|
|
if err == nil {
|
|
|
|
metrics.IncrCounter([]string{"consul", "catalog", "service", "query", args.ServiceName}, 1)
|
|
|
|
if args.ServiceTag != "" {
|
|
|
|
metrics.IncrCounter([]string{"consul", "catalog", "service", "query-tag", args.ServiceName, args.ServiceTag}, 1)
|
|
|
|
}
|
|
|
|
if len(reply.ServiceNodes) == 0 {
|
|
|
|
metrics.IncrCounter([]string{"consul", "catalog", "service", "not-found", args.ServiceName}, 1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
2013-12-12 19:37:19 +00:00
|
|
|
}
|
2013-12-12 19:46:25 +00:00
|
|
|
|
|
|
|
// NodeServices returns all the services registered as part of a node
|
2014-02-05 19:10:10 +00:00
|
|
|
func (c *Catalog) NodeServices(args *structs.NodeSpecificRequest, reply *structs.IndexedNodeServices) error {
|
2014-04-19 00:17:12 +00:00
|
|
|
if done, err := c.srv.forward("Catalog.NodeServices", args, args, reply); done {
|
2013-12-12 19:46:25 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-12-24 20:43:34 +00:00
|
|
|
// Verify the arguments
|
|
|
|
if args.Node == "" {
|
|
|
|
return fmt.Errorf("Must provide node")
|
|
|
|
}
|
|
|
|
|
2013-12-12 19:46:25 +00:00
|
|
|
// Get the node services
|
|
|
|
state := c.srv.fsm.State()
|
2014-04-21 18:31:15 +00:00
|
|
|
return c.srv.blockingRPC(&args.QueryOptions,
|
2014-04-21 18:04:52 +00:00
|
|
|
&reply.QueryMeta,
|
2014-02-05 19:10:10 +00:00
|
|
|
state.QueryTables("NodeServices"),
|
2014-04-21 18:18:27 +00:00
|
|
|
func() error {
|
2014-02-05 19:10:10 +00:00
|
|
|
reply.Index, reply.NodeServices = state.NodeServices(args.Node)
|
2015-06-11 19:48:38 +00:00
|
|
|
return c.srv.filterACL(args.Token, reply)
|
2014-02-05 19:10:10 +00:00
|
|
|
})
|
2013-12-12 19:46:25 +00:00
|
|
|
}
|