2018-07-26 15:21:35 +01:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-08-08 23:22:59 +01:00
|
|
|
"fmt"
|
2018-07-26 15:21:35 +01:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
2018-10-04 22:40:34 +01:00
|
|
|
|
2018-10-11 21:25:54 +01:00
|
|
|
"storj.io/storj/pkg/auth/grpcauth"
|
2018-10-16 12:43:44 +01:00
|
|
|
"storj.io/storj/pkg/cfgstruct"
|
2018-07-26 15:21:35 +01:00
|
|
|
"storj.io/storj/pkg/kademlia"
|
|
|
|
"storj.io/storj/pkg/overlay"
|
2018-10-08 23:15:54 +01:00
|
|
|
mockOverlay "storj.io/storj/pkg/overlay/mocks"
|
2018-07-26 15:21:35 +01:00
|
|
|
"storj.io/storj/pkg/pointerdb"
|
|
|
|
"storj.io/storj/pkg/process"
|
|
|
|
"storj.io/storj/pkg/provider"
|
2018-10-08 23:15:54 +01:00
|
|
|
"storj.io/storj/pkg/statdb"
|
2018-07-26 15:21:35 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
rootCmd = &cobra.Command{
|
2018-08-29 19:32:41 +01:00
|
|
|
Use: "satellite",
|
|
|
|
Short: "Satellite",
|
2018-07-26 15:21:35 +01:00
|
|
|
}
|
2018-07-30 08:38:31 +01:00
|
|
|
runCmd = &cobra.Command{
|
|
|
|
Use: "run",
|
2018-08-29 19:32:41 +01:00
|
|
|
Short: "Run the satellite",
|
2018-07-30 08:38:31 +01:00
|
|
|
RunE: cmdRun,
|
|
|
|
}
|
|
|
|
setupCmd = &cobra.Command{
|
|
|
|
Use: "setup",
|
|
|
|
Short: "Create config files",
|
|
|
|
RunE: cmdSetup,
|
|
|
|
}
|
2018-07-26 15:21:35 +01:00
|
|
|
|
2018-07-30 08:38:31 +01:00
|
|
|
runCfg struct {
|
2018-10-11 21:25:54 +01:00
|
|
|
Identity provider.IdentityConfig
|
|
|
|
Kademlia kademlia.Config
|
|
|
|
PointerDB pointerdb.Config
|
2018-10-05 16:58:07 +01:00
|
|
|
// Checker checker.Config
|
|
|
|
// Repairer repairer.Config
|
2018-08-20 19:24:11 +01:00
|
|
|
Overlay overlay.Config
|
2018-10-08 23:15:54 +01:00
|
|
|
MockOverlay mockOverlay.Config
|
|
|
|
StatDB statdb.Config
|
|
|
|
// RepairQueue queue.Config
|
|
|
|
// RepairChecker checker.Config
|
|
|
|
// Repairer repairer.Config
|
2018-07-26 15:21:35 +01:00
|
|
|
}
|
2018-07-30 08:38:31 +01:00
|
|
|
setupCfg struct {
|
2018-08-08 23:22:59 +01:00
|
|
|
BasePath string `default:"$CONFDIR" help:"base path for setup"`
|
2018-08-13 09:39:45 +01:00
|
|
|
CA provider.CASetupConfig
|
|
|
|
Identity provider.IdentitySetupConfig
|
|
|
|
Overwrite bool `default:"false" help:"whether to overwrite pre-existing configuration files"`
|
2018-07-30 08:38:31 +01:00
|
|
|
}
|
|
|
|
|
2018-08-29 19:32:41 +01:00
|
|
|
defaultConfDir = "$HOME/.storj/satellite"
|
2018-07-26 15:21:35 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2018-07-30 08:38:31 +01:00
|
|
|
rootCmd.AddCommand(runCmd)
|
|
|
|
rootCmd.AddCommand(setupCmd)
|
|
|
|
cfgstruct.Bind(runCmd.Flags(), &runCfg, cfgstruct.ConfDir(defaultConfDir))
|
|
|
|
cfgstruct.Bind(setupCmd.Flags(), &setupCfg, cfgstruct.ConfDir(defaultConfDir))
|
2018-07-26 15:21:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func cmdRun(cmd *cobra.Command, args []string) (err error) {
|
2018-08-20 19:24:11 +01:00
|
|
|
var o provider.Responsibility = runCfg.Overlay
|
|
|
|
if runCfg.MockOverlay.Nodes != "" {
|
|
|
|
o = runCfg.MockOverlay
|
|
|
|
}
|
2018-10-09 15:39:14 +01:00
|
|
|
return runCfg.Identity.Run(
|
|
|
|
process.Ctx(cmd),
|
|
|
|
grpcauth.NewAPIKeyInterceptor(),
|
|
|
|
runCfg.Kademlia,
|
|
|
|
runCfg.PointerDB,
|
|
|
|
o,
|
|
|
|
runCfg.StatDB,
|
|
|
|
)
|
2018-07-26 15:21:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func cmdSetup(cmd *cobra.Command, args []string) (err error) {
|
2018-08-13 19:29:13 +01:00
|
|
|
setupCfg.BasePath, err = filepath.Abs(setupCfg.BasePath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-08-08 23:22:59 +01:00
|
|
|
_, err = os.Stat(setupCfg.BasePath)
|
|
|
|
if !setupCfg.Overwrite && err == nil {
|
2018-08-29 19:32:41 +01:00
|
|
|
fmt.Println("An satellite configuration already exists. Rerun with --overwrite")
|
2018-08-08 23:22:59 +01:00
|
|
|
return nil
|
2018-10-19 16:06:02 +01:00
|
|
|
} else if setupCfg.Overwrite && err == nil {
|
|
|
|
fmt.Println("overwriting existing satellite config")
|
|
|
|
err = os.RemoveAll(setupCfg.BasePath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-08-08 23:22:59 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 08:38:31 +01:00
|
|
|
err = os.MkdirAll(setupCfg.BasePath, 0700)
|
2018-07-26 15:21:35 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-08-13 09:39:45 +01:00
|
|
|
// TODO: handle setting base path *and* identity file paths via args
|
|
|
|
// NB: if base path is set this overrides identity and CA path options
|
|
|
|
if setupCfg.BasePath != defaultConfDir {
|
|
|
|
setupCfg.CA.CertPath = filepath.Join(setupCfg.BasePath, "ca.cert")
|
|
|
|
setupCfg.CA.KeyPath = filepath.Join(setupCfg.BasePath, "ca.key")
|
|
|
|
setupCfg.Identity.CertPath = filepath.Join(setupCfg.BasePath, "identity.cert")
|
|
|
|
setupCfg.Identity.KeyPath = filepath.Join(setupCfg.BasePath, "identity.key")
|
|
|
|
}
|
|
|
|
err = provider.SetupIdentity(process.Ctx(cmd), setupCfg.CA, setupCfg.Identity)
|
2018-07-26 15:21:35 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-08-13 09:39:45 +01:00
|
|
|
o := map[string]interface{}{
|
2018-08-13 19:29:13 +01:00
|
|
|
"identity.cert-path": setupCfg.Identity.CertPath,
|
|
|
|
"identity.key-path": setupCfg.Identity.KeyPath,
|
2018-08-13 09:39:45 +01:00
|
|
|
}
|
|
|
|
|
2018-07-30 08:38:31 +01:00
|
|
|
return process.SaveConfig(runCmd.Flags(),
|
2018-08-13 09:39:45 +01:00
|
|
|
filepath.Join(setupCfg.BasePath, "config.yaml"), o)
|
2018-07-26 15:21:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2018-07-30 08:38:31 +01:00
|
|
|
runCmd.Flags().String("config",
|
|
|
|
filepath.Join(defaultConfDir, "config.yaml"), "path to configuration")
|
|
|
|
process.Exec(rootCmd)
|
2018-07-26 15:21:35 +01:00
|
|
|
}
|