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 (
|
|
|
|
"io"
|
2019-04-10 10:51:01 +08:00
|
|
|
"net"
|
2019-01-15 00:11:08 +08:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/fatedier/frp/models/config"
|
|
|
|
"github.com/fatedier/frp/server/stats"
|
|
|
|
frpNet "github.com/fatedier/frp/utils/net"
|
|
|
|
"github.com/fatedier/frp/utils/util"
|
|
|
|
"github.com/fatedier/frp/utils/vhost"
|
|
|
|
|
|
|
|
frpIo "github.com/fatedier/golib/io"
|
|
|
|
)
|
|
|
|
|
|
|
|
type HttpProxy struct {
|
2019-01-31 16:49:23 +08:00
|
|
|
*BaseProxy
|
2019-01-15 00:11:08 +08:00
|
|
|
cfg *config.HttpProxyConf
|
|
|
|
|
|
|
|
closeFuncs []func()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pxy *HttpProxy) Run() (remoteAddr string, err error) {
|
2019-10-12 20:13:12 +08:00
|
|
|
xl := pxy.xl
|
2019-01-15 00:11:08 +08:00
|
|
|
routeConfig := vhost.VhostRouteConfig{
|
|
|
|
RewriteHost: pxy.cfg.HostHeaderRewrite,
|
|
|
|
Headers: pxy.cfg.Headers,
|
|
|
|
Username: pxy.cfg.HttpUser,
|
|
|
|
Password: pxy.cfg.HttpPwd,
|
|
|
|
CreateConnFn: pxy.GetRealConn,
|
|
|
|
}
|
|
|
|
|
|
|
|
locations := pxy.cfg.Locations
|
|
|
|
if len(locations) == 0 {
|
|
|
|
locations = []string{""}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
for _, location := range locations {
|
|
|
|
routeConfig.Location = location
|
|
|
|
tmpDomain := routeConfig.Domain
|
|
|
|
tmpLocation := routeConfig.Location
|
2019-07-31 00:41:58 +08:00
|
|
|
|
|
|
|
// handle group
|
|
|
|
if pxy.cfg.Group != "" {
|
|
|
|
err = pxy.rc.HTTPGroupCtl.Register(pxy.name, pxy.cfg.Group, pxy.cfg.GroupKey, routeConfig)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
pxy.closeFuncs = append(pxy.closeFuncs, func() {
|
|
|
|
pxy.rc.HTTPGroupCtl.UnRegister(pxy.name, pxy.cfg.Group, tmpDomain, tmpLocation)
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
// no group
|
|
|
|
err = pxy.rc.HttpReverseProxy.Register(routeConfig)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pxy.closeFuncs = append(pxy.closeFuncs, func() {
|
|
|
|
pxy.rc.HttpReverseProxy.UnRegister(tmpDomain, tmpLocation)
|
|
|
|
})
|
|
|
|
}
|
2019-08-20 02:07:37 +08:00
|
|
|
addrs = append(addrs, util.CanonicalAddr(routeConfig.Domain, int(pxy.serverCfg.VhostHttpPort)))
|
2019-10-12 20:13:12 +08:00
|
|
|
xl.Info("http proxy listen for host [%s] location [%s] group [%s]", routeConfig.Domain, routeConfig.Location, pxy.cfg.Group)
|
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
|
2019-01-15 00:11:08 +08:00
|
|
|
for _, location := range locations {
|
|
|
|
routeConfig.Location = location
|
|
|
|
tmpDomain := routeConfig.Domain
|
|
|
|
tmpLocation := routeConfig.Location
|
2019-07-31 00:41:58 +08:00
|
|
|
|
|
|
|
// handle group
|
|
|
|
if pxy.cfg.Group != "" {
|
|
|
|
err = pxy.rc.HTTPGroupCtl.Register(pxy.name, pxy.cfg.Group, pxy.cfg.GroupKey, routeConfig)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
pxy.closeFuncs = append(pxy.closeFuncs, func() {
|
|
|
|
pxy.rc.HTTPGroupCtl.UnRegister(pxy.name, pxy.cfg.Group, tmpDomain, tmpLocation)
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
err = pxy.rc.HttpReverseProxy.Register(routeConfig)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pxy.closeFuncs = append(pxy.closeFuncs, func() {
|
|
|
|
pxy.rc.HttpReverseProxy.UnRegister(tmpDomain, tmpLocation)
|
|
|
|
})
|
|
|
|
}
|
2019-08-20 02:07:37 +08:00
|
|
|
addrs = append(addrs, util.CanonicalAddr(tmpDomain, pxy.serverCfg.VhostHttpPort))
|
2019-07-31 00:41:58 +08:00
|
|
|
|
2019-10-12 20:13:12 +08:00
|
|
|
xl.Info("http proxy listen for host [%s] location [%s] group [%s]", routeConfig.Domain, routeConfig.Location, pxy.cfg.Group)
|
2019-01-15 00:11:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
remoteAddr = strings.Join(addrs, ",")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pxy *HttpProxy) GetConf() config.ProxyConf {
|
|
|
|
return pxy.cfg
|
|
|
|
}
|
|
|
|
|
2019-10-12 20:13:12 +08:00
|
|
|
func (pxy *HttpProxy) GetRealConn(remoteAddr string) (workConn net.Conn, err error) {
|
|
|
|
xl := pxy.xl
|
2019-04-10 10:51:01 +08:00
|
|
|
rAddr, errRet := net.ResolveTCPAddr("tcp", remoteAddr)
|
|
|
|
if errRet != nil {
|
2019-10-12 20:13:12 +08:00
|
|
|
xl.Warn("resolve TCP addr [%s] error: %v", remoteAddr, errRet)
|
2019-04-10 10:51:01 +08:00
|
|
|
// we do not return error here since remoteAddr is not necessary for proxies without proxy protocol enabled
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpConn, errRet := pxy.GetWorkConnFromPool(rAddr, nil)
|
2019-01-15 00:11:08 +08:00
|
|
|
if errRet != nil {
|
|
|
|
err = errRet
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var rwc io.ReadWriteCloser = tmpConn
|
|
|
|
if pxy.cfg.UseEncryption {
|
2019-08-20 02:07:37 +08:00
|
|
|
rwc, err = frpIo.WithEncryption(rwc, []byte(pxy.serverCfg.Token))
|
2019-01-15 00:11:08 +08:00
|
|
|
if err != nil {
|
2019-10-12 20:13:12 +08:00
|
|
|
xl.Error("create encryption stream error: %v", err)
|
2019-01-15 00:11:08 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pxy.cfg.UseCompression {
|
|
|
|
rwc = frpIo.WithCompression(rwc)
|
|
|
|
}
|
|
|
|
workConn = frpNet.WrapReadWriteCloserToConn(rwc, tmpConn)
|
|
|
|
workConn = frpNet.WrapStatsConn(workConn, pxy.updateStatsAfterClosedConn)
|
|
|
|
pxy.statsCollector.Mark(stats.TypeOpenConnection, &stats.OpenConnectionPayload{ProxyName: pxy.GetName()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pxy *HttpProxy) updateStatsAfterClosedConn(totalRead, totalWrite int64) {
|
|
|
|
name := pxy.GetName()
|
|
|
|
pxy.statsCollector.Mark(stats.TypeCloseProxy, &stats.CloseConnectionPayload{ProxyName: name})
|
|
|
|
pxy.statsCollector.Mark(stats.TypeAddTrafficIn, &stats.AddTrafficInPayload{
|
|
|
|
ProxyName: name,
|
|
|
|
TrafficBytes: totalWrite,
|
|
|
|
})
|
|
|
|
pxy.statsCollector.Mark(stats.TypeAddTrafficOut, &stats.AddTrafficOutPayload{
|
|
|
|
ProxyName: name,
|
|
|
|
TrafficBytes: totalRead,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pxy *HttpProxy) Close() {
|
|
|
|
pxy.BaseProxy.Close()
|
|
|
|
for _, closeFn := range pxy.closeFuncs {
|
|
|
|
closeFn()
|
|
|
|
}
|
|
|
|
}
|