2015-06-03 10:26:50 +00:00
|
|
|
package nomad
|
|
|
|
|
2017-10-10 17:36:54 +00:00
|
|
|
import (
|
2018-09-15 23:23:13 +00:00
|
|
|
"errors"
|
2017-12-18 21:16:23 +00:00
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
|
2018-09-15 23:23:13 +00:00
|
|
|
log "github.com/hashicorp/go-hclog"
|
2018-01-13 00:52:24 +00:00
|
|
|
|
2017-12-18 21:16:23 +00:00
|
|
|
"github.com/hashicorp/consul/agent/consul/autopilot"
|
2017-10-10 17:36:54 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
)
|
2015-08-15 19:59:10 +00:00
|
|
|
|
2015-06-03 10:26:50 +00:00
|
|
|
// Status endpoint is used to check on server status
|
|
|
|
type Status struct {
|
2018-09-15 23:23:13 +00:00
|
|
|
srv *Server
|
|
|
|
logger log.Logger
|
2015-08-15 19:59:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Version is used to allow clients to determine the capabilities
|
|
|
|
// of the server
|
|
|
|
func (s *Status) Version(args *structs.GenericRequest, reply *structs.VersionResponse) error {
|
|
|
|
if done, err := s.srv.forward("Status.Version", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
conf := s.srv.config
|
|
|
|
reply.Build = conf.Build
|
|
|
|
reply.Versions = map[string]int{
|
|
|
|
structs.ProtocolVersion: int(conf.ProtocolVersion),
|
2016-05-28 01:14:34 +00:00
|
|
|
structs.APIMajorVersion: structs.ApiMajorVersion,
|
|
|
|
structs.APIMinorVersion: structs.ApiMinorVersion,
|
2015-08-15 19:59:10 +00:00
|
|
|
}
|
|
|
|
return nil
|
2015-06-03 10:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ping is used to just check for connectivity
|
|
|
|
func (s *Status) Ping(args struct{}, reply *struct{}) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Leader is used to get the address of the leader
|
2015-09-07 01:07:05 +00:00
|
|
|
func (s *Status) Leader(args *structs.GenericRequest, reply *string) error {
|
|
|
|
if args.Region == "" {
|
|
|
|
args.Region = s.srv.config.Region
|
|
|
|
}
|
|
|
|
if done, err := s.srv.forward("Status.Leader", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-02-03 00:07:15 +00:00
|
|
|
leader := string(s.srv.raft.Leader())
|
2015-06-03 10:26:50 +00:00
|
|
|
if leader != "" {
|
|
|
|
*reply = leader
|
|
|
|
} else {
|
|
|
|
*reply = ""
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Peers is used to get all the Raft peers
|
2015-09-07 01:07:05 +00:00
|
|
|
func (s *Status) Peers(args *structs.GenericRequest, reply *[]string) error {
|
2017-02-08 22:50:19 +00:00
|
|
|
if args.Region == "" {
|
|
|
|
args.Region = s.srv.config.Region
|
|
|
|
}
|
2015-09-07 01:07:05 +00:00
|
|
|
if done, err := s.srv.forward("Status.Peers", args, args, reply); done {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-02-03 00:07:15 +00:00
|
|
|
future := s.srv.raft.GetConfiguration()
|
|
|
|
if err := future.Error(); err != nil {
|
2015-06-03 10:26:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-02-03 00:07:15 +00:00
|
|
|
for _, server := range future.Configuration().Servers {
|
|
|
|
*reply = append(*reply, string(server.Address))
|
|
|
|
}
|
2015-06-03 10:26:50 +00:00
|
|
|
return nil
|
|
|
|
}
|
2016-11-03 21:14:52 +00:00
|
|
|
|
|
|
|
// Members return the list of servers in a cluster that a particular server is
|
|
|
|
// aware of
|
|
|
|
func (s *Status) Members(args *structs.GenericRequest, reply *structs.ServerMembersResponse) error {
|
2017-10-10 17:36:54 +00:00
|
|
|
// Check node read permissions
|
2017-10-12 22:16:33 +00:00
|
|
|
if aclObj, err := s.srv.ResolveToken(args.AuthToken); err != nil {
|
2017-10-10 17:36:54 +00:00
|
|
|
return err
|
|
|
|
} else if aclObj != nil && !aclObj.AllowNodeRead() {
|
|
|
|
return structs.ErrPermissionDenied
|
|
|
|
}
|
|
|
|
|
2016-11-03 21:14:52 +00:00
|
|
|
serfMembers := s.srv.Members()
|
|
|
|
members := make([]*structs.ServerMember, len(serfMembers))
|
|
|
|
for i, mem := range serfMembers {
|
|
|
|
members[i] = &structs.ServerMember{
|
|
|
|
Name: mem.Name,
|
|
|
|
Addr: mem.Addr,
|
|
|
|
Port: mem.Port,
|
|
|
|
Tags: mem.Tags,
|
|
|
|
Status: mem.Status.String(),
|
|
|
|
ProtocolMin: mem.ProtocolMin,
|
|
|
|
ProtocolMax: mem.ProtocolMax,
|
|
|
|
ProtocolCur: mem.ProtocolCur,
|
|
|
|
DelegateMin: mem.DelegateMin,
|
|
|
|
DelegateMax: mem.DelegateMax,
|
|
|
|
DelegateCur: mem.DelegateCur,
|
|
|
|
}
|
|
|
|
}
|
2016-11-06 18:29:09 +00:00
|
|
|
*reply = structs.ServerMembersResponse{
|
2016-11-03 21:14:52 +00:00
|
|
|
ServerName: s.srv.config.NodeName,
|
|
|
|
ServerRegion: s.srv.config.Region,
|
|
|
|
ServerDC: s.srv.config.Datacenter,
|
|
|
|
Members: members,
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-12-18 21:16:23 +00:00
|
|
|
|
|
|
|
// Used by Autopilot to query the raft stats of the local server.
|
|
|
|
func (s *Status) RaftStats(args struct{}, reply *autopilot.ServerStats) error {
|
|
|
|
stats := s.srv.raft.Stats()
|
|
|
|
|
|
|
|
var err error
|
|
|
|
reply.LastContact = stats["last_contact"]
|
|
|
|
reply.LastIndex, err = strconv.ParseUint(stats["last_log_index"], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error parsing server's last_log_index value: %s", err)
|
|
|
|
}
|
|
|
|
reply.LastTerm, err = strconv.ParseUint(stats["last_log_term"], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error parsing server's last_log_term value: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2018-01-13 00:52:24 +00:00
|
|
|
|
|
|
|
// HasNodeConn returns whether the server has a connection to the requested
|
|
|
|
// Node.
|
|
|
|
func (s *Status) HasNodeConn(args *structs.NodeSpecificRequest, reply *structs.NodeConnQueryResponse) error {
|
|
|
|
// Validate the args
|
|
|
|
if args.NodeID == "" {
|
|
|
|
return errors.New("Must provide the NodeID")
|
|
|
|
}
|
|
|
|
|
|
|
|
state, ok := s.srv.getNodeConn(args.NodeID)
|
|
|
|
if ok {
|
|
|
|
reply.Connected = true
|
|
|
|
reply.Established = state.Established
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|