forked from BeryJu/ldap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilter.go
More file actions
556 lines (534 loc) · 16.4 KB
/
Copy pathfilter.go
File metadata and controls
556 lines (534 loc) · 16.4 KB
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
// 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"
"fmt"
"strconv"
"strings"
"unicode/utf8"
ber "github.com/go-asn1-ber/asn1-ber"
)
const (
FilterAnd = 0
FilterOr = 1
FilterNot = 2
FilterEqualityMatch = 3
FilterSubstrings = 4
FilterGreaterOrEqual = 5
FilterLessOrEqual = 6
FilterPresent = 7
FilterApproxMatch = 8
FilterExtensibleMatch = 9
)
var FilterMap = map[ber.Tag]string{
FilterAnd: "And",
FilterOr: "Or",
FilterNot: "Not",
FilterEqualityMatch: "Equality Match",
FilterSubstrings: "Substrings",
FilterGreaterOrEqual: "Greater Or Equal",
FilterLessOrEqual: "Less Or Equal",
FilterPresent: "Present",
FilterApproxMatch: "Approx Match",
FilterExtensibleMatch: "Extensible Match",
}
const (
FilterSubstringsInitial = 0
FilterSubstringsAny = 1
FilterSubstringsFinal = 2
)
func CompileFilter(filter string) (*ber.Packet, error) {
if len(filter) == 0 || filter[0] != '(' {
return nil, NewError(ErrorFilterCompile, errors.New("ldap: filter does not start with an '('"))
}
packet, pos, err := compileFilter(filter, 1)
if err != nil {
return nil, err
}
if pos != len(filter) {
return nil, NewError(ErrorFilterCompile, errors.New("ldap: finished compiling filter with extra at end: "+fmt.Sprint(filter[pos:])))
}
return packet, nil
}
func DecompileFilter(packet *ber.Packet) (ret string, err error) {
defer func() {
if r := recover(); r != nil {
err = NewError(ErrorFilterDecompile, errors.New("ldap: error decompiling filter"))
}
}()
ret = "("
err = nil
childStr := ""
switch packet.Tag {
case FilterAnd:
ret += "&"
for _, child := range packet.Children {
childStr, err = DecompileFilter(child)
if err != nil {
return
}
ret += childStr
}
case FilterOr:
ret += "|"
for _, child := range packet.Children {
childStr, err = DecompileFilter(child)
if err != nil {
return
}
ret += childStr
}
case FilterNot:
ret += "!"
childStr, err = DecompileFilter(packet.Children[0])
if err != nil {
return
}
ret += childStr
case FilterSubstrings:
ret += ber.DecodeString(packet.Children[0].Data.Bytes())
ret += "="
switch packet.Children[1].Children[0].Tag {
case FilterSubstringsInitial:
ret += ber.DecodeString(packet.Children[1].Children[0].Data.Bytes()) + "*"
case FilterSubstringsAny:
ret += "*" + ber.DecodeString(packet.Children[1].Children[0].Data.Bytes()) + "*"
case FilterSubstringsFinal:
ret += "*" + ber.DecodeString(packet.Children[1].Children[0].Data.Bytes())
}
case FilterEqualityMatch:
ret += ber.DecodeString(packet.Children[0].Data.Bytes())
ret += "="
ret += ber.DecodeString(packet.Children[1].Data.Bytes())
case FilterGreaterOrEqual:
ret += ber.DecodeString(packet.Children[0].Data.Bytes())
ret += ">="
ret += ber.DecodeString(packet.Children[1].Data.Bytes())
case FilterLessOrEqual:
ret += ber.DecodeString(packet.Children[0].Data.Bytes())
ret += "<="
ret += ber.DecodeString(packet.Children[1].Data.Bytes())
case FilterPresent:
ret += ber.DecodeString(packet.Data.Bytes())
ret += "=*"
case FilterApproxMatch:
ret += ber.DecodeString(packet.Children[0].Data.Bytes())
ret += "~="
ret += ber.DecodeString(packet.Children[1].Data.Bytes())
case FilterExtensibleMatch:
var attribute string
var matchingRule string
var matchValue string
dnAttributes := false
for _, child := range packet.Children {
switch child.Tag {
case 1:
matchingRule = ber.DecodeString(child.Data.Bytes())
case 2:
attribute = ber.DecodeString(child.Data.Bytes())
case 3:
matchValue = ber.DecodeString(child.Data.Bytes())
case 4:
dnAttributes = true
}
}
if attribute == "" && matchingRule == "" {
return "", NewError(ErrorFilterDecompile, errors.New("ldap: extensible match missing attribute and matching rule"))
}
if matchValue == "" {
return "", NewError(ErrorFilterDecompile, errors.New("ldap: extensible match missing match value"))
}
if attribute != "" {
ret += attribute
}
if attribute == "" {
if dnAttributes {
ret += ":dn"
}
if matchingRule != "" {
ret += ":" + matchingRule
}
} else {
if dnAttributes {
ret += ":dn"
}
if matchingRule != "" {
ret += ":" + matchingRule
}
}
ret += ":="
ret += matchValue
}
ret += ")"
return
}
func compileFilterSet(filter string, pos int, parent *ber.Packet) (int, error) {
for pos < len(filter) && filter[pos] == '(' {
child, newPos, err := compileFilter(filter, pos+1)
if err != nil {
return pos, err
}
pos = newPos
parent.AppendChild(child)
}
if pos == len(filter) {
return pos, NewError(ErrorFilterCompile, errors.New("ldap: unexpected end of filter"))
}
return pos + 1, nil
}
func compileFilter(filter string, pos int) (*ber.Packet, int, error) {
var packet *ber.Packet
var err error
defer func() {
if r := recover(); r != nil {
err = NewError(ErrorFilterCompile, errors.New("ldap: error compiling filter"))
}
}()
newPos := pos
switch filter[pos] {
case '(':
packet, newPos, err = compileFilter(filter, pos+1)
newPos++
return packet, newPos, err
case '&':
packet = ber.Encode(ber.ClassContext, ber.TypeConstructed, FilterAnd, nil, FilterMap[FilterAnd])
newPos, err = compileFilterSet(filter, pos+1, packet)
return packet, newPos, err
case '|':
packet = ber.Encode(ber.ClassContext, ber.TypeConstructed, FilterOr, nil, FilterMap[FilterOr])
newPos, err = compileFilterSet(filter, pos+1, packet)
return packet, newPos, err
case '!':
packet = ber.Encode(ber.ClassContext, ber.TypeConstructed, FilterNot, nil, FilterMap[FilterNot])
var child *ber.Packet
child, newPos, err = compileFilter(filter, pos+1)
packet.AppendChild(child)
return packet, newPos, err
default:
closePos := strings.Index(filter[pos:], ")")
if closePos == -1 {
err = NewError(ErrorFilterCompile, errors.New("ldap: unexpected end of filter"))
return nil, pos, err
}
segment := filter[pos : pos+closePos]
if strings.Contains(segment, ":=") {
packet = ber.Encode(ber.ClassContext, ber.TypeConstructed, FilterExtensibleMatch, nil, FilterMap[FilterExtensibleMatch])
leftRight := strings.SplitN(segment, ":=", 2)
if len(leftRight) != 2 || leftRight[1] == "" {
err = NewError(ErrorFilterCompile, errors.New("ldap: error parsing extensible match"))
return packet, pos, err
}
left := leftRight[0]
matchValue := leftRight[1]
parts := strings.Split(left, ":")
attribute := ""
matchingRule := ""
dnAttributes := false
start := 0
if parts[0] != "" {
attribute = parts[0]
start = 1
}
for i := start; i < len(parts); i++ {
switch parts[i] {
case "dn":
dnAttributes = true
case "":
err = NewError(ErrorFilterCompile, errors.New("ldap: error parsing extensible match"))
return packet, pos, err
default:
if matchingRule != "" {
err = NewError(ErrorFilterCompile, errors.New("ldap: error parsing extensible match"))
return packet, pos, err
}
matchingRule = parts[i]
}
}
if attribute == "" && matchingRule == "" {
err = NewError(ErrorFilterCompile, errors.New("ldap: error parsing extensible match"))
return packet, pos, err
}
if matchingRule != "" {
packet.AppendChild(ber.NewString(ber.ClassContext, ber.TypePrimitive, 1, matchingRule, "Matching Rule"))
}
if attribute != "" {
packet.AppendChild(ber.NewString(ber.ClassContext, ber.TypePrimitive, 2, attribute, "Attribute"))
}
packet.AppendChild(ber.NewString(ber.ClassContext, ber.TypePrimitive, 3, matchValue, "Match Value"))
if dnAttributes {
packet.AppendChild(ber.NewLDAPBoolean(ber.ClassContext, ber.TypePrimitive, 4, true, "DN Attributes"))
}
return packet, pos + closePos + 1, nil
}
attribute := ""
condition := ""
for w := 0; newPos < len(filter) && filter[newPos] != ')'; newPos += w {
rune, width := utf8.DecodeRuneInString(filter[newPos:])
w = width
switch {
case packet != nil:
condition += fmt.Sprintf("%c", rune)
case filter[newPos] == '=':
packet = ber.Encode(ber.ClassContext, ber.TypeConstructed, FilterEqualityMatch, nil, FilterMap[FilterEqualityMatch])
case filter[newPos] == '>' && filter[newPos+1] == '=':
packet = ber.Encode(ber.ClassContext, ber.TypeConstructed, FilterGreaterOrEqual, nil, FilterMap[FilterGreaterOrEqual])
newPos++
case filter[newPos] == '<' && filter[newPos+1] == '=':
packet = ber.Encode(ber.ClassContext, ber.TypeConstructed, FilterLessOrEqual, nil, FilterMap[FilterLessOrEqual])
newPos++
case filter[newPos] == '~' && filter[newPos+1] == '=':
packet = ber.Encode(ber.ClassContext, ber.TypeConstructed, FilterApproxMatch, nil, FilterMap[FilterLessOrEqual])
newPos++
case packet == nil:
attribute += fmt.Sprintf("%c", filter[newPos])
}
}
if newPos == len(filter) {
err = NewError(ErrorFilterCompile, errors.New("ldap: unexpected end of filter"))
return packet, newPos, err
}
if packet == nil {
err = NewError(ErrorFilterCompile, errors.New("ldap: error parsing filter"))
return packet, newPos, err
}
// Handle FilterEqualityMatch as a separate case (is primitive, not constructed like the other filters)
if packet.Tag == FilterEqualityMatch && condition == "*" {
packet.TagType = ber.TypePrimitive
packet.Tag = FilterPresent
packet.Description = FilterMap[packet.Tag]
packet.Data.WriteString(attribute)
return packet, newPos + 1, nil
}
packet.AppendChild(ber.NewString(ber.ClassUniversal, ber.TypePrimitive, ber.TagOctetString, attribute, "Attribute"))
switch {
case packet.Tag == FilterEqualityMatch && condition[0] == '*' && condition[len(condition)-1] == '*':
// Any
packet.Tag = FilterSubstrings
packet.Description = FilterMap[packet.Tag]
seq := ber.Encode(ber.ClassUniversal, ber.TypeConstructed, ber.TagSequence, nil, "Substrings")
seq.AppendChild(ber.NewString(ber.ClassContext, ber.TypePrimitive, FilterSubstringsAny, condition[1:len(condition)-1], "Any Substring"))
packet.AppendChild(seq)
case packet.Tag == FilterEqualityMatch && condition[0] == '*':
// Final
packet.Tag = FilterSubstrings
packet.Description = FilterMap[packet.Tag]
seq := ber.Encode(ber.ClassUniversal, ber.TypeConstructed, ber.TagSequence, nil, "Substrings")
seq.AppendChild(ber.NewString(ber.ClassContext, ber.TypePrimitive, FilterSubstringsFinal, condition[1:], "Final Substring"))
packet.AppendChild(seq)
case packet.Tag == FilterEqualityMatch && condition[len(condition)-1] == '*':
// Initial
packet.Tag = FilterSubstrings
packet.Description = FilterMap[packet.Tag]
seq := ber.Encode(ber.ClassUniversal, ber.TypeConstructed, ber.TagSequence, nil, "Substrings")
seq.AppendChild(ber.NewString(ber.ClassContext, ber.TypePrimitive, FilterSubstringsInitial, condition[:len(condition)-1], "Initial Substring"))
packet.AppendChild(seq)
default:
packet.AppendChild(ber.NewString(ber.ClassUniversal, ber.TypePrimitive, ber.TagOctetString, condition, "Condition"))
}
newPos++
return packet, newPos, err
}
}
func ServerApplyFilter(f *ber.Packet, entry *Entry) (bool, LDAPResultCode) {
switch FilterMap[f.Tag] {
default:
// Log.Fatalf("Unknown LDAP filter code: %d", f.Tag)
return false, LDAPResultOperationsError
case "Equality Match":
if len(f.Children) != 2 {
return false, LDAPResultOperationsError
}
attribute := f.Children[0].Value.(string)
value := f.Children[1].Value.(string)
for _, a := range entry.Attributes {
if strings.EqualFold(a.Name, attribute) {
for _, v := range a.Values {
if strings.EqualFold(v, value) {
return true, LDAPResultSuccess
}
}
}
}
case "Present":
for _, a := range entry.Attributes {
if strings.EqualFold(a.Name, f.Data.String()) {
return true, LDAPResultSuccess
}
}
case "And":
for _, child := range f.Children {
ok, exitCode := ServerApplyFilter(child, entry)
if exitCode != LDAPResultSuccess {
return false, exitCode
}
if !ok {
return false, LDAPResultSuccess
}
}
return true, LDAPResultSuccess
case "Or":
anyOk := false
for _, child := range f.Children {
ok, exitCode := ServerApplyFilter(child, entry)
if exitCode != LDAPResultSuccess {
return false, exitCode
} else if ok {
anyOk = true
}
}
if anyOk {
return true, LDAPResultSuccess
}
case "Not":
if len(f.Children) != 1 {
return false, LDAPResultOperationsError
}
ok, exitCode := ServerApplyFilter(f.Children[0], entry)
if exitCode != LDAPResultSuccess {
return false, exitCode
} else if !ok {
return true, LDAPResultSuccess
}
case "Substrings":
if len(f.Children) != 2 {
return false, LDAPResultOperationsError
}
attribute := f.Children[0].Value.(string)
valueBytes := f.Children[1].Children[0].Data.Bytes()
valueLower := strings.ToLower(string(valueBytes[:]))
for _, a := range entry.Attributes {
if strings.ToLower(a.Name) == strings.ToLower(attribute) {
for _, v := range a.Values {
vLower := strings.ToLower(v)
switch f.Children[1].Children[0].Tag {
case FilterSubstringsInitial:
if strings.HasPrefix(vLower, valueLower) {
return true, LDAPResultSuccess
}
case FilterSubstringsAny:
if strings.Contains(vLower, valueLower) {
return true, LDAPResultSuccess
}
case FilterSubstringsFinal:
if strings.HasSuffix(vLower, valueLower) {
return true, LDAPResultSuccess
}
}
}
}
}
case "FilterGreaterOrEqual": // TODO
return false, LDAPResultOperationsError
case "FilterLessOrEqual": // TODO
return false, LDAPResultOperationsError
case "FilterApproxMatch": // TODO
return false, LDAPResultOperationsError
case "Extensible Match":
if len(f.Children) == 0 {
return false, LDAPResultOperationsError
}
var attribute string
var matchingRule string
var matchValue string
for _, child := range f.Children {
switch child.Tag {
case 1:
matchingRule = ber.DecodeString(child.Data.Bytes())
case 2:
attribute = ber.DecodeString(child.Data.Bytes())
case 3:
matchValue = ber.DecodeString(child.Data.Bytes())
}
}
if attribute == "" || matchValue == "" {
return false, LDAPResultOperationsError
}
switch matchingRule {
case "1.2.840.113556.1.4.803":
matchInt, parseErr := strconv.ParseInt(matchValue, 10, 64)
if parseErr != nil {
return false, LDAPResultOperationsError
}
for _, a := range entry.Attributes {
if strings.EqualFold(a.Name, attribute) {
for _, v := range a.Values {
valueInt, valueErr := strconv.ParseInt(v, 10, 64)
if valueErr != nil {
continue
}
if valueInt&matchInt == matchInt {
return true, LDAPResultSuccess
}
}
}
}
return false, LDAPResultSuccess
default:
return false, LDAPResultOperationsError
}
}
return false, LDAPResultSuccess
}
func GetFilterObjectClass(filter string) ([]string, error) {
f, err := CompileFilter(filter)
if err != nil {
return nil, err
}
return parseFilterObjectClass(f)
}
func parseFilterObjectClass(f *ber.Packet) ([]string, error) {
var objectClass []string
switch FilterMap[f.Tag] {
case "Equality Match":
if len(f.Children) != 2 {
return nil, errors.New("Equality match must have only two children")
}
attribute := strings.ToLower(f.Children[0].Value.(string))
value := f.Children[1].Value.(string)
if attribute == "objectclass" {
objectClass = append(objectClass, strings.ToLower(value))
}
case "And":
for _, child := range f.Children {
subType, err := parseFilterObjectClass(child)
if err != nil {
return nil, err
}
if len(subType) > 0 {
objectClass = append(objectClass, subType...)
}
}
case "Or":
for _, child := range f.Children {
subType, err := parseFilterObjectClass(child)
if err != nil {
return nil, err
}
if len(subType) > 0 {
objectClass = append(objectClass, subType...)
}
}
case "Not":
if len(f.Children) != 1 {
return nil, errors.New("Not filter must have only one child")
}
subType, err := parseFilterObjectClass(f.Children[0])
if err != nil {
return nil, err
}
if len(subType) > 0 {
objectClass = append(objectClass, subType...)
}
}
m := make(map[string]struct{})
for _, s := range objectClass {
m[s] = struct{}{}
}
objectClass = []string{}
for s := range m {
objectClass = append(objectClass, s)
}
return objectClass, nil
}