-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.go
635 lines (565 loc) · 15.9 KB
/
search.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
package ldap
import (
"errors"
"fmt"
"regexp"
"strconv"
"strings"
"time"
"github.com/doncicuto/glim/types"
ber "github.com/go-asn1-ber/asn1-ber"
"github.com/google/uuid"
)
func searchSize(p *ber.Packet, searchLimit int, pagedResultSize int64) (int, *ServerError) {
limit := 0
if p.ClassType != ber.ClassUniversal ||
p.TagType != ber.TypePrimitive ||
p.Tag != ber.TagInteger {
return 0, &ServerError{
Msg: "wrong search size definition",
Code: ProtocolError,
}
}
size, err := ber.ParseInt64(p.ByteValue)
if err != nil {
return 0, &ServerError{
Msg: "could not parse search size",
Code: Other,
}
}
if size < pagedResultSize {
limit = int(pagedResultSize)
} else {
limit = int(size)
}
return limit, nil
}
func searchTimeLimit(p *ber.Packet) (int64, *ServerError) {
if p.ClassType != ber.ClassUniversal ||
p.TagType != ber.TypePrimitive ||
p.Tag != ber.TagInteger {
return 0, &ServerError{
Msg: "wrong search time limit definition",
Code: ProtocolError,
}
}
timeLimit, err := ber.ParseInt64(p.ByteValue)
if err != nil {
return 0, &ServerError{
Msg: "could not parse search time limit",
Code: Other,
}
}
return timeLimit, nil
}
func searchTypesOnly(p *ber.Packet) (bool, *ServerError) {
if p.ClassType != ber.ClassUniversal ||
p.TagType != ber.TypePrimitive ||
p.Tag != ber.TagBoolean {
return false, &ServerError{
Msg: "wrong types only definition",
Code: ProtocolError,
}
}
t := p.Value.(bool)
return t, nil
}
func searchFilter(p *ber.Packet) (string, *ServerError) {
filter, err := decodeFilters(p)
if err != nil {
return "", &ServerError{
Msg: "wrong search filter definition",
Code: ProtocolError,
}
}
return filter, nil
}
func decodeAssertionValue(p *ber.Packet) (string, *ServerError) {
filter := ""
if p.Tag == ber.TagOctetString {
filter += fmt.Sprintf("%v", p.Value)
}
// WORKAROUND: We're having a problem with filters including asterisks
// If we ask for *Cabrerizo* BER request is removing the second asterisk
// so as a workaround we're using two asterisks to avoid missing results
if p.Tag == ber.TagSequence && len(p.Children) == 1 {
filter += fmt.Sprintf("=*%v*", p.Children[0].Data)
}
return filter, nil
}
func decodeSubstringFilter(p *ber.Packet) (string, *ServerError) {
filter := "("
if p.ClassType != ber.ClassContext ||
p.TagType != ber.TypeConstructed && p.Tag != ber.TagOctetString {
return "", &ServerError{
Msg: "wrong search filter definition",
Code: ProtocolError,
}
}
for _, f := range p.Children {
df, err := decodeAssertionValue(f)
if err != nil {
return "", &ServerError{
Msg: "wrong search filter definition",
Code: ProtocolError,
}
}
filter += df
}
filter += ")"
return filter, nil
}
func decodeFilters(p *ber.Packet) (string, *ServerError) {
filter := ""
if p.ClassType != ber.ClassContext ||
((p.TagType != ber.TypeConstructed && p.Tag != ber.TagEOC) &&
(p.TagType != ber.TypePrimitive && p.Tag != ber.TagObjectDescriptor && p.Tag != ber.TagSequence)) {
return "", &ServerError{
Msg: "wrong search filter definition",
Code: ProtocolError,
}
}
switch p.Tag {
case FilterAnd:
filter += "(&"
for _, f := range p.Children {
df, err := decodeFilters(f)
if err != nil {
return "", &ServerError{
Msg: "wrong search filter definition",
Code: ProtocolError,
}
}
filter += df
}
filter += ")"
case FilterOr:
filter += "(|"
for _, f := range p.Children {
df, err := decodeFilters(f)
if err != nil {
return "", &ServerError{
Msg: "wrong search filter definition",
Code: ProtocolError,
}
}
filter += df
}
filter += ")"
case FilterNot:
filter += "(!"
for _, f := range p.Children {
df, err := decodeFilters(f)
if err != nil {
return "", &ServerError{
Msg: "wrong search filter definition",
Code: ProtocolError,
}
}
filter += df
}
filter += ")"
case FilterEquality:
if len(p.Children) != 2 {
return "", &ServerError{
Msg: "wrong search filter definition",
Code: ProtocolError,
}
}
filter = fmt.Sprintf("(%v=%v)", p.Children[0].Value, p.Children[1].Value)
case FilterSubstrings:
df, err := decodeSubstringFilter(p)
if err != nil {
return "", &ServerError{
Msg: "wrong search filter definition",
Code: ProtocolError,
}
}
filter += df
case FilterPresent:
filter = fmt.Sprintf("(%v=*)", p.Data)
default:
printLog(fmt.Sprintf("substring %v, %v", p.Tag, p.TagType))
}
return filter, nil
}
func searchAttributes(p *ber.Packet) (string, *ServerError) {
var attributes []string
// &{{0 32 16} <nil> [] [] }
if p.ClassType != ber.ClassUniversal ||
p.TagType != ber.TypeConstructed ||
p.Tag != ber.TagSequence {
return "", &ServerError{
Msg: "wrong attributes definition",
Code: ProtocolError,
}
}
if len(p.Children) == 0 {
return "ALL", nil
}
for _, att := range p.Children {
attributes = append(attributes, att.Value.(string))
}
return strings.Join(attributes, " "), nil
}
func baseObject(p *ber.Packet) (string, *ServerError) {
if p.ClassType != ber.ClassUniversal ||
p.TagType != ber.TypePrimitive ||
p.Tag != ber.TagOctetString {
return "", &ServerError{
Msg: "wrong search base object definition",
Code: ProtocolError,
}
}
return p.Data.String(), nil
}
func searchScope(p *ber.Packet) (int64, *ServerError) {
if p.ClassType != ber.ClassUniversal ||
p.TagType != ber.TypePrimitive ||
p.Tag != ber.TagEnumerated {
return 0, &ServerError{
Msg: "wrong search scope definition",
Code: ProtocolError,
}
}
scope, err := ber.ParseInt64(p.ByteValue)
if err != nil {
return 0, &ServerError{
Msg: "could not parse search scope",
Code: Other,
}
}
if scope != BaseObject && scope != SingleLevel && scope != WholeSubtree {
return 0, &ServerError{
Msg: "wrong search scope option",
Code: ProtocolError,
}
}
return scope, nil
}
// HandleSearchRequest - TODO comment
func HandleSearchRequest(message *Message, settings types.LDAPSettings) ([]*ber.Packet, error) {
// Defined in https://www.rfc-editor.org/rfc/rfc4511#section-4.5.1
var offset = 0
var cookie = ""
var totalResults int64 = 0
var nResults int = 0
var users []*ber.Packet = nil
var groups []*ber.Packet = nil
var r []*ber.Packet
id := message.ID
p := message.Request
// Paging
if message.Paging && message.PagedResultsCookie != "" {
val, found, err := settings.KV.Get(message.PagedResultsCookie)
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: UnwillingToPerform,
msg: "could not find cookie in KV",
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New("KV not working correctly")
}
if found {
cookie = message.PagedResultsCookie
offset, err = strconv.Atoi(val)
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: UnwillingToPerform,
msg: "could not get offset from KV",
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New("KV not working correctly")
}
}
}
b, err := baseObject(p[0])
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: err.Code,
msg: err.Msg,
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New(err.Msg)
}
printLog(fmt.Sprintf("search base object: %s", b))
//Check if base object is valid
reg, _ := regexp.Compile(fmt.Sprintf("%s$", settings.Domain))
if !reg.MatchString(b) {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: NoSuchObject,
msg: "",
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New("wrong settings.Domain")
}
s, err := searchScope(p[1])
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: err.Code,
msg: err.Msg,
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New(err.Msg)
}
printLog(fmt.Sprintf("search scope: %s", scopes[s]))
// p[2] represents derefAliases which are not currently supported by Glim
n, err := searchSize(p[3], settings.SizeLimit, message.PagedResultsSize)
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: err.Code,
msg: err.Msg,
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New(err.Msg)
}
printLog(fmt.Sprintf("search maximum number of entries to be returned (0 - No limit restriction): %d", n))
l, err := searchTimeLimit(p[4])
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: err.Code,
msg: err.Msg,
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New(err.Msg)
}
printLog(fmt.Sprintf("search maximum time limit (0 - No limit restriction): %d", l))
t, err := searchTypesOnly(p[5])
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: err.Code,
msg: err.Msg,
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New(err.Msg)
}
printLog(fmt.Sprintf("search show types only: %t", t))
f, err := searchFilter(p[6])
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: err.Code,
msg: err.Msg,
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New(err.Msg)
}
printLog(fmt.Sprintf("search filter: %s", f))
a, err := searchAttributes(p[7])
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: err.Code,
msg: err.Msg,
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New(err.Msg)
}
attrs := make(map[string]string)
for _, a := range strings.Split(a, " ") {
attrs[a] = a
}
printLog(fmt.Sprintf("search attributes: %s", a))
/* RFC 4511 - The results of the Search operation are returned as zero or more
SearchResultEntry and/or SearchResultReference messages, followed by
a single SearchResultDone message */
regBase, _ := regexp.Compile(fmt.Sprintf("^ou=users,%s$", settings.Domain))
if (b == settings.Domain && strings.Contains(f, "objectClass=*")) || regBase.MatchString(strings.ToLower(b)) {
if (f == "(objectclass=*)" && !message.Paging) || (f == "(objectclass=*)" && message.Paging && offset == 0) {
ouUsers := fmt.Sprintf("ou=Users,%s", settings.Domain)
values := map[string][]string{
"objectClass": {"organizationalUnit", "top"},
"ou": {"Users"},
}
e := encodeSearchResultEntry(id, values, ouUsers)
r = append(r, e)
}
params := userQueryParams{
db: settings.DB,
filter: f,
originalFilter: f,
attributes: a,
messageID: id,
domain: settings.Domain,
limit: n,
offset: offset,
}
users, err, nResults, totalResults = getUsersFromDB(params)
if err != nil {
return r, errors.New(err.Msg)
}
r = append(r, users...)
}
regBase, _ = regexp.Compile(fmt.Sprintf("^uid=([A-Za-z.0-9-]+),ou=users,%s$", settings.Domain))
if regBase.MatchString(strings.ToLower(b)) {
matches := regBase.FindStringSubmatch(strings.ToLower(b))
if matches != nil {
params := userQueryParams{
db: settings.DB,
filter: fmt.Sprintf("uid=%s", matches[1]),
originalFilter: f,
attributes: a,
messageID: id,
domain: settings.Domain,
limit: n,
offset: offset,
}
users, err, nResults, totalResults = getUsersFromDB(params)
if err != nil {
return r, errors.New(err.Msg)
}
r = append(r, users...)
}
}
regBase, _ = regexp.Compile(fmt.Sprintf("^ou=groups,%s$", settings.Domain))
if (b == settings.Domain && strings.Contains(f, "objectClass=*")) || regBase.MatchString(strings.ToLower(b)) {
if (f == "(objectclass=*)" && !message.Paging) || (f == "(objectclass=*)" && message.Paging && offset == 0) {
ouGroups := fmt.Sprintf("ou=Groups,%s", settings.Domain)
values := map[string][]string{
"objectClass": {"organizationalUnit", "top"},
"ou": {"Groups"},
}
e := encodeSearchResultEntry(id, values, ouGroups)
r = append(r, e)
}
params := groupQueryParams{
db: settings.DB,
filter: f,
originalFilter: f,
attributes: a,
id: id,
domain: settings.Domain,
limit: n,
offset: offset,
guacamole: settings.Guacamole,
}
groups, err, nResults, totalResults = getGroupsFromDB(params)
if err != nil {
return r, errors.New(err.Msg)
}
r = append(r, groups...)
}
regBase, _ = regexp.Compile(fmt.Sprintf("^cn=([A-Za-z.0-9-]+),ou=groups,%s$", settings.Domain))
if regBase.MatchString(strings.ToLower(b)) {
matches := regBase.FindStringSubmatch(strings.ToLower(b))
if matches != nil {
params := groupQueryParams{
db: settings.DB,
filter: fmt.Sprintf("cn=%s", matches[1]),
originalFilter: f,
attributes: a,
id: id,
domain: settings.Domain,
limit: n,
offset: offset,
guacamole: settings.Guacamole,
}
groups, err, nResults, totalResults = getGroupsFromDB(params)
if err != nil {
return r, errors.New(err.Msg)
}
r = append(r, groups...)
}
}
// Paging
if message.Paging {
// More results?
if offset+nResults < int(totalResults) {
// Create a cookie and store current offset
if cookie == "" {
cookie = uuid.New().String()
}
err := settings.KV.Set(cookie, fmt.Sprintf("%d", offset+nResults), time.Second*3600)
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: UnwillingToPerform,
msg: "KV not working correctly 1",
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New("KV not working correctly")
}
} else {
if cookie != "" {
err := settings.KV.Delete(cookie)
if err != nil {
p := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: UnwillingToPerform,
msg: "KV not working correctly 2",
paging: message.PagedResultsSize > 0,
totalResults: 0,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, p)
return r, errors.New("KV not working correctly")
}
}
cookie = ""
}
}
d := encodeSearchResultDone(searchResultDoneParams{
messageID: id,
resultCode: Success,
msg: "",
paging: message.PagedResultsSize > 0,
totalResults: totalResults,
criticality: message.PagedResultsCriticality,
cookie: cookie,
})
r = append(r, d)
return r, nil
}