123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- // Copyright 2017 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 client
- import (
- "context"
- "crypto/tls"
- "errors"
- "fmt"
- "io"
- "net"
- "runtime"
- "strconv"
- "sync"
- "sync/atomic"
- "time"
- "github.com/fatedier/frp/assets"
- "github.com/fatedier/frp/pkg/auth"
- "github.com/fatedier/frp/pkg/config"
- "github.com/fatedier/frp/pkg/msg"
- "github.com/fatedier/frp/pkg/transport"
- "github.com/fatedier/frp/pkg/util/log"
- frpNet "github.com/fatedier/frp/pkg/util/net"
- "github.com/fatedier/frp/pkg/util/version"
- "github.com/fatedier/frp/pkg/util/xlog"
- libdial "github.com/fatedier/golib/net/dial"
- fmux "github.com/hashicorp/yamux"
- )
- // Service is a client service.
- type Service struct {
- // uniq id got from frps, attach it in loginMsg
- runID string
- // manager control connection with server
- ctl *Control
- ctlMu sync.RWMutex
- // Sets authentication based on selected method
- authSetter auth.Setter
- cfg config.ClientCommonConf
- pxyCfgs map[string]config.ProxyConf
- visitorCfgs map[string]config.VisitorConf
- cfgMu sync.RWMutex
- // The configuration file used to initialize this client, or an empty
- // string if no configuration file was used.
- cfgFile string
- // This is configured by the login response from frps
- serverUDPPort int
- exit uint32 // 0 means not exit
- // service context
- ctx context.Context
- // call cancel to stop service
- cancel context.CancelFunc
- }
- func NewService(cfg config.ClientCommonConf, pxyCfgs map[string]config.ProxyConf, visitorCfgs map[string]config.VisitorConf, cfgFile string) (svr *Service, err error) {
- ctx, cancel := context.WithCancel(context.Background())
- svr = &Service{
- authSetter: auth.NewAuthSetter(cfg.ClientConfig),
- cfg: cfg,
- cfgFile: cfgFile,
- pxyCfgs: pxyCfgs,
- visitorCfgs: visitorCfgs,
- exit: 0,
- ctx: xlog.NewContext(ctx, xlog.New()),
- cancel: cancel,
- }
- return
- }
- func (svr *Service) GetController() *Control {
- svr.ctlMu.RLock()
- defer svr.ctlMu.RUnlock()
- return svr.ctl
- }
- func (svr *Service) Run() error {
- xl := xlog.FromContextSafe(svr.ctx)
- // login to frps
- for {
- conn, session, err := svr.login()
- if err != nil {
- xl.Warn("login to server failed: %v", err)
- // if login_fail_exit is true, just exit this program
- // otherwise sleep a while and try again to connect to server
- if svr.cfg.LoginFailExit {
- return err
- }
- time.Sleep(10 * time.Second)
- } else {
- // login success
- ctl := NewControl(svr.ctx, svr.runID, conn, session, svr.cfg, svr.pxyCfgs, svr.visitorCfgs, svr.serverUDPPort, svr.authSetter)
- ctl.Run()
- svr.ctlMu.Lock()
- svr.ctl = ctl
- svr.ctlMu.Unlock()
- break
- }
- }
- go svr.keepControllerWorking()
- if svr.cfg.AdminPort != 0 {
- // Init admin server assets
- assets.Load(svr.cfg.AssetsDir)
- address := net.JoinHostPort(svr.cfg.AdminAddr, strconv.Itoa(svr.cfg.AdminPort))
- err := svr.RunAdminServer(address)
- if err != nil {
- log.Warn("run admin server error: %v", err)
- }
- log.Info("admin server listen on %s:%d", svr.cfg.AdminAddr, svr.cfg.AdminPort)
- }
- <-svr.ctx.Done()
- return nil
- }
- func (svr *Service) keepControllerWorking() {
- xl := xlog.FromContextSafe(svr.ctx)
- maxDelayTime := 20 * time.Second
- delayTime := time.Second
- // if frpc reconnect frps, we need to limit retry times in 1min
- // current retry logic is sleep 0s, 0s, 0s, 1s, 2s, 4s, 8s, ...
- // when exceed 1min, we will reset delay and counts
- cutoffTime := time.Now().Add(time.Minute)
- reconnectDelay := time.Second
- reconnectCounts := 1
- for {
- <-svr.ctl.ClosedDoneCh()
- if atomic.LoadUint32(&svr.exit) != 0 {
- return
- }
- // the first three retry with no delay
- if reconnectCounts > 3 {
- time.Sleep(reconnectDelay)
- reconnectDelay *= 2
- }
- reconnectCounts++
- now := time.Now()
- if now.After(cutoffTime) {
- // reset
- cutoffTime = now.Add(time.Minute)
- reconnectDelay = time.Second
- reconnectCounts = 1
- }
- for {
- xl.Info("try to reconnect to server...")
- conn, session, err := svr.login()
- if err != nil {
- xl.Warn("reconnect to server error: %v", err)
- time.Sleep(delayTime)
- opErr := &net.OpError{}
- // quick retry for dial error
- if errors.As(err, &opErr) && opErr.Op == "dial" {
- delayTime = 2 * time.Second
- } else {
- delayTime = delayTime * 2
- if delayTime > maxDelayTime {
- delayTime = maxDelayTime
- }
- }
- continue
- }
- // reconnect success, init delayTime
- delayTime = time.Second
- ctl := NewControl(svr.ctx, svr.runID, conn, session, svr.cfg, svr.pxyCfgs, svr.visitorCfgs, svr.serverUDPPort, svr.authSetter)
- ctl.Run()
- svr.ctlMu.Lock()
- if svr.ctl != nil {
- svr.ctl.Close()
- }
- svr.ctl = ctl
- svr.ctlMu.Unlock()
- break
- }
- }
- }
- // login creates a connection to frps and registers it self as a client
- // conn: control connection
- // session: if it's not nil, using tcp mux
- func (svr *Service) login() (conn net.Conn, session *fmux.Session, err error) {
- xl := xlog.FromContextSafe(svr.ctx)
- var tlsConfig *tls.Config
- if svr.cfg.TLSEnable {
- sn := svr.cfg.TLSServerName
- if sn == "" {
- sn = svr.cfg.ServerAddr
- }
- tlsConfig, err = transport.NewClientTLSConfig(
- svr.cfg.TLSCertFile,
- svr.cfg.TLSKeyFile,
- svr.cfg.TLSTrustedCaFile,
- sn)
- if err != nil {
- xl.Warn("fail to build tls configuration when service login, err: %v", err)
- return
- }
- }
- proxyType, addr, auth, err := libdial.ParseProxyURL(svr.cfg.HTTPProxy)
- if err != nil {
- xl.Error("fail to parse proxy url")
- return
- }
- dialOptions := []libdial.DialOption{}
- protocol := svr.cfg.Protocol
- if protocol == "websocket" {
- protocol = "tcp"
- dialOptions = append(dialOptions, libdial.WithAfterHook(libdial.AfterHook{Hook: frpNet.DialHookWebsocket()}))
- }
- if svr.cfg.ConnectServerLocalIP != "" {
- dialOptions = append(dialOptions, libdial.WithLocalAddr(svr.cfg.ConnectServerLocalIP))
- }
- dialOptions = append(dialOptions,
- libdial.WithProtocol(protocol),
- libdial.WithProxy(proxyType, addr),
- libdial.WithProxyAuth(auth),
- libdial.WithTLSConfig(tlsConfig),
- libdial.WithAfterHook(libdial.AfterHook{
- Hook: frpNet.DialHookCustomTLSHeadByte(tlsConfig != nil, svr.cfg.DisableCustomTLSFirstByte),
- }),
- )
- conn, err = libdial.Dial(
- net.JoinHostPort(svr.cfg.ServerAddr, strconv.Itoa(svr.cfg.ServerPort)),
- dialOptions...,
- )
- if err != nil {
- return
- }
- defer func() {
- if err != nil {
- conn.Close()
- if session != nil {
- session.Close()
- }
- }
- }()
- if svr.cfg.TCPMux {
- fmuxCfg := fmux.DefaultConfig()
- fmuxCfg.KeepAliveInterval = time.Duration(svr.cfg.TCPMuxKeepaliveInterval) * time.Second
- fmuxCfg.LogOutput = io.Discard
- session, err = fmux.Client(conn, fmuxCfg)
- if err != nil {
- return
- }
- stream, errRet := session.OpenStream()
- if errRet != nil {
- session.Close()
- err = errRet
- return
- }
- conn = stream
- }
- loginMsg := &msg.Login{
- Arch: runtime.GOARCH,
- Os: runtime.GOOS,
- PoolCount: svr.cfg.PoolCount,
- User: svr.cfg.User,
- Version: version.Full(),
- Timestamp: time.Now().Unix(),
- RunID: svr.runID,
- Metas: svr.cfg.Metas,
- }
- // Add auth
- if err = svr.authSetter.SetLogin(loginMsg); err != nil {
- return
- }
- if err = msg.WriteMsg(conn, loginMsg); err != nil {
- return
- }
- var loginRespMsg msg.LoginResp
- conn.SetReadDeadline(time.Now().Add(10 * time.Second))
- if err = msg.ReadMsgInto(conn, &loginRespMsg); err != nil {
- return
- }
- conn.SetReadDeadline(time.Time{})
- if loginRespMsg.Error != "" {
- err = fmt.Errorf("%s", loginRespMsg.Error)
- xl.Error("%s", loginRespMsg.Error)
- return
- }
- svr.runID = loginRespMsg.RunID
- xl.ResetPrefixes()
- xl.AppendPrefix(svr.runID)
- svr.serverUDPPort = loginRespMsg.ServerUDPPort
- xl.Info("login to server success, get run id [%s], server udp port [%d]", loginRespMsg.RunID, loginRespMsg.ServerUDPPort)
- return
- }
- func (svr *Service) ReloadConf(pxyCfgs map[string]config.ProxyConf, visitorCfgs map[string]config.VisitorConf) error {
- svr.cfgMu.Lock()
- svr.pxyCfgs = pxyCfgs
- svr.visitorCfgs = visitorCfgs
- svr.cfgMu.Unlock()
- return svr.ctl.ReloadConf(pxyCfgs, visitorCfgs)
- }
- func (svr *Service) Close() {
- svr.GracefulClose(time.Duration(0))
- }
- func (svr *Service) GracefulClose(d time.Duration) {
- atomic.StoreUint32(&svr.exit, 1)
- if svr.ctl != nil {
- svr.ctl.GracefulClose(d)
- }
- svr.cancel()
- }
|