Files
Gogs/internal/db/login_source.go

343 lines
8.6 KiB
Go
Raw Normal View History

// Copyright 2014 The Gogs Authors. All rights reserved.
2014-05-05 05:32:47 -04:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// FIXME: Put this file into its own package and separate into different files based on login sources.
package db
2014-04-26 14:21:04 +08:00
2014-05-03 10:48:14 +08:00
import (
2014-05-15 14:46:04 -04:00
"crypto/tls"
2014-05-11 15:49:36 +08:00
"fmt"
"net/smtp"
"net/textproto"
2014-05-11 14:12:45 +08:00
"strings"
2014-04-26 14:21:04 +08:00
"github.com/go-macaron/binding"
"github.com/unknwon/com"
"gogs.io/gogs/internal/auth/github"
"gogs.io/gogs/internal/auth/ldap"
"gogs.io/gogs/internal/auth/pam"
"gogs.io/gogs/internal/db/errors"
2014-05-03 10:48:14 +08:00
)
2014-04-26 14:21:04 +08:00
type LoginType int
2016-08-31 01:22:41 -07:00
// Note: new type must append to the end of list to maintain compatibility.
// TODO: Move to authutil.
2014-05-05 16:40:25 +08:00
const (
LoginNotype LoginType = iota
LoginPlain // 1
LoginLDAP // 2
LoginSMTP // 3
LoginPAM // 4
LoginDLDAP // 5
LoginGitHub // 6
2014-05-05 16:40:25 +08:00
)
2015-09-10 17:11:41 -04:00
var LoginNames = map[LoginType]string{
LoginLDAP: "LDAP (via BindDN)",
LoginDLDAP: "LDAP (simple auth)", // Via direct bind
LoginSMTP: "SMTP",
LoginPAM: "PAM",
LoginGitHub: "GitHub",
2014-05-05 16:40:25 +08:00
}
2014-04-26 14:21:04 +08:00
// ***********************
// ----- LDAP config -----
// ***********************
2014-04-26 14:21:04 +08:00
type LDAPConfig struct {
ldap.Source `ini:"config"`
2014-04-26 14:21:04 +08:00
}
var SecurityProtocolNames = map[ldap.SecurityProtocol]string{
ldap.SecurityProtocolUnencrypted: "Unencrypted",
ldap.SecurityProtocolLDAPS: "LDAPS",
ldap.SecurityProtocolStartTLS: "StartTLS",
2014-04-26 14:21:04 +08:00
}
func (cfg *LDAPConfig) SecurityProtocolName() string {
return SecurityProtocolNames[cfg.SecurityProtocol]
}
2016-08-31 01:22:41 -07:00
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 12:58:31 -05:00
// and create a local user if success when enabled.
func LoginViaLDAP(login, password string, source *LoginSource, autoRegister bool) (*User, error) {
username, fn, sn, mail, isAdmin, succeed := source.Config.(*LDAPConfig).SearchEntry(login, password, source.Type == LoginDLDAP)
2016-08-31 01:22:41 -07:00
if !succeed {
2014-12-05 18:08:09 -05:00
// User not in LDAP, do nothing
return nil, ErrUserNotExist{args: map[string]interface{}{"login": login}}
2014-05-11 14:12:45 +08:00
}
2014-05-11 14:12:45 +08:00
if !autoRegister {
return nil, nil
2014-05-11 14:12:45 +08:00
}
2014-12-05 18:08:09 -05:00
// Fallback.
if len(username) == 0 {
2016-08-31 01:22:41 -07:00
username = login
}
// Validate username make sure it satisfies requirement.
2016-07-21 14:15:04 +08:00
if binding.AlphaDashDotPattern.MatchString(username) {
return nil, fmt.Errorf("Invalid pattern for attribute 'username' [%s]: must be valid alpha or numeric or dash(-_) or dot characters", username)
}
2014-12-05 18:08:09 -05:00
if len(mail) == 0 {
mail = fmt.Sprintf("%s@localhost", username)
2014-12-05 18:08:09 -05:00
}
user := &User{
LowerName: strings.ToLower(username),
Name: username,
FullName: composeFullName(fn, sn, username),
2016-08-31 01:22:41 -07:00
Email: mail,
2015-09-04 20:39:23 -07:00
LoginSource: source.ID,
2016-08-31 01:22:41 -07:00
LoginName: login,
2014-12-05 18:08:09 -05:00
IsActive: true,
2016-08-31 01:22:41 -07:00
IsAdmin: isAdmin,
2014-05-11 14:12:45 +08:00
}
ok, err := IsUserExist(0, user.Name)
if err != nil {
return user, err
}
if ok {
return user, UpdateUser(user)
}
2016-08-31 01:22:41 -07:00
return user, CreateUser(user)
}
// ***********************
// ----- SMTP config -----
// ***********************
type SMTPConfig struct {
Auth string
Host string
Port int
AllowedDomains string
TLS bool `ini:"tls"`
SkipVerify bool
}
2016-08-31 01:22:41 -07:00
type smtpLoginAuth struct {
2014-05-11 15:49:36 +08:00
username, password string
}
2016-08-31 01:22:41 -07:00
func (auth *smtpLoginAuth) Start(server *smtp.ServerInfo) (string, []byte, error) {
return "LOGIN", []byte(auth.username), nil
2014-05-11 15:49:36 +08:00
}
2016-08-31 01:22:41 -07:00
func (auth *smtpLoginAuth) Next(fromServer []byte, more bool) ([]byte, error) {
2014-05-11 15:49:36 +08:00
if more {
switch string(fromServer) {
case "Username:":
2016-08-31 01:22:41 -07:00
return []byte(auth.username), nil
2014-05-11 15:49:36 +08:00
case "Password:":
2016-08-31 01:22:41 -07:00
return []byte(auth.password), nil
2014-05-11 15:49:36 +08:00
}
}
return nil, nil
}
const (
SMTPPlain = "PLAIN"
SMTPLogin = "LOGIN"
2014-05-11 15:49:36 +08:00
)
var SMTPAuths = []string{SMTPPlain, SMTPLogin}
func SMTPAuth(a smtp.Auth, cfg *SMTPConfig) error {
c, err := smtp.Dial(fmt.Sprintf("%s:%d", cfg.Host, cfg.Port))
2014-05-11 15:49:36 +08:00
if err != nil {
return err
}
defer c.Close()
2014-05-15 14:46:04 -04:00
if err = c.Hello("gogs"); err != nil {
return err
}
if cfg.TLS {
2014-05-11 20:04:28 +08:00
if ok, _ := c.Extension("STARTTLS"); ok {
if err = c.StartTLS(&tls.Config{
InsecureSkipVerify: cfg.SkipVerify,
ServerName: cfg.Host,
}); err != nil {
2014-05-11 20:04:28 +08:00
return err
}
} else {
2014-05-15 23:03:26 -04:00
return errors.New("SMTP server unsupports TLS")
2014-05-11 15:49:36 +08:00
}
}
if ok, _ := c.Extension("AUTH"); ok {
if err = c.Auth(a); err != nil {
return err
}
return nil
}
return errors.New("Unsupported SMTP authentication method")
2014-05-11 15:49:36 +08:00
}
2016-08-31 01:22:41 -07:00
// LoginViaSMTP queries if login/password is valid against the SMTP,
// and create a local user if success when enabled.
func LoginViaSMTP(login, password string, sourceID int64, cfg *SMTPConfig, autoRegister bool) (*User, error) {
// Verify allowed domains.
if len(cfg.AllowedDomains) > 0 {
2016-08-31 01:22:41 -07:00
idx := strings.Index(login, "@")
if idx == -1 {
return nil, ErrUserNotExist{args: map[string]interface{}{"login": login}}
2016-08-31 01:22:41 -07:00
} else if !com.IsSliceContainsStr(strings.Split(cfg.AllowedDomains, ","), login[idx+1:]) {
return nil, ErrUserNotExist{args: map[string]interface{}{"login": login}}
}
}
2014-05-11 15:49:36 +08:00
var auth smtp.Auth
if cfg.Auth == SMTPPlain {
2016-08-31 01:22:41 -07:00
auth = smtp.PlainAuth("", login, password, cfg.Host)
} else if cfg.Auth == SMTPLogin {
2016-08-31 01:22:41 -07:00
auth = &smtpLoginAuth{login, password}
2014-05-11 20:04:28 +08:00
} else {
return nil, errors.New("Unsupported SMTP authentication type")
2014-05-11 15:49:36 +08:00
}
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{args: map[string]interface{}{"login": login}}
2014-05-15 14:46:04 -04:00
}
2014-05-11 15:49:36 +08:00
return nil, err
}
if !autoRegister {
return nil, nil
2014-05-11 15:49:36 +08:00
}
2016-08-31 01:22:41 -07:00
username := login
idx := strings.Index(login, "@")
2014-05-11 20:04:28 +08:00
if idx > -1 {
2016-08-31 01:22:41 -07:00
username = login[:idx]
2014-05-11 20:04:28 +08:00
}
2016-08-31 01:22:41 -07:00
user := &User{
2016-08-31 01:22:41 -07:00
LowerName: strings.ToLower(username),
Name: strings.ToLower(username),
Email: login,
Passwd: password,
LoginSource: sourceID,
2016-08-31 01:22:41 -07:00
LoginName: login,
2014-05-11 15:49:36 +08:00
IsActive: true,
}
2016-08-31 01:22:41 -07:00
return user, CreateUser(user)
2014-05-11 15:49:36 +08:00
}
2015-04-23 13:58:57 +02:00
// **********************
// ----- PAM config -----
// **********************
type PAMConfig struct {
// The name of the PAM service, e.g. system-auth.
ServiceName string
}
2016-08-31 01:22:41 -07:00
// LoginViaPAM queries if login/password is valid against the PAM,
// and create a local user if success when enabled.
func LoginViaPAM(login, password string, sourceID int64, cfg *PAMConfig, autoRegister bool) (*User, error) {
2016-08-31 01:22:41 -07:00
if err := pam.PAMAuth(cfg.ServiceName, login, password); err != nil {
2015-04-23 13:58:57 +02:00
if strings.Contains(err.Error(), "Authentication failure") {
return nil, ErrUserNotExist{args: map[string]interface{}{"login": login}}
2015-04-23 13:58:57 +02:00
}
return nil, err
}
if !autoRegister {
return nil, nil
2015-04-23 13:58:57 +02:00
}
user := &User{
2016-08-31 01:22:41 -07:00
LowerName: strings.ToLower(login),
Name: login,
Email: login,
Passwd: password,
LoginSource: sourceID,
2016-08-31 01:22:41 -07:00
LoginName: login,
2015-04-23 13:58:57 +02:00
IsActive: true,
}
2016-08-31 01:22:41 -07:00
return user, CreateUser(user)
2015-04-23 13:58:57 +02:00
}
// *************************
// ----- GitHub config -----
// *************************
type GitHubConfig struct {
// the GitHub service endpoint, e.g. https://api.github.com/.
APIEndpoint string
}
func LoginViaGitHub(login, password string, sourceID int64, cfg *GitHubConfig, autoRegister bool) (*User, error) {
fullname, email, url, location, err := github.Authenticate(cfg.APIEndpoint, login, password)
if err != nil {
if strings.Contains(err.Error(), "401") {
return nil, ErrUserNotExist{args: map[string]interface{}{"login": login}}
}
return nil, err
}
if !autoRegister {
return nil, nil
}
user := &User{
LowerName: strings.ToLower(login),
Name: login,
FullName: fullname,
Email: email,
Website: url,
Passwd: password,
LoginSource: sourceID,
LoginName: login,
IsActive: true,
Location: location,
}
return user, CreateUser(user)
}
func authenticateViaLoginSource(source *LoginSource, login, password string, autoRegister bool) (*User, error) {
if !source.IsActived {
return nil, errors.LoginSourceNotActivated{SourceID: source.ID}
}
switch source.Type {
case LoginLDAP, LoginDLDAP:
return LoginViaLDAP(login, password, source, autoRegister)
case LoginSMTP:
return LoginViaSMTP(login, password, source.ID, source.Config.(*SMTPConfig), autoRegister)
case LoginPAM:
return LoginViaPAM(login, password, source.ID, source.Config.(*PAMConfig), autoRegister)
case LoginGitHub:
return LoginViaGitHub(login, password, source.ID, source.Config.(*GitHubConfig), autoRegister)
}
return nil, errors.InvalidLoginSourceType{Type: source.Type}
}