Lower the complexity of newCluster()
Move the computation of clusterKey and bindAddress to separate functions.
This commit is contained in:
parent
7c398181a7
commit
f2e53dd869
75
cluster.go
75
cluster.go
|
@ -43,39 +43,15 @@ func newCluster(config *config, wg *wgState) (*cluster, error) {
|
||||||
if !config.Init {
|
if !config.Init {
|
||||||
loadState(state)
|
loadState(state)
|
||||||
}
|
}
|
||||||
if len(clusterKey) == 0 {
|
|
||||||
clusterKey = state.ClusterKey
|
clusterKey, err := computeClusterKey(state, clusterKey)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(clusterKey) == 0 {
|
bindAddr, err := computeBindAddr(config.BindAddr, config.BindIface)
|
||||||
clusterKey = make([]byte, clusterKeyLen)
|
if err != nil {
|
||||||
_, err := rand.Read(clusterKey)
|
return nil, err
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
// TODO: refactor this into subcommand ("showkey"?)
|
|
||||||
if isatty.IsTerminal(os.Stdout.Fd()) {
|
|
||||||
fmt.Printf("new cluster key generated: %s\n", base64.StdEncoding.EncodeToString(clusterKey))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
state.ClusterKey = clusterKey
|
|
||||||
|
|
||||||
// we check for mutual exclusion in config.go
|
|
||||||
bindAddr := config.BindAddr
|
|
||||||
if config.BindIface != "" {
|
|
||||||
iface, err := net.InterfaceByName(config.BindIface)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
addrs, err := iface.Addrs()
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if len(addrs) > 0 {
|
|
||||||
if addr, ok := addrs[0].(*net.IPNet); ok {
|
|
||||||
bindAddr = addr.IP.String()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mlConfig := memberlist.DefaultWANConfig()
|
mlConfig := memberlist.DefaultWANConfig()
|
||||||
|
@ -231,6 +207,43 @@ func (n *node) String() string {
|
||||||
return n.Addr.String()
|
return n.Addr.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func computeClusterKey(state *ClusterState, clusterKey []byte) ([]byte, error) {
|
||||||
|
if len(clusterKey) == 0 {
|
||||||
|
clusterKey = state.ClusterKey
|
||||||
|
}
|
||||||
|
if len(clusterKey) == 0 {
|
||||||
|
clusterKey = make([]byte, clusterKeyLen)
|
||||||
|
_, err := rand.Read(clusterKey)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if isatty.IsTerminal(os.Stdout.Fd()) {
|
||||||
|
fmt.Printf("new cluster key generated: %s\n", base64.StdEncoding.EncodeToString(clusterKey))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
state.ClusterKey = clusterKey
|
||||||
|
return clusterKey, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func computeBindAddr(bindAddr string, bindIface string) (string, error) {
|
||||||
|
if bindIface != "" {
|
||||||
|
iface, err := net.InterfaceByName(bindIface)
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
addrs, err := iface.Addrs()
|
||||||
|
if err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
if len(addrs) > 0 {
|
||||||
|
if addr, ok := addrs[0].(*net.IPNet); ok {
|
||||||
|
bindAddr = addr.IP.String()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return bindAddr, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (c *cluster) saveState() error {
|
func (c *cluster) saveState() error {
|
||||||
if err := os.MkdirAll(path.Dir(statePath), 0700); err != nil {
|
if err := os.MkdirAll(path.Dir(statePath), 0700); err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
Loading…
Reference in New Issue