WebDAV: Add authorization check based on auth tokens #782 #808 #3943

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2024-01-10 16:54:13 +01:00
parent 7ef544fa53
commit 94e361a8fd
13 changed files with 493 additions and 148 deletions

View File

@@ -10,6 +10,7 @@ import (
"github.com/gin-gonic/gin"
gc "github.com/patrickmn/go-cache"
"github.com/photoprism/photoprism/internal/acl"
"github.com/photoprism/photoprism/internal/api"
"github.com/photoprism/photoprism/internal/config"
"github.com/photoprism/photoprism/internal/entity"
@@ -19,13 +20,13 @@ import (
"github.com/photoprism/photoprism/pkg/clean"
"github.com/photoprism/photoprism/pkg/fs"
"github.com/photoprism/photoprism/pkg/header"
"github.com/photoprism/photoprism/pkg/rnd"
)
// To improve performance, we use a basic auth cache
// with an expiration time of about 5 minutes.
var basicAuthExpiration = 5 * time.Minute
var basicAuthCache = gc.New(basicAuthExpiration, basicAuthExpiration)
var basicAuthMutex = sync.Mutex{}
// Use auth cache to improve WebDAV performance. It has a standard expiration time of about 5 minutes.
var webdavAuthExpiration = 5 * time.Minute
var webdavAuthCache = gc.New(webdavAuthExpiration, webdavAuthExpiration)
var webdavAuthMutex = sync.Mutex{}
var BasicAuthRealm = "Basic realm=\"WebDAV Authorization Required\""
// WebDAVAuth checks authentication and authentication
@@ -43,7 +44,7 @@ func WebDAVAuth(conf *config.Config) gin.HandlerFunc {
}
// To improve performance, check the cache for already authorized users.
if user, found := basicAuthCache.Get(cacheKey); found && user != nil {
if user, found := webdavAuthCache.Get(cacheKey); found && user != nil {
// Add cached user information to the request context.
c.Set(gin.AuthUserKey, user.(*entity.User))
// Credentials have already been authorized within the configured
@@ -62,7 +63,7 @@ func WebDAVAuth(conf *config.Config) gin.HandlerFunc {
return
}
// Get basic authentication credentials.
// Get basic authentication credentials, if any.
username, password, cacheKey, authorized := basicAuth(c)
// Allow requests from already authorized users to be processed.
@@ -70,17 +71,88 @@ func WebDAVAuth(conf *config.Config) gin.HandlerFunc {
return
}
// Re-request authentication if credentials are missing or incomplete.
if cacheKey == "" {
c.Header("WWW-Authenticate", BasicAuthRealm)
c.AbortWithStatus(http.StatusUnauthorized)
return
}
// Get the client IP address from the request headers
// for use in logs and to enforce request rate limits.
clientIp := api.ClientIP(c)
// Get access token, if any.
authToken := header.AuthToken(c)
// Use the value provided in the password field as auth secret if no username was provided
// and the format matches.
if username == "" && authToken == "" && rnd.IsAuthSecret(password) {
authToken = password
}
// Find client session if an auth token has been provided and perform authorization check.
if authToken != "" {
sid := rnd.SessionID(authToken)
// Check if client authorization has been cached to improve performance.
if user, found := webdavAuthCache.Get(sid); found && user != nil {
// Add cached user information to the request context.
c.Set(gin.AuthUserKey, user.(*entity.User))
return
}
sess, err := entity.FindSession(sid)
if sess == nil {
limiter.Login.Reserve(clientIp)
event.AuditErr([]string{clientIp, "access webdav", "invalid auth token"})
WebDAVAbortUnauthorized(c)
return
} else if err != nil {
limiter.Login.Reserve(clientIp)
event.AuditErr([]string{clientIp, "access webdav", "%s"}, err.Error())
WebDAVAbortUnauthorized(c)
return
} else {
sess.UpdateContext(c)
}
// Required resource scope.
resource := acl.ResourceWebDAV
// If the request is from a client application, check its authorization based
// on the allowed scope, the ACL, and the user account it belongs to (if any).
if sess.IsClient() {
// Check if client belongs to a user and if the "webdav" scope is set.
if !sess.HasScope(resource.String()) || !sess.HasUser() {
event.AuditErr([]string{clientIp, "client %s", "session %s", "access webdav", "denied"}, clean.Log(sess.AuthID), sess.RefID)
WebDAVAbortUnauthorized(c)
return
}
}
// Check authorization and grant access if successful.
if !sess.HasUser() {
event.AuditErr([]string{clientIp, "session %s", "access webdav as unauthorized user", "denied"}, sess.RefID)
} else if user := sess.User(); !user.CanUseWebDAV() {
// Sync disabled for this account.
message := "sync disabled"
event.AuditWarn([]string{clientIp, "access webdav as %s", message}, clean.LogQuote(username))
} else if err = os.MkdirAll(filepath.Join(conf.OriginalsPath(), user.GetUploadPath()), fs.ModeDir); err != nil {
message := "failed to create user upload path"
event.AuditWarn([]string{clientIp, "access webdav as %s", message}, clean.LogQuote(username))
} else {
// Cache successful authentication to improve performance.
webdavAuthCache.SetDefault(sid, user)
c.Set(gin.AuthUserKey, user)
return
}
// Request authentication.
WebDAVAbortUnauthorized(c)
return
}
// Re-request authentication if credentials are missing or incomplete.
if cacheKey == "" {
WebDAVAbortUnauthorized(c)
return
}
// Check the authentication request rate to block the client after
// too many failed attempts (10/req per minute by default).
if limiter.Login.Reject(clientIp) {
@@ -88,8 +160,8 @@ func WebDAVAuth(conf *config.Config) gin.HandlerFunc {
return
}
basicAuthMutex.Lock()
defer basicAuthMutex.Unlock()
webdavAuthMutex.Lock()
defer webdavAuthMutex.Unlock()
// User credentials.
f := form.Login{
@@ -124,14 +196,19 @@ func WebDAVAuth(conf *config.Config) gin.HandlerFunc {
event.AuditInfo([]string{clientIp, "webdav login as %s", "succeeded"}, clean.LogQuote(username))
event.LoginInfo(clientIp, "webdav", username, api.UserAgent(c))
// Cache successful authentication.
basicAuthCache.SetDefault(cacheKey, user)
// Cache successful authentication to improve performance.
webdavAuthCache.SetDefault(cacheKey, user)
c.Set(gin.AuthUserKey, user)
return
}
// Abort request.
c.Header("WWW-Authenticate", BasicAuthRealm)
c.AbortWithStatus(http.StatusUnauthorized)
// Request authentication.
WebDAVAbortUnauthorized(c)
}
}
// WebDAVAbortUnauthorized aborts the request with the status unauthorized and requests authentication.
func WebDAVAbortUnauthorized(c *gin.Context) {
c.Header("WWW-Authenticate", BasicAuthRealm)
c.AbortWithStatus(http.StatusUnauthorized)
}