Skip to content

Commit ab362f6

Browse files
author
OpenShift Bot
authored
Merge pull request #12105 from liggitt/ldap-fix
Merged by openshift-bot
2 parents f20ac82 + c89bd66 commit ab362f6

23 files changed

+790
-322
lines changed

Godeps/Godeps.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/auth/ldaputil/query.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,15 @@ type LDAPQueryOnAttribute struct {
105105
// the attribute to be filtered as well as any attributes that need to be recovered
106106
func (o *LDAPQueryOnAttribute) NewSearchRequest(attributeValue string, attributes []string) (*ldap.SearchRequest, error) {
107107
if strings.EqualFold(o.QueryAttribute, "dn") {
108-
if _, err := ldap.ParseDN(attributeValue); err != nil {
108+
dn, err := ldap.ParseDN(attributeValue)
109+
if err != nil {
109110
return nil, fmt.Errorf("could not search by dn, invalid dn value: %v", err)
110111
}
111-
if !strings.Contains(attributeValue, o.BaseDN) {
112+
baseDN, err := ldap.ParseDN(o.BaseDN)
113+
if err != nil {
114+
return nil, fmt.Errorf("could not search by dn, invalid dn value: %v", err)
115+
}
116+
if !baseDN.AncestorOf(dn) && !baseDN.Equal(dn) {
112117
return nil, NewQueryOutOfBoundsError(attributeValue, o.BaseDN)
113118
}
114119
return o.buildDNQuery(attributeValue, attributes), nil

pkg/auth/ldaputil/testclient/testclient.go

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package testclient
22

33
import (
44
"crypto/tls"
5+
"time"
56

67
"gopkg.in/ldap.v2"
78
)
@@ -95,6 +96,10 @@ func (c *Fake) SearchWithPaging(searchRequest *ldap.SearchRequest, pagingSize ui
9596
return c.SearchResponse, nil
9697
}
9798

99+
// SetTimeout sets a timeout on the client
100+
func (c *Fake) SetTimeout(d time.Duration) {
101+
}
102+
98103
// NewMatchingSearchErrorClient returns a new MatchingSearchError client sitting on top of the parent
99104
// client. This client returns the given error when a search base DN matches the given base DN, and
100105
// defers to the parent otherwise.

pkg/cmd/admin/groups/sync/ad/augmented_ldapinterface_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ func TestGroupEntryFor(t *testing.T) {
6767
},
6868
{
6969
name: "search request error",
70-
baseDNOverride: "otherBaseDN",
71-
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testGroup,ou=groups,dc=example,dc=com", "otherBaseDN"),
70+
baseDNOverride: "dc=foo",
71+
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testGroup,ou=groups,dc=example,dc=com", "dc=foo"),
7272
expectedEntry: nil,
7373
},
7474
{

pkg/cmd/admin/groups/sync/rfc2307/ldapinterface_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ func TestGroupEntryFor(t *testing.T) {
192192
},
193193
{
194194
name: "search request failure",
195-
queryBaseDNOverride: "otherBaseDN",
196-
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testGroup,ou=groups,dc=example,dc=com", "otherBaseDN"),
195+
queryBaseDNOverride: "dc=foo",
196+
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testGroup,ou=groups,dc=example,dc=com", "dc=foo"),
197197
expectedEntry: nil,
198198
},
199199
{
@@ -312,8 +312,8 @@ func TestUserEntryFor(t *testing.T) {
312312
},
313313
{
314314
name: "search request failure",
315-
queryBaseDNOverride: "otherBaseDN",
316-
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testUser,ou=users,dc=example,dc=com", "otherBaseDN"),
315+
queryBaseDNOverride: "dc=foo",
316+
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testUser,ou=users,dc=example,dc=com", "dc=foo"),
317317
expectedEntry: nil,
318318
},
319319
{

vendor/gopkg.in/ldap.v2/.travis.yml

+15-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/gopkg.in/ldap.v2/LICENSE

+19-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/gopkg.in/ldap.v2/Makefile

+42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/gopkg.in/ldap.v2/README.md

+13-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/gopkg.in/ldap.v2/add.go

+32-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)