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"
|
2023-06-16 00:14:19 +08:00
|
|
|
"reflect"
|
2019-01-15 00:11:08 +08:00
|
|
|
|
2022-08-29 01:02:53 +08:00
|
|
|
"github.com/fatedier/golib/errors"
|
|
|
|
|
2023-09-06 10:18:02 +08:00
|
|
|
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
|
|
|
)
|
|
|
|
|
2023-06-16 00:14:19 +08:00
|
|
|
func init() {
|
2023-09-06 10:18:02 +08:00
|
|
|
RegisterProxyFactory(reflect.TypeOf(&v1.XTCPProxyConfig{}), NewXTCPProxy)
|
2023-06-16 00:14:19 +08:00
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
type XTCPProxy struct {
|
2019-01-31 16:49:23 +08:00
|
|
|
*BaseProxy
|
2023-09-06 10:18:02 +08:00
|
|
|
cfg *v1.XTCPProxyConfig
|
2019-01-15 00:11:08 +08:00
|
|
|
|
|
|
|
closeCh chan struct{}
|
|
|
|
}
|
|
|
|
|
2023-09-06 10:18:02 +08:00
|
|
|
func NewXTCPProxy(baseProxy *BaseProxy) Proxy {
|
|
|
|
unwrapped, ok := baseProxy.GetConfigurer().(*v1.XTCPProxyConfig)
|
2023-06-16 00:14:19 +08:00
|
|
|
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
|
|
|
|
}
|
2023-06-02 16:06:29 +08:00
|
|
|
allowUsers := pxy.cfg.AllowUsers
|
|
|
|
// if allowUsers is empty, only allow same user from proxy
|
|
|
|
if len(allowUsers) == 0 {
|
|
|
|
allowUsers = []string{pxy.GetUserInfo().User}
|
|
|
|
}
|
2023-09-06 10:18:02 +08:00
|
|
|
sidCh, err := pxy.rc.NatHoleController.ListenClient(pxy.GetName(), pxy.cfg.Secretkey, allowUsers)
|
2023-06-16 00:41:06 +08:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2019-01-15 00:11:08 +08:00
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-pxy.closeCh:
|
2023-05-28 16:50:43 +08:00
|
|
|
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{
|
2023-05-28 16:50:43 +08:00
|
|
|
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
|
|
|
}
|
2023-05-28 16:50:43 +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)
|
|
|
|
})
|
|
|
|
}
|