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.

basic.go 3.3 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
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. "code.gitea.io/gitea/models"
  9. "code.gitea.io/gitea/modules/base"
  10. "code.gitea.io/gitea/modules/log"
  11. "code.gitea.io/gitea/modules/setting"
  12. "code.gitea.io/gitea/modules/timeutil"
  13. "gitea.com/macaron/macaron"
  14. "gitea.com/macaron/session"
  15. )
  16. // Ensure the struct implements the interface.
  17. var (
  18. _ SingleSignOn = &Basic{}
  19. )
  20. // Basic implements the SingleSignOn interface and authenticates requests (API requests
  21. // only) by looking for Basic authentication data or "x-oauth-basic" token in the "Authorization"
  22. // header.
  23. type Basic struct {
  24. }
  25. // Init does nothing as the Basic implementation does not need to allocate any resources
  26. func (b *Basic) Init() error {
  27. return nil
  28. }
  29. // Free does nothing as the Basic implementation does not have to release any resources
  30. func (b *Basic) Free() error {
  31. return nil
  32. }
  33. // IsEnabled returns true as this plugin is enabled by default and its not possible to disable
  34. // it from settings.
  35. func (b *Basic) IsEnabled() bool {
  36. return setting.Service.EnableBasicAuth
  37. }
  38. // VerifyAuthData extracts and validates Basic data (username and password/token) from the
  39. // "Authorization" header of the request and returns the corresponding user object for that
  40. // name/token on successful validation.
  41. // Returns nil if header is empty or validation fails.
  42. func (b *Basic) VerifyAuthData(ctx *macaron.Context, sess session.Store) *models.User {
  43. baHead := ctx.Req.Header.Get("Authorization")
  44. if len(baHead) == 0 {
  45. return nil
  46. }
  47. auths := strings.Fields(baHead)
  48. if len(auths) != 2 || auths[0] != "Basic" {
  49. return nil
  50. }
  51. var u *models.User
  52. uname, passwd, _ := base.BasicAuthDecode(auths[1])
  53. // Check if username or password is a token
  54. isUsernameToken := len(passwd) == 0 || passwd == "x-oauth-basic"
  55. // Assume username is token
  56. authToken := uname
  57. if !isUsernameToken {
  58. // Assume password is token
  59. authToken = passwd
  60. }
  61. uid := CheckOAuthAccessToken(authToken)
  62. if uid != 0 {
  63. var err error
  64. ctx.Data["IsApiToken"] = true
  65. u, err = models.GetUserByID(uid)
  66. if err != nil {
  67. log.Error("GetUserByID: %v", err)
  68. return nil
  69. }
  70. }
  71. token, err := models.GetAccessTokenBySHA(authToken)
  72. if err == nil {
  73. if isUsernameToken {
  74. u, err = models.GetUserByID(token.UID)
  75. if err != nil {
  76. log.Error("GetUserByID: %v", err)
  77. return nil
  78. }
  79. } else {
  80. u, err = models.GetUserByName(uname)
  81. if err != nil {
  82. log.Error("GetUserByID: %v", err)
  83. return nil
  84. }
  85. if u.ID != token.UID {
  86. return nil
  87. }
  88. }
  89. token.UpdatedUnix = timeutil.TimeStampNow()
  90. if err = models.UpdateAccessToken(token); err != nil {
  91. log.Error("UpdateAccessToken: %v", err)
  92. }
  93. } else if !models.IsErrAccessTokenNotExist(err) && !models.IsErrAccessTokenEmpty(err) {
  94. log.Error("GetAccessTokenBySha: %v", err)
  95. }
  96. if u == nil {
  97. u, err = models.UserSignIn(uname, passwd)
  98. if err != nil {
  99. if !models.IsErrUserNotExist(err) {
  100. log.Error("UserSignIn: %v", err)
  101. }
  102. return nil
  103. }
  104. } else {
  105. ctx.Data["IsApiToken"] = true
  106. }
  107. return u
  108. }