mirror of
https://github.com/openziti/zrok.git
synced 2026-08-28 10:16:59 -05:00
280 lines
7.7 KiB
Go
280 lines
7.7 KiB
Go
package publicProxy
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net"
|
|
"net/http"
|
|
"net/http/httputil"
|
|
"net/url"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/michaelquigley/df/dl"
|
|
"github.com/openziti/sdk-golang/ziti"
|
|
"github.com/openziti/zrok/v2/endpoints"
|
|
"github.com/openziti/zrok/v2/endpoints/proxyUi"
|
|
"github.com/openziti/zrok/v2/environment"
|
|
"github.com/openziti/zrok/v2/sdk/golang/sdk"
|
|
"github.com/openziti/zrok/v2/util"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type HttpFrontend struct {
|
|
cfg *Config
|
|
zCtx ziti.Context
|
|
handler http.Handler
|
|
}
|
|
|
|
var getRefreshedService = endpoints.GetRefreshedService
|
|
|
|
func NewHTTP(cfg *Config) (*HttpFrontend, error) {
|
|
var signingKey []byte
|
|
var err error
|
|
if cfg.Oauth != nil {
|
|
signingKey, err = endpoints.DeriveKey(cfg.Oauth.SigningKey, 32)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
if cfg.TemplatePath != "" {
|
|
if err := proxyUi.ReplaceTemplate(cfg.TemplatePath); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
root, err := environment.LoadRoot()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "error loading environment root")
|
|
}
|
|
zCfgPath, err := root.ZitiIdentityNamed(cfg.Identity)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "error getting ziti identity '%v' from environment", cfg.Identity)
|
|
}
|
|
zCfg, err := ziti.NewConfigFromFile(zCfgPath)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "error loading config")
|
|
}
|
|
zCfg.ConfigTypes = []string{sdk.ZrokProxyConfig}
|
|
zCtx, err := ziti.NewContext(zCfg)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "error loading ziti context")
|
|
}
|
|
zDialCtx := zitiDialContext{ctx: zCtx}
|
|
superNetwork, _ := root.SuperNetwork()
|
|
if superNetwork {
|
|
util.EnableSuperNetwork(zCfg)
|
|
}
|
|
zTransport := http.DefaultTransport.(*http.Transport).Clone()
|
|
zTransport.DialContext = zDialCtx.Dial
|
|
|
|
proxy, err := newServiceProxy(cfg, zCtx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
proxy.Transport = zTransport
|
|
if err := configureOauth(context.Background(), cfg, cfg.Tls != nil); err != nil {
|
|
return nil, err
|
|
}
|
|
handler := shareHandler(util.NewRequestsWrapper(proxy), cfg, signingKey, zCtx)
|
|
return &HttpFrontend{
|
|
cfg: cfg,
|
|
zCtx: zCtx,
|
|
handler: handler,
|
|
}, nil
|
|
}
|
|
|
|
func (f *HttpFrontend) Run() error {
|
|
if f.cfg.Tls != nil {
|
|
return http.ListenAndServeTLS(f.cfg.Address, f.cfg.Tls.CertPath, f.cfg.Tls.KeyPath, f.handler)
|
|
}
|
|
return http.ListenAndServe(f.cfg.Address, f.handler)
|
|
}
|
|
|
|
type zitiDialContext struct {
|
|
ctx ziti.Context
|
|
}
|
|
|
|
func (c *zitiDialContext) Dial(_ context.Context, _ string, addr string) (net.Conn, error) {
|
|
shrToken := strings.Split(addr, ":")[0] // ignore :port (we get passed 'host:port')
|
|
conn, err := c.ctx.DialWithOptions(shrToken, &ziti.DialOptions{ConnectTimeout: 30 * time.Second})
|
|
if err != nil {
|
|
return conn, err
|
|
}
|
|
return conn, nil
|
|
}
|
|
|
|
func newServiceProxy(cfg *Config, ctx ziti.Context) (*httputil.ReverseProxy, error) {
|
|
proxy := hostTargetReverseProxy(cfg, ctx)
|
|
director := proxy.Director
|
|
proxy.Director = func(req *http.Request) {
|
|
director(req)
|
|
req.Header.Set("X-Proxy", "zrok")
|
|
}
|
|
proxy.ModifyResponse = func(resp *http.Response) error {
|
|
origin := resp.Request.Header.Get("Origin")
|
|
// CORS will block the zrok_session cookie for XHR requests if the server sends responds with *
|
|
if origin != "" && resp.Header.Get("Access-Control-Allow-Origin") == "*" {
|
|
resp.Header.Set("Access-Control-Allow-Origin", origin)
|
|
}
|
|
return nil
|
|
}
|
|
proxy.ErrorHandler = func(w http.ResponseWriter, r *http.Request, err error) {
|
|
dl.Errorf("error proxying: %v", err)
|
|
proxyUi.WriteBadGateway(
|
|
w,
|
|
proxyUi.RequiredData(
|
|
"bad gateway!",
|
|
"bad gateway!",
|
|
),
|
|
)
|
|
}
|
|
return proxy, nil
|
|
}
|
|
|
|
func hostTargetReverseProxy(cfg *Config, ctx ziti.Context) *httputil.ReverseProxy {
|
|
director := func(req *http.Request) {
|
|
targetShrToken := resolveService(cfg.HostMatch, req.Host)
|
|
if svc, found := getRefreshedService(targetShrToken, ctx); found {
|
|
if cfg, found := svc.Config[sdk.ZrokProxyConfig]; found {
|
|
dl.Debugf("auth model: %v", cfg)
|
|
} else {
|
|
dl.Warn("no config!")
|
|
}
|
|
if target, err := url.Parse(fmt.Sprintf("http://%v", targetShrToken)); err == nil {
|
|
dl.Infof("[%v] -> %v", targetShrToken, req.URL)
|
|
|
|
targetQuery := target.RawQuery
|
|
req.URL.Scheme = target.Scheme
|
|
req.URL.Host = target.Host
|
|
req.URL.Path, req.URL.RawPath = endpoints.JoinURLPath(target, req.URL)
|
|
if targetQuery == "" || req.URL.RawQuery == "" {
|
|
req.URL.RawQuery = targetQuery + req.URL.RawQuery
|
|
} else {
|
|
req.URL.RawQuery = targetQuery + "&" + req.URL.RawQuery
|
|
}
|
|
if _, ok := req.Header["User-Agent"]; !ok {
|
|
// explicitly disable User-Agent so it's not set to default value
|
|
req.Header.Set("User-Agent", "")
|
|
}
|
|
} else {
|
|
dl.Errorf("error proxying: %v", err)
|
|
}
|
|
}
|
|
}
|
|
return &httputil.ReverseProxy{Director: director}
|
|
}
|
|
|
|
func shareHandler(handler http.Handler, cfg *Config, signingKey []byte, ctx ziti.Context) http.HandlerFunc {
|
|
auth := newAuthHandler(cfg, signingKey, handler)
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
shrToken := resolveService(cfg.HostMatch, r.Host)
|
|
if shrToken == "" {
|
|
dl.Debugf("host '%v' did not match host match, returning health check", r.Host)
|
|
proxyUi.WriteHealthOk(w)
|
|
return
|
|
}
|
|
|
|
svc, found := getRefreshedService(shrToken, ctx)
|
|
if !found {
|
|
dl.Warnf("%v -> service '%v' not found", r.RemoteAddr, shrToken)
|
|
proxyUi.WriteNotFound(w, proxyUi.NotFoundData(shrToken))
|
|
return
|
|
}
|
|
|
|
svcCfg, found := svc.Config[sdk.ZrokProxyConfig]
|
|
if !found {
|
|
dl.Warnf("%v -> no proxy config for '%v'", r.RemoteAddr, shrToken)
|
|
proxyUi.WriteNotFound(w, proxyUi.NotFoundData(shrToken))
|
|
return
|
|
}
|
|
|
|
if handleInterstitial(w, r, cfg, svcCfg) {
|
|
return
|
|
}
|
|
|
|
if r.Method == http.MethodOptions {
|
|
filterSessionCookies(w, r, cfg)
|
|
handler.ServeHTTP(w, r)
|
|
return
|
|
}
|
|
|
|
authScheme, found := svcCfg["auth_scheme"]
|
|
if !found {
|
|
dl.Warnf("%v -> no auth scheme for '%v'", r.RemoteAddr, shrToken)
|
|
proxyUi.WriteNotFound(w, proxyUi.NotFoundData(shrToken))
|
|
return
|
|
}
|
|
|
|
switch authScheme {
|
|
case string(sdk.None):
|
|
dl.Debugf("auth scheme none '%v'", shrToken)
|
|
filterSessionCookies(w, r, cfg)
|
|
handler.ServeHTTP(w, r)
|
|
|
|
case string(sdk.Basic):
|
|
dl.Debugf("auth scheme basic '%v'", shrToken)
|
|
if auth.handleBasicAuth(w, r, svcCfg, shrToken) {
|
|
filterSessionCookies(w, r, cfg)
|
|
handler.ServeHTTP(w, r)
|
|
}
|
|
|
|
case string(sdk.Oauth):
|
|
dl.Debugf("auth scheme oauth '%v'", shrToken)
|
|
if auth.handleOAuth(w, r, svcCfg, shrToken) {
|
|
handler.ServeHTTP(w, r)
|
|
}
|
|
|
|
default:
|
|
err := fmt.Errorf("invalid auth scheme '%v'", authScheme)
|
|
dl.Error(err)
|
|
proxyUi.WriteUnauthorized(w, proxyUi.UnauthorizedData().WithError(err))
|
|
}
|
|
}
|
|
}
|
|
|
|
func handleInterstitial(w http.ResponseWriter, r *http.Request, pcfg *Config, cfg map[string]interface{}) bool {
|
|
if r.Method == http.MethodOptions || pcfg.Interstitial == nil || !pcfg.Interstitial.Enabled {
|
|
return false
|
|
}
|
|
|
|
sendInterstitial := true
|
|
if len(pcfg.Interstitial.UserAgentPrefixes) > 0 {
|
|
ua := r.Header.Get("User-Agent")
|
|
for _, prefix := range pcfg.Interstitial.UserAgentPrefixes {
|
|
if strings.HasPrefix(ua, prefix) {
|
|
sendInterstitial = true
|
|
break
|
|
}
|
|
}
|
|
sendInterstitial = false
|
|
}
|
|
|
|
if sendInterstitial {
|
|
if v, istlFound := cfg["interstitial"]; istlFound {
|
|
if istlEnabled, ok := v.(bool); ok && istlEnabled {
|
|
skip := r.Header.Get("skip_zrok_interstitial")
|
|
_, zrokOkErr := r.Cookie("zrok_interstitial")
|
|
if skip == "" && zrokOkErr != nil {
|
|
dl.Debugf("forcing interstitial for '%v'", r.URL)
|
|
proxyUi.WriteInterstitialAnnounce(w, pcfg.Interstitial.HtmlPath)
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func resolveService(hostMatch string, host string) string {
|
|
if hostMatch == "" || strings.Contains(host, hostMatch) {
|
|
tokens := strings.Split(host, ".")
|
|
if len(tokens) > 0 {
|
|
return tokens[0]
|
|
}
|
|
}
|
|
return ""
|
|
}
|