|
|
@ -10,7 +10,10 @@ import ( |
|
|
|
"fmt" |
|
|
|
"fmt" |
|
|
|
"net/smtp" |
|
|
|
"net/smtp" |
|
|
|
"net/textproto" |
|
|
|
"net/textproto" |
|
|
|
|
|
|
|
"os" |
|
|
|
|
|
|
|
"path" |
|
|
|
"strings" |
|
|
|
"strings" |
|
|
|
|
|
|
|
"sync" |
|
|
|
"time" |
|
|
|
"time" |
|
|
|
|
|
|
|
|
|
|
|
"github.com/Unknwon/com" |
|
|
|
"github.com/Unknwon/com" |
|
|
@ -18,10 +21,12 @@ import ( |
|
|
|
"github.com/go-xorm/core" |
|
|
|
"github.com/go-xorm/core" |
|
|
|
"github.com/go-xorm/xorm" |
|
|
|
"github.com/go-xorm/xorm" |
|
|
|
log "gopkg.in/clog.v1" |
|
|
|
log "gopkg.in/clog.v1" |
|
|
|
|
|
|
|
"gopkg.in/ini.v1" |
|
|
|
|
|
|
|
|
|
|
|
"github.com/gogits/gogs/models/errors" |
|
|
|
"github.com/gogits/gogs/models/errors" |
|
|
|
"github.com/gogits/gogs/pkg/auth/ldap" |
|
|
|
"github.com/gogits/gogs/pkg/auth/ldap" |
|
|
|
"github.com/gogits/gogs/pkg/auth/pam" |
|
|
|
"github.com/gogits/gogs/pkg/auth/pam" |
|
|
|
|
|
|
|
"github.com/gogits/gogs/pkg/setting" |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
type LoginType int |
|
|
|
type LoginType int |
|
|
@ -57,7 +62,7 @@ var ( |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
type LDAPConfig struct { |
|
|
|
type LDAPConfig struct { |
|
|
|
*ldap.Source |
|
|
|
*ldap.Source `ini:"config"` |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (cfg *LDAPConfig) FromDB(bs []byte) error { |
|
|
|
func (cfg *LDAPConfig) FromDB(bs []byte) error { |
|
|
@ -77,7 +82,7 @@ type SMTPConfig struct { |
|
|
|
Host string |
|
|
|
Host string |
|
|
|
Port int |
|
|
|
Port int |
|
|
|
AllowedDomains string `xorm:"TEXT"` |
|
|
|
AllowedDomains string `xorm:"TEXT"` |
|
|
|
TLS bool |
|
|
|
TLS bool `ini:"tls"` |
|
|
|
SkipVerify bool |
|
|
|
SkipVerify bool |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -90,7 +95,7 @@ func (cfg *SMTPConfig) ToDB() ([]byte, error) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
type PAMConfig struct { |
|
|
|
type PAMConfig struct { |
|
|
|
ServiceName string // pam service (e.g. system-auth)
|
|
|
|
ServiceName string // PAM service (e.g. system-auth)
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (cfg *PAMConfig) FromDB(bs []byte) error { |
|
|
|
func (cfg *PAMConfig) FromDB(bs []byte) error { |
|
|
@ -101,6 +106,27 @@ func (cfg *PAMConfig) ToDB() ([]byte, error) { |
|
|
|
return json.Marshal(cfg) |
|
|
|
return json.Marshal(cfg) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// AuthSourceFile contains information of an authentication source file.
|
|
|
|
|
|
|
|
type AuthSourceFile struct { |
|
|
|
|
|
|
|
abspath string |
|
|
|
|
|
|
|
file *ini.File |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// SetGeneral sets new value to the given key in the general (default) section.
|
|
|
|
|
|
|
|
func (f *AuthSourceFile) SetGeneral(name, value string) { |
|
|
|
|
|
|
|
f.file.Section("").Key(name).SetValue(value) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// SetConfig sets new values to the "config" section.
|
|
|
|
|
|
|
|
func (f *AuthSourceFile) SetConfig(cfg core.Conversion) error { |
|
|
|
|
|
|
|
return f.file.Section("config").ReflectFrom(cfg) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Save writes updates into file system.
|
|
|
|
|
|
|
|
func (f *AuthSourceFile) Save() error { |
|
|
|
|
|
|
|
return f.file.SaveTo(f.abspath) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// LoginSource represents an external way for authorizing users.
|
|
|
|
// LoginSource represents an external way for authorizing users.
|
|
|
|
type LoginSource struct { |
|
|
|
type LoginSource struct { |
|
|
|
ID int64 |
|
|
|
ID int64 |
|
|
@ -113,6 +139,8 @@ type LoginSource struct { |
|
|
|
CreatedUnix int64 |
|
|
|
CreatedUnix int64 |
|
|
|
Updated time.Time `xorm:"-"` |
|
|
|
Updated time.Time `xorm:"-"` |
|
|
|
UpdatedUnix int64 |
|
|
|
UpdatedUnix int64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LocalFile *AuthSourceFile `xorm:"-"` |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (s *LoginSource) BeforeInsert() { |
|
|
|
func (s *LoginSource) BeforeInsert() { |
|
|
@ -135,16 +163,16 @@ func Cell2Int64(val xorm.Cell) int64 { |
|
|
|
return (*val).(int64) |
|
|
|
return (*val).(int64) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) BeforeSet(colName string, val xorm.Cell) { |
|
|
|
func (s *LoginSource) BeforeSet(colName string, val xorm.Cell) { |
|
|
|
switch colName { |
|
|
|
switch colName { |
|
|
|
case "type": |
|
|
|
case "type": |
|
|
|
switch LoginType(Cell2Int64(val)) { |
|
|
|
switch LoginType(Cell2Int64(val)) { |
|
|
|
case LOGIN_LDAP, LOGIN_DLDAP: |
|
|
|
case LOGIN_LDAP, LOGIN_DLDAP: |
|
|
|
source.Cfg = new(LDAPConfig) |
|
|
|
s.Cfg = new(LDAPConfig) |
|
|
|
case LOGIN_SMTP: |
|
|
|
case LOGIN_SMTP: |
|
|
|
source.Cfg = new(SMTPConfig) |
|
|
|
s.Cfg = new(SMTPConfig) |
|
|
|
case LOGIN_PAM: |
|
|
|
case LOGIN_PAM: |
|
|
|
source.Cfg = new(PAMConfig) |
|
|
|
s.Cfg = new(PAMConfig) |
|
|
|
default: |
|
|
|
default: |
|
|
|
panic("unrecognized login source type: " + com.ToStr(*val)) |
|
|
|
panic("unrecognized login source type: " + com.ToStr(*val)) |
|
|
|
} |
|
|
|
} |
|
|
@ -160,65 +188,66 @@ func (s *LoginSource) AfterSet(colName string, _ xorm.Cell) { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) TypeName() string { |
|
|
|
func (s *LoginSource) TypeName() string { |
|
|
|
return LoginNames[source.Type] |
|
|
|
return LoginNames[s.Type] |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) IsLDAP() bool { |
|
|
|
func (s *LoginSource) IsLDAP() bool { |
|
|
|
return source.Type == LOGIN_LDAP |
|
|
|
return s.Type == LOGIN_LDAP |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) IsDLDAP() bool { |
|
|
|
func (s *LoginSource) IsDLDAP() bool { |
|
|
|
return source.Type == LOGIN_DLDAP |
|
|
|
return s.Type == LOGIN_DLDAP |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) IsSMTP() bool { |
|
|
|
func (s *LoginSource) IsSMTP() bool { |
|
|
|
return source.Type == LOGIN_SMTP |
|
|
|
return s.Type == LOGIN_SMTP |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) IsPAM() bool { |
|
|
|
func (s *LoginSource) IsPAM() bool { |
|
|
|
return source.Type == LOGIN_PAM |
|
|
|
return s.Type == LOGIN_PAM |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) HasTLS() bool { |
|
|
|
func (s *LoginSource) HasTLS() bool { |
|
|
|
return ((source.IsLDAP() || source.IsDLDAP()) && |
|
|
|
return ((s.IsLDAP() || s.IsDLDAP()) && |
|
|
|
source.LDAP().SecurityProtocol > ldap.SECURITY_PROTOCOL_UNENCRYPTED) || |
|
|
|
s.LDAP().SecurityProtocol > ldap.SECURITY_PROTOCOL_UNENCRYPTED) || |
|
|
|
source.IsSMTP() |
|
|
|
s.IsSMTP() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) UseTLS() bool { |
|
|
|
func (s *LoginSource) UseTLS() bool { |
|
|
|
switch source.Type { |
|
|
|
switch s.Type { |
|
|
|
case LOGIN_LDAP, LOGIN_DLDAP: |
|
|
|
case LOGIN_LDAP, LOGIN_DLDAP: |
|
|
|
return source.LDAP().SecurityProtocol != ldap.SECURITY_PROTOCOL_UNENCRYPTED |
|
|
|
return s.LDAP().SecurityProtocol != ldap.SECURITY_PROTOCOL_UNENCRYPTED |
|
|
|
case LOGIN_SMTP: |
|
|
|
case LOGIN_SMTP: |
|
|
|
return source.SMTP().TLS |
|
|
|
return s.SMTP().TLS |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return false |
|
|
|
return false |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) SkipVerify() bool { |
|
|
|
func (s *LoginSource) SkipVerify() bool { |
|
|
|
switch source.Type { |
|
|
|
switch s.Type { |
|
|
|
case LOGIN_LDAP, LOGIN_DLDAP: |
|
|
|
case LOGIN_LDAP, LOGIN_DLDAP: |
|
|
|
return source.LDAP().SkipVerify |
|
|
|
return s.LDAP().SkipVerify |
|
|
|
case LOGIN_SMTP: |
|
|
|
case LOGIN_SMTP: |
|
|
|
return source.SMTP().SkipVerify |
|
|
|
return s.SMTP().SkipVerify |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return false |
|
|
|
return false |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) LDAP() *LDAPConfig { |
|
|
|
func (s *LoginSource) LDAP() *LDAPConfig { |
|
|
|
return source.Cfg.(*LDAPConfig) |
|
|
|
return s.Cfg.(*LDAPConfig) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) SMTP() *SMTPConfig { |
|
|
|
func (s *LoginSource) SMTP() *SMTPConfig { |
|
|
|
return source.Cfg.(*SMTPConfig) |
|
|
|
return s.Cfg.(*SMTPConfig) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func (source *LoginSource) PAM() *PAMConfig { |
|
|
|
func (s *LoginSource) PAM() *PAMConfig { |
|
|
|
return source.Cfg.(*PAMConfig) |
|
|
|
return s.Cfg.(*PAMConfig) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func CreateLoginSource(source *LoginSource) error { |
|
|
|
func CreateLoginSource(source *LoginSource) error { |
|
|
|
has, err := x.Get(&LoginSource{Name: source.Name}) |
|
|
|
has, err := x.Get(&LoginSource{Name: source.Name}) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
@ -231,9 +260,23 @@ func CreateLoginSource(source *LoginSource) error { |
|
|
|
return err |
|
|
|
return err |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// LoginSources returns all login sources defined.
|
|
|
|
func LoginSources() ([]*LoginSource, error) { |
|
|
|
func LoginSources() ([]*LoginSource, error) { |
|
|
|
auths := make([]*LoginSource, 0, 5) |
|
|
|
sources := make([]*LoginSource, 0, 2) |
|
|
|
return auths, x.Find(&auths) |
|
|
|
if err := x.Find(&sources); err != nil { |
|
|
|
|
|
|
|
return nil, err |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return append(sources, localLoginSources.List()...), nil |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ActivatedLoginSources returns login sources that are currently activated.
|
|
|
|
|
|
|
|
func ActivatedLoginSources() ([]*LoginSource, error) { |
|
|
|
|
|
|
|
sources := make([]*LoginSource, 0, 2) |
|
|
|
|
|
|
|
if err := x.Where("is_actived = ?", true).Find(&sources); err != nil { |
|
|
|
|
|
|
|
return nil, fmt.Errorf("find activated login sources: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return append(sources, localLoginSources.ActivatedList()...), nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// GetLoginSourceByID returns login source by given ID.
|
|
|
|
// GetLoginSourceByID returns login source by given ID.
|
|
|
@ -243,14 +286,28 @@ func GetLoginSourceByID(id int64) (*LoginSource, error) { |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
return nil, err |
|
|
|
} else if !has { |
|
|
|
} else if !has { |
|
|
|
return nil, ErrLoginSourceNotExist{id} |
|
|
|
return localLoginSources.GetLoginSourceByID(id) |
|
|
|
} |
|
|
|
} |
|
|
|
return source, nil |
|
|
|
return source, nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func UpdateSource(source *LoginSource) error { |
|
|
|
// UpdateLoginSource updates information of login source to database or local file.
|
|
|
|
|
|
|
|
func UpdateLoginSource(source *LoginSource) error { |
|
|
|
|
|
|
|
if source.LocalFile == nil { |
|
|
|
_, err := x.Id(source.ID).AllCols().Update(source) |
|
|
|
_, err := x.Id(source.ID).AllCols().Update(source) |
|
|
|
return err |
|
|
|
return err |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
source.LocalFile.SetGeneral("name", source.Name) |
|
|
|
|
|
|
|
source.LocalFile.SetGeneral("is_activated", com.ToStr(source.IsActived)) |
|
|
|
|
|
|
|
if err := source.LocalFile.SetConfig(source.Cfg); err != nil { |
|
|
|
|
|
|
|
return fmt.Errorf("LocalFile.SetConfig: %v", err) |
|
|
|
|
|
|
|
} else if err = source.LocalFile.Save(); err != nil { |
|
|
|
|
|
|
|
return fmt.Errorf("LocalFile.Save: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localLoginSources.UpdateLoginSource(source) |
|
|
|
|
|
|
|
return nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func DeleteSource(source *LoginSource) error { |
|
|
|
func DeleteSource(source *LoginSource) error { |
|
|
@ -264,10 +321,151 @@ func DeleteSource(source *LoginSource) error { |
|
|
|
return err |
|
|
|
return err |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// CountLoginSources returns number of login sources.
|
|
|
|
// CountLoginSources returns total number of login sources.
|
|
|
|
func CountLoginSources() int64 { |
|
|
|
func CountLoginSources() int64 { |
|
|
|
count, _ := x.Count(new(LoginSource)) |
|
|
|
count, _ := x.Count(new(LoginSource)) |
|
|
|
return count |
|
|
|
return count + int64(localLoginSources.Len()) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// LocalLoginSources contains authentication sources configured and loaded from local files.
|
|
|
|
|
|
|
|
// Calling its methods is thread-safe; otherwise, please maintain the mutex accordingly.
|
|
|
|
|
|
|
|
type LocalLoginSources struct { |
|
|
|
|
|
|
|
sync.RWMutex |
|
|
|
|
|
|
|
sources []*LoginSource |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (s *LocalLoginSources) Len() int { |
|
|
|
|
|
|
|
return len(s.sources) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// List returns full clone of login sources.
|
|
|
|
|
|
|
|
func (s *LocalLoginSources) List() []*LoginSource { |
|
|
|
|
|
|
|
s.RLock() |
|
|
|
|
|
|
|
defer s.RUnlock() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
list := make([]*LoginSource, s.Len()) |
|
|
|
|
|
|
|
for i := range s.sources { |
|
|
|
|
|
|
|
list[i] = &LoginSource{} |
|
|
|
|
|
|
|
*list[i] = *s.sources[i] |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return list |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ActivatedList returns clone of activated login sources.
|
|
|
|
|
|
|
|
func (s *LocalLoginSources) ActivatedList() []*LoginSource { |
|
|
|
|
|
|
|
s.RLock() |
|
|
|
|
|
|
|
defer s.RUnlock() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
list := make([]*LoginSource, 0, 2) |
|
|
|
|
|
|
|
for i := range s.sources { |
|
|
|
|
|
|
|
if !s.sources[i].IsActived { |
|
|
|
|
|
|
|
continue |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
source := &LoginSource{} |
|
|
|
|
|
|
|
*source = *s.sources[i] |
|
|
|
|
|
|
|
list = append(list, source) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return list |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// GetLoginSourceByID returns a clone of login source by given ID.
|
|
|
|
|
|
|
|
func (s *LocalLoginSources) GetLoginSourceByID(id int64) (*LoginSource, error) { |
|
|
|
|
|
|
|
s.RLock() |
|
|
|
|
|
|
|
defer s.RUnlock() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for i := range s.sources { |
|
|
|
|
|
|
|
if s.sources[i].ID == id { |
|
|
|
|
|
|
|
source := &LoginSource{} |
|
|
|
|
|
|
|
*source = *s.sources[i] |
|
|
|
|
|
|
|
return source, nil |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return nil, errors.LoginSourceNotExist{id} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// UpdateLoginSource updates in-memory copy of the authentication source.
|
|
|
|
|
|
|
|
func (s *LocalLoginSources) UpdateLoginSource(source *LoginSource) { |
|
|
|
|
|
|
|
s.Lock() |
|
|
|
|
|
|
|
defer s.Unlock() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
source.Updated = time.Now() |
|
|
|
|
|
|
|
for i := range s.sources { |
|
|
|
|
|
|
|
if s.sources[i].ID == source.ID { |
|
|
|
|
|
|
|
*s.sources[i] = *source |
|
|
|
|
|
|
|
break |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var localLoginSources = &LocalLoginSources{} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// LoadAuthSources loads authentication sources from local files
|
|
|
|
|
|
|
|
// and converts them into login sources.
|
|
|
|
|
|
|
|
func LoadAuthSources() { |
|
|
|
|
|
|
|
authdPath := path.Join(setting.CustomPath, "conf/auth.d") |
|
|
|
|
|
|
|
if !com.IsDir(authdPath) { |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
paths, err := com.GetFileListBySuffix(authdPath, ".conf") |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
log.Fatal(2, "Failed to list authentication sources: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localLoginSources.sources = make([]*LoginSource, 0, len(paths)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for _, fpath := range paths { |
|
|
|
|
|
|
|
authSource, err := ini.Load(fpath) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
log.Fatal(2, "Failed to load authentication source: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
authSource.NameMapper = ini.TitleUnderscore |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set general attributes
|
|
|
|
|
|
|
|
s := authSource.Section("") |
|
|
|
|
|
|
|
loginSource := &LoginSource{ |
|
|
|
|
|
|
|
ID: s.Key("id").MustInt64(), |
|
|
|
|
|
|
|
Name: s.Key("name").String(), |
|
|
|
|
|
|
|
IsActived: s.Key("is_activated").MustBool(), |
|
|
|
|
|
|
|
LocalFile: &AuthSourceFile{ |
|
|
|
|
|
|
|
abspath: fpath, |
|
|
|
|
|
|
|
file: authSource, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fi, err := os.Stat(fpath) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
log.Fatal(2, "Failed to load authentication source: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
loginSource.Updated = fi.ModTime() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Parse authentication source file
|
|
|
|
|
|
|
|
authType := s.Key("type").String() |
|
|
|
|
|
|
|
switch authType { |
|
|
|
|
|
|
|
case "ldap_bind_dn": |
|
|
|
|
|
|
|
loginSource.Type = LOGIN_LDAP |
|
|
|
|
|
|
|
loginSource.Cfg = &LDAPConfig{} |
|
|
|
|
|
|
|
case "ldap_simple_auth": |
|
|
|
|
|
|
|
loginSource.Type = LOGIN_DLDAP |
|
|
|
|
|
|
|
loginSource.Cfg = &LDAPConfig{} |
|
|
|
|
|
|
|
case "smtp": |
|
|
|
|
|
|
|
loginSource.Type = LOGIN_SMTP |
|
|
|
|
|
|
|
loginSource.Cfg = &SMTPConfig{} |
|
|
|
|
|
|
|
case "pam": |
|
|
|
|
|
|
|
loginSource.Type = LOGIN_PAM |
|
|
|
|
|
|
|
loginSource.Cfg = &PAMConfig{} |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
log.Fatal(2, "Failed to load authentication source: unknown type '%s'", authType) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if err = authSource.Section("config").MapTo(loginSource.Cfg); err != nil { |
|
|
|
|
|
|
|
log.Fatal(2, "Failed to parse authentication source 'config': %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
localLoginSources.sources = append(localLoginSources.sources, loginSource) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// .____ ________ _____ __________
|
|
|
|
// .____ ________ _____ __________
|
|
|
@ -497,7 +695,7 @@ func LoginViaPAM(user *User, login, password string, sourceID int64, cfg *PAMCon |
|
|
|
return user, CreateUser(user) |
|
|
|
return user, CreateUser(user) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func ExternalUserLogin(user *User, login, password string, source *LoginSource, autoRegister bool) (*User, error) { |
|
|
|
func remoteUserLogin(user *User, login, password string, source *LoginSource, autoRegister bool) (*User, error) { |
|
|
|
if !source.IsActived { |
|
|
|
if !source.IsActived { |
|
|
|
return nil, errors.LoginSourceNotActivated{source.ID} |
|
|
|
return nil, errors.LoginSourceNotActivated{source.ID} |
|
|
|
} |
|
|
|
} |
|
|
@ -514,8 +712,9 @@ func ExternalUserLogin(user *User, login, password string, source *LoginSource, |
|
|
|
return nil, errors.InvalidLoginSourceType{source.Type} |
|
|
|
return nil, errors.InvalidLoginSourceType{source.Type} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// UserSignIn validates user name and password.
|
|
|
|
// UserLogin validates user name and password via given login source ID.
|
|
|
|
func UserSignIn(username, password string) (*User, error) { |
|
|
|
// If the loginSourceID is negative, it will abort login process if user is not found.
|
|
|
|
|
|
|
|
func UserLogin(username, password string, loginSourceID int64) (*User, error) { |
|
|
|
var user *User |
|
|
|
var user *User |
|
|
|
if strings.Contains(username, "@") { |
|
|
|
if strings.Contains(username, "@") { |
|
|
|
user = &User{Email: strings.ToLower(username)} |
|
|
|
user = &User{Email: strings.ToLower(username)} |
|
|
@ -525,44 +724,44 @@ func UserSignIn(username, password string) (*User, error) { |
|
|
|
|
|
|
|
|
|
|
|
hasUser, err := x.Get(user) |
|
|
|
hasUser, err := x.Get(user) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
return nil, fmt.Errorf("get user record: %v", err) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if hasUser { |
|
|
|
if hasUser { |
|
|
|
switch user.LoginType { |
|
|
|
// Note: This check is unnecessary but to reduce user confusion at login page
|
|
|
|
case LOGIN_NOTYPE, LOGIN_PLAIN: |
|
|
|
// and make it more consistent at user's perspective.
|
|
|
|
|
|
|
|
if loginSourceID >= 0 && user.LoginSource != loginSourceID { |
|
|
|
|
|
|
|
return nil, errors.LoginSourceMismatch{loginSourceID, user.LoginSource} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Validate password hash fetched from database for local accounts
|
|
|
|
|
|
|
|
if user.LoginType == LOGIN_NOTYPE || |
|
|
|
|
|
|
|
user.LoginType == LOGIN_PLAIN { |
|
|
|
if user.ValidatePassword(password) { |
|
|
|
if user.ValidatePassword(password) { |
|
|
|
return user, nil |
|
|
|
return user, nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return nil, errors.UserNotExist{user.ID, user.Name} |
|
|
|
return nil, errors.UserNotExist{user.ID, user.Name} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
default: |
|
|
|
// Remote login to the login source the user is associated with
|
|
|
|
var source LoginSource |
|
|
|
source, err := GetLoginSourceByID(user.LoginSource) |
|
|
|
hasSource, err := x.Id(user.LoginSource).Get(&source) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
return nil, err |
|
|
|
} else if !hasSource { |
|
|
|
|
|
|
|
return nil, ErrLoginSourceNotExist{user.LoginSource} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ExternalUserLogin(user, user.LoginName, password, &source, false) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
sources := make([]*LoginSource, 0, 3) |
|
|
|
return remoteUserLogin(user, user.LoginName, password, source, false) |
|
|
|
if err = x.UseBool().Find(&sources, &LoginSource{IsActived: true}); err != nil { |
|
|
|
|
|
|
|
return nil, err |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
for _, source := range sources { |
|
|
|
// Non-local login source is always greater than 0
|
|
|
|
authUser, err := ExternalUserLogin(nil, username, password, source, true) |
|
|
|
if loginSourceID <= 0 { |
|
|
|
if err == nil { |
|
|
|
return nil, errors.UserNotExist{-1, username} |
|
|
|
return authUser, nil |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
log.Warn("Failed to login '%s' via '%s': %v", username, source.Name, err) |
|
|
|
source, err := GetLoginSourceByID(loginSourceID) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
return nil, err |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return nil, errors.UserNotExist{user.ID, user.Name} |
|
|
|
return remoteUserLogin(nil, username, password, source, true) |
|
|
|
} |
|
|
|
} |
|
|
|