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
|
|
|
|
2023-09-06 10:18:02 +08:00
|
|
|
v1 "github.com/fatedier/frp/pkg/config/v1"
|
2019-01-15 00:11:08 +08:00
|
|
|
)
|
|
|
|
|
2023-06-16 00:14:19 +08:00
|
|
|
func init() {
|
2023-09-06 10:18:02 +08:00
|
|
|
RegisterProxyFactory(reflect.TypeOf(&v1.TCPProxyConfig{}), NewTCPProxy)
|
2023-06-16 00:14:19 +08:00
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
type TCPProxy struct {
|
2019-01-31 16:49:23 +08:00
|
|
|
*BaseProxy
|
2023-09-06 10:18:02 +08:00
|
|
|
cfg *v1.TCPProxyConfig
|
2019-01-15 00:11:08 +08:00
|
|
|
|
2023-06-16 00:14:19 +08:00
|
|
|
realBindPort int
|
|
|
|
}
|
|
|
|
|
2023-09-06 10:18:02 +08:00
|
|
|
func NewTCPProxy(baseProxy *BaseProxy) Proxy {
|
|
|
|
unwrapped, ok := baseProxy.GetConfigurer().(*v1.TCPProxyConfig)
|
2023-06-16 00:14:19 +08:00
|
|
|
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
|
2023-09-06 10:18:02 +08:00
|
|
|
if pxy.cfg.LoadBalancer.Group != "" {
|
|
|
|
l, realBindPort, errRet := pxy.rc.TCPGroupCtl.Listen(pxy.name, pxy.cfg.LoadBalancer.Group, pxy.cfg.LoadBalancer.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)
|
2024-03-12 13:58:53 +08:00
|
|
|
xl.Infof("tcp proxy listen port [%d] in group [%s]", pxy.cfg.RemotePort, pxy.cfg.LoadBalancer.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)
|
2024-03-12 13:58:53 +08:00
|
|
|
xl.Infof("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) Close() {
|
2019-01-15 00:11:08 +08:00
|
|
|
pxy.BaseProxy.Close()
|
2023-09-06 10:18:02 +08:00
|
|
|
if pxy.cfg.LoadBalancer.Group == "" {
|
2023-06-16 00:14:19 +08:00
|
|
|
pxy.rc.TCPPortManager.Release(pxy.realBindPort)
|
2019-01-15 00:11:08 +08:00
|
|
|
}
|
|
|
|
}
|