dae/cmd/run.go

118 lines
2.9 KiB
Go
Raw Normal View History

2023-01-28 00:50:21 +07:00
package cmd
import (
"fmt"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/v2rayA/dae/cmd/internal"
2023-01-28 00:50:21 +07:00
"github.com/v2rayA/dae/component/control"
"github.com/v2rayA/dae/config"
"github.com/v2rayA/dae/pkg/config_parser"
"github.com/v2rayA/dae/pkg/logger"
"os"
"os/signal"
"syscall"
)
var (
cfgFile string
disableTimestamp bool
2023-01-28 00:50:21 +07:00
runCmd = &cobra.Command{
Use: "run",
Short: "Run dae in the foreground",
Run: func(cmd *cobra.Command, args []string) {
if cfgFile == "" {
logrus.Fatalln("Argument \"--config\" or \"-c\" is required but not provided.")
}
// Read config from --config cfgFile.
param, err := readConfig(cfgFile)
if err != nil {
2023-02-05 20:05:23 +07:00
logrus.Fatalln("readConfig:", err)
}
log := logger.NewLogger(param.Global.LogLevel, disableTimestamp)
logrus.SetLevel(log.Level)
if err := Run(log, param); err != nil {
2023-01-28 00:50:21 +07:00
logrus.Fatalln(err)
}
},
}
)
func init() {
runCmd.PersistentFlags().StringVarP(&cfgFile, "config", "c", "", "config file")
runCmd.PersistentFlags().BoolVarP(&disableTimestamp, "disable-timestamp", "", false, "disable timestamp")
2023-01-28 00:50:21 +07:00
}
func Run(log *logrus.Logger, param *config.Params) (err error) {
2023-01-28 00:50:21 +07:00
2023-02-04 14:02:44 +07:00
// Require "sudo" if necessary.
internal.AutoSu()
2023-01-28 00:50:21 +07:00
// Resolve subscriptions to nodes.
nodeList := make([]string, len(param.Node))
copy(nodeList, param.Node)
for _, sub := range param.Subscription {
nodes, err := internal.ResolveSubscription(log, sub)
2023-01-28 00:50:21 +07:00
if err != nil {
log.Warnf(`failed to resolve subscription "%v": %v`, sub, err)
}
nodeList = append(nodeList, nodes...)
}
if len(nodeList) == 0 {
return fmt.Errorf("no node found, which could because all subscription resolving failed")
}
2023-01-28 00:50:21 +07:00
2023-02-01 11:30:26 +07:00
if len(param.Global.LanInterface) == 0 && len(param.Global.WanInterface) == 0 {
2023-02-01 09:59:57 +07:00
return fmt.Errorf("LanInterface and WanInterface cannot both be empty")
}
2023-01-28 00:50:21 +07:00
// New ControlPlane.
t, err := control.NewControlPlane(
log,
nodeList,
param.Group,
&param.Routing,
param.Global.DnsUpstream,
param.Global.CheckUrl,
2023-01-28 14:47:43 +07:00
param.Global.CheckInterval,
param.Global.LanInterface,
param.Global.WanInterface,
2023-01-28 00:50:21 +07:00
)
if err != nil {
return err
}
// Serve tproxy TCP/UDP server util signals.
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGQUIT, syscall.SIGKILL, syscall.SIGILL)
go func() {
if err := t.ListenAndServe(param.Global.TproxyPort); err != nil {
log.Errorln("ListenAndServe:", err)
sigs <- nil
}
}()
<-sigs
if e := t.Close(); e != nil {
return fmt.Errorf("close control plane: %w", e)
}
return nil
}
2023-02-04 21:21:27 +07:00
func readConfig(cfgFile string) (params *config.Params, err error) {
2023-01-28 00:50:21 +07:00
b, err := os.ReadFile(cfgFile)
if err != nil {
return nil, err
}
sections, err := config_parser.Parse(string(b))
if err != nil {
return nil, fmt.Errorf("\n%w", err)
2023-01-28 00:50:21 +07:00
}
if params, err = config.New(sections); err != nil {
return nil, err
}
return params, nil
}