mirror of
https://github.com/fatedier/frp.git
synced 2026-03-08 02:49:10 +08:00
Extract two shared helpers to eliminate duplicated code across STCP, SUDP, and XTCP visitors: - dialRawVisitorConn: handles ConnectServer + NewVisitorConn handshake (auth, sign key, 10s read deadline, error check) - wrapVisitorConn: handles encryption + pooled compression wrapping, returning a recycleFn for pool resource cleanup SUDP is upgraded from WithCompression to WithCompressionFromPool, aligning with the pooled compression used by STCP and XTCP.
86 lines
2.0 KiB
Go
86 lines
2.0 KiB
Go
// 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 visitor
|
|
|
|
import (
|
|
"net"
|
|
"strconv"
|
|
|
|
libio "github.com/fatedier/golib/io"
|
|
|
|
v1 "github.com/fatedier/frp/pkg/config/v1"
|
|
"github.com/fatedier/frp/pkg/util/xlog"
|
|
)
|
|
|
|
type STCPVisitor struct {
|
|
*BaseVisitor
|
|
|
|
cfg *v1.STCPVisitorConfig
|
|
}
|
|
|
|
func (sv *STCPVisitor) Run() (err error) {
|
|
if sv.cfg.BindPort > 0 {
|
|
sv.l, err = net.Listen("tcp", net.JoinHostPort(sv.cfg.BindAddr, strconv.Itoa(sv.cfg.BindPort)))
|
|
if err != nil {
|
|
return
|
|
}
|
|
go sv.acceptLoop(sv.l, "stcp local", sv.handleConn)
|
|
}
|
|
|
|
go sv.acceptLoop(sv.internalLn, "stcp internal", sv.handleConn)
|
|
|
|
if sv.plugin != nil {
|
|
sv.plugin.Start()
|
|
}
|
|
return
|
|
}
|
|
|
|
func (sv *STCPVisitor) Close() {
|
|
sv.BaseVisitor.Close()
|
|
}
|
|
|
|
func (sv *STCPVisitor) handleConn(userConn net.Conn) {
|
|
xl := xlog.FromContextSafe(sv.ctx)
|
|
var tunnelErr error
|
|
defer func() {
|
|
if tunnelErr != nil {
|
|
if eConn, ok := userConn.(interface{ CloseWithError(error) error }); ok {
|
|
_ = eConn.CloseWithError(tunnelErr)
|
|
return
|
|
}
|
|
}
|
|
userConn.Close()
|
|
}()
|
|
|
|
xl.Debugf("get a new stcp user connection")
|
|
visitorConn, err := sv.dialRawVisitorConn(sv.cfg.GetBaseConfig())
|
|
if err != nil {
|
|
xl.Warnf("dialRawVisitorConn error: %v", err)
|
|
tunnelErr = err
|
|
return
|
|
}
|
|
defer visitorConn.Close()
|
|
|
|
remote, recycleFn, err := wrapVisitorConn(visitorConn, sv.cfg.GetBaseConfig())
|
|
if err != nil {
|
|
xl.Warnf("wrapVisitorConn error: %v", err)
|
|
tunnelErr = err
|
|
return
|
|
}
|
|
defer recycleFn()
|
|
|
|
libio.Join(userConn, remote)
|
|
}
|