2019-05-19 16:27:48 +00:00
|
|
|
package admin
|
2018-01-21 00:17:15 +00:00
|
|
|
|
2018-06-12 22:50:08 +00:00
|
|
|
import (
|
2021-05-15 20:16:35 +00:00
|
|
|
"encoding/hex"
|
2018-06-12 22:50:08 +00:00
|
|
|
"encoding/json"
|
2019-05-19 21:02:04 +00:00
|
|
|
"errors"
|
2018-06-12 22:50:08 +00:00
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/url"
|
|
|
|
"os"
|
2021-05-10 21:47:28 +00:00
|
|
|
|
2021-05-08 15:39:07 +00:00
|
|
|
//"strconv"
|
2018-06-12 22:50:08 +00:00
|
|
|
"strings"
|
|
|
|
"time"
|
2018-07-07 11:08:52 +00:00
|
|
|
|
2019-05-19 16:27:48 +00:00
|
|
|
"github.com/gologme/log"
|
|
|
|
|
2021-05-15 20:16:35 +00:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/address"
|
2019-05-19 16:27:48 +00:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/config"
|
2021-05-08 15:39:07 +00:00
|
|
|
//"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
|
|
|
|
//"github.com/yggdrasil-network/yggdrasil-go/src/util"
|
2021-05-15 20:16:35 +00:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/version"
|
2019-05-19 16:27:48 +00:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/yggdrasil"
|
2018-06-12 22:50:08 +00:00
|
|
|
)
|
2018-01-21 00:17:15 +00:00
|
|
|
|
2018-01-21 12:57:54 +00:00
|
|
|
// TODO: Add authentication
|
2018-01-21 00:17:15 +00:00
|
|
|
|
2019-05-19 16:27:48 +00:00
|
|
|
type AdminSocket struct {
|
2019-10-23 09:44:58 +00:00
|
|
|
core *yggdrasil.Core
|
|
|
|
log *log.Logger
|
|
|
|
listenaddr string
|
|
|
|
listener net.Listener
|
|
|
|
handlers map[string]handler
|
|
|
|
started bool
|
2018-01-30 00:48:14 +00:00
|
|
|
}
|
|
|
|
|
2019-05-19 21:02:04 +00:00
|
|
|
// Info refers to information that is returned to the admin socket handler.
|
|
|
|
type Info map[string]interface{}
|
2018-05-20 16:21:14 +00:00
|
|
|
|
2019-05-19 21:02:04 +00:00
|
|
|
type handler struct {
|
|
|
|
args []string // List of human-readable argument names
|
|
|
|
handler func(Info) (Info, error) // First is input map, second is output
|
2018-05-20 16:21:14 +00:00
|
|
|
}
|
|
|
|
|
2019-05-19 21:02:04 +00:00
|
|
|
// AddHandler is called for each admin function to add the handler and help documentation to the API.
|
|
|
|
func (a *AdminSocket) AddHandler(name string, args []string, handlerfunc func(Info) (Info, error)) error {
|
|
|
|
if _, ok := a.handlers[strings.ToLower(name)]; ok {
|
|
|
|
return errors.New("handler already exists")
|
|
|
|
}
|
|
|
|
a.handlers[strings.ToLower(name)] = handler{
|
|
|
|
args: args,
|
|
|
|
handler: handlerfunc,
|
|
|
|
}
|
|
|
|
return nil
|
2018-01-21 00:17:15 +00:00
|
|
|
}
|
|
|
|
|
2020-09-27 13:42:46 +00:00
|
|
|
// Init runs the initial admin setup.
|
2019-10-23 09:44:58 +00:00
|
|
|
func (a *AdminSocket) Init(c *yggdrasil.Core, state *config.NodeState, log *log.Logger, options interface{}) error {
|
2018-01-21 00:17:15 +00:00
|
|
|
a.core = c
|
2019-05-19 16:27:48 +00:00
|
|
|
a.log = log
|
2019-05-19 21:02:04 +00:00
|
|
|
a.handlers = make(map[string]handler)
|
2019-07-27 14:00:09 +00:00
|
|
|
current := state.GetCurrent()
|
2019-03-28 00:30:25 +00:00
|
|
|
a.listenaddr = current.AdminListen
|
2019-10-23 10:12:51 +00:00
|
|
|
a.AddHandler("list", []string{}, func(in Info) (Info, error) {
|
|
|
|
handlers := make(map[string]interface{})
|
|
|
|
for handlername, handler := range a.handlers {
|
|
|
|
handlers[handlername] = Info{"fields": handler.args}
|
|
|
|
}
|
|
|
|
return Info{"list": handlers}, nil
|
|
|
|
})
|
2019-10-23 09:44:58 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AdminSocket) SetupAdminHandlers(na *AdminSocket) {
|
2019-05-19 21:02:04 +00:00
|
|
|
a.AddHandler("getSelf", []string{}, func(in Info) (Info, error) {
|
2019-10-23 09:44:58 +00:00
|
|
|
ip := a.core.Address().String()
|
|
|
|
subnet := a.core.Subnet()
|
2021-05-15 20:16:35 +00:00
|
|
|
self := a.core.GetSelf()
|
2019-05-19 21:02:04 +00:00
|
|
|
return Info{
|
|
|
|
"self": Info{
|
|
|
|
ip: Info{
|
2021-05-08 15:39:07 +00:00
|
|
|
// TODO"box_pub_key": a.core.EncryptionPublicKey(),
|
2019-08-10 21:31:22 +00:00
|
|
|
"build_name": version.BuildName(),
|
|
|
|
"build_version": version.BuildVersion(),
|
2021-05-15 20:16:35 +00:00
|
|
|
"key": hex.EncodeToString(self.Key[:]),
|
|
|
|
"coords": fmt.Sprintf("%v", self.Coords),
|
2019-07-28 10:30:24 +00:00
|
|
|
"subnet": subnet.String(),
|
2019-05-19 16:27:48 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, nil
|
2018-02-07 23:48:30 +00:00
|
|
|
})
|
2019-05-19 21:02:04 +00:00
|
|
|
a.AddHandler("getPeers", []string{}, func(in Info) (Info, error) {
|
|
|
|
peers := make(Info)
|
2019-05-19 16:27:48 +00:00
|
|
|
for _, p := range a.core.GetPeers() {
|
2021-05-15 20:16:35 +00:00
|
|
|
addr := address.AddrForKey(p.Key)
|
2019-05-19 16:27:48 +00:00
|
|
|
so := net.IP(addr[:]).String()
|
2019-05-19 21:02:04 +00:00
|
|
|
peers[so] = Info{
|
2021-05-15 20:16:35 +00:00
|
|
|
"key": hex.EncodeToString(p.Key[:]),
|
|
|
|
"port": p.Port,
|
|
|
|
"coords": fmt.Sprintf("%v", p.Coords),
|
2019-05-19 16:27:48 +00:00
|
|
|
}
|
2018-05-20 16:21:14 +00:00
|
|
|
}
|
2019-05-19 21:02:04 +00:00
|
|
|
return Info{"peers": peers}, nil
|
2018-01-30 00:48:14 +00:00
|
|
|
})
|
2021-05-15 20:16:35 +00:00
|
|
|
a.AddHandler("getDHT", []string{}, func(in Info) (Info, error) {
|
|
|
|
dht := make(Info)
|
|
|
|
for _, d := range a.core.GetDHT() {
|
|
|
|
addr := address.AddrForKey(d.Key)
|
|
|
|
so := net.IP(addr[:]).String()
|
|
|
|
dht[so] = Info{
|
|
|
|
"key": hex.EncodeToString(d.Key[:]),
|
|
|
|
"port": fmt.Sprintf("%v", d.Port),
|
|
|
|
"next": fmt.Sprintf("%v", d.Next),
|
2019-05-19 16:27:48 +00:00
|
|
|
}
|
2018-02-28 13:43:06 +00:00
|
|
|
}
|
2021-05-15 20:16:35 +00:00
|
|
|
return Info{"dht": dht}, nil
|
2018-02-28 13:43:06 +00:00
|
|
|
})
|
2021-05-15 20:16:35 +00:00
|
|
|
a.AddHandler("getSessions", []string{}, func(in Info) (Info, error) {
|
|
|
|
sessions := make(Info)
|
|
|
|
for _, s := range a.core.GetSessions() {
|
|
|
|
addr := address.AddrForKey(s.Key)
|
|
|
|
so := net.IP(addr[:]).String()
|
|
|
|
sessions[so] = Info{
|
|
|
|
"key": hex.EncodeToString(s.Key[:]),
|
2018-12-15 10:56:46 +00:00
|
|
|
}
|
2021-05-15 20:16:35 +00:00
|
|
|
}
|
|
|
|
return Info{"sessions": sessions}, nil
|
|
|
|
})
|
2018-05-27 21:13:37 +00:00
|
|
|
}
|
|
|
|
|
2019-10-23 09:44:58 +00:00
|
|
|
// Start runs the admin API socket to listen for / respond to admin API calls.
|
2019-05-19 16:27:48 +00:00
|
|
|
func (a *AdminSocket) Start() error {
|
2018-12-09 17:53:31 +00:00
|
|
|
if a.listenaddr != "none" && a.listenaddr != "" {
|
2018-12-09 17:46:48 +00:00
|
|
|
go a.listen()
|
2019-10-23 09:44:58 +00:00
|
|
|
a.started = true
|
2018-12-09 17:46:48 +00:00
|
|
|
}
|
2018-05-27 21:13:37 +00:00
|
|
|
return nil
|
2018-01-21 00:17:15 +00:00
|
|
|
}
|
|
|
|
|
2019-10-23 09:44:58 +00:00
|
|
|
// IsStarted returns true if the module has been started.
|
|
|
|
func (a *AdminSocket) IsStarted() bool {
|
|
|
|
return a.started
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop will stop the admin API and close the socket.
|
2019-05-19 16:27:48 +00:00
|
|
|
func (a *AdminSocket) Stop() error {
|
2019-02-05 23:39:59 +00:00
|
|
|
if a.listener != nil {
|
2019-10-23 09:44:58 +00:00
|
|
|
a.started = false
|
2019-02-05 23:39:59 +00:00
|
|
|
return a.listener.Close()
|
|
|
|
}
|
2020-09-27 13:42:46 +00:00
|
|
|
return nil
|
2018-07-07 11:34:10 +00:00
|
|
|
}
|
|
|
|
|
2018-06-10 23:03:28 +00:00
|
|
|
// listen is run by start and manages API connections.
|
2019-05-19 16:27:48 +00:00
|
|
|
func (a *AdminSocket) listen() {
|
2018-07-07 10:22:49 +00:00
|
|
|
u, err := url.Parse(a.listenaddr)
|
|
|
|
if err == nil {
|
|
|
|
switch strings.ToLower(u.Scheme) {
|
|
|
|
case "unix":
|
2018-12-10 00:19:21 +00:00
|
|
|
if _, err := os.Stat(a.listenaddr[7:]); err == nil {
|
2019-05-19 16:27:48 +00:00
|
|
|
a.log.Debugln("Admin socket", a.listenaddr[7:], "already exists, trying to clean up")
|
2019-03-03 19:32:36 +00:00
|
|
|
if _, err := net.DialTimeout("unix", a.listenaddr[7:], time.Second*2); err == nil || err.(net.Error).Timeout() {
|
2019-05-19 16:27:48 +00:00
|
|
|
a.log.Errorln("Admin socket", a.listenaddr[7:], "already exists and is in use by another process")
|
2019-03-03 14:09:54 +00:00
|
|
|
os.Exit(1)
|
|
|
|
} else {
|
|
|
|
if err := os.Remove(a.listenaddr[7:]); err == nil {
|
2019-05-19 16:27:48 +00:00
|
|
|
a.log.Debugln(a.listenaddr[7:], "was cleaned up")
|
2019-03-03 14:09:54 +00:00
|
|
|
} else {
|
2019-05-19 16:27:48 +00:00
|
|
|
a.log.Errorln(a.listenaddr[7:], "already exists and was not cleaned up:", err)
|
2019-03-03 14:09:54 +00:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
2018-12-10 00:19:21 +00:00
|
|
|
}
|
2018-07-07 19:04:11 +00:00
|
|
|
a.listener, err = net.Listen("unix", a.listenaddr[7:])
|
2018-12-10 00:00:23 +00:00
|
|
|
if err == nil {
|
2018-12-10 00:26:12 +00:00
|
|
|
switch a.listenaddr[7:8] {
|
|
|
|
case "@": // maybe abstract namespace
|
|
|
|
default:
|
|
|
|
if err := os.Chmod(a.listenaddr[7:], 0660); err != nil {
|
2019-05-19 16:27:48 +00:00
|
|
|
a.log.Warnln("WARNING:", a.listenaddr[:7], "may have unsafe permissions!")
|
2018-12-10 00:26:12 +00:00
|
|
|
}
|
2018-12-10 00:19:21 +00:00
|
|
|
}
|
2018-12-10 00:00:23 +00:00
|
|
|
}
|
2018-07-07 10:22:49 +00:00
|
|
|
case "tcp":
|
2018-07-07 19:04:11 +00:00
|
|
|
a.listener, err = net.Listen("tcp", u.Host)
|
2018-07-07 10:22:49 +00:00
|
|
|
default:
|
2018-07-08 09:37:20 +00:00
|
|
|
// err = errors.New(fmt.Sprint("protocol not supported: ", u.Scheme))
|
|
|
|
a.listener, err = net.Listen("tcp", a.listenaddr)
|
2018-07-07 10:22:49 +00:00
|
|
|
}
|
|
|
|
} else {
|
2018-07-07 19:04:11 +00:00
|
|
|
a.listener, err = net.Listen("tcp", a.listenaddr)
|
2018-07-07 10:22:49 +00:00
|
|
|
}
|
2018-01-21 00:17:15 +00:00
|
|
|
if err != nil {
|
2019-05-19 16:27:48 +00:00
|
|
|
a.log.Errorf("Admin socket failed to listen: %v", err)
|
2018-01-21 00:17:15 +00:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
2019-05-19 16:27:48 +00:00
|
|
|
a.log.Infof("%s admin socket listening on %s",
|
2018-07-07 19:04:11 +00:00
|
|
|
strings.ToUpper(a.listener.Addr().Network()),
|
|
|
|
a.listener.Addr().String())
|
|
|
|
defer a.listener.Close()
|
2018-01-21 00:17:15 +00:00
|
|
|
for {
|
2018-07-07 19:04:11 +00:00
|
|
|
conn, err := a.listener.Accept()
|
2018-01-21 00:17:15 +00:00
|
|
|
if err == nil {
|
2018-12-17 19:06:52 +00:00
|
|
|
go a.handleRequest(conn)
|
2018-01-21 00:17:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-10 23:03:28 +00:00
|
|
|
// handleRequest calls the request handler for each request sent to the admin API.
|
2019-05-19 16:27:48 +00:00
|
|
|
func (a *AdminSocket) handleRequest(conn net.Conn) {
|
2018-05-20 16:21:14 +00:00
|
|
|
decoder := json.NewDecoder(conn)
|
|
|
|
encoder := json.NewEncoder(conn)
|
|
|
|
encoder.SetIndent("", " ")
|
2019-05-19 21:02:04 +00:00
|
|
|
recv := make(Info)
|
|
|
|
send := make(Info)
|
2018-05-20 16:21:14 +00:00
|
|
|
|
2018-05-20 20:44:30 +00:00
|
|
|
defer func() {
|
|
|
|
r := recover()
|
|
|
|
if r != nil {
|
2019-05-19 21:02:04 +00:00
|
|
|
send = Info{
|
2018-05-20 20:44:30 +00:00
|
|
|
"status": "error",
|
2019-07-07 18:41:53 +00:00
|
|
|
"error": "Check your syntax and input types",
|
2018-05-20 20:44:30 +00:00
|
|
|
}
|
2019-07-07 18:41:53 +00:00
|
|
|
a.log.Debugln("Admin socket error:", r)
|
2018-05-20 20:44:30 +00:00
|
|
|
if err := encoder.Encode(&send); err != nil {
|
2019-07-07 18:41:53 +00:00
|
|
|
a.log.Debugln("Admin socket JSON encode error:", err)
|
2018-05-20 20:44:30 +00:00
|
|
|
}
|
|
|
|
conn.Close()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2018-05-20 16:21:14 +00:00
|
|
|
for {
|
2018-05-20 20:44:30 +00:00
|
|
|
// Start with a clean slate on each request
|
2019-05-19 21:02:04 +00:00
|
|
|
recv = Info{}
|
|
|
|
send = Info{}
|
2018-05-20 20:44:30 +00:00
|
|
|
|
|
|
|
// Decode the input
|
2018-05-20 16:21:14 +00:00
|
|
|
if err := decoder.Decode(&recv); err != nil {
|
2019-05-19 21:03:20 +00:00
|
|
|
a.log.Debugln("Admin socket JSON decode error:", err)
|
2018-05-20 16:21:14 +00:00
|
|
|
return
|
2018-01-21 12:57:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-20 20:44:30 +00:00
|
|
|
// Send the request back with the response, and default to "error"
|
|
|
|
// unless the status is changed below by one of the handlers
|
2018-05-20 18:23:43 +00:00
|
|
|
send["request"] = recv
|
|
|
|
send["status"] = "error"
|
|
|
|
|
2019-07-07 18:41:53 +00:00
|
|
|
n := strings.ToLower(recv["request"].(string))
|
|
|
|
|
2019-05-19 21:02:04 +00:00
|
|
|
if _, ok := recv["request"]; !ok {
|
|
|
|
send["error"] = "No request sent"
|
2019-07-07 18:41:53 +00:00
|
|
|
goto respond
|
2019-05-19 21:02:04 +00:00
|
|
|
}
|
2018-05-20 16:21:14 +00:00
|
|
|
|
2019-07-07 18:41:53 +00:00
|
|
|
if h, ok := a.handlers[n]; ok {
|
2019-05-19 21:02:04 +00:00
|
|
|
// Check that we have all the required arguments
|
|
|
|
for _, arg := range h.args {
|
|
|
|
// An argument in [square brackets] is optional and not required,
|
|
|
|
// so we can safely ignore those
|
|
|
|
if strings.HasPrefix(arg, "[") && strings.HasSuffix(arg, "]") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Check if the field is missing
|
|
|
|
if _, ok := recv[arg]; !ok {
|
|
|
|
send = Info{
|
|
|
|
"status": "error",
|
|
|
|
"error": "Expected field missing: " + arg,
|
|
|
|
"expecting": arg,
|
2018-05-20 16:21:14 +00:00
|
|
|
}
|
2019-07-07 18:41:53 +00:00
|
|
|
goto respond
|
2018-05-20 16:21:14 +00:00
|
|
|
}
|
2019-05-19 21:02:04 +00:00
|
|
|
}
|
2018-05-20 20:44:30 +00:00
|
|
|
|
2019-05-19 21:02:04 +00:00
|
|
|
// By this point we should have all the fields we need, so call
|
|
|
|
// the handler
|
|
|
|
response, err := h.handler(recv)
|
|
|
|
if err != nil {
|
|
|
|
send["error"] = err.Error()
|
|
|
|
if response != nil {
|
|
|
|
send["response"] = response
|
2019-07-07 18:41:53 +00:00
|
|
|
goto respond
|
2019-05-19 21:02:04 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
send["status"] = "success"
|
|
|
|
if response != nil {
|
|
|
|
send["response"] = response
|
2019-07-07 18:41:53 +00:00
|
|
|
goto respond
|
2019-05-19 21:02:04 +00:00
|
|
|
}
|
2018-05-20 16:21:14 +00:00
|
|
|
}
|
2019-07-07 18:41:53 +00:00
|
|
|
} else {
|
|
|
|
// Start with a clean response on each request, which defaults to an error
|
|
|
|
// state. If a handler is found below then this will be overwritten
|
|
|
|
send = Info{
|
|
|
|
"request": recv,
|
|
|
|
"status": "error",
|
|
|
|
"error": fmt.Sprintf("Unknown action '%s', try 'list' for help", recv["request"].(string)),
|
|
|
|
}
|
|
|
|
goto respond
|
2018-05-20 16:21:14 +00:00
|
|
|
}
|
|
|
|
|
2018-05-20 20:44:30 +00:00
|
|
|
// Send the response back
|
2019-07-07 18:41:53 +00:00
|
|
|
respond:
|
2018-05-20 16:21:14 +00:00
|
|
|
if err := encoder.Encode(&send); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-05-20 20:44:30 +00:00
|
|
|
// If "keepalive" isn't true then close the connection
|
|
|
|
if keepalive, ok := recv["keepalive"]; !ok || !keepalive.(bool) {
|
|
|
|
conn.Close()
|
|
|
|
}
|
2018-05-20 16:21:14 +00:00
|
|
|
}
|
2018-01-30 00:48:14 +00:00
|
|
|
}
|