frp/server/proxy/tcp.go

82 lines
2.1 KiB
Go
Raw Normal View History

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"
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
)
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
realPort int
}
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 != "" {
2020-05-24 17:48:37 +08:00
l, realPort, 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()
}
}()
pxy.realPort = realPort
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 {
2020-05-24 17:48:37 +08:00
pxy.realPort, 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 {
2020-05-24 17:48:37 +08:00
pxy.rc.TCPPortManager.Release(pxy.realPort)
2019-01-15 00:11:08 +08:00
}
}()
2019-10-12 20:13:12 +08:00
listener, errRet := net.Listen("tcp", fmt.Sprintf("%s:%d", pxy.serverCfg.ProxyBindAddr, pxy.realPort))
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
}
pxy.cfg.RemotePort = pxy.realPort
remoteAddr = fmt.Sprintf(":%d", pxy.realPort)
2020-05-24 17:48:37 +08:00
pxy.startListenHandler(pxy, HandleUserTCPConnection)
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 == "" {
2020-05-24 17:48:37 +08:00
pxy.rc.TCPPortManager.Release(pxy.realPort)
2019-01-15 00:11:08 +08:00
}
}