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 (
|
2023-06-16 00:14:19 +08:00
|
|
|
"reflect"
|
2019-01-15 00:11:08 +08:00
|
|
|
"strings"
|
|
|
|
|
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/util/util"
|
|
|
|
"github.com/fatedier/frp/pkg/util/vhost"
|
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.HTTPSProxyConfig{}), NewHTTPSProxy)
|
2023-06-16 00:14:19 +08:00
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
type HTTPSProxy struct {
|
2019-01-31 16:49:23 +08:00
|
|
|
*BaseProxy
|
2023-09-06 10:18:02 +08:00
|
|
|
cfg *v1.HTTPSProxyConfig
|
2019-01-15 00:11:08 +08:00
|
|
|
}
|
|
|
|
|
2023-09-06 10:18:02 +08:00
|
|
|
func NewHTTPSProxy(baseProxy *BaseProxy) Proxy {
|
|
|
|
unwrapped, ok := baseProxy.GetConfigurer().(*v1.HTTPSProxyConfig)
|
2023-06-16 00:14:19 +08:00
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &HTTPSProxy{
|
|
|
|
BaseProxy: baseProxy,
|
|
|
|
cfg: unwrapped,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
func (pxy *HTTPSProxy) Run() (remoteAddr string, err error) {
|
2019-10-12 20:13:12 +08:00
|
|
|
xl := pxy.xl
|
2020-05-24 17:48:37 +08:00
|
|
|
routeConfig := &vhost.RouteConfig{}
|
2019-01-15 00:11:08 +08:00
|
|
|
|
2019-07-31 00:41:58 +08:00
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
pxy.Close()
|
|
|
|
}
|
|
|
|
}()
|
2019-01-15 00:11:08 +08:00
|
|
|
addrs := make([]string, 0)
|
|
|
|
for _, domain := range pxy.cfg.CustomDomains {
|
2019-03-29 17:12:44 +08:00
|
|
|
if domain == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-01-15 00:11:08 +08:00
|
|
|
routeConfig.Domain = domain
|
2020-05-24 17:48:37 +08:00
|
|
|
l, errRet := pxy.rc.VhostHTTPSMuxer.Listen(pxy.ctx, routeConfig)
|
2019-01-15 00:11:08 +08:00
|
|
|
if errRet != nil {
|
|
|
|
err = errRet
|
|
|
|
return
|
|
|
|
}
|
2019-10-12 20:13:12 +08:00
|
|
|
xl.Info("https proxy listen for host [%s]", routeConfig.Domain)
|
2019-01-15 00:11:08 +08:00
|
|
|
pxy.listeners = append(pxy.listeners, l)
|
2020-05-24 17:48:37 +08:00
|
|
|
addrs = append(addrs, util.CanonicalAddr(routeConfig.Domain, pxy.serverCfg.VhostHTTPSPort))
|
2019-01-15 00:11:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if pxy.cfg.SubDomain != "" {
|
2019-08-20 02:07:37 +08:00
|
|
|
routeConfig.Domain = pxy.cfg.SubDomain + "." + pxy.serverCfg.SubDomainHost
|
2020-05-24 17:48:37 +08:00
|
|
|
l, errRet := pxy.rc.VhostHTTPSMuxer.Listen(pxy.ctx, routeConfig)
|
2019-01-15 00:11:08 +08:00
|
|
|
if errRet != nil {
|
|
|
|
err = errRet
|
|
|
|
return
|
|
|
|
}
|
2019-10-12 20:13:12 +08:00
|
|
|
xl.Info("https proxy listen for host [%s]", routeConfig.Domain)
|
2019-01-15 00:11:08 +08:00
|
|
|
pxy.listeners = append(pxy.listeners, l)
|
2022-08-29 01:02:53 +08:00
|
|
|
addrs = append(addrs, util.CanonicalAddr(routeConfig.Domain, pxy.serverCfg.VhostHTTPSPort))
|
2019-01-15 00:11:08 +08:00
|
|
|
}
|
|
|
|
|
2023-06-16 00:14:19 +08:00
|
|
|
pxy.startCommonTCPListenersHandler()
|
2019-01-15 00:11:08 +08:00
|
|
|
remoteAddr = strings.Join(addrs, ",")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-05-24 17:48:37 +08:00
|
|
|
func (pxy *HTTPSProxy) Close() {
|
2019-01-15 00:11:08 +08:00
|
|
|
pxy.BaseProxy.Close()
|
|
|
|
}
|