2016-11-03 18:16:01 -04:00
|
|
|
package ldap
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2019-02-18 07:34:37 -05:00
|
|
|
"fmt"
|
2016-11-03 18:16:01 -04:00
|
|
|
|
|
|
|
"gopkg.in/asn1-ber.v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SimpleBindRequest represents a username/password bind operation
|
|
|
|
type SimpleBindRequest struct {
|
|
|
|
// Username is the name of the Directory object that the client wishes to bind as
|
|
|
|
Username string
|
|
|
|
// Password is the credentials to bind with
|
|
|
|
Password string
|
|
|
|
// Controls are optional controls to send with the bind request
|
|
|
|
Controls []Control
|
2019-02-18 07:34:37 -05:00
|
|
|
// AllowEmptyPassword sets whether the client allows binding with an empty password
|
|
|
|
// (normally used for unauthenticated bind).
|
|
|
|
AllowEmptyPassword bool
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// SimpleBindResult contains the response from the server
|
|
|
|
type SimpleBindResult struct {
|
|
|
|
Controls []Control
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSimpleBindRequest returns a bind request
|
|
|
|
func NewSimpleBindRequest(username string, password string, controls []Control) *SimpleBindRequest {
|
|
|
|
return &SimpleBindRequest{
|
2019-02-18 07:34:37 -05:00
|
|
|
Username: username,
|
|
|
|
Password: password,
|
|
|
|
Controls: controls,
|
|
|
|
AllowEmptyPassword: false,
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bindRequest *SimpleBindRequest) encode() *ber.Packet {
|
|
|
|
request := ber.Encode(ber.ClassApplication, ber.TypeConstructed, ApplicationBindRequest, nil, "Bind Request")
|
|
|
|
request.AppendChild(ber.NewInteger(ber.ClassUniversal, ber.TypePrimitive, ber.TagInteger, 3, "Version"))
|
|
|
|
request.AppendChild(ber.NewString(ber.ClassUniversal, ber.TypePrimitive, ber.TagOctetString, bindRequest.Username, "User Name"))
|
|
|
|
request.AppendChild(ber.NewString(ber.ClassContext, ber.TypePrimitive, 0, bindRequest.Password, "Password"))
|
|
|
|
|
|
|
|
return request
|
|
|
|
}
|
|
|
|
|
|
|
|
// SimpleBind performs the simple bind operation defined in the given request
|
|
|
|
func (l *Conn) SimpleBind(simpleBindRequest *SimpleBindRequest) (*SimpleBindResult, error) {
|
2019-02-18 07:34:37 -05:00
|
|
|
if simpleBindRequest.Password == "" && !simpleBindRequest.AllowEmptyPassword {
|
|
|
|
return nil, NewError(ErrorEmptyPassword, errors.New("ldap: empty password not allowed by the client"))
|
|
|
|
}
|
|
|
|
|
2016-11-03 18:16:01 -04:00
|
|
|
packet := ber.Encode(ber.ClassUniversal, ber.TypeConstructed, ber.TagSequence, nil, "LDAP Request")
|
|
|
|
packet.AppendChild(ber.NewInteger(ber.ClassUniversal, ber.TypePrimitive, ber.TagInteger, l.nextMessageID(), "MessageID"))
|
|
|
|
encodedBindRequest := simpleBindRequest.encode()
|
|
|
|
packet.AppendChild(encodedBindRequest)
|
2019-02-18 07:34:37 -05:00
|
|
|
if len(simpleBindRequest.Controls) > 0 {
|
|
|
|
packet.AppendChild(encodeControls(simpleBindRequest.Controls))
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
|
|
|
if l.Debug {
|
|
|
|
ber.PrintPacket(packet)
|
|
|
|
}
|
|
|
|
|
|
|
|
msgCtx, err := l.sendMessage(packet)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer l.finishMessage(msgCtx)
|
|
|
|
|
|
|
|
packetResponse, ok := <-msgCtx.responses
|
|
|
|
if !ok {
|
|
|
|
return nil, NewError(ErrorNetwork, errors.New("ldap: response channel closed"))
|
|
|
|
}
|
|
|
|
packet, err = packetResponse.ReadPacket()
|
|
|
|
l.Debug.Printf("%d: got response %p", msgCtx.id, packet)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if l.Debug {
|
2019-02-18 07:34:37 -05:00
|
|
|
if err = addLDAPDescriptions(packet); err != nil {
|
2016-11-03 18:16:01 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
ber.PrintPacket(packet)
|
|
|
|
}
|
|
|
|
|
|
|
|
result := &SimpleBindResult{
|
|
|
|
Controls: make([]Control, 0),
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(packet.Children) == 3 {
|
|
|
|
for _, child := range packet.Children[2].Children {
|
2019-02-18 07:34:37 -05:00
|
|
|
decodedChild, decodeErr := DecodeControl(child)
|
|
|
|
if decodeErr != nil {
|
|
|
|
return nil, fmt.Errorf("failed to decode child control: %s", decodeErr)
|
|
|
|
}
|
|
|
|
result.Controls = append(result.Controls, decodedChild)
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-18 07:34:37 -05:00
|
|
|
err = GetLDAPError(packet)
|
|
|
|
return result, err
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
|
|
|
|
2019-02-18 07:34:37 -05:00
|
|
|
// Bind performs a bind with the given username and password.
|
|
|
|
//
|
|
|
|
// It does not allow unauthenticated bind (i.e. empty password). Use the UnauthenticatedBind method
|
|
|
|
// for that.
|
2016-11-03 18:16:01 -04:00
|
|
|
func (l *Conn) Bind(username, password string) error {
|
2019-02-18 07:34:37 -05:00
|
|
|
req := &SimpleBindRequest{
|
|
|
|
Username: username,
|
|
|
|
Password: password,
|
|
|
|
AllowEmptyPassword: false,
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2019-02-18 07:34:37 -05:00
|
|
|
_, err := l.SimpleBind(req)
|
|
|
|
return err
|
|
|
|
}
|
2016-11-03 18:16:01 -04:00
|
|
|
|
2019-02-18 07:34:37 -05:00
|
|
|
// UnauthenticatedBind performs an unauthenticated bind.
|
|
|
|
//
|
|
|
|
// A username may be provided for trace (e.g. logging) purpose only, but it is normally not
|
|
|
|
// authenticated or otherwise validated by the LDAP server.
|
|
|
|
//
|
|
|
|
// See https://tools.ietf.org/html/rfc4513#section-5.1.2 .
|
|
|
|
// See https://tools.ietf.org/html/rfc4513#section-6.3.1 .
|
|
|
|
func (l *Conn) UnauthenticatedBind(username string) error {
|
|
|
|
req := &SimpleBindRequest{
|
|
|
|
Username: username,
|
|
|
|
Password: "",
|
|
|
|
AllowEmptyPassword: true,
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|
2019-02-18 07:34:37 -05:00
|
|
|
_, err := l.SimpleBind(req)
|
|
|
|
return err
|
2016-11-03 18:16:01 -04:00
|
|
|
}
|