zrok/endpoints/publicProxy/http.go

224 lines
6.4 KiB
Go
Raw Normal View History

package publicProxy
2022-07-19 22:15:54 +02:00
import (
2022-08-10 21:15:35 +02:00
"context"
"fmt"
2022-07-20 20:16:01 +02:00
"github.com/openziti/sdk-golang/ziti"
"github.com/openziti/zrok/endpoints"
"github.com/openziti/zrok/endpoints/publicProxy/healthUi"
"github.com/openziti/zrok/endpoints/publicProxy/notFoundUi"
"github.com/openziti/zrok/model"
"github.com/openziti/zrok/util"
"github.com/openziti/zrok/zrokdir"
2022-07-20 20:16:01 +02:00
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
2023-05-25 20:59:39 +02:00
"net"
"net/http"
"net/http/httputil"
"net/url"
"strings"
2022-07-19 22:15:54 +02:00
)
type httpFrontend struct {
2022-08-18 22:57:38 +02:00
cfg *Config
zCtx ziti.Context
handler http.Handler
}
func NewHTTP(cfg *Config) (*httpFrontend, error) {
zCfgPath, err := zrokdir.ZitiIdentityFile(cfg.Identity)
if err != nil {
return nil, errors.Wrapf(err, "error getting ziti identity '%v' from zrokdir", cfg.Identity)
}
2023-05-25 17:50:38 +02:00
zCfg, err := ziti.NewConfigFromFile(zCfgPath)
2022-07-20 20:16:01 +02:00
if err != nil {
2022-08-18 22:57:38 +02:00
return nil, errors.Wrap(err, "error loading config")
2022-07-20 20:16:01 +02:00
}
2022-08-15 23:29:31 +02:00
zCfg.ConfigTypes = []string{model.ZrokProxyConfig}
2023-05-25 17:50:38 +02:00
zCtx, err := ziti.NewContext(zCfg)
if err != nil {
return nil, errors.Wrap(err, "error loading ziti context")
}
zDialCtx := zitiDialContext{ctx: zCtx}
2022-07-21 21:26:44 +02:00
zTransport := http.DefaultTransport.(*http.Transport).Clone()
zTransport.DialContext = zDialCtx.Dial
2022-07-21 21:46:14 +02:00
proxy, err := newServiceProxy(cfg, zCtx)
2022-07-20 20:36:14 +02:00
if err != nil {
2022-08-18 22:57:38 +02:00
return nil, err
2022-07-20 20:36:14 +02:00
}
2022-07-21 21:46:14 +02:00
proxy.Transport = zTransport
2022-09-07 18:22:22 +02:00
handler := authHandler(util.NewProxyHandler(proxy), "zrok", cfg, zCtx)
return &httpFrontend{
2022-08-18 22:57:38 +02:00
cfg: cfg,
zCtx: zCtx,
handler: handler,
}, nil
}
func (self *httpFrontend) Run() error {
2022-08-18 22:57:38 +02:00
return http.ListenAndServe(self.cfg.Address, self.handler)
}
2022-08-10 21:15:35 +02:00
2022-08-18 23:09:38 +02:00
type zitiDialContext struct {
ctx ziti.Context
2022-08-10 21:15:35 +02:00
}
2022-08-18 23:09:38 +02:00
func (self *zitiDialContext) Dial(_ context.Context, _ string, addr string) (net.Conn, error) {
2023-01-04 20:42:58 +01:00
shrToken := strings.Split(addr, ":")[0] // ignore :port (we get passed 'host:port')
conn, err := self.ctx.Dial(shrToken)
if err != nil {
return conn, err
}
return conn, nil
2022-08-10 21:15:35 +02:00
}
func newServiceProxy(cfg *Config, ctx ziti.Context) (*httputil.ReverseProxy, error) {
proxy := hostTargetReverseProxy(cfg, ctx)
2022-08-10 21:15:35 +02:00
director := proxy.Director
proxy.Director = func(req *http.Request) {
director(req)
req.Header.Set("X-Proxy", "zrok")
}
proxy.ModifyResponse = func(resp *http.Response) error {
return nil
}
proxy.ErrorHandler = func(w http.ResponseWriter, r *http.Request, err error) {
logrus.Errorf("error proxying: %v", err)
2022-12-14 20:41:54 +01:00
notFoundUi.WriteNotFound(w)
2022-08-10 21:15:35 +02:00
}
return proxy, nil
}
func hostTargetReverseProxy(cfg *Config, ctx ziti.Context) *httputil.ReverseProxy {
2022-08-10 21:15:35 +02:00
director := func(req *http.Request) {
2023-01-04 20:42:58 +01:00
targetShrToken := resolveService(cfg.HostMatch, req.Host)
if svc, found := endpoints.GetRefreshedService(targetShrToken, ctx); found {
2023-05-25 17:50:38 +02:00
if cfg, found := svc.Config[model.ZrokProxyConfig]; found {
logrus.Debugf("auth model: %v", cfg)
2022-08-10 21:15:35 +02:00
} else {
2022-08-15 23:52:24 +02:00
logrus.Warn("no config!")
2022-08-10 21:15:35 +02:00
}
2023-01-04 20:42:58 +01:00
if target, err := url.Parse(fmt.Sprintf("http://%v", targetShrToken)); err == nil {
logrus.Infof("[%v] -> %v", targetShrToken, req.URL)
2022-08-15 23:52:24 +02:00
targetQuery := target.RawQuery
req.URL.Scheme = target.Scheme
req.URL.Host = target.Host
req.URL.Path, req.URL.RawPath = endpoints.JoinURLPath(target, req.URL)
2022-08-15 23:52:24 +02:00
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 {
logrus.Errorf("error proxying: %v", err)
2022-08-10 21:15:35 +02:00
}
}
}
return &httputil.ReverseProxy{Director: director}
}
2022-09-07 18:22:22 +02:00
func authHandler(handler http.Handler, realm string, cfg *Config, ctx ziti.Context) http.HandlerFunc {
2022-08-16 17:27:31 +02:00
return func(w http.ResponseWriter, r *http.Request) {
2023-01-04 20:42:58 +01:00
shrToken := resolveService(cfg.HostMatch, r.Host)
if shrToken != "" {
if svc, found := endpoints.GetRefreshedService(shrToken, ctx); found {
2023-05-25 17:50:38 +02:00
if cfg, found := svc.Config[model.ZrokProxyConfig]; found {
if scheme, found := cfg["auth_scheme"]; found {
switch scheme {
case string(model.None):
2023-01-04 20:42:58 +01:00
logrus.Debugf("auth scheme none '%v'", shrToken)
handler.ServeHTTP(w, r)
return
case string(model.Basic):
2023-01-04 20:42:58 +01:00
logrus.Debugf("auth scheme basic '%v", shrToken)
inUser, inPass, ok := r.BasicAuth()
if !ok {
writeUnauthorizedResponse(w, realm)
return
}
authed := false
if v, found := cfg["basic_auth"]; found {
if basicAuth, ok := v.(map[string]interface{}); ok {
if v, found := basicAuth["users"]; found {
if arr, ok := v.([]interface{}); ok {
for _, v := range arr {
if um, ok := v.(map[string]interface{}); ok {
username := ""
if v, found := um["username"]; found {
if un, ok := v.(string); ok {
username = un
}
}
password := ""
if v, found := um["password"]; found {
if pw, ok := v.(string); ok {
password = pw
}
}
if username == inUser && password == inPass {
authed = true
break
}
}
}
}
}
}
}
if !authed {
writeUnauthorizedResponse(w, realm)
return
}
2022-09-07 18:22:22 +02:00
handler.ServeHTTP(w, r)
default:
logrus.Infof("invalid auth scheme '%v'", scheme)
writeUnauthorizedResponse(w, realm)
return
}
} else {
2023-01-04 20:42:58 +01:00
logrus.Warnf("%v -> no auth scheme for '%v'", r.RemoteAddr, shrToken)
2022-12-14 20:41:54 +01:00
notFoundUi.WriteNotFound(w)
}
} else {
2023-01-04 20:42:58 +01:00
logrus.Warnf("%v -> no proxy config for '%v'", r.RemoteAddr, shrToken)
2022-12-14 20:41:54 +01:00
notFoundUi.WriteNotFound(w)
}
} else {
2023-01-04 20:42:58 +01:00
logrus.Warnf("%v -> service '%v' not found", r.RemoteAddr, shrToken)
2022-12-14 20:41:54 +01:00
notFoundUi.WriteNotFound(w)
2022-08-16 17:27:31 +02:00
}
} else {
2022-09-09 16:01:24 +02:00
logrus.Debugf("host '%v' did not match host match, returning health check", r.Host)
2022-12-14 20:41:54 +01:00
healthUi.WriteHealthOk(w)
2022-08-16 17:27:31 +02:00
}
}
}
func writeUnauthorizedResponse(w http.ResponseWriter, realm string) {
w.Header().Set("WWW-Authenticate", `Basic realm="`+realm+`"`)
w.WriteHeader(401)
w.Write([]byte("No Authorization\n"))
}
2022-08-18 22:57:38 +02:00
func resolveService(hostMatch string, host string) string {
2022-08-18 22:57:38 +02:00
logrus.Debugf("host = '%v'", host)
2022-09-07 18:22:22 +02:00
if hostMatch == "" || strings.Contains(host, hostMatch) {
tokens := strings.Split(host, ".")
if len(tokens) > 0 {
return tokens[0]
}
2022-08-18 22:57:38 +02:00
}
return ""
2022-08-18 22:57:38 +02:00
}