frp/server/proxy/xtcp.go

96 lines
2.2 KiB
Go
Raw Permalink 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"
"reflect"
2019-01-15 00:11:08 +08:00
2022-08-29 01:02:53 +08:00
"github.com/fatedier/golib/errors"
v1 "github.com/fatedier/frp/pkg/config/v1"
2020-09-23 13:49:14 +08:00
"github.com/fatedier/frp/pkg/msg"
2019-01-15 00:11:08 +08:00
)
func init() {
RegisterProxyFactory(reflect.TypeOf(&v1.XTCPProxyConfig{}), NewXTCPProxy)
}
2020-05-24 17:48:37 +08:00
type XTCPProxy struct {
2019-01-31 16:49:23 +08:00
*BaseProxy
cfg *v1.XTCPProxyConfig
2019-01-15 00:11:08 +08:00
closeCh chan struct{}
}
func NewXTCPProxy(baseProxy *BaseProxy) Proxy {
unwrapped, ok := baseProxy.GetConfigurer().(*v1.XTCPProxyConfig)
if !ok {
return nil
}
return &XTCPProxy{
BaseProxy: baseProxy,
cfg: unwrapped,
}
}
2020-05-24 17:48:37 +08:00
func (pxy *XTCPProxy) 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.rc.NatHoleController == nil {
err = fmt.Errorf("xtcp is not supported in frps")
return
}
allowUsers := pxy.cfg.AllowUsers
// if allowUsers is empty, only allow same user from proxy
if len(allowUsers) == 0 {
allowUsers = []string{pxy.GetUserInfo().User}
}
sidCh, err := pxy.rc.NatHoleController.ListenClient(pxy.GetName(), pxy.cfg.Secretkey, allowUsers)
if err != nil {
return "", err
}
2019-01-15 00:11:08 +08:00
go func() {
for {
select {
case <-pxy.closeCh:
return
case sid := <-sidCh:
2019-03-29 19:01:18 +08:00
workConn, errRet := pxy.GetWorkConnFromPool(nil, nil)
2019-01-15 00:11:08 +08:00
if errRet != nil {
continue
}
m := &msg.NatHoleSid{
Sid: sid,
2019-01-15 00:11:08 +08:00
}
errRet = msg.WriteMsg(workConn, m)
if errRet != nil {
2024-03-12 13:58:53 +08:00
xl.Warnf("write nat hole sid package error, %v", errRet)
2019-01-15 00:11:08 +08:00
}
workConn.Close()
2019-01-15 00:11:08 +08:00
}
}
}()
return
}
2020-05-24 17:48:37 +08:00
func (pxy *XTCPProxy) Close() {
2019-01-15 00:11:08 +08:00
pxy.BaseProxy.Close()
pxy.rc.NatHoleController.CloseClient(pxy.GetName())
2022-08-29 01:02:53 +08:00
_ = errors.PanicToError(func() {
2019-01-15 00:11:08 +08:00
close(pxy.closeCh)
})
}