2021-07-24 10:16:34 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-07-24 10:16:34 +00:00
|
|
|
|
|
|
|
package pam
|
|
|
|
|
|
|
|
import (
|
2023-09-14 17:09:32 +00:00
|
|
|
"context"
|
2021-07-24 10:16:34 +00:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2022-01-02 13:12:35 +00:00
|
|
|
"code.gitea.io/gitea/models/auth"
|
2021-11-11 07:03:30 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-07-24 10:16:34 +00:00
|
|
|
"code.gitea.io/gitea/modules/auth/pam"
|
2024-02-23 02:18:33 +00:00
|
|
|
"code.gitea.io/gitea/modules/optional"
|
2021-07-24 10:16:34 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Authenticate queries if login/password is valid against the PAM,
|
|
|
|
// and create a local user if success when enabled.
|
2023-09-14 17:09:32 +00:00
|
|
|
func (source *Source) Authenticate(ctx context.Context, user *user_model.User, userName, password string) (*user_model.User, error) {
|
2021-09-24 11:32:56 +00:00
|
|
|
pamLogin, err := pam.Auth(source.ServiceName, userName, password)
|
2021-07-24 10:16:34 +00:00
|
|
|
if err != nil {
|
|
|
|
if strings.Contains(err.Error(), "Authentication failure") {
|
2021-11-24 09:49:20 +00:00
|
|
|
return nil, user_model.ErrUserNotExist{Name: userName}
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user != nil {
|
|
|
|
return user, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow PAM sources with `@` in their name, like from Active Directory
|
|
|
|
username := pamLogin
|
|
|
|
email := pamLogin
|
|
|
|
idx := strings.Index(pamLogin, "@")
|
|
|
|
if idx > -1 {
|
|
|
|
username = pamLogin[:idx]
|
|
|
|
}
|
2021-11-11 07:03:30 +00:00
|
|
|
if user_model.ValidateEmail(email) != nil {
|
2021-07-24 10:16:34 +00:00
|
|
|
if source.EmailDomain != "" {
|
|
|
|
email = fmt.Sprintf("%s@%s", username, source.EmailDomain)
|
|
|
|
} else {
|
|
|
|
email = fmt.Sprintf("%s@%s", username, setting.Service.NoReplyAddress)
|
|
|
|
}
|
2021-11-11 07:03:30 +00:00
|
|
|
if user_model.ValidateEmail(email) != nil {
|
2021-07-24 10:16:34 +00:00
|
|
|
email = uuid.New().String() + "@localhost"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
user = &user_model.User{
|
2021-07-24 10:16:34 +00:00
|
|
|
LowerName: strings.ToLower(username),
|
|
|
|
Name: username,
|
|
|
|
Email: email,
|
|
|
|
Passwd: password,
|
2022-01-02 13:12:35 +00:00
|
|
|
LoginType: auth.PAM,
|
|
|
|
LoginSource: source.authSource.ID,
|
2021-09-24 11:32:56 +00:00
|
|
|
LoginName: userName, // This is what the user typed in
|
2022-04-29 19:38:11 +00:00
|
|
|
}
|
|
|
|
overwriteDefault := &user_model.CreateUserOverwriteOptions{
|
2024-02-23 02:18:33 +00:00
|
|
|
IsActive: optional.Some(true),
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
2021-08-12 07:26:33 +00:00
|
|
|
|
2023-09-14 17:09:32 +00:00
|
|
|
if err := user_model.CreateUser(ctx, user, overwriteDefault); err != nil {
|
2021-08-12 07:26:33 +00:00
|
|
|
return user, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return user, nil
|
2021-07-24 10:16:34 +00:00
|
|
|
}
|
2021-09-27 01:02:01 +00:00
|
|
|
|
|
|
|
// IsSkipLocalTwoFA returns if this source should skip local 2fa for password authentication
|
|
|
|
func (source *Source) IsSkipLocalTwoFA() bool {
|
|
|
|
return source.SkipLocalTwoFA
|
|
|
|
}
|