2014-06-09 03:23:53 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2014-05-05 15:02:47 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-04-26 11:51:04 +05:30
|
|
|
package models
|
|
|
|
|
2014-05-03 08:18:14 +05:30
|
|
|
import (
|
2014-05-16 00:16:04 +05:30
|
|
|
"crypto/tls"
|
2014-05-03 08:18:14 +05:30
|
|
|
"encoding/json"
|
2014-05-05 14:10:25 +05:30
|
|
|
"errors"
|
2014-05-11 13:19:36 +05:30
|
|
|
"fmt"
|
|
|
|
"net/smtp"
|
2015-12-12 05:27:45 +05:30
|
|
|
"net/textproto"
|
2014-05-11 11:42:45 +05:30
|
|
|
"strings"
|
2014-05-03 08:18:14 +05:30
|
|
|
"time"
|
2014-04-26 11:51:04 +05:30
|
|
|
|
2015-09-11 21:33:08 +05:30
|
|
|
"github.com/Unknwon/com"
|
2016-07-12 04:37:57 +05:30
|
|
|
"github.com/go-macaron/binding"
|
2014-05-03 08:18:14 +05:30
|
|
|
"github.com/go-xorm/core"
|
2014-05-05 14:10:25 +05:30
|
|
|
"github.com/go-xorm/xorm"
|
2014-05-05 15:02:47 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/auth/ldap"
|
|
|
|
"code.gitea.io/gitea/modules/auth/pam"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2014-05-03 08:18:14 +05:30
|
|
|
)
|
2014-04-26 11:51:04 +05:30
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// LoginType represents an login type.
|
2014-06-09 03:23:53 +05:30
|
|
|
type LoginType int
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
// Note: new type must append to the end of list to maintain compatibility.
|
2014-05-05 14:10:25 +05:30
|
|
|
const (
|
2016-11-08 02:28:22 +05:30
|
|
|
LoginNoType LoginType = iota
|
2016-11-07 22:00:04 +05:30
|
|
|
LoginPlain // 1
|
2016-11-08 02:28:22 +05:30
|
|
|
LoginLDAP // 2
|
|
|
|
LoginSMTP // 3
|
|
|
|
LoginPAM // 4
|
|
|
|
LoginDLDAP // 5
|
2014-05-05 14:10:25 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// LoginNames contains the name of LoginType values.
|
2015-09-11 02:41:41 +05:30
|
|
|
var LoginNames = map[LoginType]string{
|
2016-11-08 02:28:22 +05:30
|
|
|
LoginLDAP: "LDAP (via BindDN)",
|
|
|
|
LoginDLDAP: "LDAP (simple auth)", // Via direct bind
|
|
|
|
LoginSMTP: "SMTP",
|
|
|
|
LoginPAM: "PAM",
|
2014-05-05 14:10:25 +05:30
|
|
|
}
|
2014-04-26 11:51:04 +05:30
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// SecurityProtocolNames contains the name of SecurityProtocol values.
|
2016-07-08 04:55:09 +05:30
|
|
|
var SecurityProtocolNames = map[ldap.SecurityProtocol]string{
|
2016-11-07 22:08:43 +05:30
|
|
|
ldap.SecurityProtocolUnencrypted: "Unencrypted",
|
2016-11-08 02:28:22 +05:30
|
|
|
ldap.SecurityProtocolLDAPS: "LDAPS",
|
2016-11-10 20:46:32 +05:30
|
|
|
ldap.SecurityProtocolStartTLS: "StartTLS",
|
2016-07-08 04:55:09 +05:30
|
|
|
}
|
|
|
|
|
2014-12-07 06:52:48 +05:30
|
|
|
// Ensure structs implemented interface.
|
2014-05-12 20:32:36 +05:30
|
|
|
var (
|
|
|
|
_ core.Conversion = &LDAPConfig{}
|
|
|
|
_ core.Conversion = &SMTPConfig{}
|
2015-04-23 17:28:57 +05:30
|
|
|
_ core.Conversion = &PAMConfig{}
|
2014-05-12 20:32:36 +05:30
|
|
|
)
|
2014-04-26 11:51:04 +05:30
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// LDAPConfig holds configuration for LDAP login source.
|
2014-04-26 11:51:04 +05:30
|
|
|
type LDAPConfig struct {
|
2015-09-15 01:18:51 +05:30
|
|
|
*ldap.Source
|
2014-04-26 11:51:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// FromDB fills up a LDAPConfig from serialized format.
|
2014-04-26 11:51:04 +05:30
|
|
|
func (cfg *LDAPConfig) FromDB(bs []byte) error {
|
2015-09-15 01:18:51 +05:30
|
|
|
return json.Unmarshal(bs, &cfg)
|
2014-04-26 11:51:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// ToDB exports a LDAPConfig to a serialized format.
|
2014-04-26 11:51:04 +05:30
|
|
|
func (cfg *LDAPConfig) ToDB() ([]byte, error) {
|
2015-09-15 01:18:51 +05:30
|
|
|
return json.Marshal(cfg)
|
2014-04-26 11:51:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// SecurityProtocolName returns the name of configured security
|
|
|
|
// protocol.
|
2016-07-08 04:55:09 +05:30
|
|
|
func (cfg *LDAPConfig) SecurityProtocolName() string {
|
|
|
|
return SecurityProtocolNames[cfg.SecurityProtocol]
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// SMTPConfig holds configuration for the SMTP login source.
|
2014-05-11 13:19:36 +05:30
|
|
|
type SMTPConfig struct {
|
2015-09-11 23:02:33 +05:30
|
|
|
Auth string
|
|
|
|
Host string
|
|
|
|
Port int
|
|
|
|
AllowedDomains string `xorm:"TEXT"`
|
|
|
|
TLS bool
|
|
|
|
SkipVerify bool
|
2014-05-11 13:19:36 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// FromDB fills up an SMTPConfig from serialized format.
|
2014-05-11 13:19:36 +05:30
|
|
|
func (cfg *SMTPConfig) FromDB(bs []byte) error {
|
|
|
|
return json.Unmarshal(bs, cfg)
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// ToDB exports an SMTPConfig to a serialized format.
|
2014-05-11 13:19:36 +05:30
|
|
|
func (cfg *SMTPConfig) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(cfg)
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// PAMConfig holds configuration for the PAM login source.
|
2015-04-23 17:28:57 +05:30
|
|
|
type PAMConfig struct {
|
|
|
|
ServiceName string // pam service (e.g. system-auth)
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// FromDB fills up a PAMConfig from serialized format.
|
2015-04-23 17:28:57 +05:30
|
|
|
func (cfg *PAMConfig) FromDB(bs []byte) error {
|
|
|
|
return json.Unmarshal(bs, &cfg)
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// ToDB exports a PAMConfig to a serialized format.
|
2015-04-23 17:28:57 +05:30
|
|
|
func (cfg *PAMConfig) ToDB() ([]byte, error) {
|
|
|
|
return json.Marshal(cfg)
|
|
|
|
}
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
// LoginSource represents an external way for authorizing users.
|
2014-04-26 11:51:04 +05:30
|
|
|
type LoginSource struct {
|
2015-09-13 06:28:51 +05:30
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
Type LoginType
|
|
|
|
Name string `xorm:"UNIQUE"`
|
2017-01-06 20:44:33 +05:30
|
|
|
IsActived bool `xorm:"INDEX NOT NULL DEFAULT false"`
|
2015-09-13 06:28:51 +05:30
|
|
|
Cfg core.Conversion `xorm:"TEXT"`
|
2016-03-10 06:23:30 +05:30
|
|
|
|
|
|
|
Created time.Time `xorm:"-"`
|
2017-01-06 20:44:33 +05:30
|
|
|
CreatedUnix int64 `xorm:"INDEX"`
|
2016-03-10 06:23:30 +05:30
|
|
|
Updated time.Time `xorm:"-"`
|
2017-01-06 20:44:33 +05:30
|
|
|
UpdatedUnix int64 `xorm:"INDEX"`
|
2016-03-10 06:23:30 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// BeforeInsert is invoked from XORM before inserting an object of this type.
|
|
|
|
func (source *LoginSource) BeforeInsert() {
|
|
|
|
source.CreatedUnix = time.Now().Unix()
|
|
|
|
source.UpdatedUnix = source.CreatedUnix
|
2016-03-10 06:23:30 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// BeforeUpdate is invoked from XORM before updating this object.
|
|
|
|
func (source *LoginSource) BeforeUpdate() {
|
|
|
|
source.UpdatedUnix = time.Now().Unix()
|
2014-05-03 08:18:14 +05:30
|
|
|
}
|
|
|
|
|
2016-01-11 12:04:32 +05:30
|
|
|
// Cell2Int64 converts a xorm.Cell type to int64,
|
|
|
|
// and handles possible irregular cases.
|
|
|
|
func Cell2Int64(val xorm.Cell) int64 {
|
|
|
|
switch (*val).(type) {
|
2016-01-11 13:17:23 +05:30
|
|
|
case []uint8:
|
|
|
|
log.Trace("Cell2Int64 ([]uint8): %v", *val)
|
|
|
|
return com.StrTo(string((*val).([]uint8))).MustInt64()
|
2016-01-11 12:04:32 +05:30
|
|
|
}
|
|
|
|
return (*val).(int64)
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// BeforeSet is invoked from XORM before setting the value of a field of this object.
|
2015-08-29 13:15:58 +05:30
|
|
|
func (source *LoginSource) BeforeSet(colName string, val xorm.Cell) {
|
|
|
|
switch colName {
|
|
|
|
case "type":
|
2016-01-11 12:04:32 +05:30
|
|
|
switch LoginType(Cell2Int64(val)) {
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginLDAP, LoginDLDAP:
|
2015-08-29 13:15:58 +05:30
|
|
|
source.Cfg = new(LDAPConfig)
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginSMTP:
|
2015-08-29 13:15:58 +05:30
|
|
|
source.Cfg = new(SMTPConfig)
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginPAM:
|
2015-08-29 13:15:58 +05:30
|
|
|
source.Cfg = new(PAMConfig)
|
2015-09-11 21:33:08 +05:30
|
|
|
default:
|
|
|
|
panic("unrecognized login source type: " + com.ToStr(*val))
|
2015-08-29 13:15:58 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// AfterSet is invoked from XORM after setting the value of a field of this object.
|
|
|
|
func (source *LoginSource) AfterSet(colName string, _ xorm.Cell) {
|
2016-03-10 06:23:30 +05:30
|
|
|
switch colName {
|
|
|
|
case "created_unix":
|
2016-11-24 17:04:38 +05:30
|
|
|
source.Created = time.Unix(source.CreatedUnix, 0).Local()
|
2016-03-10 06:23:30 +05:30
|
|
|
case "updated_unix":
|
2016-11-24 17:04:38 +05:30
|
|
|
source.Updated = time.Unix(source.UpdatedUnix, 0).Local()
|
2016-03-10 06:23:30 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// TypeName return name of this login source type.
|
2015-09-11 02:41:41 +05:30
|
|
|
func (source *LoginSource) TypeName() string {
|
|
|
|
return LoginNames[source.Type]
|
2014-05-05 14:10:25 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// IsLDAP returns true of this source is of the LDAP type.
|
2015-09-11 21:33:08 +05:30
|
|
|
func (source *LoginSource) IsLDAP() bool {
|
2016-11-08 02:28:22 +05:30
|
|
|
return source.Type == LoginLDAP
|
2015-09-11 21:33:08 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// IsDLDAP returns true of this source is of the DLDAP type.
|
2015-09-11 21:33:08 +05:30
|
|
|
func (source *LoginSource) IsDLDAP() bool {
|
2016-11-08 02:28:22 +05:30
|
|
|
return source.Type == LoginDLDAP
|
2015-09-11 21:33:08 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// IsSMTP returns true of this source is of the SMTP type.
|
2015-09-11 21:33:08 +05:30
|
|
|
func (source *LoginSource) IsSMTP() bool {
|
2016-11-08 02:28:22 +05:30
|
|
|
return source.Type == LoginSMTP
|
2015-09-11 21:33:08 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// IsPAM returns true of this source is of the PAM type.
|
2015-09-11 21:33:08 +05:30
|
|
|
func (source *LoginSource) IsPAM() bool {
|
2016-11-08 02:28:22 +05:30
|
|
|
return source.Type == LoginPAM
|
2015-09-11 21:33:08 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// HasTLS returns true of this source supports TLS.
|
2016-07-08 04:55:09 +05:30
|
|
|
func (source *LoginSource) HasTLS() bool {
|
|
|
|
return ((source.IsLDAP() || source.IsDLDAP()) &&
|
2016-11-07 22:08:43 +05:30
|
|
|
source.LDAP().SecurityProtocol > ldap.SecurityProtocolUnencrypted) ||
|
2016-07-08 04:55:09 +05:30
|
|
|
source.IsSMTP()
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// UseTLS returns true of this source is configured to use TLS.
|
2015-09-11 21:33:08 +05:30
|
|
|
func (source *LoginSource) UseTLS() bool {
|
|
|
|
switch source.Type {
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginLDAP, LoginDLDAP:
|
2016-11-07 22:08:43 +05:30
|
|
|
return source.LDAP().SecurityProtocol != ldap.SecurityProtocolUnencrypted
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginSMTP:
|
2015-09-11 21:33:08 +05:30
|
|
|
return source.SMTP().TLS
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// SkipVerify returns true if this source is configured to skip SSL
|
|
|
|
// verification.
|
2015-09-15 01:18:51 +05:30
|
|
|
func (source *LoginSource) SkipVerify() bool {
|
|
|
|
switch source.Type {
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginLDAP, LoginDLDAP:
|
2015-09-15 01:18:51 +05:30
|
|
|
return source.LDAP().SkipVerify
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginSMTP:
|
2015-09-15 01:18:51 +05:30
|
|
|
return source.SMTP().SkipVerify
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// LDAP returns LDAPConfig for this source, if of LDAP type.
|
2014-05-05 14:10:25 +05:30
|
|
|
func (source *LoginSource) LDAP() *LDAPConfig {
|
|
|
|
return source.Cfg.(*LDAPConfig)
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// SMTP returns SMTPConfig for this source, if of SMTP type.
|
2014-05-11 13:19:36 +05:30
|
|
|
func (source *LoginSource) SMTP() *SMTPConfig {
|
|
|
|
return source.Cfg.(*SMTPConfig)
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// PAM returns PAMConfig for this source, if of PAM type.
|
2015-04-23 17:28:57 +05:30
|
|
|
func (source *LoginSource) PAM() *PAMConfig {
|
|
|
|
return source.Cfg.(*PAMConfig)
|
|
|
|
}
|
2016-11-24 17:04:38 +05:30
|
|
|
|
|
|
|
// CreateLoginSource inserts a LoginSource in the DB if not already
|
|
|
|
// existing with the given name.
|
2016-08-31 13:26:10 +05:30
|
|
|
func CreateLoginSource(source *LoginSource) error {
|
|
|
|
has, err := x.Get(&LoginSource{Name: source.Name})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if has {
|
|
|
|
return ErrLoginSourceAlreadyExist{source.Name}
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = x.Insert(source)
|
2014-06-09 03:23:53 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// LoginSources returns a slice of all login sources found in DB.
|
2015-09-13 19:21:51 +05:30
|
|
|
func LoginSources() ([]*LoginSource, error) {
|
2015-08-29 13:15:58 +05:30
|
|
|
auths := make([]*LoginSource, 0, 5)
|
|
|
|
return auths, x.Find(&auths)
|
2014-05-03 08:18:14 +05:30
|
|
|
}
|
|
|
|
|
2015-12-06 03:43:13 +05:30
|
|
|
// GetLoginSourceByID returns login source by given ID.
|
2015-08-29 13:15:58 +05:30
|
|
|
func GetLoginSourceByID(id int64) (*LoginSource, error) {
|
2014-05-05 14:10:25 +05:30
|
|
|
source := new(LoginSource)
|
2014-06-21 10:21:41 +05:30
|
|
|
has, err := x.Id(id).Get(source)
|
2014-05-05 14:10:25 +05:30
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-06-09 03:23:53 +05:30
|
|
|
} else if !has {
|
2016-08-31 13:26:10 +05:30
|
|
|
return nil, ErrLoginSourceNotExist{id}
|
2014-05-05 14:10:25 +05:30
|
|
|
}
|
|
|
|
return source, nil
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// UpdateSource updates a LoginSource record in DB.
|
2014-05-11 15:40:37 +05:30
|
|
|
func UpdateSource(source *LoginSource) error {
|
2015-08-29 13:15:58 +05:30
|
|
|
_, err := x.Id(source.ID).AllCols().Update(source)
|
2014-05-03 08:18:14 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// DeleteSource deletes a LoginSource record in DB.
|
2015-09-11 21:33:08 +05:30
|
|
|
func DeleteSource(source *LoginSource) error {
|
|
|
|
count, err := x.Count(&User{LoginSource: source.ID})
|
2014-05-05 14:10:25 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-09-11 21:33:08 +05:30
|
|
|
} else if count > 0 {
|
2016-08-31 13:52:41 +05:30
|
|
|
return ErrLoginSourceInUse{source.ID}
|
2014-05-05 14:10:25 +05:30
|
|
|
}
|
2015-09-11 21:33:08 +05:30
|
|
|
_, err = x.Id(source.ID).Delete(new(LoginSource))
|
2014-05-03 08:18:14 +05:30
|
|
|
return err
|
2014-04-26 11:51:04 +05:30
|
|
|
}
|
2014-05-11 11:42:45 +05:30
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
// CountLoginSources returns number of login sources.
|
|
|
|
func CountLoginSources() int64 {
|
|
|
|
count, _ := x.Count(new(LoginSource))
|
|
|
|
return count
|
|
|
|
}
|
|
|
|
|
2015-09-13 06:28:51 +05:30
|
|
|
// .____ ________ _____ __________
|
|
|
|
// | | \______ \ / _ \\______ \
|
|
|
|
// | | | | \ / /_\ \| ___/
|
|
|
|
// | |___ | ` \/ | \ |
|
|
|
|
// |_______ \/_______ /\____|__ /____|
|
|
|
|
// \/ \/ \/
|
2014-05-11 11:42:45 +05:30
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
func composeFullName(firstname, surname, username string) string {
|
|
|
|
switch {
|
|
|
|
case len(firstname) == 0 && len(surname) == 0:
|
|
|
|
return username
|
|
|
|
case len(firstname) == 0:
|
|
|
|
return surname
|
|
|
|
case len(surname) == 0:
|
|
|
|
return firstname
|
|
|
|
default:
|
|
|
|
return firstname + " " + surname
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoginViaLDAP queries if login/password is valid against the LDAP directory pool,
|
2015-11-21 23:28:31 +05:30
|
|
|
// and create a local user if success when enabled.
|
2016-11-22 00:38:21 +05:30
|
|
|
func LoginViaLDAP(user *User, login, password string, source *LoginSource, autoRegister bool) (*User, error) {
|
|
|
|
username, fn, sn, mail, isAdmin, succeed := source.Cfg.(*LDAPConfig).SearchEntry(login, password, source.Type == LoginDLDAP)
|
2016-08-31 13:52:41 +05:30
|
|
|
if !succeed {
|
2014-12-06 04:38:09 +05:30
|
|
|
// User not in LDAP, do nothing
|
2016-11-12 04:31:09 +05:30
|
|
|
return nil, ErrUserNotExist{0, login, 0}
|
2014-05-11 11:42:45 +05:30
|
|
|
}
|
2015-08-13 05:28:27 +05:30
|
|
|
|
2014-05-11 11:42:45 +05:30
|
|
|
if !autoRegister {
|
2016-08-31 13:52:41 +05:30
|
|
|
return user, nil
|
2014-05-11 11:42:45 +05:30
|
|
|
}
|
|
|
|
|
2014-12-06 04:38:09 +05:30
|
|
|
// Fallback.
|
2016-07-12 04:37:57 +05:30
|
|
|
if len(username) == 0 {
|
2016-08-31 13:52:41 +05:30
|
|
|
username = login
|
2015-12-01 19:19:49 +05:30
|
|
|
}
|
2016-07-12 04:37:57 +05:30
|
|
|
// Validate username make sure it satisfies requirement.
|
2016-07-21 11:45:04 +05:30
|
|
|
if binding.AlphaDashDotPattern.MatchString(username) {
|
2016-07-12 04:37:57 +05:30
|
|
|
return nil, fmt.Errorf("Invalid pattern for attribute 'username' [%s]: must be valid alpha or numeric or dash(-_) or dot characters", username)
|
|
|
|
}
|
|
|
|
|
2014-12-06 04:38:09 +05:30
|
|
|
if len(mail) == 0 {
|
2016-07-12 04:37:57 +05:30
|
|
|
mail = fmt.Sprintf("%s@localhost", username)
|
2014-12-06 04:38:09 +05:30
|
|
|
}
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
user = &User{
|
2016-07-12 04:37:57 +05:30
|
|
|
LowerName: strings.ToLower(username),
|
|
|
|
Name: username,
|
|
|
|
FullName: composeFullName(fn, sn, username),
|
2016-08-31 13:52:41 +05:30
|
|
|
Email: mail,
|
2015-09-05 09:09:23 +05:30
|
|
|
LoginType: source.Type,
|
|
|
|
LoginSource: source.ID,
|
2016-08-31 13:52:41 +05:30
|
|
|
LoginName: login,
|
2014-12-06 04:38:09 +05:30
|
|
|
IsActive: true,
|
2016-08-31 13:52:41 +05:30
|
|
|
IsAdmin: isAdmin,
|
2014-05-11 11:42:45 +05:30
|
|
|
}
|
2016-08-31 13:52:41 +05:30
|
|
|
return user, CreateUser(user)
|
2015-12-01 19:19:49 +05:30
|
|
|
}
|
|
|
|
|
2015-09-13 06:28:51 +05:30
|
|
|
// _________ __________________________
|
|
|
|
// / _____/ / \__ ___/\______ \
|
|
|
|
// \_____ \ / \ / \| | | ___/
|
|
|
|
// / \/ Y \ | | |
|
|
|
|
// /_______ /\____|__ /____| |____|
|
|
|
|
// \/ \/
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
type smtpLoginAuth struct {
|
2014-05-11 13:19:36 +05:30
|
|
|
username, password string
|
|
|
|
}
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
func (auth *smtpLoginAuth) Start(server *smtp.ServerInfo) (string, []byte, error) {
|
|
|
|
return "LOGIN", []byte(auth.username), nil
|
2014-05-11 13:19:36 +05:30
|
|
|
}
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
func (auth *smtpLoginAuth) Next(fromServer []byte, more bool) ([]byte, error) {
|
2014-05-11 13:19:36 +05:30
|
|
|
if more {
|
|
|
|
switch string(fromServer) {
|
|
|
|
case "Username:":
|
2016-08-31 13:52:41 +05:30
|
|
|
return []byte(auth.username), nil
|
2014-05-11 13:19:36 +05:30
|
|
|
case "Password:":
|
2016-08-31 13:52:41 +05:30
|
|
|
return []byte(auth.password), nil
|
2014-05-11 13:19:36 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// SMTP authentication type names.
|
2015-08-29 13:15:58 +05:30
|
|
|
const (
|
2016-11-08 02:28:22 +05:30
|
|
|
SMTPPlain = "PLAIN"
|
|
|
|
SMTPLogin = "LOGIN"
|
2014-05-11 13:19:36 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// SMTPAuths contains available SMTP authentication type names.
|
2016-11-08 02:28:22 +05:30
|
|
|
var SMTPAuths = []string{SMTPPlain, SMTPLogin}
|
2015-08-29 13:15:58 +05:30
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// SMTPAuth performs an SMTP authentication.
|
2015-08-29 13:15:58 +05:30
|
|
|
func SMTPAuth(a smtp.Auth, cfg *SMTPConfig) error {
|
|
|
|
c, err := smtp.Dial(fmt.Sprintf("%s:%d", cfg.Host, cfg.Port))
|
2014-05-11 13:19:36 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer c.Close()
|
|
|
|
|
2014-05-16 00:16:04 +05:30
|
|
|
if err = c.Hello("gogs"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-08-29 13:15:58 +05:30
|
|
|
if cfg.TLS {
|
2014-05-11 17:34:28 +05:30
|
|
|
if ok, _ := c.Extension("STARTTLS"); ok {
|
2015-08-29 13:15:58 +05:30
|
|
|
if err = c.StartTLS(&tls.Config{
|
|
|
|
InsecureSkipVerify: cfg.SkipVerify,
|
|
|
|
ServerName: cfg.Host,
|
|
|
|
}); err != nil {
|
2014-05-11 17:34:28 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
2014-05-16 08:33:26 +05:30
|
|
|
return errors.New("SMTP server unsupports TLS")
|
2014-05-11 13:19:36 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ok, _ := c.Extension("AUTH"); ok {
|
|
|
|
if err = c.Auth(a); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2014-06-09 03:23:53 +05:30
|
|
|
return ErrUnsupportedLoginType
|
2014-05-11 13:19:36 +05:30
|
|
|
}
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
// LoginViaSMTP queries if login/password is valid against the SMTP,
|
|
|
|
// and create a local user if success when enabled.
|
|
|
|
func LoginViaSMTP(user *User, login, password string, sourceID int64, cfg *SMTPConfig, autoRegister bool) (*User, error) {
|
2015-09-11 23:02:33 +05:30
|
|
|
// Verify allowed domains.
|
|
|
|
if len(cfg.AllowedDomains) > 0 {
|
2016-08-31 13:52:41 +05:30
|
|
|
idx := strings.Index(login, "@")
|
2015-09-11 23:02:33 +05:30
|
|
|
if idx == -1 {
|
2016-11-12 04:31:09 +05:30
|
|
|
return nil, ErrUserNotExist{0, login, 0}
|
2016-08-31 13:52:41 +05:30
|
|
|
} else if !com.IsSliceContainsStr(strings.Split(cfg.AllowedDomains, ","), login[idx+1:]) {
|
2016-11-12 04:31:09 +05:30
|
|
|
return nil, ErrUserNotExist{0, login, 0}
|
2015-09-11 23:02:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-11 13:19:36 +05:30
|
|
|
var auth smtp.Auth
|
2016-11-08 02:28:22 +05:30
|
|
|
if cfg.Auth == SMTPPlain {
|
2016-08-31 13:52:41 +05:30
|
|
|
auth = smtp.PlainAuth("", login, password, cfg.Host)
|
2016-11-08 02:28:22 +05:30
|
|
|
} else if cfg.Auth == SMTPLogin {
|
2016-08-31 13:52:41 +05:30
|
|
|
auth = &smtpLoginAuth{login, password}
|
2014-05-11 17:34:28 +05:30
|
|
|
} else {
|
2014-05-16 00:16:04 +05:30
|
|
|
return nil, errors.New("Unsupported SMTP auth type")
|
2014-05-11 13:19:36 +05:30
|
|
|
}
|
|
|
|
|
2015-08-29 13:15:58 +05:30
|
|
|
if err := SMTPAuth(auth, cfg); err != nil {
|
2015-12-12 05:27:45 +05:30
|
|
|
// 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") {
|
2016-11-12 04:31:09 +05:30
|
|
|
return nil, ErrUserNotExist{0, login, 0}
|
2014-05-16 00:16:04 +05:30
|
|
|
}
|
2014-05-11 13:19:36 +05:30
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !autoRegister {
|
2016-08-31 13:52:41 +05:30
|
|
|
return user, nil
|
2014-05-11 13:19:36 +05:30
|
|
|
}
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
username := login
|
|
|
|
idx := strings.Index(login, "@")
|
2014-05-11 17:34:28 +05:30
|
|
|
if idx > -1 {
|
2016-08-31 13:52:41 +05:30
|
|
|
username = login[:idx]
|
2014-05-11 17:34:28 +05:30
|
|
|
}
|
2016-08-31 13:52:41 +05:30
|
|
|
|
|
|
|
user = &User{
|
|
|
|
LowerName: strings.ToLower(username),
|
|
|
|
Name: strings.ToLower(username),
|
|
|
|
Email: login,
|
|
|
|
Passwd: password,
|
2016-11-08 02:28:22 +05:30
|
|
|
LoginType: LoginSMTP,
|
2015-12-11 05:32:57 +05:30
|
|
|
LoginSource: sourceID,
|
2016-08-31 13:52:41 +05:30
|
|
|
LoginName: login,
|
2014-05-11 13:19:36 +05:30
|
|
|
IsActive: true,
|
|
|
|
}
|
2016-08-31 13:52:41 +05:30
|
|
|
return user, CreateUser(user)
|
2014-05-11 13:19:36 +05:30
|
|
|
}
|
2015-04-23 17:28:57 +05:30
|
|
|
|
2015-09-13 06:28:51 +05:30
|
|
|
// __________ _____ _____
|
|
|
|
// \______ \/ _ \ / \
|
|
|
|
// | ___/ /_\ \ / \ / \
|
|
|
|
// | | / | \/ Y \
|
|
|
|
// |____| \____|__ /\____|__ /
|
|
|
|
// \/ \/
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
// LoginViaPAM queries if login/password is valid against the PAM,
|
|
|
|
// and create a local user if success when enabled.
|
|
|
|
func LoginViaPAM(user *User, login, password string, sourceID int64, cfg *PAMConfig, autoRegister bool) (*User, error) {
|
2016-11-27 11:33:59 +05:30
|
|
|
if err := pam.Auth(cfg.ServiceName, login, password); err != nil {
|
2015-04-23 17:28:57 +05:30
|
|
|
if strings.Contains(err.Error(), "Authentication failure") {
|
2016-11-12 04:31:09 +05:30
|
|
|
return nil, ErrUserNotExist{0, login, 0}
|
2015-04-23 17:28:57 +05:30
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !autoRegister {
|
2016-08-31 13:52:41 +05:30
|
|
|
return user, nil
|
2015-04-23 17:28:57 +05:30
|
|
|
}
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
user = &User{
|
|
|
|
LowerName: strings.ToLower(login),
|
|
|
|
Name: login,
|
|
|
|
Email: login,
|
|
|
|
Passwd: password,
|
2016-11-08 02:28:22 +05:30
|
|
|
LoginType: LoginPAM,
|
2015-12-11 05:32:57 +05:30
|
|
|
LoginSource: sourceID,
|
2016-08-31 13:52:41 +05:30
|
|
|
LoginName: login,
|
2015-04-23 17:28:57 +05:30
|
|
|
IsActive: true,
|
|
|
|
}
|
2016-08-31 13:52:41 +05:30
|
|
|
return user, CreateUser(user)
|
2015-04-23 17:28:57 +05:30
|
|
|
}
|
2015-09-13 06:28:51 +05:30
|
|
|
|
2016-11-24 17:04:38 +05:30
|
|
|
// ExternalUserLogin attempts a login using external source types.
|
2016-08-31 13:52:41 +05:30
|
|
|
func ExternalUserLogin(user *User, login, password string, source *LoginSource, autoRegister bool) (*User, error) {
|
2015-09-13 06:28:51 +05:30
|
|
|
if !source.IsActived {
|
|
|
|
return nil, ErrLoginSourceNotActived
|
|
|
|
}
|
|
|
|
|
|
|
|
switch source.Type {
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginLDAP, LoginDLDAP:
|
2016-08-31 13:52:41 +05:30
|
|
|
return LoginViaLDAP(user, login, password, source, autoRegister)
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginSMTP:
|
2016-08-31 13:52:41 +05:30
|
|
|
return LoginViaSMTP(user, login, password, source.ID, source.Cfg.(*SMTPConfig), autoRegister)
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginPAM:
|
2016-08-31 13:52:41 +05:30
|
|
|
return LoginViaPAM(user, login, password, source.ID, source.Cfg.(*PAMConfig), autoRegister)
|
2015-09-13 06:28:51 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return nil, ErrUnsupportedLoginType
|
|
|
|
}
|
|
|
|
|
|
|
|
// UserSignIn validates user name and password.
|
2016-11-22 00:38:21 +05:30
|
|
|
func UserSignIn(username, password string) (*User, error) {
|
2016-08-31 13:52:41 +05:30
|
|
|
var user *User
|
|
|
|
if strings.Contains(username, "@") {
|
2016-12-12 06:16:51 +05:30
|
|
|
user = &User{Email: strings.ToLower(strings.TrimSpace(username))}
|
2015-09-13 06:28:51 +05:30
|
|
|
} else {
|
2016-12-12 06:16:51 +05:30
|
|
|
user = &User{LowerName: strings.ToLower(strings.TrimSpace(username))}
|
2015-09-13 06:28:51 +05:30
|
|
|
}
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
hasUser, err := x.Get(user)
|
2015-09-13 06:28:51 +05:30
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
if hasUser {
|
|
|
|
switch user.LoginType {
|
2016-11-08 02:28:22 +05:30
|
|
|
case LoginNoType, LoginPlain:
|
2016-11-22 00:38:21 +05:30
|
|
|
if user.ValidatePassword(password) {
|
2016-08-31 13:52:41 +05:30
|
|
|
return user, nil
|
2015-09-13 06:28:51 +05:30
|
|
|
}
|
|
|
|
|
2016-11-12 04:31:09 +05:30
|
|
|
return nil, ErrUserNotExist{user.ID, user.Name, 0}
|
2015-09-13 06:28:51 +05:30
|
|
|
|
|
|
|
default:
|
|
|
|
var source LoginSource
|
2016-08-31 13:52:41 +05:30
|
|
|
hasSource, err := x.Id(user.LoginSource).Get(&source)
|
2015-09-13 06:28:51 +05:30
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !hasSource {
|
2016-08-31 13:52:41 +05:30
|
|
|
return nil, ErrLoginSourceNotExist{user.LoginSource}
|
2015-09-13 06:28:51 +05:30
|
|
|
}
|
|
|
|
|
2016-11-22 00:38:21 +05:30
|
|
|
return ExternalUserLogin(user, user.LoginName, password, &source, false)
|
2015-09-13 06:28:51 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-01 14:42:34 +05:30
|
|
|
sources := make([]*LoginSource, 0, 3)
|
2015-09-13 06:28:51 +05:30
|
|
|
if err = x.UseBool().Find(&sources, &LoginSource{IsActived: true}); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, source := range sources {
|
2016-11-22 00:38:21 +05:30
|
|
|
authUser, err := ExternalUserLogin(nil, username, password, source, true)
|
2015-09-13 06:28:51 +05:30
|
|
|
if err == nil {
|
2016-08-31 13:52:41 +05:30
|
|
|
return authUser, nil
|
2015-09-13 06:28:51 +05:30
|
|
|
}
|
|
|
|
|
2016-08-31 13:52:41 +05:30
|
|
|
log.Warn("Failed to login '%s' via '%s': %v", username, source.Name, err)
|
2015-09-13 06:28:51 +05:30
|
|
|
}
|
|
|
|
|
2016-11-12 04:31:09 +05:30
|
|
|
return nil, ErrUserNotExist{user.ID, user.Name, 0}
|
2015-09-13 06:28:51 +05:30
|
|
|
}
|