You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

oauth2.go 3.7 kB

Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Copyright 2019 The Gitea Authors. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. package sso
  6. import (
  7. "strings"
  8. "time"
  9. "code.gitea.io/gitea/models"
  10. "code.gitea.io/gitea/modules/log"
  11. "code.gitea.io/gitea/modules/timeutil"
  12. "gitea.com/macaron/macaron"
  13. "gitea.com/macaron/session"
  14. )
  15. // Ensure the struct implements the interface.
  16. var (
  17. _ SingleSignOn = &OAuth2{}
  18. )
  19. // CheckOAuthAccessToken returns uid of user from oauth token
  20. func CheckOAuthAccessToken(accessToken string) int64 {
  21. // JWT tokens require a "."
  22. if !strings.Contains(accessToken, ".") {
  23. return 0
  24. }
  25. token, err := models.ParseOAuth2Token(accessToken)
  26. if err != nil {
  27. log.Trace("ParseOAuth2Token: %v", err)
  28. return 0
  29. }
  30. var grant *models.OAuth2Grant
  31. if grant, err = models.GetOAuth2GrantByID(token.GrantID); err != nil || grant == nil {
  32. return 0
  33. }
  34. if token.Type != models.TypeAccessToken {
  35. return 0
  36. }
  37. if token.ExpiresAt < time.Now().Unix() || token.IssuedAt > time.Now().Unix() {
  38. return 0
  39. }
  40. return grant.UserID
  41. }
  42. // OAuth2 implements the SingleSignOn interface and authenticates requests
  43. // (API requests only) by looking for an OAuth token in query parameters or the
  44. // "Authorization" header.
  45. type OAuth2 struct {
  46. }
  47. // Init does nothing as the OAuth2 implementation does not need to allocate any resources
  48. func (o *OAuth2) Init() error {
  49. return nil
  50. }
  51. // Free does nothing as the OAuth2 implementation does not have to release any resources
  52. func (o *OAuth2) Free() error {
  53. return nil
  54. }
  55. // userIDFromToken returns the user id corresponding to the OAuth token.
  56. func (o *OAuth2) userIDFromToken(ctx *macaron.Context) int64 {
  57. // Check access token.
  58. tokenSHA := ctx.Query("token")
  59. if len(tokenSHA) == 0 {
  60. tokenSHA = ctx.Query("access_token")
  61. }
  62. if len(tokenSHA) == 0 {
  63. // Well, check with header again.
  64. auHead := ctx.Req.Header.Get("Authorization")
  65. if len(auHead) > 0 {
  66. auths := strings.Fields(auHead)
  67. if len(auths) == 2 && (auths[0] == "token" || strings.ToLower(auths[0]) == "bearer") {
  68. tokenSHA = auths[1]
  69. }
  70. }
  71. }
  72. if len(tokenSHA) == 0 {
  73. return 0
  74. }
  75. // Let's see if token is valid.
  76. if strings.Contains(tokenSHA, ".") {
  77. uid := CheckOAuthAccessToken(tokenSHA)
  78. if uid != 0 {
  79. ctx.Data["IsApiToken"] = true
  80. }
  81. return uid
  82. }
  83. t, err := models.GetAccessTokenBySHA(tokenSHA)
  84. if err != nil {
  85. if models.IsErrAccessTokenNotExist(err) || models.IsErrAccessTokenEmpty(err) {
  86. log.Error("GetAccessTokenBySHA: %v", err)
  87. }
  88. return 0
  89. }
  90. t.UpdatedUnix = timeutil.TimeStampNow()
  91. if err = models.UpdateAccessToken(t); err != nil {
  92. log.Error("UpdateAccessToken: %v", err)
  93. }
  94. ctx.Data["IsApiToken"] = true
  95. return t.UID
  96. }
  97. // IsEnabled returns true as this plugin is enabled by default and its not possible
  98. // to disable it from settings.
  99. func (o *OAuth2) IsEnabled() bool {
  100. return true
  101. }
  102. // VerifyAuthData extracts the user ID from the OAuth token in the query parameters
  103. // or the "Authorization" header and returns the corresponding user object for that ID.
  104. // If verification is successful returns an existing user object.
  105. // Returns nil if verification fails.
  106. func (o *OAuth2) VerifyAuthData(ctx *macaron.Context, sess session.Store) *models.User {
  107. if !models.HasEngine {
  108. return nil
  109. }
  110. if !isAPIPath(ctx) && !isAttachmentDownload(ctx) {
  111. return nil
  112. }
  113. id := o.userIDFromToken(ctx)
  114. if id <= 0 {
  115. return nil
  116. }
  117. user, err := models.GetUserByID(id)
  118. if err != nil {
  119. if !models.IsErrUserNotExist(err) {
  120. log.Error("GetUserByName: %v", err)
  121. }
  122. return nil
  123. }
  124. return user
  125. }