4761991dd5
test / test (push) Has been cancelled
The level-2 limiter counted stored plus in-flight messages and reserved its own slot in two critical sections, so SMTP sessions that overlapped could each take the last free slot; tryAdmit now does both under one lock. A session that cannot be written no longer yields a cookie the browser would carry while every request bounced to /login. Deleting an application clears its SASL account before its registry row, matching domain delete, so a saslpasswd2 failure leaves a retryable application rather than an account that still authenticates. Co-authored-by: Claude Opus 5 <noreply@anthropic.com> Co-authored-by: Cursor <cursoragent@cursor.com>
130 lines
4.1 KiB
Go
130 lines
4.1 KiB
Go
package auth
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"encoding/hex"
|
|
"time"
|
|
|
|
"github.com/mixeme/selfpost/internal/store"
|
|
)
|
|
|
|
// renewThreshold bounds how often an active session's expiry is written back
|
|
// to the database. Renewing on every request would mean a write (and a new
|
|
// Set-Cookie) per click; renewing at most once an hour keeps that cost low
|
|
// while still keeping a busy admin's session alive indefinitely (plan B.1).
|
|
const renewThreshold = time.Hour
|
|
|
|
// sessionStore persists login sessions in the database (plan B.1): a login
|
|
// survives a container restart or redeploy. Only the SHA-256 of the token is
|
|
// stored, never the token itself (security.md's crypto-random bearer token), so
|
|
// a stolen database file or backup archive cannot be replayed as a session —
|
|
// it only extends the login of whichever browser still holds the original
|
|
// cookie.
|
|
type sessionStore struct {
|
|
store *store.Store
|
|
idle time.Duration
|
|
}
|
|
|
|
func newSessionStore(st *store.Store, idle time.Duration) *sessionStore {
|
|
return &sessionStore{store: st, idle: idle}
|
|
}
|
|
|
|
// MaxAge is the session cookie's Max-Age in seconds, kept equal to the
|
|
// sliding idle window so the browser drops the cookie no later than the
|
|
// server would have expired it anyway.
|
|
func (s *sessionStore) MaxAge() int {
|
|
return int(s.idle.Seconds())
|
|
}
|
|
|
|
func hashToken(token string) string {
|
|
sum := sha256.Sum256([]byte(token))
|
|
return hex.EncodeToString(sum[:])
|
|
}
|
|
|
|
// Create issues a new session for username and returns its token. It fails
|
|
// closed: if the row cannot be written the caller gets an error and must not
|
|
// hand out a cookie, because a token that is not in the database looks like a
|
|
// signed-in browser while every request it makes bounces back to /login.
|
|
func (s *sessionStore) Create(username string) (string, error) {
|
|
token := randomToken(32)
|
|
now := time.Now()
|
|
if err := s.store.CreateSession(hashToken(token), username, now.Add(s.idle)); err != nil {
|
|
return "", err
|
|
}
|
|
// Pruning is housekeeping: the new session is already valid, so a failure
|
|
// here is logged and does not fail the login.
|
|
if _, err := s.store.DeleteExpiredSessions(now); err != nil {
|
|
logf("panel: session: prune expired failed: %v", err)
|
|
}
|
|
return token, nil
|
|
}
|
|
|
|
// Lookup returns the session username for a token if it exists and is
|
|
// unexpired.
|
|
func (s *sessionStore) Lookup(token string) (string, bool) {
|
|
if token == "" {
|
|
return "", false
|
|
}
|
|
hash := hashToken(token)
|
|
row, found, err := s.store.LookupSession(hash)
|
|
if err != nil {
|
|
logf("panel: session: lookup failed: %v", err)
|
|
return "", false
|
|
}
|
|
if !found {
|
|
return "", false
|
|
}
|
|
if time.Now().After(row.ExpiresAt) {
|
|
if err := s.store.DeleteSession(hash); err != nil {
|
|
logf("panel: session: delete expired failed: %v", err)
|
|
}
|
|
return "", false
|
|
}
|
|
return row.Username, true
|
|
}
|
|
|
|
// Touch extends a session's sliding expiry if it has been at least
|
|
// renewThreshold since the last extension, and reports whether it did so.
|
|
func (s *sessionStore) Touch(token string) bool {
|
|
hash := hashToken(token)
|
|
row, found, err := s.store.LookupSession(hash)
|
|
if err != nil {
|
|
logf("panel: session: touch lookup failed: %v", err)
|
|
return false
|
|
}
|
|
if !found {
|
|
return false
|
|
}
|
|
lastRenewal := row.ExpiresAt.Add(-s.idle)
|
|
now := time.Now()
|
|
if now.Sub(lastRenewal) < renewThreshold {
|
|
return false
|
|
}
|
|
if err := s.store.RenewSession(hash, now.Add(s.idle)); err != nil {
|
|
logf("panel: session: renew failed: %v", err)
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
// Rename updates the username carried by a session, keeping its expiry.
|
|
func (s *sessionStore) Rename(token, username string) {
|
|
if err := s.store.RenameSession(hashToken(token), username); err != nil {
|
|
logf("panel: session: rename failed: %v", err)
|
|
}
|
|
}
|
|
|
|
// DestroyOthers invalidates every session except keep.
|
|
func (s *sessionStore) DestroyOthers(keep string) {
|
|
if err := s.store.DeleteOtherSessions(hashToken(keep)); err != nil {
|
|
logf("panel: session: destroy others failed: %v", err)
|
|
}
|
|
}
|
|
|
|
// Destroy invalidates a session token (logout).
|
|
func (s *sessionStore) Destroy(token string) {
|
|
if err := s.store.DeleteSession(hashToken(token)); err != nil {
|
|
logf("panel: session: destroy failed: %v", err)
|
|
}
|
|
}
|