This repository has been archived by the owner on Jul 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
query.go
248 lines (214 loc) · 8.37 KB
/
query.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package ldaputil
import (
"fmt"
"strings"
"github.com/golang/glog"
"gopkg.in/ldap.v2"
"github.com/openshift/origin/pkg/auth/ldaputil/ldapclient"
"github.com/openshift/origin/pkg/cmd/server/api"
)
// NewLDAPQuery converts a user-provided LDAPQuery into a version we can use
func NewLDAPQuery(config api.LDAPQuery) (LDAPQuery, error) {
scope, err := DetermineLDAPScope(config.Scope)
if err != nil {
return LDAPQuery{}, err
}
derefAliases, err := DetermineDerefAliasesBehavior(config.DerefAliases)
if err != nil {
return LDAPQuery{}, err
}
return LDAPQuery{
BaseDN: config.BaseDN,
Scope: scope,
DerefAliases: derefAliases,
TimeLimit: config.TimeLimit,
Filter: config.Filter,
PageSize: config.PageSize,
}, nil
}
// LDAPQuery encodes an LDAP query
type LDAPQuery struct {
// The DN of the branch of the directory where all searches should start from
BaseDN string
// The (optional) scope of the search. Defaults to the entire subtree if not set
Scope Scope
// The (optional) behavior of the search with regards to alisases. Defaults to always
// dereferencing if not set
DerefAliases DerefAliases
// TimeLimit holds the limit of time in seconds that any request to the server can remain outstanding
// before the wait for a response is given up. If this is 0, no client-side limit is imposed
TimeLimit int
// Filter is a valid LDAP search filter that retrieves all relevant entries from the LDAP server with the base DN
Filter string
// PageSize is the maximum preferred page size, measured in LDAP entries. A page size of 0 means no paging will be done.
PageSize int
}
// NewSearchRequest creates a new search request for the LDAP query and optionally includes more attributes
func (q *LDAPQuery) NewSearchRequest(additionalAttributes []string) *ldap.SearchRequest {
var controls []ldap.Control
if q.PageSize > 0 {
controls = append(controls, ldap.NewControlPaging(uint32(q.PageSize)))
}
return ldap.NewSearchRequest(
q.BaseDN,
int(q.Scope),
int(q.DerefAliases),
0, // allowed return size - indicates no limit
q.TimeLimit,
false, // not types only
q.Filter,
additionalAttributes,
controls,
)
}
// NewLDAPQueryOnAttribute converts a user-provided LDAPQuery into a version we can use by parsing
// the input and combining it with a set of name attributes
func NewLDAPQueryOnAttribute(config api.LDAPQuery, attribute string) (LDAPQueryOnAttribute, error) {
ldapQuery, err := NewLDAPQuery(config)
if err != nil {
return LDAPQueryOnAttribute{}, err
}
return LDAPQueryOnAttribute{
LDAPQuery: ldapQuery,
QueryAttribute: attribute,
}, nil
}
// LDAPQueryOnAttribute encodes an LDAP query that conjoins two filters to extract a specific LDAP entry
// This query is not self-sufficient and needs the value of the QueryAttribute to construct the final filter
type LDAPQueryOnAttribute struct {
// Query retrieves entries from an LDAP server
LDAPQuery
// QueryAttribute is the attribute for a specific filter that, when conjoined with the common filter,
// retrieves the specific LDAP entry from the LDAP server. (e.g. "cn", when formatted with "aGroupName"
// and conjoined with "objectClass=groupOfNames", becomes (&(objectClass=groupOfNames)(cn=aGroupName))")
QueryAttribute string
}
// NewSearchRequest creates a new search request from the identifying query by internalizing the value of
// 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") {
dn, err := ldap.ParseDN(attributeValue)
if err != nil {
return nil, fmt.Errorf("could not search by dn, invalid dn value: %v", err)
}
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
} else {
return o.buildAttributeQuery(attributeValue, attributes), nil
}
}
// buildDNQuery builds the query that finds an LDAP entry with the given DN
// this is done by setting the DN to be the base DN for the search and setting the search scope
// to only consider the base object found
func (o *LDAPQueryOnAttribute) buildDNQuery(dn string, attributes []string) *ldap.SearchRequest {
var controls []ldap.Control
if o.PageSize > 0 {
controls = append(controls, ldap.NewControlPaging(uint32(o.PageSize)))
}
return ldap.NewSearchRequest(
dn,
ldap.ScopeBaseObject, // over-ride original
int(o.DerefAliases),
0, // allowed return size - indicates no limit
o.TimeLimit,
false, // not types only
"(objectClass=*)", // filter that returns all values
attributes,
controls,
)
}
// buildAttributeQuery builds the query containing a filter that conjoins the common filter given
// in the configuration with the specific attribute filter for which the attribute value is given
func (o *LDAPQueryOnAttribute) buildAttributeQuery(attributeValue string,
attributes []string) *ldap.SearchRequest {
specificFilter := fmt.Sprintf("%s=%s",
ldap.EscapeFilter(o.QueryAttribute),
ldap.EscapeFilter(attributeValue))
filter := fmt.Sprintf("(&(%s)(%s))", o.Filter, specificFilter)
var controls []ldap.Control
if o.PageSize > 0 {
controls = append(controls, ldap.NewControlPaging(uint32(o.PageSize)))
}
return ldap.NewSearchRequest(
o.BaseDN,
int(o.Scope),
int(o.DerefAliases),
0, // allowed return size - indicates no limit
o.TimeLimit,
false, // not types only
filter,
attributes,
controls,
)
}
// QueryForUniqueEntry queries for an LDAP entry with the given searchRequest. The query is expected
// to return one unqiue result. If this is not the case, errors are raised
func QueryForUniqueEntry(clientConfig ldapclient.Config, query *ldap.SearchRequest) (*ldap.Entry, error) {
result, err := QueryForEntries(clientConfig, query)
if err != nil {
return nil, err
}
if len(result) == 0 {
return nil, NewEntryNotFoundError(query.BaseDN, query.Filter)
}
if len(result) > 1 {
if query.Scope == ldap.ScopeBaseObject {
return nil, fmt.Errorf("multiple entries found matching dn=%q:\n%s",
query.BaseDN, formatResult(result))
} else {
return nil, fmt.Errorf("multiple entries found matching filter %s:\n%s",
query.Filter, formatResult(result))
}
}
entry := result[0]
glog.V(4).Infof("found dn=%q for %s", entry.DN, query.Filter)
return entry, nil
}
// formatResult pretty-prints the first ten DNs in the slice of entries
func formatResult(results []*ldap.Entry) string {
var names []string
for _, entry := range results {
names = append(names, entry.DN)
}
return "\t" + strings.Join(names[0:10], "\n\t")
}
// QueryForEntries queries for LDAP with the given searchRequest
func QueryForEntries(clientConfig ldapclient.Config, query *ldap.SearchRequest) ([]*ldap.Entry, error) {
connection, err := clientConfig.Connect()
if err != nil {
return nil, fmt.Errorf("could not connect to the LDAP server: %v", err)
}
defer connection.Close()
if bindDN, bindPassword := clientConfig.GetBindCredentials(); len(bindDN) > 0 {
if err := connection.Bind(bindDN, bindPassword); err != nil {
return nil, fmt.Errorf("could not bind to the LDAP server: %v", err)
}
}
var searchResult *ldap.SearchResult
control := ldap.FindControl(query.Controls, ldap.ControlTypePaging)
if control == nil {
glog.V(4).Infof("searching LDAP server with config %v with dn=%q and scope %v for %s requesting %v", clientConfig, query.BaseDN, query.Scope, query.Filter, query.Attributes)
searchResult, err = connection.Search(query)
} else if pagingControl, ok := control.(*ldap.ControlPaging); ok {
glog.V(4).Infof("searching LDAP server with config %v with dn=%q and scope %v for %s requesting %v with pageSize=%d", clientConfig, query.BaseDN, query.Scope, query.Filter, query.Attributes, pagingControl.PagingSize)
searchResult, err = connection.SearchWithPaging(query, pagingControl.PagingSize)
} else {
err = fmt.Errorf("invalid paging control type: %v", control)
}
if err != nil {
if ldap.IsErrorWithCode(err, ldap.LDAPResultNoSuchObject) {
return nil, NewNoSuchObjectError(query.BaseDN)
}
return nil, err
}
for _, entry := range searchResult.Entries {
glog.V(4).Infof("found dn=%q ", entry.DN)
}
return searchResult.Entries, nil
}