2019-01-15 00:11:08 +08:00
|
|
|
// Copyright 2019 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 proxy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-10-12 20:13:12 +08:00
|
|
|
"net"
|
2023-06-16 00:14:19 +08:00
|
|
|
"reflect"
|
2022-02-09 15:19:35 +08:00
|
|
|
"strconv"
|
2019-01-15 00:11:08 +08:00
|
|
|
|
2020-09-23 13:49:14 +08:00
|
|
|
"github.com/fatedier/frp/pkg/config"
|
2019-01-15 00:11:08 +08:00
|
|
|
)
|
|
|
|
|
2023-06-16 00:14:19 +08:00
|
|
|
func init() {
|
|
|
|
RegisterProxyFactory(reflect.TypeOf(&config.TCPProxyConf{}), NewTCPProxy)
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
type TCPProxy struct {
|
2019-01-31 16:49:23 +08:00
|
|
|
*BaseProxy
|
2020-05-24 17:48:37 +08:00
|
|
|
cfg *config.TCPProxyConf
|
2019-01-15 00:11:08 +08:00
|
|
|
|
2023-06-16 00:14:19 +08:00
|
|
|
realBindPort int
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTCPProxy(baseProxy *BaseProxy, cfg config.ProxyConf) Proxy {
|
|
|
|
unwrapped, ok := cfg.(*config.TCPProxyConf)
|
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
baseProxy.usedPortsNum = 1
|
|
|
|
return &TCPProxy{
|
|
|
|
BaseProxy: baseProxy,
|
|
|
|
cfg: unwrapped,
|
|
|
|
}
|
2019-01-15 00:11:08 +08:00
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
func (pxy *TCPProxy) Run() (remoteAddr string, err error) {
|
2019-10-12 20:13:12 +08:00
|
|
|
xl := pxy.xl
|
2019-01-15 00:11:08 +08:00
|
|
|
if pxy.cfg.Group != "" {
|
2023-06-16 00:14:19 +08:00
|
|
|
l, realBindPort, errRet := pxy.rc.TCPGroupCtl.Listen(pxy.name, pxy.cfg.Group, pxy.cfg.GroupKey, pxy.serverCfg.ProxyBindAddr, pxy.cfg.RemotePort)
|
2019-01-15 00:11:08 +08:00
|
|
|
if errRet != nil {
|
|
|
|
err = errRet
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
l.Close()
|
|
|
|
}
|
|
|
|
}()
|
2023-06-16 00:14:19 +08:00
|
|
|
pxy.realBindPort = realBindPort
|
2019-10-12 20:13:12 +08:00
|
|
|
pxy.listeners = append(pxy.listeners, l)
|
|
|
|
xl.Info("tcp proxy listen port [%d] in group [%s]", pxy.cfg.RemotePort, pxy.cfg.Group)
|
2019-01-15 00:11:08 +08:00
|
|
|
} else {
|
2023-06-16 00:14:19 +08:00
|
|
|
pxy.realBindPort, err = pxy.rc.TCPPortManager.Acquire(pxy.name, pxy.cfg.RemotePort)
|
2019-01-15 00:11:08 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
2023-06-16 00:14:19 +08:00
|
|
|
pxy.rc.TCPPortManager.Release(pxy.realBindPort)
|
2019-01-15 00:11:08 +08:00
|
|
|
}
|
|
|
|
}()
|
2023-06-16 00:14:19 +08:00
|
|
|
listener, errRet := net.Listen("tcp", net.JoinHostPort(pxy.serverCfg.ProxyBindAddr, strconv.Itoa(pxy.realBindPort)))
|
2019-01-15 00:11:08 +08:00
|
|
|
if errRet != nil {
|
|
|
|
err = errRet
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pxy.listeners = append(pxy.listeners, listener)
|
2019-10-12 20:13:12 +08:00
|
|
|
xl.Info("tcp proxy listen port [%d]", pxy.cfg.RemotePort)
|
2019-01-15 00:11:08 +08:00
|
|
|
}
|
|
|
|
|
2023-06-16 00:14:19 +08:00
|
|
|
pxy.cfg.RemotePort = pxy.realBindPort
|
|
|
|
remoteAddr = fmt.Sprintf(":%d", pxy.realBindPort)
|
|
|
|
pxy.startCommonTCPListenersHandler()
|
2019-01-15 00:11:08 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
func (pxy *TCPProxy) GetConf() config.ProxyConf {
|
2019-01-15 00:11:08 +08:00
|
|
|
return pxy.cfg
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
func (pxy *TCPProxy) Close() {
|
2019-01-15 00:11:08 +08:00
|
|
|
pxy.BaseProxy.Close()
|
|
|
|
if pxy.cfg.Group == "" {
|
2023-06-16 00:14:19 +08:00
|
|
|
pxy.rc.TCPPortManager.Release(pxy.realBindPort)
|
2019-01-15 00:11:08 +08:00
|
|
|
}
|
|
|
|
}
|