frp/server/proxy/https.go

80 lines
2.1 KiB
Go
Raw 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 (
"strings"
"github.com/fatedier/frp/models/config"
"github.com/fatedier/frp/utils/util"
"github.com/fatedier/frp/utils/vhost"
)
2020-05-24 17:48:37 +08:00
type HTTPSProxy struct {
2019-01-31 16:49:23 +08:00
*BaseProxy
2020-05-24 17:48:37 +08:00
cfg *config.HTTPSProxyConf
2019-01-15 00:11:08 +08:00
}
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 != "" {
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)
2020-05-24 17:48:37 +08:00
addrs = append(addrs, util.CanonicalAddr(routeConfig.Domain, int(pxy.serverCfg.VhostHTTPSPort)))
2019-01-15 00:11:08 +08:00
}
2020-05-24 17:48:37 +08:00
pxy.startListenHandler(pxy, HandleUserTCPConnection)
2019-01-15 00:11:08 +08:00
remoteAddr = strings.Join(addrs, ",")
return
}
2020-05-24 17:48:37 +08:00
func (pxy *HTTPSProxy) GetConf() config.ProxyConf {
2019-01-15 00:11:08 +08:00
return pxy.cfg
}
2020-05-24 17:48:37 +08:00
func (pxy *HTTPSProxy) Close() {
2019-01-15 00:11:08 +08:00
pxy.BaseProxy.Close()
}