mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-09 19:10:44 +00:00
150 lines
3.4 KiB
Go
150 lines
3.4 KiB
Go
package server
|
|
|
|
import (
|
|
"crypto"
|
|
"encoding/base64"
|
|
"encoding/json"
|
|
"errors"
|
|
"io/ioutil"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/cbeuw/Cloak/internal/server/usermanager"
|
|
)
|
|
|
|
type rawConfig struct {
|
|
WebServerAddr string
|
|
PrivateKey string
|
|
AdminUID string
|
|
}
|
|
type stateManager interface {
|
|
ParseConfig(string) error
|
|
SetAESKey(string)
|
|
PutUsedRandom([32]byte)
|
|
}
|
|
|
|
// State type stores the global state of the program
|
|
type State struct {
|
|
SS_LOCAL_HOST string
|
|
SS_LOCAL_PORT string
|
|
SS_REMOTE_HOST string
|
|
SS_REMOTE_PORT string
|
|
|
|
Now func() time.Time
|
|
AdminUID []byte
|
|
staticPv crypto.PrivateKey
|
|
Userpanel *usermanager.Userpanel
|
|
usedRandomM sync.RWMutex
|
|
usedRandom map[[32]byte]int
|
|
|
|
WebServerAddr string
|
|
}
|
|
|
|
func InitState(localHost, localPort, remoteHost, remotePort string, nowFunc func() time.Time, dbPath string) (*State, error) {
|
|
up, err := usermanager.MakeUserpanel(dbPath)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ret := &State{
|
|
SS_LOCAL_HOST: localHost,
|
|
SS_LOCAL_PORT: localPort,
|
|
SS_REMOTE_HOST: remoteHost,
|
|
SS_REMOTE_PORT: remotePort,
|
|
Now: nowFunc,
|
|
Userpanel: up,
|
|
}
|
|
ret.usedRandom = make(map[[32]byte]int)
|
|
return ret, nil
|
|
}
|
|
|
|
// semi-colon separated value.
|
|
func ssvToJson(ssv string) (ret []byte) {
|
|
unescape := func(s string) string {
|
|
r := strings.Replace(s, `\\`, `\`, -1)
|
|
r = strings.Replace(r, `\=`, `=`, -1)
|
|
r = strings.Replace(r, `\;`, `;`, -1)
|
|
return r
|
|
}
|
|
lines := strings.Split(unescape(ssv), ";")
|
|
ret = []byte("{")
|
|
for _, ln := range lines {
|
|
if ln == "" {
|
|
break
|
|
}
|
|
sp := strings.SplitN(ln, "=", 2)
|
|
key := sp[0]
|
|
value := sp[1]
|
|
ret = append(ret, []byte(`"`+key+`":"`+value+`",`)...)
|
|
|
|
}
|
|
ret = ret[:len(ret)-1] // remove the last comma
|
|
ret = append(ret, '}')
|
|
return ret
|
|
}
|
|
|
|
// ParseConfig parses the config (either a path to json or in-line ssv config) into a State variable
|
|
func (sta *State) ParseConfig(conf string) (err error) {
|
|
var content []byte
|
|
if strings.Contains(conf, ";") && strings.Contains(conf, "=") {
|
|
content = ssvToJson(conf)
|
|
} else {
|
|
content, err = ioutil.ReadFile(conf)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
var preParse rawConfig
|
|
err = json.Unmarshal(content, &preParse)
|
|
if err != nil {
|
|
return errors.New("Failed to unmarshal: " + err.Error())
|
|
}
|
|
|
|
sta.WebServerAddr = preParse.WebServerAddr
|
|
|
|
pvBytes, err := base64.StdEncoding.DecodeString(preParse.PrivateKey)
|
|
if err != nil {
|
|
return errors.New("Failed to decode private key: " + err.Error())
|
|
}
|
|
var pv [32]byte
|
|
copy(pv[:], pvBytes)
|
|
sta.staticPv = &pv
|
|
|
|
adminUID, err := base64.StdEncoding.DecodeString(preParse.AdminUID)
|
|
if err != nil {
|
|
return errors.New("Failed to decode AdminUID: " + err.Error())
|
|
}
|
|
sta.AdminUID = adminUID
|
|
return nil
|
|
}
|
|
|
|
func (sta *State) getUsedRandom(random [32]byte) int {
|
|
sta.usedRandomM.Lock()
|
|
defer sta.usedRandomM.Unlock()
|
|
return sta.usedRandom[random]
|
|
|
|
}
|
|
|
|
// PutUsedRandom adds a random field into map usedRandom
|
|
func (sta *State) putUsedRandom(random [32]byte) {
|
|
sta.usedRandomM.Lock()
|
|
sta.usedRandom[random] = int(sta.Now().Unix())
|
|
sta.usedRandomM.Unlock()
|
|
}
|
|
|
|
// UsedRandomCleaner clears the cache of used random fields every 12 hours
|
|
func (sta *State) UsedRandomCleaner() {
|
|
for {
|
|
time.Sleep(12 * time.Hour)
|
|
now := int(sta.Now().Unix())
|
|
sta.usedRandomM.Lock()
|
|
for key, t := range sta.usedRandom {
|
|
if now-t > 12*3600 {
|
|
delete(sta.usedRandom, key)
|
|
}
|
|
}
|
|
sta.usedRandomM.Unlock()
|
|
}
|
|
}
|