123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- package daemon
- import (
- "bytes"
- _ "embed"
- "encoding/binary"
- "fmt"
- "io"
- "log"
- "net"
- "os"
- "os/signal"
- "syscall"
- "git.aetherial.dev/aeth/yosai/pkg/keytags"
- )
- /*
- #########################################################
- ######## PROTOCOL RELATED FUNCTIONS AND STRUCTS #########
- #########################################################
- */
- const SockMsgVers = 2
- const MESSAGE_RECIEVED = "MSG_RECV"
- const UNRESOLVEABLE = "UNRESOLVEABLE"
- const RequestOk = "OK"
- /*
- #################################
- ####### Protocol v2 area ########
- #################################
- */
- const VersionIdx = 0
- const StatusCodeIdx = 1
- const TypeInfoIdx = 2
- const BodyInfoIdx = 3
- const TargetInfoIdx = 11
- const MethodInfoIdx = 19
- const MsgHeaderEnd = 27
- const MsgRequest = "REQUEST"
- const MsgResponse = "RESPONSE"
- /*
- ################################
- ### Protocol v2 status codes ###
- ################################
- */
- const REQUEST_OK = 0
- const REQUEST_TIMEOUT = 1
- const REQUEST_FAILED = 2
- const REQUEST_UNAUTHORIZED = 3
- const REQUEST_ACCEPTED = 4
- const REQUEST_UNRESOLVED = 5
- /*
- ###############################
- ##### Protocol v2 methods #####
- ###############################
- */
- type Method string
- func MethodCheck(m string) (Method, error) {
- switch m {
- case "show":
- return SHOW, nil
- case "add":
- return ADD, nil
- case "delete":
- return DELETE, nil
- case "bootstrap":
- return BOOTSTRAP, nil
- case "reload":
- return RELOAD, nil
- case "poll":
- return POLL, nil
- case "run":
- return RUN, nil
- case "save":
- return SAVE, nil
- }
- return SHOW, &InvalidMethod{Method: m}
- }
- type InvalidMethod struct {
- Method string
- }
- func (i *InvalidMethod) Error() string {
- return "Invalid method passed: " + i.Method
- }
- const (
- SHOW Method = "show"
- ADD Method = "add"
- DELETE Method = "delete"
- BOOTSTRAP Method = "bootstrap"
- RELOAD Method = "reload"
- POLL Method = "poll"
- RUN Method = "run"
- SAVE Method = "save"
- )
- type SockMessage struct {
- Type string // the type of message being decoded
- TypeLen int8 // The length of the Type, used for convenience when Marshalling
- StatusMsg string // a string denoting what the output was, used in response messages
- StatusCode int8 // a status code that can be used to easily identify the type of error in response messages
- Version int8 `json:"version"` // This is a version header for failing fast
- Body []byte `json:"body"` // The body of a SockMessage SHOULD be json decodable, to allow for complex data to get sent over
- Target string `json:"target"` // This target 'route' for where this message should be sent. Think of this like an HTTP URI/path
- Method string `json:"method"` // This is the method that we will be executing on the target endpoint. Think of this like the HTTP method
- }
- func NewSockMessage(msgType string, statCode int8, body []byte) *SockMessage { // TODO: this function needs to be more versatile, and allow for additional more arguments
- return &SockMessage{Target: "",
- Method: "",
- Body: body,
- Version: SockMsgVers,
- Type: msgType,
- TypeLen: int8(len(msgType)),
- StatusCode: statCode,
- StatusMsg: RequestOk,
- }
- }
- /*
- Takes in a SockMessage struct and serializes it so that it can be sent over a socket, and then decoded as a SockMessage
- :param v: a SockMessage to serialize for transportation
- */
- func Marshal(v SockMessage) []byte { // TODO: Need to clean up the error handling here. This is really brittle. I just wanted to get it working
- msgHeader := []byte{}
- msgHeaderBuf := bytes.NewBuffer(msgHeader)
- preamble := []int8{
- SockMsgVers,
- v.StatusCode,
- v.TypeLen,
- }
- msgMeta := []int64{
- int64(len(v.Body)),
- int64(len(v.Target)),
- int64(len(v.Method)),
- }
- msgBody := [][]byte{
- []byte(v.Type),
- v.Body,
- []byte(v.Target),
- []byte(v.Method),
- }
- for i := range preamble {
- err := binary.Write(msgHeaderBuf, binary.LittleEndian, preamble[i])
- if err != nil {
- log.Fatal("Fatal error when writing: ", preamble[i], " into message header buffer.")
- }
- }
- for i := range msgMeta {
- err := binary.Write(msgHeaderBuf, binary.LittleEndian, msgMeta[i])
- if err != nil {
- log.Fatal("Fatal error when writing: ", msgMeta[i], " into message header buffer.")
- }
- }
- for i := range msgBody {
- _, err := msgHeaderBuf.Write(msgBody[i])
- if err != nil {
- log.Fatal("Fatal error when writing: ", msgBody[i], " into message header buffer.")
- }
- }
- return msgHeaderBuf.Bytes()
- }
- /*
- Unmarshalls a sock message byte array into a SockMessage struct, undoing what was done when Marshal() was called on the SockMessage
- :param msg: a byte array that can be unmarshalled into a SockMessage
- */
- func Unmarshal(msg []byte) SockMessage {
- vers := int8(msg[VersionIdx])
- statusCode := int8(msg[StatusCodeIdx])
- typeInfo := int(msg[TypeInfoIdx])
- bodyInfo := int(binary.LittleEndian.Uint64(msg[BodyInfoIdx:TargetInfoIdx]))
- targetInfo := int(binary.LittleEndian.Uint64(msg[TargetInfoIdx:MethodInfoIdx]))
- msgPayload := msg[MsgHeaderEnd:]
- body := msgPayload[typeInfo : typeInfo+bodyInfo]
- var msgInfo = []string{
- string(msgPayload[0:typeInfo]),
- string(msgPayload[(typeInfo + bodyInfo):(typeInfo + bodyInfo + targetInfo)]),
- string(msgPayload[(typeInfo + bodyInfo + targetInfo):]),
- }
- return SockMessage{
- Type: msgInfo[0],
- StatusCode: statusCode,
- StatusMsg: MESSAGE_RECIEVED,
- Version: vers,
- Body: body,
- Target: msgInfo[1],
- Method: msgInfo[2],
- }
- }
- type Context struct {
- conn net.Listener
- keyring *ApiKeyRing
- Keytags keytags.Keytagger
- routes map[string]Router
- sockPath string
- Config *Configuration
- servers []VpnServer
- rwBuffer bytes.Buffer
- stream io.Writer
- }
- /*
- Show all of the route information for the context
- :param msg: a message to parse from the daemon socket
- */
- func (c *Context) ShowRoutesHandler(msg SockMessage) SockMessage {
- var data string
- for k, v := range c.routes {
- data = data + k + "\n"
- routes := v.Routes()
- for i := range routes {
- data = data + "\u0009" + string(i) + "\n"
- }
- data = data + "\n"
- }
- return *NewSockMessage(MsgResponse, REQUEST_OK, []byte(data))
- }
- /*
- Context router
- */
- type ContextRouter struct {
- routes map[Method]func(SockMessage) SockMessage
- }
- func (c *ContextRouter) Register(method Method, callable func(SockMessage) SockMessage) {
- c.routes[method] = callable
- }
- func (c *ContextRouter) Routes() map[Method]func(SockMessage) SockMessage {
- return c.routes
- }
- func NewContextRouter() *ConfigRouter {
- return &ConfigRouter{routes: map[Method]func(SockMessage) SockMessage{}}
- }
- /*
- Write a message back to the caller
- */
- func (c *Context) Respond(conn net.Conn) {
- conn.Write(c.rwBuffer.Bytes())
- }
- /*
- Log wrapper for the context struct
- :param data: string arguments to send to the logger
- */
- func (c *Context) Log(msg ...string) {
- dMsg := []string{"daemon.Context:"}
- dMsg = append(dMsg, msg...)
- c.Config.Log(dMsg...)
- }
- func (c *Context) Handle(conn net.Conn) {
- defer conn.Close()
- b := make([]byte, 2048)
- nr, err := conn.Read(b)
- if err != nil {
- c.Log(err.Error())
- return
- }
- req := c.parseRequest(b[0:nr])
- out := c.resolveRoute(req)
- _, err = conn.Write(Marshal(out))
- if err != nil {
- c.Log(err.Error())
- return
- }
- }
- /*
- spawns subroutines to listen for different syscalls
- */
- func (c *Context) handleSyscalls() {
- // Cleanup the sockfile.
- chanSig := make(chan os.Signal, 1)
- signal.Notify(chanSig, os.Interrupt, syscall.SIGTERM)
- go func() {
- <-chanSig
- os.Remove(c.sockPath)
- os.Exit(1)
- }()
- }
- /*
- Open a daemon context pointer
- */
- func NewContext(path string, rdr io.Writer, apiKeyring *ApiKeyRing, conf *Configuration) *Context {
- sock, err := net.Listen("unix", path)
- if err != nil {
- log.Fatal(err)
- }
- routes := map[string]Router{}
- buf := make([]byte, 1024)
- return &Context{conn: sock, sockPath: path, rwBuffer: *bytes.NewBuffer(buf), stream: rdr, keyring: apiKeyring,
- routes: routes, Config: conf, Keytags: keytags.ConstKeytag{}}
- }
- /*
- Register a function to the daemons function router
- :param name: the name to map the function to. This will dictate how the CLI will resolve a keyword to the target function
- :param callable: the callable that will be executed when the keyword from 'name' is passed to the CLI
- */
- func (c *Context) Register(name string, router Router) {
- c.routes[name] = router
- }
- /*
- Hold the execution context open and listen for input
- */
- func (c *Context) ListenAndServe() {
- c.handleSyscalls()
- for {
- conn, err := c.conn.Accept()
- if err != nil {
- log.Fatal(err)
- }
- go c.Handle(conn)
- }
- }
- /*
- Validate and parse a stream from the unix socket and return an Action
- :param msg: a byte array with the action and arguments
- */
- func (c *Context) parseRequest(msg []byte) SockMessage {
- c.Log("Recieved request to parse action. ", string(msg))
- return Unmarshal(msg)
- }
- /*
- Resolve an action to a function
- :param action: a parsed action from the sock stream
- */
- func (c *Context) resolveRoute(req SockMessage) SockMessage {
- router, ok := c.routes[req.Target]
- if !ok {
- err := InvalidAction{Msg: "Invalid Action", Action: req.Target}
- c.Log("Error finding a router for target: ", req.Target)
- return SockMessage{StatusMsg: UNRESOLVEABLE, Body: []byte(err.Error())}
- }
- method, err := MethodCheck(req.Method)
- if err != nil {
- c.Log("Error parsing request: ", string(Marshal(req)), err.Error())
- }
- handlerFunc, ok := router.Routes()[method]
- if !ok {
- err := InvalidAction{Msg: "Unimplemented method", Action: req.Method}
- c.Log("Error invoking the method: ", req.Method, "on the target: ", req.Target)
- return SockMessage{StatusMsg: UNRESOLVEABLE, Body: []byte(err.Error())}
- }
- return handlerFunc(req)
- }
- /*
- ###########################################
- ################ ERRORS ###################
- ###########################################
- */
- type InvalidAction struct {
- Msg string
- Action string
- }
- func (i *InvalidAction) Error() string {
- return fmt.Sprintf("Invalid action: '%s' parsed. Error: %s", i.Action, i.Msg)
- }
- type DaemonIoError struct {
- Msg []byte
- Action string
- }
- func (d *DaemonIoError) Error() string {
- return fmt.Sprintf("There was an error %s. Message: %s", d.Action, string(d.Msg))
- }
|