Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compare object DN to BaseDN using structured comparison #12105

Merged
merged 2 commits into from
Dec 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions pkg/auth/ldaputil/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,15 @@ type LDAPQueryOnAttribute struct {
// the attribute to be filtered as well as any attributes that need to be recovered
func (o *LDAPQueryOnAttribute) NewSearchRequest(attributeValue string, attributes []string) (*ldap.SearchRequest, error) {
if strings.EqualFold(o.QueryAttribute, "dn") {
if _, err := ldap.ParseDN(attributeValue); err != nil {
dn, err := ldap.ParseDN(attributeValue)
if err != nil {
return nil, fmt.Errorf("could not search by dn, invalid dn value: %v", err)
}
if !strings.Contains(attributeValue, o.BaseDN) {
baseDN, err := ldap.ParseDN(o.BaseDN)
if err != nil {
return nil, fmt.Errorf("could not search by dn, invalid dn value: %v", err)
}
if !baseDN.AncestorOf(dn) && !baseDN.Equal(dn) {
return nil, NewQueryOutOfBoundsError(attributeValue, o.BaseDN)
}
return o.buildDNQuery(attributeValue, attributes), nil
Expand Down
5 changes: 5 additions & 0 deletions pkg/auth/ldaputil/testclient/testclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package testclient

import (
"crypto/tls"
"time"

"gopkg.in/ldap.v2"
)
Expand Down Expand Up @@ -95,6 +96,10 @@ func (c *Fake) SearchWithPaging(searchRequest *ldap.SearchRequest, pagingSize ui
return c.SearchResponse, nil
}

// SetTimeout sets a timeout on the client
func (c *Fake) SetTimeout(d time.Duration) {
}

// NewMatchingSearchErrorClient returns a new MatchingSearchError client sitting on top of the parent
// client. This client returns the given error when a search base DN matches the given base DN, and
// defers to the parent otherwise.
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/admin/groups/sync/ad/augmented_ldapinterface_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ func TestGroupEntryFor(t *testing.T) {
},
{
name: "search request error",
baseDNOverride: "otherBaseDN",
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testGroup,ou=groups,dc=example,dc=com", "otherBaseDN"),
baseDNOverride: "dc=foo",
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testGroup,ou=groups,dc=example,dc=com", "dc=foo"),
expectedEntry: nil,
},
{
Expand Down
8 changes: 4 additions & 4 deletions pkg/cmd/admin/groups/sync/rfc2307/ldapinterface_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ func TestGroupEntryFor(t *testing.T) {
},
{
name: "search request failure",
queryBaseDNOverride: "otherBaseDN",
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testGroup,ou=groups,dc=example,dc=com", "otherBaseDN"),
queryBaseDNOverride: "dc=foo",
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testGroup,ou=groups,dc=example,dc=com", "dc=foo"),
expectedEntry: nil,
},
{
Expand Down Expand Up @@ -312,8 +312,8 @@ func TestUserEntryFor(t *testing.T) {
},
{
name: "search request failure",
queryBaseDNOverride: "otherBaseDN",
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testUser,ou=users,dc=example,dc=com", "otherBaseDN"),
queryBaseDNOverride: "dc=foo",
expectedError: ldaputil.NewQueryOutOfBoundsError("cn=testUser,ou=users,dc=example,dc=com", "dc=foo"),
expectedEntry: nil,
},
{
Expand Down
16 changes: 15 additions & 1 deletion vendor/gopkg.in/ldap.v2/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 19 additions & 24 deletions vendor/gopkg.in/ldap.v2/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions vendor/gopkg.in/ldap.v2/Makefile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 13 additions & 15 deletions vendor/gopkg.in/ldap.v2/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 32 additions & 23 deletions vendor/gopkg.in/ldap.v2/add.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading