2016-07-25 20:00:28 +00:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package ldap
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"gopkg.in/asn1-ber.v1"
|
|
|
|
)
|
|
|
|
|
2018-11-12 18:39:20 +00:00
|
|
|
// SimpleBindRequest represents a username/password bind operation
|
2016-07-25 20:00:28 +00:00
|
|
|
type SimpleBindRequest struct {
|
2018-11-12 18:39:20 +00:00
|
|
|
// Username is the name of the Directory object that the client wishes to bind as
|
2016-07-25 20:00:28 +00:00
|
|
|
Username string
|
2018-11-12 18:39:20 +00:00
|
|
|
// Password is the credentials to bind with
|
2016-07-25 20:00:28 +00:00
|
|
|
Password string
|
2018-11-12 18:39:20 +00:00
|
|
|
// Controls are optional controls to send with the bind request
|
2016-07-25 20:00:28 +00:00
|
|
|
Controls []Control
|
|
|
|
}
|
|
|
|
|
2018-11-12 18:39:20 +00:00
|
|
|
// SimpleBindResult contains the response from the server
|
2016-07-25 20:00:28 +00:00
|
|
|
type SimpleBindResult struct {
|
|
|
|
Controls []Control
|
|
|
|
}
|
|
|
|
|
2018-11-12 18:39:20 +00:00
|
|
|
// NewSimpleBindRequest returns a bind request
|
2016-07-25 20:00:28 +00:00
|
|
|
func NewSimpleBindRequest(username string, password string, controls []Control) *SimpleBindRequest {
|
|
|
|
return &SimpleBindRequest{
|
|
|
|
Username: username,
|
|
|
|
Password: password,
|
|
|
|
Controls: controls,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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"))
|
|
|
|
|
|
|
|
request.AppendChild(encodeControls(bindRequest.Controls))
|
|
|
|
|
|
|
|
return request
|
|
|
|
}
|
|
|
|
|
2018-11-12 18:39:20 +00:00
|
|
|
// SimpleBind performs the simple bind operation defined in the given request
|
2016-07-25 20:00:28 +00:00
|
|
|
func (l *Conn) SimpleBind(simpleBindRequest *SimpleBindRequest) (*SimpleBindResult, error) {
|
|
|
|
packet := ber.Encode(ber.ClassUniversal, ber.TypeConstructed, ber.TagSequence, nil, "LDAP Request")
|
2018-11-12 18:39:20 +00:00
|
|
|
packet.AppendChild(ber.NewInteger(ber.ClassUniversal, ber.TypePrimitive, ber.TagInteger, l.nextMessageID(), "MessageID"))
|
2016-07-25 20:00:28 +00:00
|
|
|
encodedBindRequest := simpleBindRequest.encode()
|
|
|
|
packet.AppendChild(encodedBindRequest)
|
|
|
|
|
|
|
|
if l.Debug {
|
|
|
|
ber.PrintPacket(packet)
|
|
|
|
}
|
|
|
|
|
2018-11-12 18:39:20 +00:00
|
|
|
msgCtx, err := l.sendMessage(packet)
|
2016-07-25 20:00:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-11-12 18:39:20 +00:00
|
|
|
defer l.finishMessage(msgCtx)
|
2016-07-25 20:00:28 +00:00
|
|
|
|
2018-11-12 18:39:20 +00:00
|
|
|
packetResponse, ok := <-msgCtx.responses
|
2016-07-25 20:00:28 +00:00
|
|
|
if !ok {
|
2018-11-12 18:39:20 +00:00
|
|
|
return nil, NewError(ErrorNetwork, errors.New("ldap: response channel closed"))
|
2016-07-25 20:00:28 +00:00
|
|
|
}
|
|
|
|
packet, err = packetResponse.ReadPacket()
|
2018-11-12 18:39:20 +00:00
|
|
|
l.Debug.Printf("%d: got response %p", msgCtx.id, packet)
|
2016-07-25 20:00:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if l.Debug {
|
|
|
|
if err := addLDAPDescriptions(packet); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
ber.PrintPacket(packet)
|
|
|
|
}
|
|
|
|
|
|
|
|
result := &SimpleBindResult{
|
|
|
|
Controls: make([]Control, 0),
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(packet.Children) == 3 {
|
|
|
|
for _, child := range packet.Children[2].Children {
|
|
|
|
result.Controls = append(result.Controls, DecodeControl(child))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resultCode, resultDescription := getLDAPResultCode(packet)
|
|
|
|
if resultCode != 0 {
|
|
|
|
return result, NewError(resultCode, errors.New(resultDescription))
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
2018-11-12 18:39:20 +00:00
|
|
|
// Bind performs a bind with the given username and password
|
2016-07-25 20:00:28 +00:00
|
|
|
func (l *Conn) Bind(username, password string) error {
|
|
|
|
packet := ber.Encode(ber.ClassUniversal, ber.TypeConstructed, ber.TagSequence, nil, "LDAP Request")
|
2018-11-12 18:39:20 +00:00
|
|
|
packet.AppendChild(ber.NewInteger(ber.ClassUniversal, ber.TypePrimitive, ber.TagInteger, l.nextMessageID(), "MessageID"))
|
2016-07-25 20:00:28 +00:00
|
|
|
bindRequest := ber.Encode(ber.ClassApplication, ber.TypeConstructed, ApplicationBindRequest, nil, "Bind Request")
|
|
|
|
bindRequest.AppendChild(ber.NewInteger(ber.ClassUniversal, ber.TypePrimitive, ber.TagInteger, 3, "Version"))
|
|
|
|
bindRequest.AppendChild(ber.NewString(ber.ClassUniversal, ber.TypePrimitive, ber.TagOctetString, username, "User Name"))
|
|
|
|
bindRequest.AppendChild(ber.NewString(ber.ClassContext, ber.TypePrimitive, 0, password, "Password"))
|
|
|
|
packet.AppendChild(bindRequest)
|
|
|
|
|
|
|
|
if l.Debug {
|
|
|
|
ber.PrintPacket(packet)
|
|
|
|
}
|
|
|
|
|
2018-11-12 18:39:20 +00:00
|
|
|
msgCtx, err := l.sendMessage(packet)
|
2016-07-25 20:00:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-11-12 18:39:20 +00:00
|
|
|
defer l.finishMessage(msgCtx)
|
2016-07-25 20:00:28 +00:00
|
|
|
|
2018-11-12 18:39:20 +00:00
|
|
|
packetResponse, ok := <-msgCtx.responses
|
2016-07-25 20:00:28 +00:00
|
|
|
if !ok {
|
2018-11-12 18:39:20 +00:00
|
|
|
return NewError(ErrorNetwork, errors.New("ldap: response channel closed"))
|
2016-07-25 20:00:28 +00:00
|
|
|
}
|
|
|
|
packet, err = packetResponse.ReadPacket()
|
2018-11-12 18:39:20 +00:00
|
|
|
l.Debug.Printf("%d: got response %p", msgCtx.id, packet)
|
2016-07-25 20:00:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if l.Debug {
|
|
|
|
if err := addLDAPDescriptions(packet); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ber.PrintPacket(packet)
|
|
|
|
}
|
|
|
|
|
|
|
|
resultCode, resultDescription := getLDAPResultCode(packet)
|
|
|
|
if resultCode != 0 {
|
|
|
|
return NewError(resultCode, errors.New(resultDescription))
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|