2018-11-14 09:18:03 +00:00
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
goauth "github.com/abbot/go-http-auth"
|
2019-08-03 01:58:23 +00:00
|
|
|
"github.com/containous/traefik/v2/pkg/config/dynamic"
|
2019-09-13 17:28:04 +00:00
|
|
|
"github.com/containous/traefik/v2/pkg/log"
|
2019-08-03 01:58:23 +00:00
|
|
|
"github.com/containous/traefik/v2/pkg/middlewares"
|
|
|
|
"github.com/containous/traefik/v2/pkg/middlewares/accesslog"
|
|
|
|
"github.com/containous/traefik/v2/pkg/tracing"
|
2018-11-14 09:18:03 +00:00
|
|
|
"github.com/opentracing/opentracing-go/ext"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
digestTypeName = "digestAuth"
|
|
|
|
)
|
|
|
|
|
|
|
|
type digestAuth struct {
|
|
|
|
next http.Handler
|
|
|
|
auth *goauth.DigestAuth
|
|
|
|
users map[string]string
|
|
|
|
headerField string
|
|
|
|
removeHeader bool
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDigest creates a digest auth middleware.
|
2019-07-10 07:26:04 +00:00
|
|
|
func NewDigest(ctx context.Context, next http.Handler, authConfig dynamic.DigestAuth, name string) (http.Handler, error) {
|
2019-09-13 17:28:04 +00:00
|
|
|
log.FromContext(middlewares.GetLoggerCtx(ctx, name, digestTypeName)).Debug("Creating middleware")
|
2018-11-14 09:18:03 +00:00
|
|
|
users, err := getUsers(authConfig.UsersFile, authConfig.Users, digestUserParser)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
da := &digestAuth{
|
|
|
|
next: next,
|
|
|
|
users: users,
|
|
|
|
headerField: authConfig.HeaderField,
|
|
|
|
removeHeader: authConfig.RemoveHeader,
|
|
|
|
name: name,
|
|
|
|
}
|
|
|
|
|
|
|
|
realm := defaultRealm
|
|
|
|
if len(authConfig.Realm) > 0 {
|
|
|
|
realm = authConfig.Realm
|
|
|
|
}
|
|
|
|
da.auth = goauth.NewDigestAuthenticator(realm, da.secretDigest)
|
|
|
|
|
|
|
|
return da, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *digestAuth) GetTracingInformation() (string, ext.SpanKindEnum) {
|
|
|
|
return d.name, tracing.SpanKindNoneEnum
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *digestAuth) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
2019-09-13 17:28:04 +00:00
|
|
|
logger := log.FromContext(middlewares.GetLoggerCtx(req.Context(), d.name, digestTypeName))
|
2018-11-14 09:18:03 +00:00
|
|
|
|
2020-03-25 13:28:04 +00:00
|
|
|
username, authinfo := d.auth.CheckAuth(req)
|
|
|
|
if username == "" {
|
2020-06-18 14:02:04 +00:00
|
|
|
headerField := d.headerField
|
|
|
|
if d.headerField == "" {
|
|
|
|
headerField = "Authorization"
|
|
|
|
}
|
|
|
|
|
|
|
|
auth := goauth.DigestAuthParams(req.Header.Get(headerField))
|
|
|
|
if auth["username"] != "" {
|
|
|
|
logData := accesslog.GetLogData(req)
|
|
|
|
if logData != nil {
|
|
|
|
logData.Core[accesslog.ClientUsername] = auth["username"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-25 13:28:04 +00:00
|
|
|
if authinfo != nil && *authinfo == "stale" {
|
|
|
|
logger.Debug("Digest authentication failed, possibly because out of order requests")
|
|
|
|
tracing.SetErrorWithEvent(req, "Digest authentication failed, possibly because out of order requests")
|
|
|
|
d.auth.RequireAuthStale(rw, req)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-14 09:18:03 +00:00
|
|
|
logger.Debug("Digest authentication failed")
|
|
|
|
tracing.SetErrorWithEvent(req, "Digest authentication failed")
|
|
|
|
d.auth.RequireAuth(rw, req)
|
2020-03-25 13:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
2018-11-14 09:18:03 +00:00
|
|
|
|
2020-03-25 13:28:04 +00:00
|
|
|
logger.Debug("Digest authentication succeeded")
|
|
|
|
req.URL.User = url.User(username)
|
2018-11-14 09:18:03 +00:00
|
|
|
|
2020-03-25 13:28:04 +00:00
|
|
|
logData := accesslog.GetLogData(req)
|
|
|
|
if logData != nil {
|
|
|
|
logData.Core[accesslog.ClientUsername] = username
|
|
|
|
}
|
2018-11-14 09:18:03 +00:00
|
|
|
|
2020-03-25 13:28:04 +00:00
|
|
|
if d.headerField != "" {
|
|
|
|
req.Header[d.headerField] = []string{username}
|
|
|
|
}
|
|
|
|
|
|
|
|
if d.removeHeader {
|
|
|
|
logger.Debug("Removing the Authorization header")
|
|
|
|
req.Header.Del(authorizationHeader)
|
2018-11-14 09:18:03 +00:00
|
|
|
}
|
2020-03-25 13:28:04 +00:00
|
|
|
d.next.ServeHTTP(rw, req)
|
2018-11-14 09:18:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *digestAuth) secretDigest(user, realm string) string {
|
|
|
|
if secret, ok := d.users[user+":"+realm]; ok {
|
|
|
|
return secret
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func digestUserParser(user string) (string, string, error) {
|
|
|
|
split := strings.Split(user, ":")
|
|
|
|
if len(split) != 3 {
|
|
|
|
return "", "", fmt.Errorf("error parsing DigestUser: %v", user)
|
|
|
|
}
|
|
|
|
return split[0] + ":" + split[1], split[2], nil
|
|
|
|
}
|