2019-04-24 21:52:08 +00:00
|
|
|
package authentication
|
|
|
|
|
|
|
|
import (
|
2019-12-06 08:15:54 +00:00
|
|
|
"crypto/tls"
|
2021-01-04 10:28:55 +00:00
|
|
|
"crypto/x509"
|
2019-04-24 21:52:08 +00:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2020-04-05 12:37:21 +00:00
|
|
|
"github.com/go-ldap/ldap/v3"
|
2021-04-12 01:10:50 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-11-27 09:59:22 +00:00
|
|
|
"golang.org/x/text/encoding/unicode"
|
2020-04-05 12:37:21 +00:00
|
|
|
|
2019-12-24 02:14:52 +00:00
|
|
|
"github.com/authelia/authelia/internal/configuration/schema"
|
|
|
|
"github.com/authelia/authelia/internal/logging"
|
2020-12-03 05:23:52 +00:00
|
|
|
"github.com/authelia/authelia/internal/utils"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// LDAPUserProvider is a provider using a LDAP or AD as a user database.
|
|
|
|
type LDAPUserProvider struct {
|
2021-01-04 10:28:55 +00:00
|
|
|
configuration schema.LDAPAuthenticationBackendConfiguration
|
|
|
|
tlsConfig *tls.Config
|
|
|
|
dialOpts ldap.DialOpt
|
2021-04-12 01:10:50 +00:00
|
|
|
logger *logrus.Logger
|
2019-12-06 08:15:54 +00:00
|
|
|
connectionFactory LDAPConnectionFactory
|
2021-04-12 01:10:50 +00:00
|
|
|
usersBaseDN string
|
|
|
|
groupsBaseDN string
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 08:15:54 +00:00
|
|
|
// NewLDAPUserProvider creates a new instance of LDAPUserProvider.
|
2021-01-04 10:28:55 +00:00
|
|
|
func NewLDAPUserProvider(configuration schema.LDAPAuthenticationBackendConfiguration, certPool *x509.CertPool) *LDAPUserProvider {
|
|
|
|
if configuration.TLS == nil {
|
|
|
|
configuration.TLS = schema.DefaultLDAPAuthenticationBackendConfiguration.TLS
|
2020-12-03 05:23:52 +00:00
|
|
|
}
|
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
tlsConfig := utils.NewTLSConfig(configuration.TLS, tls.VersionTLS12, certPool)
|
2020-12-03 05:23:52 +00:00
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
var dialOpts ldap.DialOpt
|
2020-12-03 05:23:52 +00:00
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
if tlsConfig != nil {
|
|
|
|
dialOpts = ldap.DialWithTLSConfig(tlsConfig)
|
2020-12-03 05:23:52 +00:00
|
|
|
}
|
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
provider := &LDAPUserProvider{
|
|
|
|
configuration: configuration,
|
|
|
|
tlsConfig: tlsConfig,
|
|
|
|
dialOpts: dialOpts,
|
2021-04-12 01:10:50 +00:00
|
|
|
logger: logging.Logger(),
|
2019-12-06 08:15:54 +00:00
|
|
|
connectionFactory: NewLDAPConnectionFactoryImpl(),
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
2021-01-04 10:28:55 +00:00
|
|
|
|
|
|
|
provider.parseDynamicConfiguration()
|
|
|
|
|
|
|
|
return provider
|
2019-12-06 08:15:54 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// NewLDAPUserProviderWithFactory creates a new instance of LDAPUserProvider with existing factory.
|
2021-01-04 10:28:55 +00:00
|
|
|
func NewLDAPUserProviderWithFactory(configuration schema.LDAPAuthenticationBackendConfiguration, certPool *x509.CertPool, connectionFactory LDAPConnectionFactory) *LDAPUserProvider {
|
|
|
|
provider := NewLDAPUserProvider(configuration, certPool)
|
2020-12-03 05:23:52 +00:00
|
|
|
provider.connectionFactory = connectionFactory
|
|
|
|
|
|
|
|
return provider
|
2019-12-06 08:15:54 +00:00
|
|
|
}
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
func (p *LDAPUserProvider) parseDynamicConfiguration() {
|
|
|
|
p.configuration.UsersFilter = strings.ReplaceAll(p.configuration.UsersFilter, "{username_attribute}", p.configuration.UsernameAttribute)
|
|
|
|
p.configuration.UsersFilter = strings.ReplaceAll(p.configuration.UsersFilter, "{mail_attribute}", p.configuration.MailAttribute)
|
|
|
|
p.configuration.UsersFilter = strings.ReplaceAll(p.configuration.UsersFilter, "{display_name_attribute}", p.configuration.DisplayNameAttribute)
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2021-04-12 01:10:50 +00:00
|
|
|
p.logger.Tracef("Dynamically generated users filter is %s", p.configuration.UsersFilter)
|
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
if p.configuration.AdditionalUsersDN != "" {
|
2021-04-12 01:10:50 +00:00
|
|
|
p.usersBaseDN = p.configuration.AdditionalUsersDN + "," + p.configuration.BaseDN
|
2019-12-06 08:15:54 +00:00
|
|
|
} else {
|
2021-04-12 01:10:50 +00:00
|
|
|
p.usersBaseDN = p.configuration.BaseDN
|
2021-01-04 10:28:55 +00:00
|
|
|
}
|
|
|
|
|
2021-04-12 01:10:50 +00:00
|
|
|
p.logger.Tracef("Dynamically generated users BaseDN is %s", p.usersBaseDN)
|
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
if p.configuration.AdditionalGroupsDN != "" {
|
2021-04-12 01:10:50 +00:00
|
|
|
p.groupsBaseDN = ldap.EscapeFilter(p.configuration.AdditionalGroupsDN + "," + p.configuration.BaseDN)
|
2021-01-04 10:28:55 +00:00
|
|
|
} else {
|
2021-04-12 01:10:50 +00:00
|
|
|
p.groupsBaseDN = p.configuration.BaseDN
|
2021-01-04 10:28:55 +00:00
|
|
|
}
|
2021-04-12 01:10:50 +00:00
|
|
|
|
|
|
|
p.logger.Tracef("Dynamically generated groups BaseDN is %s", p.groupsBaseDN)
|
2021-01-04 10:28:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *LDAPUserProvider) connect(userDN string, password string) (LDAPConnection, error) {
|
|
|
|
conn, err := p.connectionFactory.DialURL(p.configuration.URL, p.dialOpts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2019-12-06 08:15:54 +00:00
|
|
|
}
|
|
|
|
|
2020-12-03 05:23:52 +00:00
|
|
|
if p.configuration.StartTLS {
|
2021-01-04 10:28:55 +00:00
|
|
|
if err := conn.StartTLS(p.tlsConfig); err != nil {
|
2020-12-03 05:23:52 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
if err := conn.Bind(userDN, password); err != nil {
|
2019-12-06 08:15:54 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
return conn, nil
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CheckUserPassword checks if provided password matches for the given user.
|
2020-03-30 22:36:04 +00:00
|
|
|
func (p *LDAPUserProvider) CheckUserPassword(inputUsername string, password string) (bool, error) {
|
2021-01-04 10:28:55 +00:00
|
|
|
conn, err := p.connect(p.configuration.User, p.configuration.Password)
|
2019-04-24 21:52:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2021-01-04 10:28:55 +00:00
|
|
|
defer conn.Close()
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
profile, err := p.getUserProfile(conn, inputUsername)
|
2019-04-24 21:52:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
userConn, err := p.connect(profile.DN, password)
|
2019-04-24 21:52:08 +00:00
|
|
|
if err != nil {
|
2020-03-30 22:36:04 +00:00
|
|
|
return false, fmt.Errorf("Authentication of user %s failed. Cause: %s", inputUsername, err)
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
2021-01-04 10:28:55 +00:00
|
|
|
defer userConn.Close()
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:36:04 +00:00
|
|
|
func (p *LDAPUserProvider) ldapEscape(inputUsername string) string {
|
|
|
|
inputUsername = ldap.EscapeFilter(inputUsername)
|
|
|
|
for _, c := range specialLDAPRunes {
|
|
|
|
inputUsername = strings.ReplaceAll(inputUsername, string(c), fmt.Sprintf("\\%c", c))
|
2020-01-20 19:34:53 +00:00
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-03-30 22:36:04 +00:00
|
|
|
return inputUsername
|
2020-01-20 19:34:53 +00:00
|
|
|
}
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
type ldapUserProfile struct {
|
2020-06-19 10:50:21 +00:00
|
|
|
DN string
|
|
|
|
Emails []string
|
|
|
|
DisplayName string
|
|
|
|
Username string
|
2020-03-15 07:10:25 +00:00
|
|
|
}
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2020-03-30 22:36:04 +00:00
|
|
|
func (p *LDAPUserProvider) resolveUsersFilter(userFilter string, inputUsername string) string {
|
|
|
|
inputUsername = p.ldapEscape(inputUsername)
|
|
|
|
|
2020-12-03 05:23:52 +00:00
|
|
|
// The {input} placeholder is replaced by the users username input.
|
2020-03-30 22:36:04 +00:00
|
|
|
userFilter = strings.ReplaceAll(userFilter, "{input}", inputUsername)
|
|
|
|
|
2021-04-12 01:10:50 +00:00
|
|
|
p.logger.Tracef("Computed user filter is %s", userFilter)
|
|
|
|
|
2020-03-30 22:36:04 +00:00
|
|
|
return userFilter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *LDAPUserProvider) getUserProfile(conn LDAPConnection, inputUsername string) (*ldapUserProfile, error) {
|
|
|
|
userFilter := p.resolveUsersFilter(p.configuration.UsersFilter, inputUsername)
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
attributes := []string{"dn",
|
2020-06-19 10:50:21 +00:00
|
|
|
p.configuration.DisplayNameAttribute,
|
2020-03-15 07:10:25 +00:00
|
|
|
p.configuration.MailAttribute,
|
|
|
|
p.configuration.UsernameAttribute}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// Search for the given username.
|
2019-04-24 21:52:08 +00:00
|
|
|
searchRequest := ldap.NewSearchRequest(
|
2021-04-12 01:10:50 +00:00
|
|
|
p.usersBaseDN, ldap.ScopeWholeSubtree, ldap.NeverDerefAliases,
|
2020-03-15 07:10:25 +00:00
|
|
|
1, 0, false, userFilter, attributes, nil,
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
sr, err := conn.Search(searchRequest)
|
2019-04-24 21:52:08 +00:00
|
|
|
if err != nil {
|
2020-03-30 22:36:04 +00:00
|
|
|
return nil, fmt.Errorf("Cannot find user DN of user %s. Cause: %s", inputUsername, err)
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
if len(sr.Entries) == 0 {
|
2020-05-04 19:39:25 +00:00
|
|
|
return nil, ErrUserNotFound
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
if len(sr.Entries) > 1 {
|
2020-03-30 22:36:04 +00:00
|
|
|
return nil, fmt.Errorf("Multiple users %s found", inputUsername)
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
userProfile := ldapUserProfile{
|
|
|
|
DN: sr.Entries[0].DN,
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
for _, attr := range sr.Entries[0].Attributes {
|
2020-06-19 10:50:21 +00:00
|
|
|
if attr.Name == p.configuration.DisplayNameAttribute {
|
|
|
|
userProfile.DisplayName = attr.Values[0]
|
|
|
|
}
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
if attr.Name == p.configuration.MailAttribute {
|
|
|
|
userProfile.Emails = attr.Values
|
2020-04-15 12:26:23 +00:00
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-04-15 12:26:23 +00:00
|
|
|
if attr.Name == p.configuration.UsernameAttribute {
|
2020-03-15 07:10:25 +00:00
|
|
|
if len(attr.Values) != 1 {
|
2020-03-30 22:36:04 +00:00
|
|
|
return nil, fmt.Errorf("User %s cannot have multiple value for attribute %s",
|
|
|
|
inputUsername, p.configuration.UsernameAttribute)
|
2020-03-15 07:10:25 +00:00
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
userProfile.Username = attr.Values[0]
|
|
|
|
}
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
if userProfile.DN == "" {
|
2020-03-30 22:36:04 +00:00
|
|
|
return nil, fmt.Errorf("No DN has been found for user %s", inputUsername)
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
return &userProfile, nil
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2020-04-09 01:05:17 +00:00
|
|
|
func (p *LDAPUserProvider) resolveGroupsFilter(inputUsername string, profile *ldapUserProfile) (string, error) { //nolint:unparam
|
2020-03-30 22:36:04 +00:00
|
|
|
inputUsername = p.ldapEscape(inputUsername)
|
|
|
|
|
2020-12-03 05:23:52 +00:00
|
|
|
// The {input} placeholder is replaced by the users username input.
|
|
|
|
groupFilter := strings.ReplaceAll(p.configuration.GroupsFilter, "{input}", inputUsername)
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-03-30 22:36:04 +00:00
|
|
|
if profile != nil {
|
|
|
|
groupFilter = strings.ReplaceAll(groupFilter, "{username}", ldap.EscapeFilter(profile.Username))
|
|
|
|
groupFilter = strings.ReplaceAll(groupFilter, "{dn}", ldap.EscapeFilter(profile.DN))
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
2020-03-30 22:36:04 +00:00
|
|
|
|
2021-04-12 01:10:50 +00:00
|
|
|
p.logger.Tracef("Computed groups filter is %s", groupFilter)
|
|
|
|
|
2020-03-30 22:36:04 +00:00
|
|
|
return groupFilter, nil
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetDetails retrieve the groups a user belongs to.
|
2020-03-30 22:36:04 +00:00
|
|
|
func (p *LDAPUserProvider) GetDetails(inputUsername string) (*UserDetails, error) {
|
2019-04-24 21:52:08 +00:00
|
|
|
conn, err := p.connect(p.configuration.User, p.configuration.Password)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
|
2020-03-30 22:36:04 +00:00
|
|
|
profile, err := p.getUserProfile(conn, inputUsername)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
groupsFilter, err := p.resolveGroupsFilter(inputUsername, profile)
|
2019-04-24 21:52:08 +00:00
|
|
|
if err != nil {
|
2020-03-30 22:36:04 +00:00
|
|
|
return nil, fmt.Errorf("Unable to create group filter for user %s. Cause: %s", inputUsername, err)
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// Search for the given username.
|
2019-04-24 21:52:08 +00:00
|
|
|
searchGroupRequest := ldap.NewSearchRequest(
|
2021-04-12 01:10:50 +00:00
|
|
|
p.groupsBaseDN, ldap.ScopeWholeSubtree, ldap.NeverDerefAliases,
|
2019-04-24 21:52:08 +00:00
|
|
|
0, 0, false, groupsFilter, []string{p.configuration.GroupNameAttribute}, nil,
|
|
|
|
)
|
|
|
|
|
|
|
|
sr, err := conn.Search(searchGroupRequest)
|
|
|
|
|
|
|
|
if err != nil {
|
2020-03-30 22:36:04 +00:00
|
|
|
return nil, fmt.Errorf("Unable to retrieve groups of user %s. Cause: %s", inputUsername, err)
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
groups := make([]string, 0)
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
for _, res := range sr.Entries {
|
2020-02-27 22:21:07 +00:00
|
|
|
if len(res.Attributes) == 0 {
|
2021-04-12 01:10:50 +00:00
|
|
|
p.logger.Warningf("No groups retrieved from LDAP for user %s", inputUsername)
|
2020-02-27 22:21:07 +00:00
|
|
|
break
|
|
|
|
}
|
2020-04-20 21:03:38 +00:00
|
|
|
// Append all values of the document. Normally there should be only one per document.
|
2019-04-24 21:52:08 +00:00
|
|
|
groups = append(groups, res.Attributes[0].Values...)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &UserDetails{
|
2020-06-19 10:50:21 +00:00
|
|
|
Username: profile.Username,
|
|
|
|
DisplayName: profile.DisplayName,
|
|
|
|
Emails: profile.Emails,
|
|
|
|
Groups: groups,
|
2019-04-24 21:52:08 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdatePassword update the password of the given user.
|
2020-03-30 22:36:04 +00:00
|
|
|
func (p *LDAPUserProvider) UpdatePassword(inputUsername string, newPassword string) error {
|
2021-01-04 10:28:55 +00:00
|
|
|
conn, err := p.connect(p.configuration.User, p.configuration.Password)
|
2019-04-24 21:52:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Unable to update password. Cause: %s", err)
|
|
|
|
}
|
2021-01-04 10:28:55 +00:00
|
|
|
defer conn.Close()
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
profile, err := p.getUserProfile(conn, inputUsername)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Unable to update password. Cause: %s", err)
|
|
|
|
}
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
modifyRequest := ldap.NewModifyRequest(profile.DN, nil)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2020-11-27 09:59:22 +00:00
|
|
|
switch p.configuration.Implementation {
|
|
|
|
case schema.LDAPImplementationActiveDirectory:
|
|
|
|
utf16 := unicode.UTF16(unicode.LittleEndian, unicode.IgnoreBOM)
|
|
|
|
// The password needs to be enclosed in quotes
|
|
|
|
// https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-adts/6e803168-f140-4d23-b2d3-c3a8ab5917d2
|
|
|
|
pwdEncoded, _ := utf16.NewEncoder().String(fmt.Sprintf("\"%s\"", newPassword))
|
|
|
|
modifyRequest.Replace("unicodePwd", []string{pwdEncoded})
|
|
|
|
default:
|
|
|
|
modifyRequest.Replace("userPassword", []string{newPassword})
|
|
|
|
}
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2021-01-04 10:28:55 +00:00
|
|
|
err = conn.Modify(modifyRequest)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Unable to update password. Cause: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|