123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- // Copyright 2018 fatedier, fatedier@gmail.com
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package sub
- import (
- "context"
- "fmt"
- "io/fs"
- "os"
- "os/signal"
- "path/filepath"
- "sync"
- "syscall"
- "time"
- "github.com/spf13/cobra"
- "github.com/fatedier/frp/client"
- "github.com/fatedier/frp/pkg/config"
- v1 "github.com/fatedier/frp/pkg/config/v1"
- "github.com/fatedier/frp/pkg/config/v1/validation"
- "github.com/fatedier/frp/pkg/util/log"
- "github.com/fatedier/frp/pkg/util/version"
- )
- var (
- cfgFile string
- cfgDir string
- showVersion bool
- strictConfigMode bool
- )
- func init() {
- rootCmd.PersistentFlags().StringVarP(&cfgFile, "config", "c", "./frpc.ini", "config file of frpc")
- rootCmd.PersistentFlags().StringVarP(&cfgDir, "config_dir", "", "", "config directory, run one frpc service for each file in config directory")
- rootCmd.PersistentFlags().BoolVarP(&showVersion, "version", "v", false, "version of frpc")
- rootCmd.PersistentFlags().BoolVarP(&strictConfigMode, "strict_config", "", true, "strict config parsing mode, unknown fields will cause an errors")
- }
- var rootCmd = &cobra.Command{
- Use: "frpc",
- Short: "frpc is the client of frp (https://github.com/fatedier/frp)",
- RunE: func(cmd *cobra.Command, args []string) error {
- if showVersion {
- fmt.Println(version.Full())
- return nil
- }
- // If cfgDir is not empty, run multiple frpc service for each config file in cfgDir.
- // Note that it's only designed for testing. It's not guaranteed to be stable.
- if cfgDir != "" {
- _ = runMultipleClients(cfgDir)
- return nil
- }
- // Do not show command usage here.
- err := runClient(cfgFile)
- if err != nil {
- fmt.Println(err)
- os.Exit(1)
- }
- return nil
- },
- }
- func runMultipleClients(cfgDir string) error {
- var wg sync.WaitGroup
- err := filepath.WalkDir(cfgDir, func(path string, d fs.DirEntry, err error) error {
- if err != nil || d.IsDir() {
- return nil
- }
- wg.Add(1)
- time.Sleep(time.Millisecond)
- go func() {
- defer wg.Done()
- err := runClient(path)
- if err != nil {
- fmt.Printf("frpc service error for config file [%s]\n", path)
- }
- }()
- return nil
- })
- wg.Wait()
- return err
- }
- func Execute() {
- rootCmd.SetGlobalNormalizationFunc(config.WordSepNormalizeFunc)
- if err := rootCmd.Execute(); err != nil {
- os.Exit(1)
- }
- }
- func handleTermSignal(svr *client.Service) {
- ch := make(chan os.Signal, 1)
- signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM)
- <-ch
- svr.GracefulClose(500 * time.Millisecond)
- }
- func runClient(cfgFilePath string) error {
- cfg, proxyCfgs, visitorCfgs, isLegacyFormat, err := config.LoadClientConfig(cfgFilePath, strictConfigMode)
- if err != nil {
- return err
- }
- if isLegacyFormat {
- fmt.Printf("WARNING: ini format is deprecated and the support will be removed in the future, " +
- "please use yaml/json/toml format instead!\n")
- }
- warning, err := validation.ValidateAllClientConfig(cfg, proxyCfgs, visitorCfgs)
- if warning != nil {
- fmt.Printf("WARNING: %v\n", warning)
- }
- if err != nil {
- return err
- }
- return startService(cfg, proxyCfgs, visitorCfgs, cfgFilePath)
- }
- func startService(
- cfg *v1.ClientCommonConfig,
- proxyCfgs []v1.ProxyConfigurer,
- visitorCfgs []v1.VisitorConfigurer,
- cfgFile string,
- ) error {
- log.InitLogger(cfg.Log.To, cfg.Log.Level, int(cfg.Log.MaxDays), cfg.Log.DisablePrintColor)
- if cfgFile != "" {
- log.Infof("start frpc service for config file [%s]", cfgFile)
- defer log.Infof("frpc service for config file [%s] stopped", cfgFile)
- }
- svr, err := client.NewService(client.ServiceOptions{
- Common: cfg,
- ProxyCfgs: proxyCfgs,
- VisitorCfgs: visitorCfgs,
- ConfigFilePath: cfgFile,
- })
- if err != nil {
- return err
- }
- shouldGracefulClose := cfg.Transport.Protocol == "kcp" || cfg.Transport.Protocol == "quic"
- // Capture the exit signal if we use kcp or quic.
- if shouldGracefulClose {
- go handleTermSignal(svr)
- }
- return svr.Run(context.Background())
- }
|