zrok/endpoints/publicProxy/http.go

364 lines
12 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/environment"
"github.com/openziti/zrok/sdk"
"github.com/openziti/zrok/util"
2022-07-20 20:16:01 +02:00
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"net"
"net/http"
"net/http/httputil"
"net/url"
"strings"
2023-09-05 16:55:55 +02:00
"time"
2023-09-05 16:55:55 +02:00
"github.com/golang-jwt/jwt/v5"
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"
2023-09-05 16:55:55 +02:00
"github.com/openziti/zrok/endpoints/publicProxy/unauthorizedUi"
"github.com/openziti/zrok/util"
2022-07-20 20:16:01 +02:00
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
2023-09-05 16:55:55 +02:00
zhttp "github.com/zitadel/oidc/v2/pkg/http"
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) {
env, err := environment.LoadRoot()
if err != nil {
return nil, errors.Wrap(err, "error loading environment root")
}
zCfgPath, err := env.ZitiIdentityNamed(cfg.Identity)
if err != nil {
2023-07-10 22:41:16 +02:00
return nil, errors.Wrapf(err, "error getting ziti identity '%v' from environment", 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
}
zCfg.ConfigTypes = []string{sdk.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
2023-09-05 16:55:55 +02:00
if err := configureOauthHandlers(context.Background(), cfg, false); err != nil {
return nil, err
}
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 {
if cfg, found := svc.Config[sdk.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}
}
2023-09-05 16:55:55 +02:00
func authHandler(handler http.Handler, realm string, pcfg *Config, ctx ziti.Context) http.HandlerFunc {
2022-08-16 17:27:31 +02:00
return func(w http.ResponseWriter, r *http.Request) {
2023-09-05 16:55:55 +02:00
shrToken := resolveService(pcfg.HostMatch, r.Host)
2023-01-04 20:42:58 +01:00
if shrToken != "" {
if svc, found := endpoints.GetRefreshedService(shrToken, ctx); found {
if cfg, found := svc.Config[sdk.ZrokProxyConfig]; found {
if scheme, found := cfg["auth_scheme"]; found {
switch scheme {
case string(sdk.None):
2023-01-04 20:42:58 +01:00
logrus.Debugf("auth scheme none '%v'", shrToken)
handler.ServeHTTP(w, r)
return
case string(sdk.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)
2023-09-05 17:10:25 +02:00
case string(sdk.Oauth):
2023-09-05 16:55:55 +02:00
if oauthCfg, found := cfg["oauth"]; found {
if provider, found := oauthCfg.(map[string]interface{})["provider"]; found {
cookie, err := r.Cookie("zrok-access")
if err != nil {
logrus.Errorf("Unable to get access cookie: %v", err)
http.Redirect(w, r, fmt.Sprintf("http://%s.%s:28080/%s/login?share=%s", shrToken, pcfg.HostMatch, provider.(string), shrToken), http.StatusFound)
return
}
tkn, err := jwt.ParseWithClaims(cookie.Value, &ZrokClaims{}, func(t *jwt.Token) (interface{}, error) {
if pcfg.Oauth == nil {
return nil, fmt.Errorf("Missing oauth configuration for access point. Unable to parse jwt")
}
return pcfg.Oauth.HashKeyRaw, nil
})
if err != nil {
logrus.Errorf("Unable to parse JWT: %v", err)
http.Redirect(w, r, fmt.Sprintf("http://%s.%s:28080/%s/login?share=%s", shrToken, pcfg.HostMatch, provider.(string), shrToken), http.StatusFound)
return
}
claims := tkn.Claims.(*ZrokClaims)
if claims.Provider != provider {
logrus.Error("Provider mismatch. Redoing auth flow")
http.Redirect(w, r, fmt.Sprintf("http://%s.%s:28080/%s/login?share=%s", shrToken, pcfg.HostMatch, provider.(string), shrToken), http.StatusFound)
return
}
var authCheckInterval time.Duration
if checkInterval, found := oauthCfg.(map[string]interface{})["authorization_check_interval"]; !found {
logrus.Errorf("Missing authorization check interval in share config. Defaulting to 3 hours")
authCheckInterval = 3 * time.Hour
} else {
i, err := time.ParseDuration(checkInterval.(string))
if err != nil {
logrus.Errorf("unable to parse authorization check interval in share config (%v). Defaulting to 3 hours", checkInterval)
authCheckInterval = 3 * time.Hour
} else {
authCheckInterval = i
}
}
if claims.AuthorizationCheckInterval != authCheckInterval {
logrus.Error("Authorization check interval mismatch. Redoing auth flow")
http.Redirect(w, r, fmt.Sprintf("http://%s.%s:28080/%s/login?share=%s", shrToken, pcfg.HostMatch, provider.(string), shrToken), http.StatusFound)
return
}
if validDomains, found := oauthCfg.(map[string]interface{})["email_domains"]; found {
if castedDomains, ok := validDomains.([]interface{}); !ok {
logrus.Error("Invalid format for valid email domains")
return
} else {
if len(castedDomains) > 0 {
found := false
for _, domain := range castedDomains {
if strings.HasSuffix(claims.Email, domain.(string)) {
found = true
break
}
}
if !found {
logrus.Warnf("Email not a valid domain")
unauthorizedUi.WriteUnauthorized(w)
return
}
}
}
}
handler.ServeHTTP(w, r)
return
} else {
logrus.Warnf("%v -> no provider for '%v'", r.RemoteAddr, provider)
notFoundUi.WriteNotFound(w)
}
} else {
logrus.Warnf("%v -> no oauth cfg for '%v'", r.RemoteAddr, shrToken)
notFoundUi.WriteNotFound(w)
}
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
}
}
}
2023-09-05 16:55:55 +02:00
func configureOauthHandlers(ctx context.Context, cfg *Config, tls bool) error {
if cfg.Oauth == nil {
logrus.Info("No oauth config for access point. Skipping spin up.")
return nil
}
if err := configureGoogleOauth(cfg.Oauth, tls); err != nil {
return err
}
if err := configureGithubOauth(cfg.Oauth, tls); err != nil {
return err
}
zhttp.StartServer(ctx, "0.0.0.0:28080")
return nil
}
type ZrokClaims struct {
Email string `json:"email"`
AccessToken string `json:"accessToken"`
Provider string `json:"provider"`
AuthorizationCheckInterval time.Duration `json:"authorizationCheckInterval"`
jwt.RegisteredClaims
}
func SetZrokCookie(w http.ResponseWriter, email, accessToken, provider string, checkInterval time.Duration, key []byte) {
tkn := jwt.NewWithClaims(jwt.SigningMethodHS256, ZrokClaims{
Email: email,
AccessToken: accessToken,
Provider: provider,
AuthorizationCheckInterval: checkInterval,
})
sTkn, err := tkn.SignedString(key)
if err != nil {
http.Error(w, fmt.Sprintf("After signing cookie token: %v", err.Error()), http.StatusInternalServerError)
return
}
http.SetCookie(w, &http.Cookie{
Name: "zrok-access",
Value: sTkn,
MaxAge: 3000,
Domain: "localzrok.io",
Path: "/",
Expires: time.Now().Add(checkInterval),
//Secure: true, //When tls gets added have this be configured on if tls
})
}
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
}