2015-08-16 08:31:54 +02:00
// Copyright 2014 The Gogs Authors. All rights reserved.
2014-04-22 18:55:27 +02:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2015-08-16 08:31:54 +02:00
// Package ldap provide functions & structure to query a LDAP ldap directory
2014-04-22 18:55:27 +02:00
// For now, it's mainly tested again an MS Active Directory service, see README.md for more information
package ldap
import (
2015-09-14 21:48:51 +02:00
"crypto/tls"
2014-04-22 18:55:27 +02:00
"fmt"
2015-10-27 02:08:59 +01:00
"strings"
2014-05-03 04:48:14 +02:00
2015-11-26 20:04:58 +01:00
"gopkg.in/ldap.v2"
2016-11-10 17:24:48 +01:00
"code.gitea.io/gitea/modules/log"
2014-04-22 18:55:27 +02:00
)
2016-11-27 07:03:59 +01:00
// SecurityProtocol protocol type
2016-07-08 01:25:09 +02:00
type SecurityProtocol int
// Note: new type must be added at the end of list to maintain compatibility.
const (
2016-11-07 17:38:43 +01:00
SecurityProtocolUnencrypted SecurityProtocol = iota
2016-11-07 21:58:22 +01:00
SecurityProtocolLDAPS
SecurityProtocolStartTLS
2016-07-08 01:25:09 +02:00
)
2016-11-27 07:03:59 +01:00
// Source Basic LDAP authentication service
2015-09-14 21:48:51 +02:00
type Source struct {
2015-12-01 14:49:49 +01:00
Name string // canonical name (ie. corporate.ad)
Host string // LDAP host
Port int // port number
2016-07-08 01:25:09 +02:00
SecurityProtocol SecurityProtocol
2015-12-01 14:49:49 +01:00
SkipVerify bool
BindDN string // DN to bind with
BindPassword string // Bind DN password
UserBase string // Base search path for users
UserDN string // Template for the DN of the user for simple auth
AttributeUsername string // Username attribute
AttributeName string // First name attribute
AttributeSurname string // Surname attribute
AttributeMail string // E-mail attribute
2016-02-16 12:33:16 +01:00
AttributesInBind bool // fetch attributes in bind context (not user)
2015-12-01 14:49:49 +01:00
Filter string // Query filter to validate entry
AdminFilter string // Query filter to check if user is admin
Enabled bool // if this source is disabled
2014-04-22 18:55:27 +02:00
}
2015-10-27 02:08:59 +01:00
func ( ls * Source ) sanitizedUserQuery ( username string ) ( string , bool ) {
// See http://tools.ietf.org/search/rfc4515
badCharacters := "\x00()*\\"
if strings . ContainsAny ( username , badCharacters ) {
log . Debug ( "'%s' contains invalid query characters. Aborting." , username )
return "" , false
}
return fmt . Sprintf ( ls . Filter , username ) , true
}
func ( ls * Source ) sanitizedUserDN ( username string ) ( string , bool ) {
// See http://tools.ietf.org/search/rfc4514: "special characters"
badCharacters := "\x00()*\\,='\"#+;<> "
if strings . ContainsAny ( username , badCharacters ) {
log . Debug ( "'%s' contains invalid DN characters. Aborting." , username )
return "" , false
}
return fmt . Sprintf ( ls . UserDN , username ) , true
}
2016-02-16 11:58:00 +01:00
func ( ls * Source ) findUserDN ( l * ldap . Conn , name string ) ( string , bool ) {
2015-08-13 01:58:27 +02:00
log . Trace ( "Search for LDAP user: %s" , name )
if ls . BindDN != "" && ls . BindPassword != "" {
2016-02-16 11:58:00 +01:00
err := l . Bind ( ls . BindDN , ls . BindPassword )
2015-08-13 01:58:27 +02:00
if err != nil {
2015-08-17 22:03:11 +02:00
log . Debug ( "Failed to bind as BindDN[%s]: %v" , ls . BindDN , err )
2015-08-16 08:31:54 +02:00
return "" , false
2014-04-22 18:55:27 +02:00
}
2015-08-13 01:58:27 +02:00
log . Trace ( "Bound as BindDN %s" , ls . BindDN )
} else {
log . Trace ( "Proceeding with anonymous LDAP search." )
}
// A search for the user.
2015-10-27 02:08:59 +01:00
userFilter , ok := ls . sanitizedUserQuery ( name )
if ! ok {
return "" , false
}
2016-02-16 12:36:40 +01:00
log . Trace ( "Searching for DN using filter %s and base %s" , userFilter , ls . UserBase )
2015-08-13 01:58:27 +02:00
search := ldap . NewSearchRequest (
ls . UserBase , ldap . ScopeWholeSubtree , ldap . NeverDerefAliases , 0 , 0 ,
false , userFilter , [ ] string { } , nil )
// Ensure we found a user
sr , err := l . Search ( search )
if err != nil || len ( sr . Entries ) < 1 {
2015-08-17 22:03:11 +02:00
log . Debug ( "Failed search using filter[%s]: %v" , userFilter , err )
2015-08-16 08:31:54 +02:00
return "" , false
2015-08-13 01:58:27 +02:00
} else if len ( sr . Entries ) > 1 {
log . Debug ( "Filter '%s' returned more than one user." , userFilter )
2015-08-16 08:31:54 +02:00
return "" , false
2014-04-22 18:55:27 +02:00
}
2015-08-13 01:58:27 +02:00
2015-08-16 08:31:54 +02:00
userDN := sr . Entries [ 0 ] . DN
2015-08-13 01:58:27 +02:00
if userDN == "" {
2015-12-06 15:42:23 +01:00
log . Error ( 4 , "LDAP search was successful, but found no DN!" )
2015-08-16 08:31:54 +02:00
return "" , false
2015-08-13 01:58:27 +02:00
}
2015-08-16 08:31:54 +02:00
return userDN , true
2014-04-22 18:55:27 +02:00
}
2016-07-08 01:25:09 +02:00
func dial ( ls * Source ) ( * ldap . Conn , error ) {
log . Trace ( "Dialing LDAP with security protocol (%v) without verifying: %v" , ls . SecurityProtocol , ls . SkipVerify )
tlsCfg := & tls . Config {
ServerName : ls . Host ,
InsecureSkipVerify : ls . SkipVerify ,
}
2016-11-07 21:58:22 +01:00
if ls . SecurityProtocol == SecurityProtocolLDAPS {
2016-07-08 01:25:09 +02:00
return ldap . DialTLS ( "tcp" , fmt . Sprintf ( "%s:%d" , ls . Host , ls . Port ) , tlsCfg )
}
conn , err := ldap . Dial ( "tcp" , fmt . Sprintf ( "%s:%d" , ls . Host , ls . Port ) )
if err != nil {
return nil , fmt . Errorf ( "Dial: %v" , err )
}
2016-11-07 21:58:22 +01:00
if ls . SecurityProtocol == SecurityProtocolStartTLS {
2016-07-08 01:25:09 +02:00
if err = conn . StartTLS ( tlsCfg ) ; err != nil {
conn . Close ( )
return nil , fmt . Errorf ( "StartTLS: %v" , err )
}
}
return conn , nil
}
func bindUser ( l * ldap . Conn , userDN , passwd string ) error {
log . Trace ( "Binding with userDN: %s" , userDN )
err := l . Bind ( userDN , passwd )
if err != nil {
log . Debug ( "LDAP auth. failed for %s, reason: %v" , userDN , err )
return err
}
log . Trace ( "Bound successfully with userDN: %s" , userDN )
return err
}
2016-11-27 07:03:59 +01:00
// SearchEntry : search an LDAP source if an entry (name, passwd) is valid and in the specific filter
2015-12-01 14:49:49 +01:00
func ( ls * Source ) SearchEntry ( name , passwd string , directBind bool ) ( string , string , string , string , bool , bool ) {
2016-12-12 01:46:51 +01:00
// See https://tools.ietf.org/search/rfc4513#section-5.1.2
if len ( passwd ) == 0 {
log . Debug ( "Auth. failed for %s, password cannot be empty" )
return "" , "" , "" , "" , false , false
}
2016-07-08 01:25:09 +02:00
l , err := dial ( ls )
2016-02-16 11:58:00 +01:00
if err != nil {
log . Error ( 4 , "LDAP Connect error, %s:%v" , ls . Host , err )
ls . Enabled = false
return "" , "" , "" , "" , false , false
}
defer l . Close ( )
2015-09-05 05:39:23 +02:00
var userDN string
if directBind {
2015-09-16 18:15:14 +02:00
log . Trace ( "LDAP will bind directly via UserDN template: %s" , ls . UserDN )
2015-10-27 02:08:59 +01:00
var ok bool
userDN , ok = ls . sanitizedUserDN ( name )
if ! ok {
2015-12-01 14:49:49 +01:00
return "" , "" , "" , "" , false , false
2015-10-27 02:08:59 +01:00
}
2015-09-05 05:39:23 +02:00
} else {
log . Trace ( "LDAP will use BindDN." )
var found bool
2016-02-16 11:58:00 +01:00
userDN , found = ls . findUserDN ( l , name )
2015-09-05 05:39:23 +02:00
if ! found {
2015-12-01 14:49:49 +01:00
return "" , "" , "" , "" , false , false
2015-09-05 05:39:23 +02:00
}
2015-08-13 01:58:27 +02:00
}
2016-02-16 12:33:16 +01:00
if directBind || ! ls . AttributesInBind {
// binds user (checking password) before looking-up attributes in user context
err = bindUser ( l , userDN , passwd )
if err != nil {
return "" , "" , "" , "" , false , false
}
2014-04-22 18:55:27 +02:00
}
2015-10-27 02:08:59 +01:00
userFilter , ok := ls . sanitizedUserQuery ( name )
if ! ok {
2015-12-01 14:49:49 +01:00
return "" , "" , "" , "" , false , false
2015-10-27 02:08:59 +01:00
}
2016-02-16 12:36:40 +01:00
log . Trace ( "Fetching attributes '%v', '%v', '%v', '%v' with filter %s and base %s" , ls . AttributeUsername , ls . AttributeName , ls . AttributeSurname , ls . AttributeMail , userFilter , userDN )
2014-09-08 02:04:47 +02:00
search := ldap . NewSearchRequest (
2015-08-13 01:58:27 +02:00
userDN , ldap . ScopeWholeSubtree , ldap . NeverDerefAliases , 0 , 0 , false , userFilter ,
2016-02-07 18:18:29 +01:00
[ ] string { ls . AttributeUsername , ls . AttributeName , ls . AttributeSurname , ls . AttributeMail } ,
2014-04-22 18:55:27 +02:00
nil )
2015-08-13 01:58:27 +02:00
2014-04-22 18:55:27 +02:00
sr , err := l . Search ( search )
if err != nil {
2015-08-17 22:03:11 +02:00
log . Error ( 4 , "LDAP Search failed unexpectedly! (%v)" , err )
2015-12-01 14:49:49 +01:00
return "" , "" , "" , "" , false , false
2015-08-13 01:58:27 +02:00
} else if len ( sr . Entries ) < 1 {
2015-09-05 05:39:23 +02:00
if directBind {
log . Error ( 4 , "User filter inhibited user login." )
} else {
log . Error ( 4 , "LDAP Search failed unexpectedly! (0 entries)" )
}
2015-12-01 14:49:49 +01:00
return "" , "" , "" , "" , false , false
2014-04-22 18:55:27 +02:00
}
2015-08-13 01:58:27 +02:00
2016-07-12 01:07:57 +02:00
username := sr . Entries [ 0 ] . GetAttributeValue ( ls . AttributeUsername )
firstname := sr . Entries [ 0 ] . GetAttributeValue ( ls . AttributeName )
surname := sr . Entries [ 0 ] . GetAttributeValue ( ls . AttributeSurname )
mail := sr . Entries [ 0 ] . GetAttributeValue ( ls . AttributeMail )
2015-08-19 06:34:03 +02:00
2016-07-12 01:07:57 +02:00
isAdmin := false
2015-09-01 14:40:11 +02:00
if len ( ls . AdminFilter ) > 0 {
2016-02-16 12:36:40 +01:00
log . Trace ( "Checking admin with filter %s and base %s" , ls . AdminFilter , userDN )
2015-09-01 14:40:11 +02:00
search = ldap . NewSearchRequest (
userDN , ldap . ScopeWholeSubtree , ldap . NeverDerefAliases , 0 , 0 , false , ls . AdminFilter ,
[ ] string { ls . AttributeName } ,
nil )
sr , err = l . Search ( search )
if err != nil {
log . Error ( 4 , "LDAP Admin Search failed unexpectedly! (%v)" , err )
} else if len ( sr . Entries ) < 1 {
log . Error ( 4 , "LDAP Admin Search failed" )
} else {
2016-07-12 01:07:57 +02:00
isAdmin = true
2015-09-01 14:40:11 +02:00
}
2015-08-19 06:34:03 +02:00
}
2016-02-16 12:33:16 +01:00
if ! directBind && ls . AttributesInBind {
// binds user (checking password) after looking-up attributes in BindDN context
err = bindUser ( l , userDN , passwd )
if err != nil {
return "" , "" , "" , "" , false , false
}
}
2016-07-12 01:07:57 +02:00
return username , firstname , surname , mail , isAdmin , true
2014-04-22 18:55:27 +02:00
}