2012-12-11 04:59:23 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-01-17 22:49:14 +02:00
|
|
|
"context"
|
2019-08-07 18:48:53 +02:00
|
|
|
"crypto/tls"
|
2016-06-20 13:17:39 +02:00
|
|
|
b64 "encoding/base64"
|
2019-11-08 00:38:36 +02:00
|
|
|
"encoding/json"
|
2012-12-11 04:59:23 +03:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2015-03-18 00:06:06 +02:00
|
|
|
"html/template"
|
2015-03-19 21:59:48 +02:00
|
|
|
"net"
|
2012-12-11 04:59:23 +03:00
|
|
|
"net/http"
|
|
|
|
"net/http/httputil"
|
|
|
|
"net/url"
|
2015-01-19 18:10:37 +02:00
|
|
|
"regexp"
|
2019-09-18 22:40:33 +02:00
|
|
|
"strconv"
|
2012-12-11 04:59:23 +03:00
|
|
|
"strings"
|
|
|
|
"time"
|
2014-08-07 23:16:39 +03:00
|
|
|
|
2019-01-17 22:49:14 +02:00
|
|
|
"github.com/coreos/go-oidc"
|
2018-11-29 16:26:41 +02:00
|
|
|
"github.com/mbland/hmacauth"
|
2020-05-23 16:17:41 +02:00
|
|
|
ipapi "github.com/oauth2-proxy/oauth2-proxy/pkg/apis/ip"
|
2020-04-13 14:50:34 +02:00
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/pkg/apis/options"
|
2020-03-29 15:54:36 +02:00
|
|
|
sessionsapi "github.com/oauth2-proxy/oauth2-proxy/pkg/apis/sessions"
|
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/pkg/cookies"
|
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/pkg/encryption"
|
2020-05-23 16:17:41 +02:00
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/pkg/ip"
|
2020-03-29 15:54:36 +02:00
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/pkg/logger"
|
2020-05-25 15:00:49 +02:00
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/pkg/sessions"
|
2020-03-29 15:54:36 +02:00
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/providers"
|
2019-03-08 10:15:21 +02:00
|
|
|
"github.com/yhat/wsutil"
|
2012-12-11 04:59:23 +03:00
|
|
|
)
|
|
|
|
|
2018-11-29 16:26:41 +02:00
|
|
|
const (
|
2018-12-20 11:30:42 +02:00
|
|
|
// SignatureHeader is the name of the request header containing the GAP Signature
|
|
|
|
// Part of hmacauth
|
2018-11-29 16:26:41 +02:00
|
|
|
SignatureHeader = "GAP-Signature"
|
2015-11-16 05:08:30 +02:00
|
|
|
|
2018-11-29 16:26:41 +02:00
|
|
|
httpScheme = "http"
|
|
|
|
httpsScheme = "https"
|
2018-01-28 00:48:52 +02:00
|
|
|
|
2019-01-31 17:22:30 +02:00
|
|
|
applicationJSON = "application/json"
|
2018-11-29 16:26:41 +02:00
|
|
|
)
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// SignatureHeaders contains the headers to be signed by the hmac algorithm
|
|
|
|
// Part of hmacauth
|
2018-11-29 16:26:41 +02:00
|
|
|
var SignatureHeaders = []string{
|
2015-11-16 05:08:30 +02:00
|
|
|
"Content-Length",
|
|
|
|
"Content-Md5",
|
|
|
|
"Content-Type",
|
|
|
|
"Date",
|
|
|
|
"Authorization",
|
|
|
|
"X-Forwarded-User",
|
|
|
|
"X-Forwarded-Email",
|
2020-03-01 17:02:51 +02:00
|
|
|
"X-Forwarded-Preferred-User",
|
2015-11-16 05:08:30 +02:00
|
|
|
"X-Forwarded-Access-Token",
|
|
|
|
"Cookie",
|
|
|
|
"Gap-Auth",
|
|
|
|
}
|
|
|
|
|
2019-06-07 05:50:44 +02:00
|
|
|
var (
|
|
|
|
// ErrNeedsLogin means the user should be redirected to the login page
|
|
|
|
ErrNeedsLogin = errors.New("redirect to login page")
|
2020-05-06 13:42:02 +02:00
|
|
|
|
|
|
|
// Used to check final redirects are not susceptible to open redirects.
|
|
|
|
// Matches //, /\ and both of these with whitespace in between (eg / / or / \).
|
2020-06-27 13:07:24 +02:00
|
|
|
invalidRedirectRegex = regexp.MustCompile(`[/\\](?:[\s\v]*|\.{1,2})[/\\]`)
|
2019-06-07 05:50:44 +02:00
|
|
|
)
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// OAuthProxy is the main authentication proxy
|
2015-11-09 01:57:01 +02:00
|
|
|
type OAuthProxy struct {
|
2015-03-18 05:13:45 +02:00
|
|
|
CookieSeed string
|
2015-06-08 05:52:28 +02:00
|
|
|
CookieName string
|
2017-03-28 03:14:38 +02:00
|
|
|
CSRFCookieName string
|
2020-04-12 13:00:44 +02:00
|
|
|
CookieDomains []string
|
2019-04-09 23:36:35 +02:00
|
|
|
CookiePath string
|
2015-03-18 05:13:45 +02:00
|
|
|
CookieSecure bool
|
2018-11-29 16:26:41 +02:00
|
|
|
CookieHTTPOnly bool
|
2015-03-18 05:13:45 +02:00
|
|
|
CookieExpire time.Duration
|
2015-05-08 16:00:57 +02:00
|
|
|
CookieRefresh time.Duration
|
2019-12-16 20:10:04 +02:00
|
|
|
CookieSameSite string
|
2015-03-18 05:13:45 +02:00
|
|
|
Validator func(string) bool
|
2012-12-11 04:59:23 +03:00
|
|
|
|
2015-05-30 00:47:40 +02:00
|
|
|
RobotsPath string
|
|
|
|
SignInPath string
|
2017-03-21 18:39:26 +02:00
|
|
|
SignOutPath string
|
2015-11-09 01:57:01 +02:00
|
|
|
OAuthStartPath string
|
|
|
|
OAuthCallbackPath string
|
2015-10-08 15:27:00 +02:00
|
|
|
AuthOnlyPath string
|
2019-11-08 00:38:36 +02:00
|
|
|
UserInfoPath string
|
2015-05-30 00:47:40 +02:00
|
|
|
|
2020-05-30 23:16:26 +02:00
|
|
|
redirectURL *url.URL // the url to receive requests at
|
|
|
|
whitelistDomains []string
|
|
|
|
provider providers.Provider
|
|
|
|
providerNameOverride string
|
|
|
|
sessionStore sessionsapi.SessionStore
|
|
|
|
ProxyPrefix string
|
|
|
|
SignInMessage string
|
|
|
|
HtpasswdFile *HtpasswdFile
|
|
|
|
DisplayHtpasswdForm bool
|
|
|
|
serveMux http.Handler
|
|
|
|
SetXAuthRequest bool
|
|
|
|
PassBasicAuth bool
|
|
|
|
SetBasicAuth bool
|
|
|
|
SkipProviderButton bool
|
|
|
|
PassUserHeaders bool
|
|
|
|
BasicAuthPassword string
|
|
|
|
PassAccessToken bool
|
|
|
|
SetAuthorization bool
|
|
|
|
PassAuthorization bool
|
|
|
|
PreferEmailToUser bool
|
|
|
|
skipAuthRegex []string
|
|
|
|
skipAuthPreflight bool
|
|
|
|
skipJwtBearerTokens bool
|
|
|
|
mainJwtBearerVerifier *oidc.IDTokenVerifier
|
|
|
|
extraJwtBearerVerifiers []*oidc.IDTokenVerifier
|
|
|
|
compiledRegex []*regexp.Regexp
|
|
|
|
templates *template.Template
|
|
|
|
realClientIPParser ipapi.RealClientIPParser
|
2020-07-11 12:10:58 +02:00
|
|
|
trustedIPs *ip.NetSet
|
2020-05-30 23:16:26 +02:00
|
|
|
Banner string
|
|
|
|
Footer string
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// UpstreamProxy represents an upstream server to proxy to
|
2015-03-19 22:37:16 +02:00
|
|
|
type UpstreamProxy struct {
|
2019-03-08 10:15:21 +02:00
|
|
|
upstream string
|
|
|
|
handler http.Handler
|
|
|
|
wsHandler http.Handler
|
|
|
|
auth hmacauth.HmacAuth
|
2015-03-19 22:37:16 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// ServeHTTP proxies requests to the upstream provider while signing the
|
|
|
|
// request headers
|
2015-03-19 22:37:16 +02:00
|
|
|
func (u *UpstreamProxy) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Header().Set("GAP-Upstream-Address", u.upstream)
|
2015-11-16 05:08:30 +02:00
|
|
|
if u.auth != nil {
|
|
|
|
r.Header.Set("GAP-Auth", w.Header().Get("GAP-Auth"))
|
|
|
|
u.auth.SignRequest(r)
|
|
|
|
}
|
2019-10-09 10:33:45 +02:00
|
|
|
if u.wsHandler != nil && strings.EqualFold(r.Header.Get("Connection"), "upgrade") && r.Header.Get("Upgrade") == "websocket" {
|
2019-03-08 10:15:21 +02:00
|
|
|
u.wsHandler.ServeHTTP(w, r)
|
|
|
|
} else {
|
|
|
|
u.handler.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
|
2015-03-19 22:37:16 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// NewReverseProxy creates a new reverse proxy for proxying requests to upstream
|
|
|
|
// servers
|
2020-04-13 14:50:34 +02:00
|
|
|
func NewReverseProxy(target *url.URL, opts *options.Options) (proxy *httputil.ReverseProxy) {
|
2019-01-31 16:02:15 +02:00
|
|
|
proxy = httputil.NewSingleHostReverseProxy(target)
|
2019-08-07 18:48:53 +02:00
|
|
|
proxy.FlushInterval = opts.FlushInterval
|
|
|
|
if opts.SSLUpstreamInsecureSkipVerify {
|
|
|
|
proxy.Transport = &http.Transport{
|
|
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
|
|
|
}
|
|
|
|
}
|
2020-05-24 22:09:00 +02:00
|
|
|
setProxyErrorHandler(proxy, opts)
|
2019-01-31 16:02:15 +02:00
|
|
|
return proxy
|
2015-03-17 21:15:15 +02:00
|
|
|
}
|
2018-12-20 11:30:42 +02:00
|
|
|
|
2020-05-24 22:09:00 +02:00
|
|
|
func setProxyErrorHandler(proxy *httputil.ReverseProxy, opts *options.Options) {
|
|
|
|
templates := loadTemplates(opts.CustomTemplatesDir)
|
|
|
|
proxy.ErrorHandler = func(w http.ResponseWriter, r *http.Request, proxyErr error) {
|
|
|
|
logger.Printf("Error proxying to upstream server: %v", proxyErr)
|
|
|
|
w.WriteHeader(http.StatusBadGateway)
|
|
|
|
data := struct {
|
|
|
|
Title string
|
|
|
|
Message string
|
|
|
|
ProxyPrefix string
|
|
|
|
}{
|
|
|
|
Title: "Bad Gateway",
|
|
|
|
Message: "Error proxying to upstream server",
|
|
|
|
ProxyPrefix: opts.ProxyPrefix,
|
|
|
|
}
|
|
|
|
templates.ExecuteTemplate(w, "error.html", data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-17 21:15:15 +02:00
|
|
|
func setProxyUpstreamHostHeader(proxy *httputil.ReverseProxy, target *url.URL) {
|
|
|
|
director := proxy.Director
|
|
|
|
proxy.Director = func(req *http.Request) {
|
|
|
|
director(req)
|
2015-03-17 23:17:40 +02:00
|
|
|
// use RequestURI so that we aren't unescaping encoded slashes in the request path
|
2015-03-21 21:29:07 +02:00
|
|
|
req.Host = target.Host
|
|
|
|
req.URL.Opaque = req.RequestURI
|
2015-03-17 23:17:40 +02:00
|
|
|
req.URL.RawQuery = ""
|
|
|
|
}
|
|
|
|
}
|
2018-12-20 11:30:42 +02:00
|
|
|
|
2015-03-17 23:17:40 +02:00
|
|
|
func setProxyDirector(proxy *httputil.ReverseProxy) {
|
|
|
|
director := proxy.Director
|
|
|
|
proxy.Director = func(req *http.Request) {
|
|
|
|
director(req)
|
|
|
|
// use RequestURI so that we aren't unescaping encoded slashes in the request path
|
2015-03-21 21:29:07 +02:00
|
|
|
req.URL.Opaque = req.RequestURI
|
2015-03-17 23:17:40 +02:00
|
|
|
req.URL.RawQuery = ""
|
2015-03-17 21:15:15 +02:00
|
|
|
}
|
2014-12-01 03:12:33 +02:00
|
|
|
}
|
2018-12-20 11:30:42 +02:00
|
|
|
|
|
|
|
// NewFileServer creates a http.Handler to serve files from the filesystem
|
2015-09-23 22:00:36 +02:00
|
|
|
func NewFileServer(path string, filesystemPath string) (proxy http.Handler) {
|
|
|
|
return http.StripPrefix(path, http.FileServer(http.Dir(filesystemPath)))
|
|
|
|
}
|
2014-12-01 03:12:33 +02:00
|
|
|
|
2019-03-08 10:15:21 +02:00
|
|
|
// NewWebSocketOrRestReverseProxy creates a reverse proxy for REST or websocket based on url
|
2020-04-13 14:50:34 +02:00
|
|
|
func NewWebSocketOrRestReverseProxy(u *url.URL, opts *options.Options, auth hmacauth.HmacAuth) http.Handler {
|
2019-03-08 10:15:21 +02:00
|
|
|
u.Path = ""
|
2019-08-07 18:48:53 +02:00
|
|
|
proxy := NewReverseProxy(u, opts)
|
2019-03-08 10:15:21 +02:00
|
|
|
if !opts.PassHostHeader {
|
|
|
|
setProxyUpstreamHostHeader(proxy, u)
|
|
|
|
} else {
|
|
|
|
setProxyDirector(proxy)
|
|
|
|
}
|
|
|
|
|
|
|
|
// this should give us a wss:// scheme if the url is https:// based.
|
|
|
|
var wsProxy *wsutil.ReverseProxy
|
|
|
|
if opts.ProxyWebSockets {
|
|
|
|
wsScheme := "ws" + strings.TrimPrefix(u.Scheme, "http")
|
|
|
|
wsURL := &url.URL{Scheme: wsScheme, Host: u.Host}
|
|
|
|
wsProxy = wsutil.NewSingleHostReverseProxy(wsURL)
|
2020-04-19 18:41:29 +02:00
|
|
|
if opts.SSLUpstreamInsecureSkipVerify {
|
|
|
|
wsProxy.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
|
|
|
|
}
|
2019-03-08 10:15:21 +02:00
|
|
|
}
|
2019-06-23 21:41:23 +02:00
|
|
|
return &UpstreamProxy{
|
|
|
|
upstream: u.Host,
|
|
|
|
handler: proxy,
|
|
|
|
wsHandler: wsProxy,
|
|
|
|
auth: auth,
|
|
|
|
}
|
2019-03-08 10:15:21 +02:00
|
|
|
}
|
|
|
|
|
2019-12-20 16:44:59 +02:00
|
|
|
// NewOAuthProxy creates a new instance of OAuthProxy from the options provided
|
2020-05-25 15:00:49 +02:00
|
|
|
func NewOAuthProxy(opts *options.Options, validator func(string) bool) (*OAuthProxy, error) {
|
|
|
|
sessionStore, err := sessions.NewSessionStore(&opts.Session, &opts.Cookie)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error initialising session store: %v", err)
|
|
|
|
}
|
|
|
|
|
2012-12-11 04:59:23 +03:00
|
|
|
serveMux := http.NewServeMux()
|
2015-11-16 05:08:30 +02:00
|
|
|
var auth hmacauth.HmacAuth
|
2020-04-13 14:50:34 +02:00
|
|
|
if sigData := opts.GetSignatureData(); sigData != nil {
|
|
|
|
auth = hmacauth.NewHmacAuth(sigData.Hash, []byte(sigData.Key),
|
2015-11-16 05:08:30 +02:00
|
|
|
SignatureHeader, SignatureHeaders)
|
|
|
|
}
|
2020-04-13 14:50:34 +02:00
|
|
|
for _, u := range opts.GetProxyURLs() {
|
2012-12-11 04:59:23 +03:00
|
|
|
path := u.Path
|
2019-09-19 11:03:38 +02:00
|
|
|
host := u.Host
|
2015-09-23 22:00:36 +02:00
|
|
|
switch u.Scheme {
|
2018-11-29 16:26:41 +02:00
|
|
|
case httpScheme, httpsScheme:
|
2019-04-12 18:26:44 +02:00
|
|
|
logger.Printf("mapping path %q => upstream %q", path, u)
|
2019-03-08 10:15:21 +02:00
|
|
|
proxy := NewWebSocketOrRestReverseProxy(u, opts, auth)
|
|
|
|
serveMux.Handle(path, proxy)
|
2019-09-18 22:40:33 +02:00
|
|
|
case "static":
|
2019-10-04 15:07:31 +02:00
|
|
|
responseCode, err := strconv.Atoi(host)
|
|
|
|
if err != nil {
|
|
|
|
logger.Printf("unable to convert %q to int, use default \"200\"", host)
|
|
|
|
responseCode = 200
|
|
|
|
}
|
|
|
|
|
2019-09-19 11:03:38 +02:00
|
|
|
serveMux.HandleFunc(path, func(rw http.ResponseWriter, req *http.Request) {
|
2019-09-18 22:40:33 +02:00
|
|
|
rw.WriteHeader(responseCode)
|
|
|
|
fmt.Fprintf(rw, "Authenticated")
|
|
|
|
})
|
2015-09-23 22:00:36 +02:00
|
|
|
case "file":
|
|
|
|
if u.Fragment != "" {
|
|
|
|
path = u.Fragment
|
|
|
|
}
|
2019-02-10 18:37:45 +02:00
|
|
|
logger.Printf("mapping path %q => file system %q", path, u.Path)
|
2015-09-23 22:00:36 +02:00
|
|
|
proxy := NewFileServer(path, u.Path)
|
2019-06-23 21:41:23 +02:00
|
|
|
uProxy := UpstreamProxy{
|
|
|
|
upstream: path,
|
|
|
|
handler: proxy,
|
|
|
|
wsHandler: nil,
|
|
|
|
auth: nil,
|
|
|
|
}
|
|
|
|
serveMux.Handle(path, &uProxy)
|
2015-09-23 22:00:36 +02:00
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("unknown upstream protocol %s", u.Scheme))
|
2015-03-17 21:15:15 +02:00
|
|
|
}
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
2020-04-13 14:50:34 +02:00
|
|
|
for _, u := range opts.GetCompiledRegex() {
|
2019-02-10 18:37:45 +02:00
|
|
|
logger.Printf("compiled skip-auth-regex => %q", u)
|
2015-01-12 11:18:41 +02:00
|
|
|
}
|
|
|
|
|
2019-01-17 22:49:14 +02:00
|
|
|
if opts.SkipJwtBearerTokens {
|
|
|
|
logger.Printf("Skipping JWT tokens from configured OIDC issuer: %q", opts.OIDCIssuerURL)
|
|
|
|
for _, issuer := range opts.ExtraJwtIssuers {
|
|
|
|
logger.Printf("Skipping JWT tokens from extra JWT issuer: %q", issuer)
|
|
|
|
}
|
|
|
|
}
|
2020-04-13 14:50:34 +02:00
|
|
|
redirectURL := opts.GetRedirectURL()
|
2019-03-20 18:25:04 +02:00
|
|
|
if redirectURL.Path == "" {
|
2019-03-05 16:58:26 +02:00
|
|
|
redirectURL.Path = fmt.Sprintf("%s/callback", opts.ProxyPrefix)
|
|
|
|
}
|
2012-12-11 04:59:23 +03:00
|
|
|
|
2020-04-13 14:50:34 +02:00
|
|
|
logger.Printf("OAuthProxy configured for %s Client ID: %s", opts.GetProvider().Data().ProviderName, opts.ClientID)
|
2015-06-22 21:10:08 +02:00
|
|
|
refresh := "disabled"
|
2020-04-12 15:00:59 +02:00
|
|
|
if opts.Cookie.Refresh != time.Duration(0) {
|
|
|
|
refresh = fmt.Sprintf("after %s", opts.Cookie.Refresh)
|
2015-06-22 21:10:08 +02:00
|
|
|
}
|
2015-03-18 05:13:45 +02:00
|
|
|
|
2020-04-12 15:00:59 +02:00
|
|
|
logger.Printf("Cookie settings: name:%s secure(https):%v httponly:%v expiry:%s domains:%s path:%s samesite:%s refresh:%s", opts.Cookie.Name, opts.Cookie.Secure, opts.Cookie.HTTPOnly, opts.Cookie.Expire, strings.Join(opts.Cookie.Domains, ","), opts.Cookie.Path, opts.Cookie.SameSite, refresh)
|
2015-03-18 05:13:45 +02:00
|
|
|
|
2020-07-11 12:10:58 +02:00
|
|
|
trustedIPs := ip.NewNetSet()
|
|
|
|
for _, ipStr := range opts.TrustedIPs {
|
|
|
|
if ipNet := ip.ParseIPNet(ipStr); ipNet != nil {
|
|
|
|
trustedIPs.AddIPNet(*ipNet)
|
|
|
|
} else {
|
|
|
|
return nil, fmt.Errorf("could not parse IP network (%s)", ipStr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-09 01:57:01 +02:00
|
|
|
return &OAuthProxy{
|
2020-04-12 15:00:59 +02:00
|
|
|
CookieName: opts.Cookie.Name,
|
|
|
|
CSRFCookieName: fmt.Sprintf("%v_%v", opts.Cookie.Name, "csrf"),
|
|
|
|
CookieSeed: opts.Cookie.Secret,
|
|
|
|
CookieDomains: opts.Cookie.Domains,
|
|
|
|
CookiePath: opts.Cookie.Path,
|
|
|
|
CookieSecure: opts.Cookie.Secure,
|
|
|
|
CookieHTTPOnly: opts.Cookie.HTTPOnly,
|
|
|
|
CookieExpire: opts.Cookie.Expire,
|
|
|
|
CookieRefresh: opts.Cookie.Refresh,
|
|
|
|
CookieSameSite: opts.Cookie.SameSite,
|
2015-03-18 05:13:45 +02:00
|
|
|
Validator: validator,
|
2014-11-09 21:51:10 +02:00
|
|
|
|
2015-05-30 00:47:40 +02:00
|
|
|
RobotsPath: "/robots.txt",
|
|
|
|
SignInPath: fmt.Sprintf("%s/sign_in", opts.ProxyPrefix),
|
2017-03-21 18:39:26 +02:00
|
|
|
SignOutPath: fmt.Sprintf("%s/sign_out", opts.ProxyPrefix),
|
2015-11-09 01:57:01 +02:00
|
|
|
OAuthStartPath: fmt.Sprintf("%s/start", opts.ProxyPrefix),
|
2019-03-12 18:46:37 +02:00
|
|
|
OAuthCallbackPath: fmt.Sprintf("%s/callback", opts.ProxyPrefix),
|
2015-10-08 15:27:00 +02:00
|
|
|
AuthOnlyPath: fmt.Sprintf("%s/auth", opts.ProxyPrefix),
|
2019-11-08 00:38:36 +02:00
|
|
|
UserInfoPath: fmt.Sprintf("%s/userinfo", opts.ProxyPrefix),
|
2015-05-30 00:47:40 +02:00
|
|
|
|
2020-05-30 23:16:26 +02:00
|
|
|
ProxyPrefix: opts.ProxyPrefix,
|
|
|
|
provider: opts.GetProvider(),
|
|
|
|
providerNameOverride: opts.ProviderName,
|
2020-05-25 15:00:49 +02:00
|
|
|
sessionStore: sessionStore,
|
2020-05-30 23:16:26 +02:00
|
|
|
serveMux: serveMux,
|
|
|
|
redirectURL: redirectURL,
|
|
|
|
whitelistDomains: opts.WhitelistDomains,
|
|
|
|
skipAuthRegex: opts.SkipAuthRegex,
|
|
|
|
skipAuthPreflight: opts.SkipAuthPreflight,
|
|
|
|
skipJwtBearerTokens: opts.SkipJwtBearerTokens,
|
|
|
|
mainJwtBearerVerifier: opts.GetOIDCVerifier(),
|
|
|
|
extraJwtBearerVerifiers: opts.GetJWTBearerVerifiers(),
|
|
|
|
compiledRegex: opts.GetCompiledRegex(),
|
|
|
|
realClientIPParser: opts.GetRealClientIPParser(),
|
|
|
|
SetXAuthRequest: opts.SetXAuthRequest,
|
|
|
|
PassBasicAuth: opts.PassBasicAuth,
|
|
|
|
SetBasicAuth: opts.SetBasicAuth,
|
|
|
|
PassUserHeaders: opts.PassUserHeaders,
|
|
|
|
BasicAuthPassword: opts.BasicAuthPassword,
|
|
|
|
PassAccessToken: opts.PassAccessToken,
|
|
|
|
SetAuthorization: opts.SetAuthorization,
|
|
|
|
PassAuthorization: opts.PassAuthorization,
|
|
|
|
PreferEmailToUser: opts.PreferEmailToUser,
|
|
|
|
SkipProviderButton: opts.SkipProviderButton,
|
|
|
|
templates: loadTemplates(opts.CustomTemplatesDir),
|
2020-07-11 12:10:58 +02:00
|
|
|
trustedIPs: trustedIPs,
|
2020-05-30 23:16:26 +02:00
|
|
|
Banner: opts.Banner,
|
|
|
|
Footer: opts.Footer,
|
2020-05-25 15:00:49 +02:00
|
|
|
}, nil
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// GetRedirectURI returns the redirectURL that the upstream OAuth Provider will
|
|
|
|
// redirect clients to once authenticated
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) GetRedirectURI(host string) string {
|
2015-03-17 22:25:19 +02:00
|
|
|
// default to the request Host if not set
|
2015-11-09 01:47:44 +02:00
|
|
|
if p.redirectURL.Host != "" {
|
|
|
|
return p.redirectURL.String()
|
2015-03-17 22:25:19 +02:00
|
|
|
}
|
2020-04-14 10:36:44 +02:00
|
|
|
u := *p.redirectURL
|
2015-03-17 22:25:19 +02:00
|
|
|
if u.Scheme == "" {
|
2015-03-18 05:13:45 +02:00
|
|
|
if p.CookieSecure {
|
2018-11-29 16:26:41 +02:00
|
|
|
u.Scheme = httpsScheme
|
2015-03-17 22:25:19 +02:00
|
|
|
} else {
|
2018-11-29 16:26:41 +02:00
|
|
|
u.Scheme = httpScheme
|
2015-03-17 22:25:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
u.Host = host
|
|
|
|
return u.String()
|
|
|
|
}
|
|
|
|
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) displayCustomLoginForm() bool {
|
2014-12-09 22:38:57 +02:00
|
|
|
return p.HtpasswdFile != nil && p.DisplayHtpasswdForm
|
|
|
|
}
|
|
|
|
|
2020-05-05 17:53:33 +02:00
|
|
|
func (p *OAuthProxy) redeemCode(ctx context.Context, host, code string) (s *sessionsapi.SessionState, err error) {
|
2013-10-22 22:56:29 +03:00
|
|
|
if code == "" {
|
2015-06-23 13:23:39 +02:00
|
|
|
return nil, errors.New("missing code")
|
2013-10-22 22:56:29 +03:00
|
|
|
}
|
2015-11-09 01:50:42 +02:00
|
|
|
redirectURI := p.GetRedirectURI(host)
|
2020-05-05 17:53:33 +02:00
|
|
|
s, err = p.provider.Redeem(ctx, redirectURI, code)
|
2012-12-11 04:59:23 +03:00
|
|
|
if err != nil {
|
2015-06-23 13:23:39 +02:00
|
|
|
return
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
2012-12-17 21:15:23 +03:00
|
|
|
|
2015-06-23 13:23:39 +02:00
|
|
|
if s.Email == "" {
|
2020-05-05 17:53:33 +02:00
|
|
|
s.Email, err = p.provider.GetEmailAddress(ctx, s)
|
2014-08-07 23:16:39 +03:00
|
|
|
}
|
2017-09-26 23:31:27 +02:00
|
|
|
|
2020-03-01 17:02:51 +02:00
|
|
|
if s.PreferredUsername == "" {
|
2020-05-05 17:53:33 +02:00
|
|
|
s.PreferredUsername, err = p.provider.GetPreferredUsername(ctx, s)
|
2020-03-01 17:02:51 +02:00
|
|
|
if err != nil && err.Error() == "not implemented" {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-26 23:31:27 +02:00
|
|
|
if s.User == "" {
|
2020-05-05 17:53:33 +02:00
|
|
|
s.User, err = p.provider.GetUserName(ctx, s)
|
2017-09-26 23:31:27 +02:00
|
|
|
if err != nil && err.Error() == "not implemented" {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
return
|
2014-08-07 23:16:39 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// MakeCSRFCookie creates a cookie for CSRF
|
2017-03-28 03:14:38 +02:00
|
|
|
func (p *OAuthProxy) MakeCSRFCookie(req *http.Request, value string, expiration time.Duration, now time.Time) *http.Cookie {
|
|
|
|
return p.makeCookie(req, p.CSRFCookieName, value, expiration, now)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *OAuthProxy) makeCookie(req *http.Request, name string, value string, expiration time.Duration, now time.Time) *http.Cookie {
|
2020-04-12 13:00:44 +02:00
|
|
|
cookieDomain := cookies.GetCookieDomain(req, p.CookieDomains)
|
|
|
|
|
|
|
|
if cookieDomain != "" {
|
|
|
|
domain := cookies.GetRequestHost(req)
|
2017-04-19 05:33:50 +02:00
|
|
|
if h, _, err := net.SplitHostPort(domain); err == nil {
|
|
|
|
domain = h
|
|
|
|
}
|
2020-04-12 13:00:44 +02:00
|
|
|
if !strings.HasSuffix(domain, cookieDomain) {
|
|
|
|
logger.Printf("Warning: request host is %q but using configured cookie domain of %q", domain, cookieDomain)
|
2015-03-19 21:59:48 +02:00
|
|
|
}
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
2015-05-08 17:51:11 +02:00
|
|
|
|
|
|
|
return &http.Cookie{
|
2017-03-28 03:14:38 +02:00
|
|
|
Name: name,
|
2015-05-08 17:51:11 +02:00
|
|
|
Value: value,
|
2019-04-09 23:36:35 +02:00
|
|
|
Path: p.CookiePath,
|
2020-04-12 13:00:44 +02:00
|
|
|
Domain: cookieDomain,
|
2018-11-29 16:26:41 +02:00
|
|
|
HttpOnly: p.CookieHTTPOnly,
|
2015-03-19 21:59:48 +02:00
|
|
|
Secure: p.CookieSecure,
|
2015-06-22 21:10:08 +02:00
|
|
|
Expires: now.Add(expiration),
|
2019-12-16 20:10:04 +02:00
|
|
|
SameSite: cookies.ParseSameSite(p.CookieSameSite),
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// ClearCSRFCookie creates a cookie to unset the CSRF cookie stored in the user's
|
|
|
|
// session
|
2017-03-28 03:14:38 +02:00
|
|
|
func (p *OAuthProxy) ClearCSRFCookie(rw http.ResponseWriter, req *http.Request) {
|
|
|
|
http.SetCookie(rw, p.MakeCSRFCookie(req, "", time.Hour*-1, time.Now()))
|
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// SetCSRFCookie adds a CSRF cookie to the response
|
2017-03-28 03:14:38 +02:00
|
|
|
func (p *OAuthProxy) SetCSRFCookie(rw http.ResponseWriter, req *http.Request, val string) {
|
|
|
|
http.SetCookie(rw, p.MakeCSRFCookie(req, val, p.CookieExpire, time.Now()))
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// ClearSessionCookie creates a cookie to unset the user's authentication cookie
|
|
|
|
// stored in the user's session
|
2019-05-07 17:13:55 +02:00
|
|
|
func (p *OAuthProxy) ClearSessionCookie(rw http.ResponseWriter, req *http.Request) error {
|
|
|
|
return p.sessionStore.Clear(rw, req)
|
2017-03-28 03:14:38 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// LoadCookiedSession reads the user's authentication details from the request
|
2019-05-07 17:13:55 +02:00
|
|
|
func (p *OAuthProxy) LoadCookiedSession(req *http.Request) (*sessionsapi.SessionState, error) {
|
|
|
|
return p.sessionStore.Load(req)
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// SaveSession creates a new session cookie value and sets this on the response
|
2019-05-07 15:27:09 +02:00
|
|
|
func (p *OAuthProxy) SaveSession(rw http.ResponseWriter, req *http.Request, s *sessionsapi.SessionState) error {
|
2019-05-07 17:13:55 +02:00
|
|
|
return p.sessionStore.Save(rw, req, s)
|
2012-12-26 18:35:02 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// RobotsTxt disallows scraping pages from the OAuthProxy
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) RobotsTxt(rw http.ResponseWriter) {
|
2015-05-10 21:15:52 +02:00
|
|
|
rw.WriteHeader(http.StatusOK)
|
|
|
|
fmt.Fprintf(rw, "User-agent: *\nDisallow: /")
|
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// ErrorPage writes an error response
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) ErrorPage(rw http.ResponseWriter, code int, title string, message string) {
|
2012-12-11 04:59:23 +03:00
|
|
|
rw.WriteHeader(code)
|
2012-12-17 21:15:23 +03:00
|
|
|
t := struct {
|
2015-10-04 00:59:47 +02:00
|
|
|
Title string
|
|
|
|
Message string
|
|
|
|
ProxyPrefix string
|
2012-12-11 04:59:23 +03:00
|
|
|
}{
|
2015-10-04 00:59:47 +02:00
|
|
|
Title: fmt.Sprintf("%d %s", code, title),
|
|
|
|
Message: message,
|
|
|
|
ProxyPrefix: p.ProxyPrefix,
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
2015-03-18 00:06:06 +02:00
|
|
|
p.templates.ExecuteTemplate(rw, "error.html", t)
|
2012-12-17 21:15:23 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// SignInPage writes the sing in template to the response
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) SignInPage(rw http.ResponseWriter, req *http.Request, code int) {
|
2020-04-09 16:39:07 +02:00
|
|
|
prepareNoCache(rw)
|
2017-03-28 03:14:38 +02:00
|
|
|
p.ClearSessionCookie(rw, req)
|
2012-12-17 21:15:23 +03:00
|
|
|
rw.WriteHeader(code)
|
2012-12-26 18:35:02 +03:00
|
|
|
|
2020-02-28 11:59:27 +02:00
|
|
|
redirectURL, err := p.GetRedirect(req)
|
|
|
|
if err != nil {
|
|
|
|
logger.Printf("Error obtaining redirect: %s", err.Error())
|
|
|
|
p.ErrorPage(rw, 500, "Internal Error", err.Error())
|
|
|
|
return
|
2016-11-16 08:36:18 +02:00
|
|
|
}
|
2020-02-28 11:59:27 +02:00
|
|
|
|
|
|
|
if redirectURL == p.SignInPath {
|
|
|
|
redirectURL = "/"
|
2015-04-07 04:10:03 +02:00
|
|
|
}
|
|
|
|
|
2012-12-26 18:35:02 +03:00
|
|
|
t := struct {
|
2015-03-31 18:59:07 +02:00
|
|
|
ProviderName string
|
2020-04-04 16:01:11 +02:00
|
|
|
SignInMessage template.HTML
|
2014-12-09 22:38:57 +02:00
|
|
|
CustomLogin bool
|
2013-10-22 22:56:29 +03:00
|
|
|
Redirect string
|
2014-11-10 05:01:50 +02:00
|
|
|
Version string
|
2015-05-30 00:47:40 +02:00
|
|
|
ProxyPrefix string
|
2016-06-19 05:53:42 +02:00
|
|
|
Footer template.HTML
|
2012-12-26 18:55:41 +03:00
|
|
|
}{
|
2015-03-31 18:59:07 +02:00
|
|
|
ProviderName: p.provider.Data().ProviderName,
|
2020-04-04 16:01:11 +02:00
|
|
|
SignInMessage: template.HTML(p.SignInMessage),
|
2014-12-09 22:38:57 +02:00
|
|
|
CustomLogin: p.displayCustomLoginForm(),
|
2020-02-28 11:59:27 +02:00
|
|
|
Redirect: redirectURL,
|
2014-11-10 05:01:50 +02:00
|
|
|
Version: VERSION,
|
2015-05-30 00:47:40 +02:00
|
|
|
ProxyPrefix: p.ProxyPrefix,
|
2016-06-19 05:53:42 +02:00
|
|
|
Footer: template.HTML(p.Footer),
|
2012-12-26 18:55:41 +03:00
|
|
|
}
|
2019-11-25 19:20:37 +02:00
|
|
|
if p.providerNameOverride != "" {
|
|
|
|
t.ProviderName = p.providerNameOverride
|
|
|
|
}
|
2015-03-18 00:06:06 +02:00
|
|
|
p.templates.ExecuteTemplate(rw, "sign_in.html", t)
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// ManualSignIn handles basic auth logins to the proxy
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) ManualSignIn(rw http.ResponseWriter, req *http.Request) (string, bool) {
|
2012-12-26 18:35:02 +03:00
|
|
|
if req.Method != "POST" || p.HtpasswdFile == nil {
|
2012-12-26 18:55:41 +03:00
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
user := req.FormValue("username")
|
|
|
|
passwd := req.FormValue("password")
|
|
|
|
if user == "" {
|
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
// check auth
|
|
|
|
if p.HtpasswdFile.Validate(user, passwd) {
|
2019-02-10 19:01:13 +02:00
|
|
|
logger.PrintAuthf(user, req, logger.AuthSuccess, "Authenticated via HtpasswdFile")
|
2012-12-26 18:55:41 +03:00
|
|
|
return user, true
|
|
|
|
}
|
2019-02-10 19:01:13 +02:00
|
|
|
logger.PrintAuthf(user, req, logger.AuthFailure, "Invalid authentication via HtpasswdFile")
|
2012-12-26 18:55:41 +03:00
|
|
|
return "", false
|
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// GetRedirect reads the query parameter to get the URL to redirect clients to
|
|
|
|
// once authenticated with the OAuthProxy
|
2017-03-28 03:14:38 +02:00
|
|
|
func (p *OAuthProxy) GetRedirect(req *http.Request) (redirect string, err error) {
|
|
|
|
err = req.ParseForm()
|
2013-10-24 18:31:08 +03:00
|
|
|
if err != nil {
|
2017-03-28 03:14:38 +02:00
|
|
|
return
|
2013-10-24 18:31:08 +03:00
|
|
|
}
|
|
|
|
|
2019-08-17 22:50:37 +02:00
|
|
|
redirect = req.Header.Get("X-Auth-Request-Redirect")
|
|
|
|
if req.Form.Get("rd") != "" {
|
|
|
|
redirect = req.Form.Get("rd")
|
|
|
|
}
|
2017-09-29 17:55:50 +02:00
|
|
|
if !p.IsValidRedirect(redirect) {
|
2019-01-29 14:13:02 +02:00
|
|
|
redirect = req.URL.Path
|
|
|
|
if strings.HasPrefix(redirect, p.ProxyPrefix) {
|
|
|
|
redirect = "/"
|
|
|
|
}
|
2013-10-24 18:31:08 +03:00
|
|
|
}
|
|
|
|
|
2017-03-28 03:14:38 +02:00
|
|
|
return
|
2013-10-24 18:31:08 +03:00
|
|
|
}
|
|
|
|
|
2019-10-23 15:38:44 +02:00
|
|
|
// splitHostPort separates host and port. If the port is not valid, it returns
|
|
|
|
// the entire input as host, and it doesn't check the validity of the host.
|
|
|
|
// Unlike net.SplitHostPort, but per RFC 3986, it requires ports to be numeric.
|
|
|
|
// *** taken from net/url, modified validOptionalPort() to accept ":*"
|
|
|
|
func splitHostPort(hostport string) (host, port string) {
|
|
|
|
host = hostport
|
|
|
|
|
|
|
|
colon := strings.LastIndexByte(host, ':')
|
|
|
|
if colon != -1 && validOptionalPort(host[colon:]) {
|
|
|
|
host, port = host[:colon], host[colon+1:]
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(host, "[") && strings.HasSuffix(host, "]") {
|
|
|
|
host = host[1 : len(host)-1]
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// validOptionalPort reports whether port is either an empty string
|
|
|
|
// or matches /^:\d*$/
|
|
|
|
// *** taken from net/url, modified to accept ":*"
|
|
|
|
func validOptionalPort(port string) bool {
|
|
|
|
if port == "" || port == ":*" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if port[0] != ':' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for _, b := range port[1:] {
|
|
|
|
if b < '0' || b > '9' {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2017-09-29 17:55:50 +02:00
|
|
|
// IsValidRedirect checks whether the redirect URL is whitelisted
|
|
|
|
func (p *OAuthProxy) IsValidRedirect(redirect string) bool {
|
|
|
|
switch {
|
2020-05-31 16:32:07 +02:00
|
|
|
case redirect == "":
|
|
|
|
// The user didn't specify a redirect, should fallback to `/`
|
|
|
|
return false
|
2020-05-06 13:42:02 +02:00
|
|
|
case strings.HasPrefix(redirect, "/") && !strings.HasPrefix(redirect, "//") && !invalidRedirectRegex.MatchString(redirect):
|
2017-09-29 17:55:50 +02:00
|
|
|
return true
|
2017-12-11 11:24:52 +02:00
|
|
|
case strings.HasPrefix(redirect, "http://") || strings.HasPrefix(redirect, "https://"):
|
|
|
|
redirectURL, err := url.Parse(redirect)
|
|
|
|
if err != nil {
|
2020-04-02 10:51:38 +02:00
|
|
|
logger.Printf("Rejecting invalid redirect %q: scheme unsupported or missing", redirect)
|
2017-12-11 11:24:52 +02:00
|
|
|
return false
|
2017-09-29 17:55:50 +02:00
|
|
|
}
|
2019-10-12 22:47:23 +02:00
|
|
|
redirectHostname := redirectURL.Hostname()
|
|
|
|
|
2017-09-29 17:55:50 +02:00
|
|
|
for _, domain := range p.whitelistDomains {
|
2019-10-23 15:38:44 +02:00
|
|
|
domainHostname, domainPort := splitHostPort(strings.TrimLeft(domain, "."))
|
2019-11-14 17:17:12 +02:00
|
|
|
if domainHostname == "" {
|
2019-10-12 22:47:23 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if (redirectHostname == domainHostname) || (strings.HasPrefix(domain, ".") && strings.HasSuffix(redirectHostname, domainHostname)) {
|
2019-10-23 15:38:44 +02:00
|
|
|
// the domain names match, now validate the ports
|
|
|
|
// if the whitelisted domain's port is '*', allow all ports
|
|
|
|
// if the whitelisted domain contains a specific port, only allow that port
|
|
|
|
// if the whitelisted domain doesn't contain a port at all, only allow empty redirect ports ie http and https
|
|
|
|
redirectPort := redirectURL.Port()
|
|
|
|
if (domainPort == "*") ||
|
|
|
|
(domainPort == redirectPort) ||
|
|
|
|
(domainPort == "" && redirectPort == "") {
|
2019-10-12 22:47:23 +02:00
|
|
|
return true
|
|
|
|
}
|
2017-09-29 17:55:50 +02:00
|
|
|
}
|
|
|
|
}
|
2019-10-12 22:47:23 +02:00
|
|
|
|
2020-04-02 10:51:38 +02:00
|
|
|
logger.Printf("Rejecting invalid redirect %q: domain / port not in whitelist", redirect)
|
2017-09-29 17:55:50 +02:00
|
|
|
return false
|
|
|
|
default:
|
2020-04-02 10:51:38 +02:00
|
|
|
logger.Printf("Rejecting invalid redirect %q: not an absolute or relative URL", redirect)
|
2017-09-29 17:55:50 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// IsWhitelistedRequest is used to check if auth should be skipped for this request
|
2019-06-07 05:50:44 +02:00
|
|
|
func (p *OAuthProxy) IsWhitelistedRequest(req *http.Request) bool {
|
2017-04-07 13:55:48 +02:00
|
|
|
isPreflightRequestAllowed := p.skipAuthPreflight && req.Method == "OPTIONS"
|
2020-07-11 12:10:58 +02:00
|
|
|
return isPreflightRequestAllowed || p.IsWhitelistedPath(req.URL.Path) || p.IsTrustedIP(req)
|
2017-04-07 13:55:48 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// IsWhitelistedPath is used to check if the request path is allowed without auth
|
2019-06-07 05:50:44 +02:00
|
|
|
func (p *OAuthProxy) IsWhitelistedPath(path string) bool {
|
2015-06-23 13:23:39 +02:00
|
|
|
for _, u := range p.compiledRegex {
|
2019-06-07 05:50:44 +02:00
|
|
|
if u.MatchString(path) {
|
|
|
|
return true
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
2012-12-26 18:55:41 +03:00
|
|
|
}
|
2019-06-07 05:50:44 +02:00
|
|
|
return false
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
2012-12-26 18:35:02 +03:00
|
|
|
|
2020-04-09 16:39:07 +02:00
|
|
|
// See https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/http-caching?hl=en
|
|
|
|
var noCacheHeaders = map[string]string{
|
|
|
|
"Expires": time.Unix(0, 0).Format(time.RFC1123),
|
|
|
|
"Cache-Control": "no-cache, no-store, must-revalidate, max-age=0",
|
|
|
|
"X-Accel-Expires": "0", // https://www.nginx.com/resources/wiki/start/topics/examples/x-accel/
|
|
|
|
}
|
|
|
|
|
|
|
|
// prepareNoCache prepares headers for preventing browser caching.
|
|
|
|
func prepareNoCache(w http.ResponseWriter) {
|
|
|
|
// Set NoCache headers
|
|
|
|
for k, v := range noCacheHeaders {
|
|
|
|
w.Header().Set(k, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-11 12:10:58 +02:00
|
|
|
// IsTrustedIP is used to check if a request comes from a trusted client IP address.
|
|
|
|
func (p *OAuthProxy) IsTrustedIP(req *http.Request) bool {
|
|
|
|
if p.trustedIPs == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
remoteAddr, err := ip.GetClientIP(p.realClientIPParser, req)
|
|
|
|
if err != nil {
|
|
|
|
logger.Printf("Error obtaining real IP for trusted IP list: %v", err)
|
|
|
|
// Possibly spoofed X-Real-IP header
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if remoteAddr == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return p.trustedIPs.Has(remoteAddr)
|
|
|
|
}
|
|
|
|
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
2020-07-06 12:04:31 +02:00
|
|
|
if req.URL.Path != p.AuthOnlyPath && strings.HasPrefix(req.URL.Path, p.ProxyPrefix) {
|
2020-04-09 16:39:07 +02:00
|
|
|
prepareNoCache(rw)
|
|
|
|
}
|
|
|
|
|
2015-06-23 13:23:39 +02:00
|
|
|
switch path := req.URL.Path; {
|
|
|
|
case path == p.RobotsPath:
|
2015-05-10 21:15:52 +02:00
|
|
|
p.RobotsTxt(rw)
|
2017-04-07 13:55:48 +02:00
|
|
|
case p.IsWhitelistedRequest(req):
|
2015-06-23 13:23:39 +02:00
|
|
|
p.serveMux.ServeHTTP(rw, req)
|
|
|
|
case path == p.SignInPath:
|
|
|
|
p.SignIn(rw, req)
|
2017-03-21 18:39:26 +02:00
|
|
|
case path == p.SignOutPath:
|
|
|
|
p.SignOut(rw, req)
|
2015-11-09 01:57:01 +02:00
|
|
|
case path == p.OAuthStartPath:
|
|
|
|
p.OAuthStart(rw, req)
|
|
|
|
case path == p.OAuthCallbackPath:
|
|
|
|
p.OAuthCallback(rw, req)
|
2015-10-08 15:27:00 +02:00
|
|
|
case path == p.AuthOnlyPath:
|
|
|
|
p.AuthenticateOnly(rw, req)
|
2019-11-08 00:38:36 +02:00
|
|
|
case path == p.UserInfoPath:
|
|
|
|
p.UserInfo(rw, req)
|
2015-06-23 13:23:39 +02:00
|
|
|
default:
|
|
|
|
p.Proxy(rw, req)
|
2015-05-10 21:15:52 +02:00
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
2015-05-10 21:15:52 +02:00
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// SignIn serves a page prompting users to sign in
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) SignIn(rw http.ResponseWriter, req *http.Request) {
|
2015-06-23 13:23:39 +02:00
|
|
|
redirect, err := p.GetRedirect(req)
|
|
|
|
if err != nil {
|
2019-02-10 18:37:45 +02:00
|
|
|
logger.Printf("Error obtaining redirect: %s", err.Error())
|
2015-06-23 13:23:39 +02:00
|
|
|
p.ErrorPage(rw, 500, "Internal Error", err.Error())
|
2014-10-14 23:22:38 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-06-23 13:23:39 +02:00
|
|
|
user, ok := p.ManualSignIn(rw, req)
|
|
|
|
if ok {
|
2019-05-07 15:27:09 +02:00
|
|
|
session := &sessionsapi.SessionState{User: user}
|
2015-06-23 13:23:39 +02:00
|
|
|
p.SaveSession(rw, req, session)
|
2020-04-14 10:36:44 +02:00
|
|
|
http.Redirect(rw, req, redirect, http.StatusFound)
|
2015-06-23 13:23:39 +02:00
|
|
|
} else {
|
2017-06-22 00:02:34 +02:00
|
|
|
if p.SkipProviderButton {
|
|
|
|
p.OAuthStart(rw, req)
|
|
|
|
} else {
|
|
|
|
p.SignInPage(rw, req, http.StatusOK)
|
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
|
|
|
}
|
2015-01-12 11:18:41 +02:00
|
|
|
|
2020-03-01 17:02:51 +02:00
|
|
|
//UserInfo endpoint outputs session email and preferred username in JSON format
|
2019-11-08 00:38:36 +02:00
|
|
|
func (p *OAuthProxy) UserInfo(rw http.ResponseWriter, req *http.Request) {
|
|
|
|
|
|
|
|
session, err := p.getAuthenticatedSession(rw, req)
|
|
|
|
if err != nil {
|
|
|
|
http.Error(rw, http.StatusText(http.StatusUnauthorized), http.StatusUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
userInfo := struct {
|
2020-03-01 17:02:51 +02:00
|
|
|
Email string `json:"email"`
|
|
|
|
PreferredUsername string `json:"preferredUsername,omitempty"`
|
|
|
|
}{
|
|
|
|
Email: session.Email,
|
|
|
|
PreferredUsername: session.PreferredUsername,
|
|
|
|
}
|
2019-11-08 00:38:36 +02:00
|
|
|
rw.Header().Set("Content-Type", "application/json")
|
|
|
|
rw.WriteHeader(http.StatusOK)
|
|
|
|
json.NewEncoder(rw).Encode(userInfo)
|
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// SignOut sends a response to clear the authentication cookie
|
2017-03-21 18:39:26 +02:00
|
|
|
func (p *OAuthProxy) SignOut(rw http.ResponseWriter, req *http.Request) {
|
2019-11-19 19:17:26 +02:00
|
|
|
redirect, err := p.GetRedirect(req)
|
|
|
|
if err != nil {
|
|
|
|
logger.Printf("Error obtaining redirect: %s", err.Error())
|
|
|
|
p.ErrorPage(rw, 500, "Internal Error", err.Error())
|
|
|
|
return
|
|
|
|
}
|
2017-03-28 03:14:38 +02:00
|
|
|
p.ClearSessionCookie(rw, req)
|
2020-04-14 10:36:44 +02:00
|
|
|
http.Redirect(rw, req, redirect, http.StatusFound)
|
2017-03-21 18:39:26 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// OAuthStart starts the OAuth2 authentication flow
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) OAuthStart(rw http.ResponseWriter, req *http.Request) {
|
2020-04-09 16:39:07 +02:00
|
|
|
prepareNoCache(rw)
|
2019-05-24 18:06:48 +02:00
|
|
|
nonce, err := encryption.Nonce()
|
2017-03-28 03:14:38 +02:00
|
|
|
if err != nil {
|
2019-02-10 18:37:45 +02:00
|
|
|
logger.Printf("Error obtaining nonce: %s", err.Error())
|
2017-03-28 03:14:38 +02:00
|
|
|
p.ErrorPage(rw, 500, "Internal Error", err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p.SetCSRFCookie(rw, req, nonce)
|
2015-06-23 13:23:39 +02:00
|
|
|
redirect, err := p.GetRedirect(req)
|
|
|
|
if err != nil {
|
2019-02-10 18:37:45 +02:00
|
|
|
logger.Printf("Error obtaining redirect: %s", err.Error())
|
2015-06-23 13:23:39 +02:00
|
|
|
p.ErrorPage(rw, 500, "Internal Error", err.Error())
|
|
|
|
return
|
2015-01-12 11:18:41 +02:00
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
redirectURI := p.GetRedirectURI(req.Host)
|
2020-04-14 10:36:44 +02:00
|
|
|
http.Redirect(rw, req, p.provider.GetLoginURL(redirectURI, fmt.Sprintf("%v:%v", nonce, redirect)), http.StatusFound)
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
2015-01-12 11:18:41 +02:00
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// OAuthCallback is the OAuth2 authentication flow callback that finishes the
|
|
|
|
// OAuth2 authentication flow
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) OAuthCallback(rw http.ResponseWriter, req *http.Request) {
|
2020-05-23 16:17:41 +02:00
|
|
|
remoteAddr := ip.GetClientString(p.realClientIPParser, req, true)
|
2013-10-24 18:31:08 +03:00
|
|
|
|
2015-06-23 13:23:39 +02:00
|
|
|
// finish the oauth cycle
|
|
|
|
err := req.ParseForm()
|
|
|
|
if err != nil {
|
2019-02-10 19:01:13 +02:00
|
|
|
logger.Printf("Error while parsing OAuth2 callback: %s" + err.Error())
|
2015-06-23 13:23:39 +02:00
|
|
|
p.ErrorPage(rw, 500, "Internal Error", err.Error())
|
2012-12-11 04:59:23 +03:00
|
|
|
return
|
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
errorString := req.Form.Get("error")
|
|
|
|
if errorString != "" {
|
2019-02-10 19:01:13 +02:00
|
|
|
logger.Printf("Error while parsing OAuth2 callback: %s ", errorString)
|
2015-06-23 13:23:39 +02:00
|
|
|
p.ErrorPage(rw, 403, "Permission Denied", errorString)
|
2012-12-11 04:59:23 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-05-05 17:53:33 +02:00
|
|
|
session, err := p.redeemCode(req.Context(), req.Host, req.Form.Get("code"))
|
2015-06-23 13:23:39 +02:00
|
|
|
if err != nil {
|
2019-05-07 19:47:15 +02:00
|
|
|
logger.Printf("Error redeeming code during OAuth2 callback: %s ", err.Error())
|
2015-06-23 13:23:39 +02:00
|
|
|
p.ErrorPage(rw, 500, "Internal Error", "Internal Error")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-03-28 03:14:38 +02:00
|
|
|
s := strings.SplitN(req.Form.Get("state"), ":", 2)
|
|
|
|
if len(s) != 2 {
|
2019-04-23 18:36:18 +02:00
|
|
|
logger.Printf("Error while parsing OAuth2 state: invalid length")
|
2017-03-28 03:14:38 +02:00
|
|
|
p.ErrorPage(rw, 500, "Internal Error", "Invalid State")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
nonce := s[0]
|
|
|
|
redirect := s[1]
|
|
|
|
c, err := req.Cookie(p.CSRFCookieName)
|
|
|
|
if err != nil {
|
2019-04-23 18:36:18 +02:00
|
|
|
logger.PrintAuthf(session.Email, req, logger.AuthFailure, "Invalid authentication via OAuth2: unable too obtain CSRF cookie")
|
2017-03-28 03:14:38 +02:00
|
|
|
p.ErrorPage(rw, 403, "Permission Denied", err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p.ClearCSRFCookie(rw, req)
|
|
|
|
if c.Value != nonce {
|
2019-04-23 18:36:18 +02:00
|
|
|
logger.PrintAuthf(session.Email, req, logger.AuthFailure, "Invalid authentication via OAuth2: csrf token mismatch, potential attack")
|
2017-03-28 03:14:38 +02:00
|
|
|
p.ErrorPage(rw, 403, "Permission Denied", "csrf failed")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-29 17:55:50 +02:00
|
|
|
if !p.IsValidRedirect(redirect) {
|
2015-06-23 13:23:39 +02:00
|
|
|
redirect = "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
// set cookie, or deny
|
2015-08-20 12:07:02 +02:00
|
|
|
if p.Validator(session.Email) && p.provider.ValidateGroup(session.Email) {
|
2019-04-23 18:36:18 +02:00
|
|
|
logger.PrintAuthf(session.Email, req, logger.AuthSuccess, "Authenticated via OAuth2: %s", session)
|
2015-06-23 13:23:39 +02:00
|
|
|
err := p.SaveSession(rw, req, session)
|
2012-12-11 04:59:23 +03:00
|
|
|
if err != nil {
|
2019-02-10 18:37:45 +02:00
|
|
|
logger.Printf("%s %s", remoteAddr, err)
|
2015-06-23 13:23:39 +02:00
|
|
|
p.ErrorPage(rw, 500, "Internal Error", "Internal Error")
|
2012-12-11 04:59:23 +03:00
|
|
|
return
|
|
|
|
}
|
2020-04-14 10:36:44 +02:00
|
|
|
http.Redirect(rw, req, redirect, http.StatusFound)
|
2015-06-23 13:23:39 +02:00
|
|
|
} else {
|
2019-06-20 22:40:04 +02:00
|
|
|
logger.PrintAuthf(session.Email, req, logger.AuthFailure, "Invalid authentication via OAuth2: unauthorized")
|
2015-06-23 13:23:39 +02:00
|
|
|
p.ErrorPage(rw, 403, "Permission Denied", "Invalid Account")
|
|
|
|
}
|
|
|
|
}
|
2012-12-11 04:59:23 +03:00
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// AuthenticateOnly checks whether the user is currently logged in
|
2015-10-08 15:27:00 +02:00
|
|
|
func (p *OAuthProxy) AuthenticateOnly(rw http.ResponseWriter, req *http.Request) {
|
2019-06-07 06:25:12 +02:00
|
|
|
session, err := p.getAuthenticatedSession(rw, req)
|
2019-06-15 10:48:27 +02:00
|
|
|
if err != nil {
|
2015-10-08 20:10:28 +02:00
|
|
|
http.Error(rw, "unauthorized request", http.StatusUnauthorized)
|
2019-06-15 10:48:27 +02:00
|
|
|
return
|
2015-10-08 15:27:00 +02:00
|
|
|
}
|
2019-06-15 10:48:27 +02:00
|
|
|
|
|
|
|
// we are authenticated
|
|
|
|
p.addHeadersForProxying(rw, req, session)
|
|
|
|
rw.WriteHeader(http.StatusAccepted)
|
2015-10-08 15:27:00 +02:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// Proxy proxies the user request if the user is authenticated else it prompts
|
|
|
|
// them to authenticate
|
2015-11-09 01:57:01 +02:00
|
|
|
func (p *OAuthProxy) Proxy(rw http.ResponseWriter, req *http.Request) {
|
2019-06-07 05:50:44 +02:00
|
|
|
session, err := p.getAuthenticatedSession(rw, req)
|
|
|
|
switch err {
|
|
|
|
case nil:
|
|
|
|
// we are authenticated
|
|
|
|
p.addHeadersForProxying(rw, req, session)
|
|
|
|
p.serveMux.ServeHTTP(rw, req)
|
|
|
|
|
|
|
|
case ErrNeedsLogin:
|
|
|
|
// we need to send the user to a login screen
|
|
|
|
if isAjax(req) {
|
|
|
|
// no point redirecting an AJAX request
|
|
|
|
p.ErrorJSON(rw, http.StatusUnauthorized)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-11-11 02:42:35 +02:00
|
|
|
if p.SkipProviderButton {
|
|
|
|
p.OAuthStart(rw, req)
|
|
|
|
} else {
|
|
|
|
p.SignInPage(rw, req, http.StatusForbidden)
|
|
|
|
}
|
2019-06-07 05:50:44 +02:00
|
|
|
|
|
|
|
default:
|
|
|
|
// unknown error
|
|
|
|
logger.Printf("Unexpected internal error: %s", err)
|
|
|
|
p.ErrorPage(rw, http.StatusInternalServerError,
|
|
|
|
"Internal Error", "Internal Error")
|
2015-10-08 20:10:28 +02:00
|
|
|
}
|
2019-06-07 05:50:44 +02:00
|
|
|
|
2015-10-08 20:10:28 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 05:50:44 +02:00
|
|
|
// getAuthenticatedSession checks whether a user is authenticated and returns a session object and nil error if so
|
|
|
|
// Returns nil, ErrNeedsLogin if user needs to login.
|
|
|
|
// Set-Cookie headers may be set on the response as a side-effect of calling this method.
|
|
|
|
func (p *OAuthProxy) getAuthenticatedSession(rw http.ResponseWriter, req *http.Request) (*sessionsapi.SessionState, error) {
|
2019-01-17 22:49:14 +02:00
|
|
|
var session *sessionsapi.SessionState
|
|
|
|
var err error
|
2015-06-23 13:23:39 +02:00
|
|
|
var saveSession, clearSession, revalidated bool
|
|
|
|
|
2019-01-17 22:49:14 +02:00
|
|
|
if p.skipJwtBearerTokens && req.Header.Get("Authorization") != "" {
|
|
|
|
session, err = p.GetJwtSession(req)
|
|
|
|
if err != nil {
|
2019-04-24 17:25:29 +02:00
|
|
|
logger.Printf("Error retrieving session from token in Authorization header: %s", err)
|
2019-01-17 22:49:14 +02:00
|
|
|
}
|
|
|
|
if session != nil {
|
|
|
|
saveSession = false
|
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
|
|
|
|
2020-05-23 16:17:41 +02:00
|
|
|
remoteAddr := ip.GetClientString(p.realClientIPParser, req, true)
|
2019-01-17 22:49:14 +02:00
|
|
|
if session == nil {
|
|
|
|
session, err = p.LoadCookiedSession(req)
|
|
|
|
if err != nil {
|
|
|
|
logger.Printf("Error loading cookied session: %s", err)
|
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
|
2019-06-06 01:08:34 +02:00
|
|
|
if session != nil {
|
|
|
|
if session.Age() > p.CookieRefresh && p.CookieRefresh != time.Duration(0) {
|
|
|
|
logger.Printf("Refreshing %s old session cookie for %s (refresh after %s)", session.Age(), session, p.CookieRefresh)
|
|
|
|
saveSession = true
|
|
|
|
}
|
|
|
|
|
2020-05-05 17:53:33 +02:00
|
|
|
if ok, err := p.provider.RefreshSessionIfNeeded(req.Context(), session); err != nil {
|
2019-06-06 01:08:34 +02:00
|
|
|
logger.Printf("%s removing session. error refreshing access token %s %s", remoteAddr, err, session)
|
|
|
|
clearSession = true
|
|
|
|
session = nil
|
|
|
|
} else if ok {
|
|
|
|
saveSession = true
|
|
|
|
revalidated = true
|
|
|
|
}
|
2019-01-17 22:49:14 +02:00
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if session != nil && session.IsExpired() {
|
2019-04-23 18:36:18 +02:00
|
|
|
logger.Printf("Removing session: token expired %s", session)
|
2015-06-23 13:23:39 +02:00
|
|
|
session = nil
|
|
|
|
saveSession = false
|
|
|
|
clearSession = true
|
|
|
|
}
|
|
|
|
|
2015-08-20 12:07:02 +02:00
|
|
|
if saveSession && !revalidated && session != nil && session.AccessToken != "" {
|
2020-05-05 17:53:33 +02:00
|
|
|
if !p.provider.ValidateSessionState(req.Context(), session) {
|
2019-04-23 18:36:18 +02:00
|
|
|
logger.Printf("Removing session: error validating %s", session)
|
2015-06-23 13:23:39 +02:00
|
|
|
saveSession = false
|
|
|
|
session = nil
|
|
|
|
clearSession = true
|
2013-10-22 22:56:29 +03:00
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
2013-10-22 22:56:29 +03:00
|
|
|
|
2020-03-13 22:10:38 +02:00
|
|
|
if session != nil && session.Email != "" && !p.Validator(session.Email) {
|
|
|
|
logger.Printf(session.Email, req, logger.AuthFailure, "Invalid authentication via session: removing session %s", session)
|
|
|
|
session = nil
|
|
|
|
saveSession = false
|
|
|
|
clearSession = true
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
|
|
|
|
2015-08-20 12:07:02 +02:00
|
|
|
if saveSession && session != nil {
|
2018-11-29 16:26:41 +02:00
|
|
|
err = p.SaveSession(rw, req, session)
|
2015-06-23 13:23:39 +02:00
|
|
|
if err != nil {
|
2019-02-10 18:37:45 +02:00
|
|
|
logger.PrintAuthf(session.Email, req, logger.AuthError, "Save session error %s", err)
|
2019-06-07 05:50:44 +02:00
|
|
|
return nil, err
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
}
|
2012-12-17 21:38:33 +03:00
|
|
|
|
2015-06-23 13:23:39 +02:00
|
|
|
if clearSession {
|
2017-03-28 03:14:38 +02:00
|
|
|
p.ClearSessionCookie(rw, req)
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
|
2015-06-23 13:23:39 +02:00
|
|
|
if session == nil {
|
|
|
|
session, err = p.CheckBasicAuth(req)
|
2019-02-15 20:07:25 +02:00
|
|
|
if err != nil {
|
|
|
|
logger.Printf("Error during basic auth validation: %s", err)
|
|
|
|
}
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
|
2015-06-23 13:23:39 +02:00
|
|
|
if session == nil {
|
2019-06-07 05:50:44 +02:00
|
|
|
return nil, ErrNeedsLogin
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
|
2019-06-07 05:50:44 +02:00
|
|
|
return session, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// addHeadersForProxying adds the appropriate headers the request / response for proxying
|
|
|
|
func (p *OAuthProxy) addHeadersForProxying(rw http.ResponseWriter, req *http.Request, session *sessionsapi.SessionState) {
|
2014-11-09 21:51:10 +02:00
|
|
|
if p.PassBasicAuth {
|
2020-02-29 19:38:32 +02:00
|
|
|
if p.PreferEmailToUser && session.Email != "" {
|
|
|
|
req.SetBasicAuth(session.Email, p.BasicAuthPassword)
|
|
|
|
req.Header["X-Forwarded-User"] = []string{session.Email}
|
2019-06-20 06:17:15 +02:00
|
|
|
req.Header.Del("X-Forwarded-Email")
|
2020-02-29 19:38:32 +02:00
|
|
|
} else {
|
|
|
|
req.SetBasicAuth(session.User, p.BasicAuthPassword)
|
|
|
|
req.Header["X-Forwarded-User"] = []string{session.User}
|
|
|
|
if session.Email != "" {
|
|
|
|
req.Header["X-Forwarded-Email"] = []string{session.Email}
|
|
|
|
} else {
|
|
|
|
req.Header.Del("X-Forwarded-Email")
|
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
2020-03-01 17:02:51 +02:00
|
|
|
if session.PreferredUsername != "" {
|
|
|
|
req.Header["X-Forwarded-Preferred-Username"] = []string{session.PreferredUsername}
|
|
|
|
} else {
|
|
|
|
req.Header.Del("X-Forwarded-Preferred-Username")
|
|
|
|
}
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
2019-06-20 06:17:15 +02:00
|
|
|
|
2016-02-08 17:57:47 +02:00
|
|
|
if p.PassUserHeaders {
|
2020-03-04 00:27:43 +02:00
|
|
|
if p.PreferEmailToUser && session.Email != "" {
|
|
|
|
req.Header["X-Forwarded-User"] = []string{session.Email}
|
2019-06-20 06:17:15 +02:00
|
|
|
req.Header.Del("X-Forwarded-Email")
|
2020-03-04 00:27:43 +02:00
|
|
|
} else {
|
|
|
|
req.Header["X-Forwarded-User"] = []string{session.User}
|
|
|
|
if session.Email != "" {
|
|
|
|
req.Header["X-Forwarded-Email"] = []string{session.Email}
|
|
|
|
} else {
|
|
|
|
req.Header.Del("X-Forwarded-Email")
|
|
|
|
}
|
2016-02-08 17:57:47 +02:00
|
|
|
}
|
2020-03-04 00:27:43 +02:00
|
|
|
|
2020-03-01 17:02:51 +02:00
|
|
|
if session.PreferredUsername != "" {
|
|
|
|
req.Header["X-Forwarded-Preferred-Username"] = []string{session.PreferredUsername}
|
|
|
|
} else {
|
|
|
|
req.Header.Del("X-Forwarded-Preferred-Username")
|
|
|
|
}
|
2016-02-08 17:57:47 +02:00
|
|
|
}
|
2019-06-20 06:17:15 +02:00
|
|
|
|
2016-10-20 14:19:59 +02:00
|
|
|
if p.SetXAuthRequest {
|
|
|
|
rw.Header().Set("X-Auth-Request-User", session.User)
|
|
|
|
if session.Email != "" {
|
|
|
|
rw.Header().Set("X-Auth-Request-Email", session.Email)
|
2019-06-20 06:17:15 +02:00
|
|
|
} else {
|
|
|
|
rw.Header().Del("X-Auth-Request-Email")
|
2016-10-20 14:19:59 +02:00
|
|
|
}
|
2020-03-01 17:02:51 +02:00
|
|
|
if session.PreferredUsername != "" {
|
|
|
|
rw.Header().Set("X-Auth-Request-Preferred-Username", session.PreferredUsername)
|
|
|
|
} else {
|
|
|
|
rw.Header().Del("X-Auth-Request-Preferred-Username")
|
|
|
|
}
|
2019-06-20 06:17:15 +02:00
|
|
|
|
|
|
|
if p.PassAccessToken {
|
|
|
|
if session.AccessToken != "" {
|
|
|
|
rw.Header().Set("X-Auth-Request-Access-Token", session.AccessToken)
|
|
|
|
} else {
|
|
|
|
rw.Header().Del("X-Auth-Request-Access-Token")
|
|
|
|
}
|
2019-02-22 09:49:57 +02:00
|
|
|
}
|
2016-10-20 14:19:59 +02:00
|
|
|
}
|
2019-06-20 06:17:15 +02:00
|
|
|
|
|
|
|
if p.PassAccessToken {
|
|
|
|
if session.AccessToken != "" {
|
|
|
|
req.Header["X-Forwarded-Access-Token"] = []string{session.AccessToken}
|
|
|
|
} else {
|
|
|
|
req.Header.Del("X-Forwarded-Access-Token")
|
|
|
|
}
|
2015-04-03 02:57:17 +02:00
|
|
|
}
|
2019-06-20 06:17:15 +02:00
|
|
|
|
|
|
|
if p.PassAuthorization {
|
|
|
|
if session.IDToken != "" {
|
|
|
|
req.Header["Authorization"] = []string{fmt.Sprintf("Bearer %s", session.IDToken)}
|
|
|
|
} else {
|
|
|
|
req.Header.Del("Authorization")
|
|
|
|
}
|
2018-01-27 12:14:19 +02:00
|
|
|
}
|
2020-04-10 15:41:28 +02:00
|
|
|
if p.SetBasicAuth {
|
2020-05-12 17:04:51 +02:00
|
|
|
switch {
|
|
|
|
case p.PreferEmailToUser && session.Email != "":
|
|
|
|
authVal := b64.StdEncoding.EncodeToString([]byte(session.Email + ":" + p.BasicAuthPassword))
|
|
|
|
rw.Header().Set("Authorization", "Basic "+authVal)
|
|
|
|
case session.User != "":
|
2020-04-10 15:41:28 +02:00
|
|
|
authVal := b64.StdEncoding.EncodeToString([]byte(session.User + ":" + p.BasicAuthPassword))
|
|
|
|
rw.Header().Set("Authorization", "Basic "+authVal)
|
2020-05-12 17:04:51 +02:00
|
|
|
default:
|
2020-04-10 15:41:28 +02:00
|
|
|
rw.Header().Del("Authorization")
|
|
|
|
}
|
|
|
|
}
|
2019-06-20 06:17:15 +02:00
|
|
|
if p.SetAuthorization {
|
|
|
|
if session.IDToken != "" {
|
|
|
|
rw.Header().Set("Authorization", fmt.Sprintf("Bearer %s", session.IDToken))
|
|
|
|
} else {
|
|
|
|
rw.Header().Del("Authorization")
|
|
|
|
}
|
2018-01-27 12:14:19 +02:00
|
|
|
}
|
2019-06-20 06:17:15 +02:00
|
|
|
|
2015-06-23 13:23:39 +02:00
|
|
|
if session.Email == "" {
|
|
|
|
rw.Header().Set("GAP-Auth", session.User)
|
2015-03-19 22:37:16 +02:00
|
|
|
} else {
|
2015-06-23 13:23:39 +02:00
|
|
|
rw.Header().Set("GAP-Auth", session.Email)
|
2015-03-19 22:37:16 +02:00
|
|
|
}
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
|
2018-12-20 11:30:42 +02:00
|
|
|
// CheckBasicAuth checks the requests Authorization header for basic auth
|
|
|
|
// credentials and authenticates these against the proxies HtpasswdFile
|
2019-05-07 15:27:09 +02:00
|
|
|
func (p *OAuthProxy) CheckBasicAuth(req *http.Request) (*sessionsapi.SessionState, error) {
|
2012-12-11 04:59:23 +03:00
|
|
|
if p.HtpasswdFile == nil {
|
2015-06-23 13:23:39 +02:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
auth := req.Header.Get("Authorization")
|
|
|
|
if auth == "" {
|
|
|
|
return nil, nil
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
s := strings.SplitN(auth, " ", 2)
|
2012-12-11 04:59:23 +03:00
|
|
|
if len(s) != 2 || s[0] != "Basic" {
|
2015-06-23 13:23:39 +02:00
|
|
|
return nil, fmt.Errorf("invalid Authorization header %s", req.Header.Get("Authorization"))
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
2016-06-20 13:17:39 +02:00
|
|
|
b, err := b64.StdEncoding.DecodeString(s[1])
|
2012-12-11 04:59:23 +03:00
|
|
|
if err != nil {
|
2015-06-23 13:23:39 +02:00
|
|
|
return nil, err
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
pair := strings.SplitN(string(b), ":", 2)
|
|
|
|
if len(pair) != 2 {
|
2015-06-23 13:23:39 +02:00
|
|
|
return nil, fmt.Errorf("invalid format %s", b)
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
|
|
|
if p.HtpasswdFile.Validate(pair[0], pair[1]) {
|
2019-02-10 19:01:13 +02:00
|
|
|
logger.PrintAuthf(pair[0], req, logger.AuthSuccess, "Authenticated via basic auth and HTpasswd File")
|
2019-05-07 15:27:09 +02:00
|
|
|
return &sessionsapi.SessionState{User: pair[0]}, nil
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
2019-04-23 18:36:18 +02:00
|
|
|
logger.PrintAuthf(pair[0], req, logger.AuthFailure, "Invalid authentication via basic auth: not in Htpasswd File")
|
2019-02-15 20:07:25 +02:00
|
|
|
return nil, nil
|
2012-12-11 04:59:23 +03:00
|
|
|
}
|
2019-01-30 12:13:12 +02:00
|
|
|
|
|
|
|
// isAjax checks if a request is an ajax request
|
2019-06-07 05:50:44 +02:00
|
|
|
func isAjax(req *http.Request) bool {
|
2020-04-14 10:36:44 +02:00
|
|
|
acceptValues := req.Header.Values("Accept")
|
2019-01-31 17:22:30 +02:00
|
|
|
const ajaxReq = applicationJSON
|
2019-01-30 12:13:12 +02:00
|
|
|
for _, v := range acceptValues {
|
|
|
|
if v == ajaxReq {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-08-13 12:42:23 +02:00
|
|
|
// ErrorJSON returns the error code with an application/json mime type
|
2019-01-30 12:13:12 +02:00
|
|
|
func (p *OAuthProxy) ErrorJSON(rw http.ResponseWriter, code int) {
|
2019-01-31 17:22:30 +02:00
|
|
|
rw.Header().Set("Content-Type", applicationJSON)
|
2019-01-30 12:13:12 +02:00
|
|
|
rw.WriteHeader(code)
|
|
|
|
}
|
2019-01-17 22:49:14 +02:00
|
|
|
|
|
|
|
// GetJwtSession loads a session based on a JWT token in the authorization header.
|
2020-04-28 08:46:46 +02:00
|
|
|
// (see the config options skip-jwt-bearer-tokens and extra-jwt-issuers)
|
2019-01-17 22:49:14 +02:00
|
|
|
func (p *OAuthProxy) GetJwtSession(req *http.Request) (*sessionsapi.SessionState, error) {
|
|
|
|
rawBearerToken, err := p.findBearerToken(req)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-30 23:16:26 +02:00
|
|
|
// If we are using an oidc provider, go ahead and try that provider first with its Verifier
|
|
|
|
// and Bearer Token -> Session converter
|
|
|
|
if p.mainJwtBearerVerifier != nil {
|
|
|
|
bearerToken, err := p.mainJwtBearerVerifier.Verify(req.Context(), rawBearerToken)
|
|
|
|
if err == nil {
|
|
|
|
return p.provider.CreateSessionStateFromBearerToken(req.Context(), rawBearerToken, bearerToken)
|
|
|
|
}
|
|
|
|
}
|
2019-01-17 22:49:14 +02:00
|
|
|
|
2020-05-30 23:16:26 +02:00
|
|
|
// Otherwise, attempt to verify against the extra JWT issuers and use a more generic
|
|
|
|
// Bearer Token -> Session converter
|
|
|
|
for _, verifier := range p.extraJwtBearerVerifiers {
|
|
|
|
bearerToken, err := verifier.Verify(req.Context(), rawBearerToken)
|
2019-01-17 22:49:14 +02:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-05-30 23:16:26 +02:00
|
|
|
return (*providers.ProviderData)(nil).CreateSessionStateFromBearerToken(req.Context(), rawBearerToken, bearerToken)
|
2019-01-17 22:49:14 +02:00
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("unable to verify jwt token %s", req.Header.Get("Authorization"))
|
|
|
|
}
|
|
|
|
|
|
|
|
// findBearerToken finds a valid JWT token from the Authorization header of a given request.
|
|
|
|
func (p *OAuthProxy) findBearerToken(req *http.Request) (string, error) {
|
|
|
|
auth := req.Header.Get("Authorization")
|
|
|
|
s := strings.SplitN(auth, " ", 2)
|
|
|
|
if len(s) != 2 {
|
|
|
|
return "", fmt.Errorf("invalid authorization header %s", auth)
|
|
|
|
}
|
2019-04-24 17:25:29 +02:00
|
|
|
jwtRegex := regexp.MustCompile(`^eyJ[a-zA-Z0-9_-]*\.eyJ[a-zA-Z0-9_-]*\.[a-zA-Z0-9_-]+$`)
|
2019-01-17 22:49:14 +02:00
|
|
|
var rawBearerToken string
|
2019-04-24 17:25:29 +02:00
|
|
|
if s[0] == "Bearer" && jwtRegex.MatchString(s[1]) {
|
2019-01-17 22:49:14 +02:00
|
|
|
rawBearerToken = s[1]
|
|
|
|
} else if s[0] == "Basic" {
|
|
|
|
// Check if we have a Bearer token masquerading in Basic
|
|
|
|
b, err := b64.StdEncoding.DecodeString(s[1])
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
pair := strings.SplitN(string(b), ":", 2)
|
|
|
|
if len(pair) != 2 {
|
|
|
|
return "", fmt.Errorf("invalid format %s", b)
|
|
|
|
}
|
|
|
|
user, password := pair[0], pair[1]
|
|
|
|
|
|
|
|
// check user, user+password, or just password for a token
|
|
|
|
if jwtRegex.MatchString(user) {
|
|
|
|
// Support blank passwords or magic `x-oauth-basic` passwords - nothing else
|
|
|
|
if password == "" || password == "x-oauth-basic" {
|
|
|
|
rawBearerToken = user
|
|
|
|
}
|
|
|
|
} else if jwtRegex.MatchString(password) {
|
|
|
|
// support passwords and ignore user
|
|
|
|
rawBearerToken = password
|
|
|
|
}
|
2019-04-24 17:25:29 +02:00
|
|
|
}
|
|
|
|
if rawBearerToken == "" {
|
|
|
|
return "", fmt.Errorf("no valid bearer token found in authorization header")
|
2019-01-17 22:49:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return rawBearerToken, nil
|
|
|
|
}
|