2019-11-23 02:33:31 +03:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Copyright 2019 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2021-06-09 20:53:16 +03:00
package auth
2019-11-23 02:33:31 +03:00
import (
"fmt"
2021-01-05 16:05:40 +03:00
"net/http"
2019-11-23 02:33:31 +03:00
"reflect"
2021-05-15 18:32:09 +03:00
"regexp"
2019-11-23 02:33:31 +03:00
"strings"
2021-11-22 18:21:55 +03:00
"code.gitea.io/gitea/models/db"
2021-11-24 12:49:20 +03:00
user_model "code.gitea.io/gitea/models/user"
2022-01-14 18:03:31 +03:00
"code.gitea.io/gitea/modules/auth/webauthn"
2019-11-23 02:33:31 +03:00
"code.gitea.io/gitea/modules/log"
2021-12-20 17:12:26 +03:00
"code.gitea.io/gitea/modules/session"
2021-05-15 18:32:09 +03:00
"code.gitea.io/gitea/modules/setting"
2021-01-30 11:55:53 +03:00
"code.gitea.io/gitea/modules/web/middleware"
2019-11-23 02:33:31 +03:00
)
2021-06-09 20:53:16 +03:00
// authMethods contains the list of authentication plugins in the order they are expected to be
2019-11-23 02:33:31 +03:00
// executed.
//
// The OAuth2 plugin is expected to be executed first, as it must ignore the user id stored
// in the session (if there is a user id stored in session other plugins might return the user
// object for that id).
//
// The Session plugin is expected to be executed second, in order to skip authentication
// for users that have already signed in.
2021-07-24 13:16:34 +03:00
var authMethods = [ ] Method {
2019-11-23 02:33:31 +03:00
& OAuth2 { } ,
2021-05-15 18:32:09 +03:00
& Basic { } ,
2019-11-23 02:33:31 +03:00
& Session { } ,
}
// The purpose of the following three function variables is to let the linter know that
// those functions are not dead code and are actually being used
var (
_ = handleSignIn
)
2021-06-09 20:53:16 +03:00
// Methods returns the instances of all registered methods
2021-07-24 13:16:34 +03:00
func Methods ( ) [ ] Method {
2021-06-09 20:53:16 +03:00
return authMethods
2019-11-23 02:33:31 +03:00
}
2021-06-09 20:53:16 +03:00
// Register adds the specified instance to the list of available methods
2021-07-24 13:16:34 +03:00
func Register ( method Method ) {
2021-06-09 20:53:16 +03:00
authMethods = append ( authMethods , method )
2019-11-23 02:33:31 +03:00
}
2021-06-09 20:53:16 +03:00
// Init should be called exactly once when the application starts to allow plugins
2019-11-23 02:33:31 +03:00
// to allocate necessary resources
func Init ( ) {
2021-06-09 20:53:16 +03:00
if setting . Service . EnableReverseProxyAuth {
Register ( & ReverseProxy { } )
}
specialInit ( )
2019-11-23 02:33:31 +03:00
for _ , method := range Methods ( ) {
2021-07-24 13:16:34 +03:00
initializable , ok := method . ( Initializable )
if ! ok {
continue
}
err := initializable . Init ( )
2019-11-23 02:33:31 +03:00
if err != nil {
2021-06-09 20:53:16 +03:00
log . Error ( "Could not initialize '%s' auth method, error: %s" , reflect . TypeOf ( method ) . String ( ) , err )
2019-11-23 02:33:31 +03:00
}
}
2022-01-14 18:03:31 +03:00
webauthn . Init ( )
2019-11-23 02:33:31 +03:00
}
2021-06-09 20:53:16 +03:00
// Free should be called exactly once when the application is terminating to allow Auth plugins
2019-11-23 02:33:31 +03:00
// to release necessary resources
func Free ( ) {
for _ , method := range Methods ( ) {
2021-07-24 13:16:34 +03:00
freeable , ok := method . ( Freeable )
if ! ok {
continue
}
err := freeable . Free ( )
2019-11-23 02:33:31 +03:00
if err != nil {
2021-06-09 20:53:16 +03:00
log . Error ( "Could not free '%s' auth method, error: %s" , reflect . TypeOf ( method ) . String ( ) , err )
2019-11-23 02:33:31 +03:00
}
}
}
// isAttachmentDownload check if request is a file download (GET) with URL to an attachment
2021-01-05 16:05:40 +03:00
func isAttachmentDownload ( req * http . Request ) bool {
return strings . HasPrefix ( req . URL . Path , "/attachments/" ) && req . Method == "GET"
2019-11-23 02:33:31 +03:00
}
2022-01-20 20:46:10 +03:00
var (
gitRawReleasePathRe = regexp . MustCompile ( ` ^/[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+/(?:(?:git-(?:(?:upload)|(?:receive))-pack$)|(?:info/refs$)|(?:HEAD$)|(?:objects/)|(?:raw/)|(?:releases/download/)) ` )
lfsPathRe = regexp . MustCompile ( ` ^/[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+/info/lfs/ ` )
)
2021-05-15 18:32:09 +03:00
2021-09-02 18:48:48 +03:00
func isGitRawReleaseOrLFSPath ( req * http . Request ) bool {
if gitRawReleasePathRe . MatchString ( req . URL . Path ) {
2021-05-15 18:32:09 +03:00
return true
}
if setting . LFS . StartServer {
return lfsPathRe . MatchString ( req . URL . Path )
}
return false
}
2019-11-23 02:33:31 +03:00
// handleSignIn clears existing session variables and stores new ones for the specified user object
2021-11-24 12:49:20 +03:00
func handleSignIn ( resp http . ResponseWriter , req * http . Request , sess SessionStore , user * user_model . User ) {
2021-12-20 17:12:26 +03:00
// We need to regenerate the session...
newSess , err := session . RegenerateSession ( resp , req )
if err != nil {
log . Error ( fmt . Sprintf ( "Error regenerating session: %v" , err ) )
} else {
sess = newSess
}
2019-11-23 02:33:31 +03:00
_ = sess . Delete ( "openid_verified_uri" )
_ = sess . Delete ( "openid_signin_remember" )
_ = sess . Delete ( "openid_determined_email" )
_ = sess . Delete ( "openid_determined_username" )
_ = sess . Delete ( "twofaUid" )
_ = sess . Delete ( "twofaRemember" )
2022-01-14 18:03:31 +03:00
_ = sess . Delete ( "webauthnAssertion" )
2019-11-23 02:33:31 +03:00
_ = sess . Delete ( "linkAccount" )
2021-12-20 17:12:26 +03:00
err = sess . Set ( "uid" , user . ID )
2019-11-23 02:33:31 +03:00
if err != nil {
log . Error ( fmt . Sprintf ( "Error setting session: %v" , err ) )
}
err = sess . Set ( "uname" , user . Name )
if err != nil {
log . Error ( fmt . Sprintf ( "Error setting session: %v" , err ) )
}
// Language setting of the user overwrites the one previously set
// If the user does not have a locale set, we save the current one.
if len ( user . Language ) == 0 {
2021-01-30 11:55:53 +03:00
lc := middleware . Locale ( resp , req )
2021-01-05 16:05:40 +03:00
user . Language = lc . Language ( )
2021-11-24 12:49:20 +03:00
if err := user_model . UpdateUserCols ( db . DefaultContext , user , "language" ) ; err != nil {
2019-11-23 02:33:31 +03:00
log . Error ( fmt . Sprintf ( "Error updating user language [user: %d, locale: %s]" , user . ID , user . Language ) )
return
}
}
2021-03-07 11:12:43 +03:00
middleware . SetLocaleCookie ( resp , user . Language , 0 )
2019-11-23 02:33:31 +03:00
// Clear whatever CSRF has right now, force to generate a new one
2021-03-07 11:12:43 +03:00
middleware . DeleteCSRFCookie ( resp )
2019-11-23 02:33:31 +03:00
}