123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524 |
- // Copyright 2014 The Gogs Authors. All rights reserved.
- // Use of this source code is governed by a MIT-style
- // license that can be found in the LICENSE file.
- package models
- import (
- "crypto/tls"
- "encoding/json"
- "errors"
- "fmt"
- "net/smtp"
- "net/textproto"
- "strings"
- "time"
- "github.com/Unknwon/com"
- "github.com/go-xorm/core"
- "github.com/go-xorm/xorm"
- "github.com/gogits/gogs/modules/auth/ldap"
- "github.com/gogits/gogs/modules/auth/pam"
- "github.com/gogits/gogs/modules/log"
- )
- type LoginType int
- // Note: new type must be added at the end of list to maintain compatibility.
- const (
- LOGIN_NOTYPE LoginType = iota
- LOGIN_PLAIN
- LOGIN_LDAP
- LOGIN_SMTP
- LOGIN_PAM
- LOGIN_DLDAP
- )
- var (
- ErrAuthenticationAlreadyExist = errors.New("Authentication already exist")
- ErrAuthenticationUserUsed = errors.New("Authentication has been used by some users")
- )
- var LoginNames = map[LoginType]string{
- LOGIN_LDAP: "LDAP (via BindDN)",
- LOGIN_DLDAP: "LDAP (simple auth)",
- LOGIN_SMTP: "SMTP",
- LOGIN_PAM: "PAM",
- }
- // Ensure structs implemented interface.
- var (
- _ core.Conversion = &LDAPConfig{}
- _ core.Conversion = &SMTPConfig{}
- _ core.Conversion = &PAMConfig{}
- )
- type LDAPConfig struct {
- *ldap.Source
- }
- func (cfg *LDAPConfig) FromDB(bs []byte) error {
- return json.Unmarshal(bs, &cfg)
- }
- func (cfg *LDAPConfig) ToDB() ([]byte, error) {
- return json.Marshal(cfg)
- }
- type SMTPConfig struct {
- Auth string
- Host string
- Port int
- AllowedDomains string `xorm:"TEXT"`
- TLS bool
- SkipVerify bool
- }
- func (cfg *SMTPConfig) FromDB(bs []byte) error {
- return json.Unmarshal(bs, cfg)
- }
- func (cfg *SMTPConfig) ToDB() ([]byte, error) {
- return json.Marshal(cfg)
- }
- type PAMConfig struct {
- ServiceName string // pam service (e.g. system-auth)
- }
- func (cfg *PAMConfig) FromDB(bs []byte) error {
- return json.Unmarshal(bs, &cfg)
- }
- func (cfg *PAMConfig) ToDB() ([]byte, error) {
- return json.Marshal(cfg)
- }
- type LoginSource struct {
- ID int64 `xorm:"pk autoincr"`
- Type LoginType
- Name string `xorm:"UNIQUE"`
- IsActived bool `xorm:"NOT NULL DEFAULT false"`
- Cfg core.Conversion `xorm:"TEXT"`
- Created time.Time `xorm:"CREATED"`
- Updated time.Time `xorm:"UPDATED"`
- }
- // Cell2Int64 converts a xorm.Cell type to int64,
- // and handles possible irregular cases.
- func Cell2Int64(val xorm.Cell) int64 {
- switch (*val).(type) {
- case []uint8:
- log.Trace("Cell2Int64 ([]uint8): %v", *val)
- return com.StrTo(string((*val).([]uint8))).MustInt64()
- }
- return (*val).(int64)
- }
- func (source *LoginSource) BeforeSet(colName string, val xorm.Cell) {
- switch colName {
- case "type":
- switch LoginType(Cell2Int64(val)) {
- case LOGIN_LDAP, LOGIN_DLDAP:
- source.Cfg = new(LDAPConfig)
- case LOGIN_SMTP:
- source.Cfg = new(SMTPConfig)
- case LOGIN_PAM:
- source.Cfg = new(PAMConfig)
- default:
- panic("unrecognized login source type: " + com.ToStr(*val))
- }
- }
- }
- func (source *LoginSource) TypeName() string {
- return LoginNames[source.Type]
- }
- func (source *LoginSource) IsLDAP() bool {
- return source.Type == LOGIN_LDAP
- }
- func (source *LoginSource) IsDLDAP() bool {
- return source.Type == LOGIN_DLDAP
- }
- func (source *LoginSource) IsSMTP() bool {
- return source.Type == LOGIN_SMTP
- }
- func (source *LoginSource) IsPAM() bool {
- return source.Type == LOGIN_PAM
- }
- func (source *LoginSource) UseTLS() bool {
- switch source.Type {
- case LOGIN_LDAP, LOGIN_DLDAP:
- return source.LDAP().UseSSL
- case LOGIN_SMTP:
- return source.SMTP().TLS
- }
- return false
- }
- func (source *LoginSource) SkipVerify() bool {
- switch source.Type {
- case LOGIN_LDAP, LOGIN_DLDAP:
- return source.LDAP().SkipVerify
- case LOGIN_SMTP:
- return source.SMTP().SkipVerify
- }
- return false
- }
- func (source *LoginSource) LDAP() *LDAPConfig {
- return source.Cfg.(*LDAPConfig)
- }
- func (source *LoginSource) SMTP() *SMTPConfig {
- return source.Cfg.(*SMTPConfig)
- }
- func (source *LoginSource) PAM() *PAMConfig {
- return source.Cfg.(*PAMConfig)
- }
- // CountLoginSources returns number of login sources.
- func CountLoginSources() int64 {
- count, _ := x.Count(new(LoginSource))
- return count
- }
- func CreateSource(source *LoginSource) error {
- _, err := x.Insert(source)
- return err
- }
- func LoginSources() ([]*LoginSource, error) {
- auths := make([]*LoginSource, 0, 5)
- return auths, x.Find(&auths)
- }
- // GetLoginSourceByID returns login source by given ID.
- func GetLoginSourceByID(id int64) (*LoginSource, error) {
- source := new(LoginSource)
- has, err := x.Id(id).Get(source)
- if err != nil {
- return nil, err
- } else if !has {
- return nil, ErrAuthenticationNotExist{id}
- }
- return source, nil
- }
- func UpdateSource(source *LoginSource) error {
- _, err := x.Id(source.ID).AllCols().Update(source)
- return err
- }
- func DeleteSource(source *LoginSource) error {
- count, err := x.Count(&User{LoginSource: source.ID})
- if err != nil {
- return err
- } else if count > 0 {
- return ErrAuthenticationUserUsed
- }
- _, err = x.Id(source.ID).Delete(new(LoginSource))
- return err
- }
- // .____ ________ _____ __________
- // | | \______ \ / _ \\______ \
- // | | | | \ / /_\ \| ___/
- // | |___ | ` \/ | \ |
- // |_______ \/_______ /\____|__ /____|
- // \/ \/ \/
- // LoginUserLDAPSource queries if loginName/passwd can login against the LDAP directory pool,
- // and create a local user if success when enabled.
- // It returns the same LoginUserPlain semantic.
- func LoginUserLDAPSource(u *User, loginName, passwd string, source *LoginSource, autoRegister bool) (*User, error) {
- cfg := source.Cfg.(*LDAPConfig)
- directBind := (source.Type == LOGIN_DLDAP)
- name, fn, sn, mail, admin, logged := cfg.SearchEntry(loginName, passwd, directBind)
- if !logged {
- // User not in LDAP, do nothing
- return nil, ErrUserNotExist{0, loginName}
- }
- if !autoRegister {
- return u, nil
- }
- // Fallback.
- if len(name) == 0 {
- name = loginName
- }
- if len(mail) == 0 {
- mail = fmt.Sprintf("%s@localhost", name)
- }
- u = &User{
- LowerName: strings.ToLower(name),
- Name: name,
- FullName: composeFullName(fn, sn, name),
- LoginType: source.Type,
- LoginSource: source.ID,
- LoginName: loginName,
- Email: mail,
- IsAdmin: admin,
- IsActive: true,
- }
- return u, CreateUser(u)
- }
- func composeFullName(firstName, surename, userName string) string {
- switch {
- case len(firstName) == 0 && len(surename) == 0:
- return userName
- case len(firstName) == 0:
- return surename
- case len(surename) == 0:
- return firstName
- default:
- return firstName + " " + surename
- }
- }
- // _________ __________________________
- // / _____/ / \__ ___/\______ \
- // \_____ \ / \ / \| | | ___/
- // / \/ Y \ | | |
- // /_______ /\____|__ /____| |____|
- // \/ \/
- type loginAuth struct {
- username, password string
- }
- func LoginAuth(username, password string) smtp.Auth {
- return &loginAuth{username, password}
- }
- func (a *loginAuth) Start(server *smtp.ServerInfo) (string, []byte, error) {
- return "LOGIN", []byte(a.username), nil
- }
- func (a *loginAuth) Next(fromServer []byte, more bool) ([]byte, error) {
- if more {
- switch string(fromServer) {
- case "Username:":
- return []byte(a.username), nil
- case "Password:":
- return []byte(a.password), nil
- }
- }
- return nil, nil
- }
- const (
- SMTP_PLAIN = "PLAIN"
- SMTP_LOGIN = "LOGIN"
- )
- var SMTPAuths = []string{SMTP_PLAIN, SMTP_LOGIN}
- func SMTPAuth(a smtp.Auth, cfg *SMTPConfig) error {
- c, err := smtp.Dial(fmt.Sprintf("%s:%d", cfg.Host, cfg.Port))
- if err != nil {
- return err
- }
- defer c.Close()
- if err = c.Hello("gogs"); err != nil {
- return err
- }
- if cfg.TLS {
- if ok, _ := c.Extension("STARTTLS"); ok {
- if err = c.StartTLS(&tls.Config{
- InsecureSkipVerify: cfg.SkipVerify,
- ServerName: cfg.Host,
- }); err != nil {
- return err
- }
- } else {
- return errors.New("SMTP server unsupports TLS")
- }
- }
- if ok, _ := c.Extension("AUTH"); ok {
- if err = c.Auth(a); err != nil {
- return err
- }
- return nil
- }
- return ErrUnsupportedLoginType
- }
- // Query if name/passwd can login against the LDAP directory pool
- // Create a local user if success
- // Return the same LoginUserPlain semantic
- func LoginUserSMTPSource(u *User, name, passwd string, sourceID int64, cfg *SMTPConfig, autoRegister bool) (*User, error) {
- // Verify allowed domains.
- if len(cfg.AllowedDomains) > 0 {
- idx := strings.Index(name, "@")
- if idx == -1 {
- return nil, ErrUserNotExist{0, name}
- } else if !com.IsSliceContainsStr(strings.Split(cfg.AllowedDomains, ","), name[idx+1:]) {
- return nil, ErrUserNotExist{0, name}
- }
- }
- var auth smtp.Auth
- if cfg.Auth == SMTP_PLAIN {
- auth = smtp.PlainAuth("", name, passwd, cfg.Host)
- } else if cfg.Auth == SMTP_LOGIN {
- auth = LoginAuth(name, passwd)
- } else {
- return nil, errors.New("Unsupported SMTP auth type")
- }
- if err := SMTPAuth(auth, cfg); err != nil {
- // Check standard error format first,
- // then fallback to worse case.
- tperr, ok := err.(*textproto.Error)
- if (ok && tperr.Code == 535) ||
- strings.Contains(err.Error(), "Username and Password not accepted") {
- return nil, ErrUserNotExist{0, name}
- }
- return nil, err
- }
- if !autoRegister {
- return u, nil
- }
- var loginName = name
- idx := strings.Index(name, "@")
- if idx > -1 {
- loginName = name[:idx]
- }
- // fake a local user creation
- u = &User{
- LowerName: strings.ToLower(loginName),
- Name: strings.ToLower(loginName),
- LoginType: LOGIN_SMTP,
- LoginSource: sourceID,
- LoginName: name,
- IsActive: true,
- Passwd: passwd,
- Email: name,
- }
- err := CreateUser(u)
- return u, err
- }
- // __________ _____ _____
- // \______ \/ _ \ / \
- // | ___/ /_\ \ / \ / \
- // | | / | \/ Y \
- // |____| \____|__ /\____|__ /
- // \/ \/
- // Query if name/passwd can login against PAM
- // Create a local user if success
- // Return the same LoginUserPlain semantic
- func LoginUserPAMSource(u *User, name, passwd string, sourceID int64, cfg *PAMConfig, autoRegister bool) (*User, error) {
- if err := pam.PAMAuth(cfg.ServiceName, name, passwd); err != nil {
- if strings.Contains(err.Error(), "Authentication failure") {
- return nil, ErrUserNotExist{0, name}
- }
- return nil, err
- }
- if !autoRegister {
- return u, nil
- }
- // fake a local user creation
- u = &User{
- LowerName: strings.ToLower(name),
- Name: name,
- LoginType: LOGIN_PAM,
- LoginSource: sourceID,
- LoginName: name,
- IsActive: true,
- Passwd: passwd,
- Email: name,
- }
- return u, CreateUser(u)
- }
- func ExternalUserLogin(u *User, name, passwd string, source *LoginSource, autoRegister bool) (*User, error) {
- if !source.IsActived {
- return nil, ErrLoginSourceNotActived
- }
- switch source.Type {
- case LOGIN_LDAP, LOGIN_DLDAP:
- return LoginUserLDAPSource(u, name, passwd, source, autoRegister)
- case LOGIN_SMTP:
- return LoginUserSMTPSource(u, name, passwd, source.ID, source.Cfg.(*SMTPConfig), autoRegister)
- case LOGIN_PAM:
- return LoginUserPAMSource(u, name, passwd, source.ID, source.Cfg.(*PAMConfig), autoRegister)
- }
- return nil, ErrUnsupportedLoginType
- }
- // UserSignIn validates user name and password.
- func UserSignIn(uname, passwd string) (*User, error) {
- var u *User
- if strings.Contains(uname, "@") {
- u = &User{Email: strings.ToLower(uname)}
- } else {
- u = &User{LowerName: strings.ToLower(uname)}
- }
- userExists, err := x.Get(u)
- if err != nil {
- return nil, err
- }
- if userExists {
- switch u.LoginType {
- case LOGIN_NOTYPE, LOGIN_PLAIN:
- if u.ValidatePassword(passwd) {
- return u, nil
- }
- return nil, ErrUserNotExist{u.Id, u.Name}
- default:
- var source LoginSource
- hasSource, err := x.Id(u.LoginSource).Get(&source)
- if err != nil {
- return nil, err
- } else if !hasSource {
- return nil, ErrLoginSourceNotExist
- }
- return ExternalUserLogin(u, u.LoginName, passwd, &source, false)
- }
- }
- var sources []LoginSource
- if err = x.UseBool().Find(&sources, &LoginSource{IsActived: true}); err != nil {
- return nil, err
- }
- for _, source := range sources {
- u, err := ExternalUserLogin(nil, uname, passwd, &source, true)
- if err == nil {
- return u, nil
- }
- log.Warn("Failed to login '%s' via '%s': %v", uname, source.Name, err)
- }
- return nil, ErrUserNotExist{u.Id, u.Name}
- }
|