2020-03-05 21:47:49 +08:00
|
|
|
// Copyright 2020 guylewin, guy@lewin.co.il
|
|
|
|
//
|
|
|
|
// 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"
|
2020-04-20 13:35:47 +08:00
|
|
|
"net"
|
2020-03-05 21:47:49 +08:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/fatedier/frp/models/config"
|
|
|
|
"github.com/fatedier/frp/models/consts"
|
|
|
|
"github.com/fatedier/frp/utils/util"
|
|
|
|
"github.com/fatedier/frp/utils/vhost"
|
|
|
|
)
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
type TCPMuxProxy struct {
|
2020-03-05 21:47:49 +08:00
|
|
|
*BaseProxy
|
2020-05-24 17:48:37 +08:00
|
|
|
cfg *config.TCPMuxProxyConf
|
2020-03-05 21:47:49 +08:00
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
func (pxy *TCPMuxProxy) httpConnectListen(domain string, addrs []string) (_ []string, err error) {
|
2020-04-20 13:35:47 +08:00
|
|
|
var l net.Listener
|
|
|
|
if pxy.cfg.Group != "" {
|
2020-05-24 17:48:37 +08:00
|
|
|
l, err = pxy.rc.TCPMuxGroupCtl.Listen(pxy.ctx, pxy.cfg.Multiplexer, pxy.cfg.Group, pxy.cfg.GroupKey, domain)
|
2020-04-20 13:35:47 +08:00
|
|
|
} else {
|
2020-05-24 17:48:37 +08:00
|
|
|
routeConfig := &vhost.RouteConfig{
|
2020-04-20 13:35:47 +08:00
|
|
|
Domain: domain,
|
|
|
|
}
|
2020-05-24 17:48:37 +08:00
|
|
|
l, err = pxy.rc.TCPMuxHTTPConnectMuxer.Listen(pxy.ctx, routeConfig)
|
2020-03-05 21:47:49 +08:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-04-20 13:35:47 +08:00
|
|
|
pxy.xl.Info("tcpmux httpconnect multiplexer listens for host [%s]", domain)
|
2020-03-05 21:47:49 +08:00
|
|
|
pxy.listeners = append(pxy.listeners, l)
|
2020-05-24 17:48:37 +08:00
|
|
|
return append(addrs, util.CanonicalAddr(domain, pxy.serverCfg.TCPMuxHTTPConnectPort)), nil
|
2020-03-05 21:47:49 +08:00
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
func (pxy *TCPMuxProxy) httpConnectRun() (remoteAddr string, err error) {
|
2020-03-05 21:47:49 +08:00
|
|
|
addrs := make([]string, 0)
|
|
|
|
for _, domain := range pxy.cfg.CustomDomains {
|
|
|
|
if domain == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
addrs, err = pxy.httpConnectListen(domain, addrs)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if pxy.cfg.SubDomain != "" {
|
|
|
|
addrs, err = pxy.httpConnectListen(pxy.cfg.SubDomain+"."+pxy.serverCfg.SubDomainHost, addrs)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
pxy.startListenHandler(pxy, HandleUserTCPConnection)
|
2020-03-05 21:47:49 +08:00
|
|
|
remoteAddr = strings.Join(addrs, ",")
|
|
|
|
return remoteAddr, err
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
func (pxy *TCPMuxProxy) Run() (remoteAddr string, err error) {
|
2020-03-05 21:47:49 +08:00
|
|
|
switch pxy.cfg.Multiplexer {
|
2020-05-24 17:48:37 +08:00
|
|
|
case consts.HTTPConnectTCPMultiplexer:
|
2020-03-05 21:47:49 +08:00
|
|
|
remoteAddr, err = pxy.httpConnectRun()
|
|
|
|
default:
|
|
|
|
err = fmt.Errorf("unknown multiplexer [%s]", pxy.cfg.Multiplexer)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
pxy.Close()
|
|
|
|
}
|
|
|
|
return remoteAddr, err
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
func (pxy *TCPMuxProxy) GetConf() config.ProxyConf {
|
2020-03-05 21:47:49 +08:00
|
|
|
return pxy.cfg
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
func (pxy *TCPMuxProxy) Close() {
|
2020-03-05 21:47:49 +08:00
|
|
|
pxy.BaseProxy.Close()
|
|
|
|
}
|