123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- // Copyright 2017 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 vhost
- import (
- "bytes"
- "context"
- "encoding/base64"
- "errors"
- "fmt"
- "log"
- "net"
- "net/http"
- "strings"
- "time"
- frpLog "github.com/fatedier/frp/pkg/util/log"
- "github.com/fatedier/frp/pkg/util/util"
- "github.com/fatedier/golib/pool"
- )
- var (
- ErrNoDomain = errors.New("no such domain")
- )
- type HTTPReverseProxyOptions struct {
- ResponseHeaderTimeoutS int64
- }
- type HTTPReverseProxy struct {
- proxy *ReverseProxy
- vhostRouter *Routers
- responseHeaderTimeout time.Duration
- }
- func NewHTTPReverseProxy(option HTTPReverseProxyOptions, vhostRouter *Routers) *HTTPReverseProxy {
- if option.ResponseHeaderTimeoutS <= 0 {
- option.ResponseHeaderTimeoutS = 60
- }
- rp := &HTTPReverseProxy{
- responseHeaderTimeout: time.Duration(option.ResponseHeaderTimeoutS) * time.Second,
- vhostRouter: vhostRouter,
- }
- proxy := &ReverseProxy{
- Director: func(req *http.Request) {
- req.URL.Scheme = "http"
- url := req.Context().Value(RouteInfoURL).(string)
- oldHost, _ := util.CanonicalHost(req.Context().Value(RouteInfoHost).(string))
- rc := rp.GetRouteConfig(oldHost, url)
- if rc != nil {
- if rc.RewriteHost != "" {
- req.Host = rc.RewriteHost
- }
- // Set {domain}.{location} as URL host here to let http transport reuse connections.
- req.URL.Host = rc.Domain + "." + base64.StdEncoding.EncodeToString([]byte(rc.Location))
- for k, v := range rc.Headers {
- req.Header.Set(k, v)
- }
- } else {
- req.URL.Host = req.Host
- }
- },
- Transport: &http.Transport{
- ResponseHeaderTimeout: rp.responseHeaderTimeout,
- IdleConnTimeout: 60 * time.Second,
- DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) {
- url := ctx.Value(RouteInfoURL).(string)
- host, _ := util.CanonicalHost(ctx.Value(RouteInfoHost).(string))
- remote := ctx.Value(RouteInfoRemote).(string)
- return rp.CreateConnection(host, url, remote)
- },
- },
- BufferPool: newWrapPool(),
- ErrorLog: log.New(newWrapLogger(), "", 0),
- ErrorHandler: func(rw http.ResponseWriter, req *http.Request, err error) {
- frpLog.Warn("do http proxy request error: %v", err)
- rw.WriteHeader(http.StatusNotFound)
- rw.Write(getNotFoundPageContent())
- },
- }
- rp.proxy = proxy
- return rp
- }
- // Register register the route config to reverse proxy
- // reverse proxy will use CreateConnFn from routeCfg to create a connection to the remote service
- func (rp *HTTPReverseProxy) Register(routeCfg RouteConfig) error {
- err := rp.vhostRouter.Add(routeCfg.Domain, routeCfg.Location, &routeCfg)
- if err != nil {
- return err
- }
- return nil
- }
- // UnRegister unregister route config by domain and location
- func (rp *HTTPReverseProxy) UnRegister(domain string, location string) {
- rp.vhostRouter.Del(domain, location)
- }
- func (rp *HTTPReverseProxy) GetRouteConfig(domain string, location string) *RouteConfig {
- vr, ok := rp.getVhost(domain, location)
- if ok {
- return vr.payload.(*RouteConfig)
- }
- return nil
- }
- func (rp *HTTPReverseProxy) GetRealHost(domain string, location string) (host string) {
- vr, ok := rp.getVhost(domain, location)
- if ok {
- host = vr.payload.(*RouteConfig).RewriteHost
- }
- return
- }
- func (rp *HTTPReverseProxy) GetHeaders(domain string, location string) (headers map[string]string) {
- vr, ok := rp.getVhost(domain, location)
- if ok {
- headers = vr.payload.(*RouteConfig).Headers
- }
- return
- }
- // CreateConnection create a new connection by route config
- func (rp *HTTPReverseProxy) CreateConnection(domain string, location string, remoteAddr string) (net.Conn, error) {
- vr, ok := rp.getVhost(domain, location)
- if ok {
- fn := vr.payload.(*RouteConfig).CreateConnFn
- if fn != nil {
- return fn(remoteAddr)
- }
- }
- return nil, fmt.Errorf("%v: %s %s", ErrNoDomain, domain, location)
- }
- func (rp *HTTPReverseProxy) CheckAuth(domain, location, user, passwd string) bool {
- vr, ok := rp.getVhost(domain, location)
- if ok {
- checkUser := vr.payload.(*RouteConfig).Username
- checkPasswd := vr.payload.(*RouteConfig).Password
- if (checkUser != "" || checkPasswd != "") && (checkUser != user || checkPasswd != passwd) {
- return false
- }
- }
- return true
- }
- // getVhost get vhost router by domain and location
- func (rp *HTTPReverseProxy) getVhost(domain string, location string) (vr *Router, ok bool) {
- // first we check the full hostname
- // if not exist, then check the wildcard_domain such as *.example.com
- vr, ok = rp.vhostRouter.Get(domain, location)
- if ok {
- return
- }
- domainSplit := strings.Split(domain, ".")
- if len(domainSplit) < 3 {
- return nil, false
- }
- for {
- if len(domainSplit) < 3 {
- return nil, false
- }
- domainSplit[0] = "*"
- domain = strings.Join(domainSplit, ".")
- vr, ok = rp.vhostRouter.Get(domain, location)
- if ok {
- return vr, true
- }
- domainSplit = domainSplit[1:]
- }
- }
- func (rp *HTTPReverseProxy) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
- domain, _ := util.CanonicalHost(req.Host)
- location := req.URL.Path
- user, passwd, _ := req.BasicAuth()
- if !rp.CheckAuth(domain, location, user, passwd) {
- rw.Header().Set("WWW-Authenticate", `Basic realm="Restricted"`)
- http.Error(rw, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
- return
- }
- rp.proxy.ServeHTTP(rw, req)
- }
- type wrapPool struct{}
- func newWrapPool() *wrapPool { return &wrapPool{} }
- func (p *wrapPool) Get() []byte { return pool.GetBuf(32 * 1024) }
- func (p *wrapPool) Put(buf []byte) { pool.PutBuf(buf) }
- type wrapLogger struct{}
- func newWrapLogger() *wrapLogger { return &wrapLogger{} }
- func (l *wrapLogger) Write(p []byte) (n int, err error) {
- frpLog.Warn("%s", string(bytes.TrimRight(p, "\n")))
- return len(p), nil
- }
|