Source file ldap_protocol.ml
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
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
open Lber
open Ldap_types
let encode_resultcode (code:ldap_resultcode) =
match code with
`SUCCESS -> 0
| `OPERATIONS_ERROR -> 1
| `PROTOCOL_ERROR -> 2
| `TIMELIMIT_EXCEEDED -> 3
| `SIZELIMIT_EXCEEDED -> 4
| `COMPARE_FALSE -> 5
| `COMPARE_TRUE -> 6
| `AUTH_METHOD_NOT_SUPPORTED -> 7
| `STRONG_AUTH_REQUIRED -> 8
| `REFERRAL -> 10
| `ADMINLIMIT_EXCEEDED -> 11
| `UNAVAILABLE_CRITICAL_EXTENSION -> 12
| `CONFIDENTIALITY_REQUIRED -> 13
| `SASL_BIND_IN_PROGRESS -> 14
| `NO_SUCH_ATTRIBUTE -> 16
| `UNDEFINED_TYPE -> 17
| `INAPPROPRIATE_MATCHING -> 18
| `CONSTRAINT_VIOLATION -> 19
| `TYPE_OR_VALUE_EXISTS -> 20
| `INVALID_SYNTAX -> 21
| `NO_SUCH_OBJECT -> 32
| `ALIAS_PROBLEM -> 33
| `INVALID_DN_SYNTAX -> 34
| `IS_LEAF -> 35
| `ALIAS_DEREF_PROBLEM -> 36
| `INAPPROPRIATE_AUTH -> 48
| `INVALID_CREDENTIALS -> 49
| `INSUFFICIENT_ACCESS -> 50
| `BUSY -> 51
| `UNAVAILABLE -> 52
| `UNWILLING_TO_PERFORM -> 53
| `LOOP_DETECT -> 54
| `NAMING_VIOLATION -> 64
| `OBJECT_CLASS_VIOLATION -> 65
| `NOT_ALLOWED_ON_NONLEAF -> 66
| `NOT_ALLOWED_ON_RDN -> 67
| `ALREADY_EXISTS -> 68
| `NO_OBJECT_CLASS_MODS -> 69
| `AFFECTS_MULTIPLE_DSAS -> 71
| `OTHER -> 80
| `SERVER_DOWN -> 80
| `LOCAL_ERROR -> 80
| `ENCODING_ERROR -> 80
| `DECODING_ERROR -> 80
| `TIMEOUT -> 80
| `AUTH_UNKNOWN -> 80
| `FILTER_ERROR -> 80
| `USER_CANCELLED -> 80
| `PARAM_ERROR -> 80
| `NO_MEMORY -> 80
| `CONNECT_ERROR -> 80
| `NOT_SUPPORTED -> 80
| `CONTROL_NOT_FOUND -> 80
| `NO_RESULTS_RETURNED -> 80
| `MORE_RESULTS_TO_RETURN -> 80
| `CLIENT_LOOP -> 80
| `REFERRAL_LIMIT_EXCEEDED -> 80
| `UNKNOWN_ERROR i -> i
let decode_resultcode code =
match code with
0 -> `SUCCESS
| 1 -> `OPERATIONS_ERROR
| 2 -> `PROTOCOL_ERROR
| 3 -> `TIMELIMIT_EXCEEDED
| 4 -> `SIZELIMIT_EXCEEDED
| 5 -> `COMPARE_FALSE
| 6 -> `COMPARE_TRUE
| 7 -> `AUTH_METHOD_NOT_SUPPORTED
| 8 -> `STRONG_AUTH_REQUIRED
| 10 -> `REFERRAL
| 11 -> `ADMINLIMIT_EXCEEDED
| 12 -> `UNAVAILABLE_CRITICAL_EXTENSION
| 13 -> `CONFIDENTIALITY_REQUIRED
| 14 -> `SASL_BIND_IN_PROGRESS
| 16 -> `NO_SUCH_ATTRIBUTE
| 17 -> `UNDEFINED_TYPE
| 18 -> `INAPPROPRIATE_MATCHING
| 19 -> `CONSTRAINT_VIOLATION
| 20 -> `TYPE_OR_VALUE_EXISTS
| 21 -> `INVALID_SYNTAX
| 32 -> `NO_SUCH_OBJECT
| 33 -> `ALIAS_PROBLEM
| 34 -> `INVALID_DN_SYNTAX
| 35 -> `IS_LEAF
| 36 -> `ALIAS_DEREF_PROBLEM
| 48 -> `INAPPROPRIATE_AUTH
| 49 -> `INVALID_CREDENTIALS
| 50 -> `INSUFFICIENT_ACCESS
| 51 -> `BUSY
| 52 -> `UNAVAILABLE
| 53 -> `UNWILLING_TO_PERFORM
| 54 -> `LOOP_DETECT
| 64 -> `NAMING_VIOLATION
| 65 -> `OBJECT_CLASS_VIOLATION
| 66 -> `NOT_ALLOWED_ON_NONLEAF
| 67 -> `NOT_ALLOWED_ON_RDN
| 68 -> `ALREADY_EXISTS
| 69 -> `NO_OBJECT_CLASS_MODS
| 71 -> `AFFECTS_MULTIPLE_DSAS
| 80 -> `OTHER
| i -> `UNKNOWN_ERROR i
let decode_control_type s =
match s with
| "1.2.840.113556.1.4.319" -> `Paged_results_control
| x -> `Unknown_type x
let encode_control_type c =
match c.control_details with
| `Paged_results_control _ -> "1.2.840.113556.1.4.319"
| _ -> raise (LDAP_Encoder "encode_ldapcontrol: unknown control type")
let encode_seq_hdr ?(cls=Universal) ?(tag=16) length =
encode_ber_header
{ber_class=cls;
ber_tag=tag;
ber_primitive=false;
ber_length=Definite length}
let encode_ldapcontrol control =
let en_type = encode_ber_octetstring (encode_control_type control) in
let build_final_str hdr_len part_list =
let en_ctrl_hdr = encode_seq_hdr ~cls:Universal ~tag:16 hdr_len in
let body = String.concat "" part_list in
String.concat "" [en_ctrl_hdr; body]
in
match control.control_details with
| `Unknown_value c_val ->
let = (String.length en_type) + (String.length c_val) in
build_final_str header_len [en_type; c_val]
| `Paged_results_control ctrl_val ->
let en_size = encode_ber_int32 (Int32.of_int ctrl_val.size) in
let en_cookie = encode_ber_octetstring ctrl_val.cookie in
let control_val_length = (String.length en_size) + (String.length en_cookie) in
let control_val_hdr = encode_seq_hdr ~cls:Universal ~tag:16 control_val_length in
let control_value = String.concat "" [control_val_hdr; en_size; en_cookie] in
let control_w_hdr =
encode_ber_octetstring ~cls:Universal ~tag:4 control_value
in
let =
(String.length en_type) + (String.length control_w_hdr)
in
build_final_str header_len [en_type; control_w_hdr]
let encode_ldapcontrol_list control_list =
let all_encoded_ctrls = List.fold_left
(fun str ctrl ->
String.concat str [(encode_ldapcontrol ctrl)])
""
control_list
in
let =
encode_seq_hdr ~cls:Context_specific ~tag:0 ((String.length all_encoded_ctrls))
in
String.concat "" [all_ctrls_header; all_encoded_ctrls]
let decode_ldapcontrol rb =
match decode_ber_header rb with
{ber_class=Universal;ber_tag=16;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
let control_type_string = decode_ber_octetstring rb in
let controlType = decode_control_type control_type_string in
let _ = decode_ber_header rb in
let criticality = false in
let control_details =
begin match controlType with
| `Paged_results_control ->
begin
try
let _ = decode_ber_header rb in
let size = Int32.to_int (decode_ber_int32 rb) in
let cookie = decode_ber_octetstring rb in
`Paged_results_control {size=size; cookie=cookie}
with Readbyte_error End_of_stream -> `Unknown_value ""
end
| `Unknown_type _ -> `Unknown_value ""
end
in
{criticality=criticality;control_details=control_details}
| _ -> raise (LDAP_Decoder "decode_ldapcontrol: expected sequence")
let decode_ldapcontrols rb =
try
let rb =
match decode_ber_header rb with
{ber_class=Context_specific;ber_tag=0;ber_length=control_length;_} ->
readbyte_of_ber_element control_length rb
| _ -> raise (LDAP_Decoder "decode_ldapcontrol: expected control (controls [0])")
in
let rec decode_ldapcontrols' ?(controls=[]) rb =
try decode_ldapcontrols' ~controls:((decode_ldapcontrol rb) :: controls) rb
with Readbyte_error End_of_stream ->
match controls with
[] -> None
| controls -> Some (List.rev controls)
in
decode_ldapcontrols' rb
with Readbyte_error End_of_stream -> None
let encode_components_of_ldapresult {result_code=resultcode;
matched_dn=dn;error_message=msg;
ldap_referral=refs} =
let result_code = encode_ber_enum (Int32.of_int (encode_resultcode resultcode)) in
let matched_dn = encode_ber_octetstring dn in
let error_message = encode_ber_octetstring msg in
let ldap_referral = (match refs with
Some refs ->
let buf = Buffer.create 100 in
List.iter
(fun ref ->
Buffer.add_string buf (encode_ber_octetstring ref))
refs;
let hdr = Buffer.create 101 in
Buffer.add_string hdr
(encode_ber_header
{ber_class=Context_specific;
ber_tag=3;
ber_primitive=false;
ber_length=Definite (Buffer.length buf)});
Buffer.add_buffer hdr buf;
Some (Buffer.contents hdr)
| None -> None)
in
let buf = Buffer.create 100 in
Buffer.add_string buf result_code;
Buffer.add_string buf matched_dn;
Buffer.add_string buf error_message;
(match ldap_referral with
Some s -> Buffer.add_string buf s
| None -> ());
Buffer.contents buf
let encode_ldapresult ?(cls=Universal) ?(tag=16) ldapresult =
let components = encode_components_of_ldapresult ldapresult in
let len = String.length components in
let buf = Buffer.create (len + 20) in
Buffer.add_string buf (encode_ber_header {ber_class=cls;
ber_tag=tag;
ber_primitive=false;
ber_length=(Definite len)});
Buffer.add_string buf components;
Buffer.contents buf
let decode_components_of_ldapresult rb =
let resultCodeval = decode_ber_enum rb in
let matched_dn = decode_ber_octetstring rb in
let error_message = decode_ber_octetstring rb in
let referrals =
try
(match decode_ber_header ~peek:true rb with
{ber_class=Context_specific;ber_tag=3;ber_length=referral_length;_} ->
ignore (decode_ber_header rb);
let rb = readbyte_of_ber_element referral_length rb in
(match decode_berval_list decode_ber_octetstring rb with
[] -> None
| lst -> Some lst)
| _ -> None)
with
Readbyte_error End_of_stream -> None
in
{result_code=(decode_resultcode (Int32.to_int resultCodeval));
matched_dn=matched_dn;
error_message=error_message;
ldap_referral=referrals}
let encode_bindrequest {bind_version=ver;bind_name=dn;bind_authentication=auth} =
let buf = Buffer.create 100 in
let version = encode_ber_int32 (Int32.of_int ver) in
let dn = encode_ber_octetstring dn in
let auth = (match auth with
Simple pwd -> encode_ber_octetstring ~cls:Context_specific ~tag:0 pwd
| Sasl {sasl_mechanism=mech;sasl_credentials=cred} ->
let buf = Buffer.create 10 in
let mech = encode_ber_octetstring mech in
let cred = (match cred with
Some cred -> Some (encode_ber_octetstring cred)
| None -> None)
in
let hdr = encode_seq_hdr ~cls:Context_specific ~tag:3
((String.length mech) +
(match cred with
Some cred -> String.length cred
| None -> 0))
in
Buffer.add_string buf hdr;
Buffer.add_string buf mech;
(match cred with
Some cred -> Buffer.add_string buf cred
| None -> ());
Buffer.contents buf)
in
let hdr =
(encode_ber_header
{ber_class=Application;
ber_tag=0;
ber_primitive=false;
ber_length=Definite ((String.length version) +
(String.length dn) +
(String.length auth))})
in
Buffer.add_string buf hdr;
Buffer.add_string buf version;
Buffer.add_string buf dn;
Buffer.add_string buf auth;
Buffer.contents buf
let decode_bindrequest rb =
let version = decode_ber_int32 rb in
let dn = decode_ber_octetstring rb in
let cred =
(match decode_ber_header rb with
{ber_class=Context_specific;ber_tag=0;ber_length=cred_length;_} ->
Simple (decode_ber_octetstring ~contents:(Some (read_contents rb cred_length)) rb)
| {ber_class=Context_specific;ber_tag=3;ber_length=cred_length;_} ->
let rb = readbyte_of_ber_element cred_length rb in
let sasl_mech = decode_ber_octetstring rb in
let sasl_cred = (try Some (decode_ber_octetstring rb)
with Readbyte_error End_of_stream -> None)
in
Sasl {sasl_mechanism=sasl_mech;sasl_credentials=sasl_cred}
| _ -> raise (LDAP_Decoder "decode_bindrequest: unknown authentication method"))
in
Bind_request
{bind_version=Int32.to_int version;
bind_name=dn;
bind_authentication=cred}
let encode_bindresponse {bind_result=result;bind_serverSaslCredentials=saslcred} =
let encoded_result = encode_components_of_ldapresult result in
let encoded_saslcred = match saslcred with
| Some s -> Some (encode_ber_octetstring ~cls:Context_specific ~tag:7 s)
| None -> None
in
let len = (String.length encoded_result) +
(match encoded_saslcred with
Some s -> (String.length s)
| None -> 0)
in
let buf = Buffer.create (len + 20) in
Buffer.add_string buf
(encode_ber_header {ber_class=Application;
ber_tag=1;ber_primitive=false;
ber_length=Definite len});
Buffer.add_string buf encoded_result;
(match encoded_saslcred with
Some s -> Buffer.add_string buf s
| None -> ());
Buffer.contents buf
let decode_bindresponse rb =
let result = decode_components_of_ldapresult rb in
let saslcred = try Some (decode_ber_octetstring rb) with Readbyte_error End_of_stream -> None in
Bind_response
{bind_result=result;
bind_serverSaslCredentials=saslcred}
let decode_unbindrequest rb =
(try ignore (decode_ber_null rb)
with Readbyte_error End_of_stream -> ());
Unbind_request
let encode_unbindrequest () = encode_ber_null ()
let decode_attributevalueassertion rb =
let attributeDesc = decode_ber_octetstring rb in
let assertionValue = decode_ber_octetstring rb in
{attributeDesc=attributeDesc;
assertionValue=assertionValue}
let encode_substringfilter {attrtype=attr;
substrings={substr_initial=initial;
substr_any=any;substr_final=final}} =
let encode_component ctype vals =
match vals with
[] -> ""
| vals ->
let tag =
match ctype with
`INITIAL -> 0
| `ANY -> 1
| `FINAL -> 2
in
let buf =
Buffer.create
(List.fold_left
(fun s v -> s + (String.length v) + 3)
0 vals)
in
List.iter
(fun v ->
Buffer.add_string buf
(encode_ber_octetstring ~cls:Context_specific ~tag v))
vals;
Buffer.contents buf
in
let e_attr = encode_ber_octetstring attr in
let e_initial = encode_component `INITIAL initial in
let e_any = encode_component `ANY any in
let e_final = encode_component `FINAL final in
let component_len = (String.length e_initial) + (String.length e_any) + (String.length e_final) in
let component_buf = Buffer.create (component_len + 3) in
Buffer.add_string component_buf
(encode_ber_header
{ber_class=Universal;ber_tag=16;ber_primitive=false;
ber_length=(Definite component_len)});
Buffer.add_string component_buf e_initial;
Buffer.add_string component_buf e_any;
Buffer.add_string component_buf e_final;
let len = ((Buffer.length component_buf) + (String.length e_attr)) in
let buf = Buffer.create (len + 3) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Context_specific;ber_tag=4;ber_primitive=false;
ber_length=(Definite len)});
Buffer.add_string buf e_attr;
Buffer.add_buffer buf component_buf;
Buffer.contents buf
let decode_substringfilter rb =
let rec decode_substring_components skel rb =
try
match decode_ber_header ~peek:true rb with
{ber_class=Context_specific;ber_tag=0;_} ->
decode_substring_components
{skel with
substr_initial=((decode_ber_octetstring
~cls:Context_specific
~tag:0 rb) ::
skel.substr_initial)}
rb
| {ber_class=Context_specific;ber_tag=1;_} ->
decode_substring_components
{skel with
substr_any=((decode_ber_octetstring
~cls:Context_specific
~tag:1 rb) ::
skel.substr_any)}
rb
| {ber_class=Context_specific;ber_tag=2;_} ->
decode_substring_components
{skel with
substr_final=((decode_ber_octetstring
~cls:Context_specific
~tag:2 rb) ::
skel.substr_final)}
rb
| _ -> raise (LDAP_Decoder "decode_substringfilter: invalid substring component")
with Readbyte_error End_of_stream -> skel
in
let attrtype = decode_ber_octetstring rb in
let components =
(match decode_ber_header rb with
{ber_class=Universal;ber_tag=16;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
let skel = {substr_initial=[];substr_any=[];substr_final=[]} in
let result = decode_substring_components skel rb in
if result = skel then
raise (LDAP_Decoder "decode_substringfilter: invalid substring filter")
else
result
| _ -> raise (LDAP_Decoder "decode_substringfilter: expected sequence of choice"))
in
{attrtype=attrtype;
substrings=components}
let encode_matchingruleassertion {matchingRule=mrule;ruletype=mruletype;
matchValue=valu;dnAttributes=dnattrs} =
let olen s = match s with Some s -> String.length s | None -> 0 in
let oadd buf encoded =
(match encoded with
Some e -> Buffer.add_string buf e
| None -> ())
in
let oencode tag valu =
match valu with
Some s -> Some (encode_ber_octetstring ~cls:Context_specific ~tag:tag s)
| None -> None
in
let e_mrule = oencode 1 mrule in
let e_mruletype = oencode 2 mruletype in
let e_valu = encode_ber_octetstring ~cls:Context_specific ~tag:3 valu in
let e_dnattrs = encode_ber_bool ~cls:Context_specific ~tag:4 dnattrs in
let len = (olen e_mrule) + (olen e_mruletype) + (String.length e_valu) +
(String.length e_dnattrs)
in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Context_specific;ber_tag=9;
ber_primitive=false;ber_length=(Definite len)});
oadd buf e_mrule;
oadd buf e_mruletype;
Buffer.add_string buf e_valu;
Buffer.add_string buf e_dnattrs;
Buffer.contents buf
let decode_matchingruleassertion rb =
let matchingrule =
(match decode_ber_header ~peek:true rb with
{ber_class=Context_specific;ber_tag=0;ber_length=_len;_} ->
Some (decode_ber_octetstring ~cls:Context_specific ~tag:1 rb)
| _ -> None)
in
let ruletype =
(match decode_ber_header ~peek:true rb with
{ber_class=Context_specific;ber_tag=1;ber_length=_len;_} ->
Some (decode_ber_octetstring ~cls:Context_specific ~tag:2 rb)
| _ -> None)
in
let matchvalue = decode_ber_octetstring rb in
let dnattributes = try decode_ber_bool rb with Readbyte_error End_of_stream -> false in
{matchingRule=matchingrule;
ruletype=ruletype;
matchValue=matchvalue;
dnAttributes=dnattributes}
let rec encode_ldapfilter filter =
let encode_complex lst hdr =
let encoded_lst = encode_berval_list encode_ldapfilter lst in
let len = String.length encoded_lst in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header {hdr with ber_length=(Definite len)});
Buffer.add_string buf encoded_lst;
Buffer.contents buf
in
let encode_simple attr valu hdr =
let e_attr = encode_ber_octetstring attr in
let e_valu = encode_ber_octetstring valu in
let len = (String.length e_attr) + (String.length e_valu) in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header {hdr with ber_length=(Definite len)});
Buffer.add_string buf e_attr;
Buffer.add_string buf e_valu;
Buffer.contents buf
in
let hdr = {ber_class=Context_specific;ber_tag=0;
ber_primitive=false;ber_length=Definite 0}
in
match filter with
`And lst -> encode_complex lst hdr
| `Or lst -> encode_complex lst {hdr with ber_tag=1}
| `Not f -> encode_complex [f] {hdr with ber_tag=2}
| `EqualityMatch {attributeDesc=attr;assertionValue=valu} ->
encode_simple attr valu {hdr with ber_tag=3}
| `Substrings substrs -> encode_substringfilter substrs
| `GreaterOrEqual {attributeDesc=attr;assertionValue=valu} ->
encode_simple attr valu {hdr with ber_tag=5}
| `LessOrEqual {attributeDesc=attr;assertionValue=valu} ->
encode_simple attr valu {hdr with ber_tag=6}
| `Present attr -> encode_ber_octetstring ~cls:Context_specific ~tag:7 attr
| `ApproxMatch {attributeDesc=attr;assertionValue=valu} ->
encode_simple attr valu {hdr with ber_tag=8}
| `ExtensibleMatch extn -> encode_matchingruleassertion extn
let rec decode_ldapfilter rb =
match decode_ber_header rb with
{ber_class=Context_specific;ber_tag=0;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
`And (decode_berval_list decode_ldapfilter rb)
| {ber_class=Context_specific;ber_tag=1;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
`Or (decode_berval_list decode_ldapfilter rb)
| {ber_class=Context_specific;ber_tag=2;ber_length=_len;_} ->
`Not (decode_ldapfilter rb)
| {ber_class=Context_specific;ber_tag=3;ber_length=_len;_} ->
`EqualityMatch (decode_attributevalueassertion rb)
| {ber_class=Context_specific;ber_tag=4;ber_length=_len;_} ->
`Substrings (decode_substringfilter rb)
| {ber_class=Context_specific;ber_tag=5;ber_length=_len;_} ->
`GreaterOrEqual (decode_attributevalueassertion rb)
| {ber_class=Context_specific;ber_tag=6;ber_length=_len;_} ->
`LessOrEqual (decode_attributevalueassertion rb)
| {ber_class=Context_specific;ber_tag=7;ber_length=len;_} ->
`Present (decode_ber_octetstring ~contents:(Some (read_contents rb len)) rb)
| {ber_class=Context_specific;ber_tag=8;ber_length=_len;_} ->
`ApproxMatch (decode_attributevalueassertion rb)
| {ber_class=Context_specific;ber_tag=9;ber_length=_len;_} ->
`ExtensibleMatch (decode_matchingruleassertion rb)
| _ -> raise (LDAP_Decoder "decode_filter: expected filter part")
let encode_attributedescriptionlist attrs =
let e_attrs = encode_berval_list encode_ber_octetstring attrs in
let len = String.length e_attrs in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Universal;ber_tag=16;
ber_primitive=false;ber_length=(Definite len)});
Buffer.add_string buf e_attrs;
Buffer.contents buf
let decode_attributedescriptionlist rb =
match decode_ber_header rb with
{ber_class=Universal;ber_tag=16;_} ->
decode_berval_list decode_ber_octetstring rb
| _ -> raise (LDAP_Decoder "decode_attributedescriptionlist: expected sequence")
let encode_searchrequest {baseObject=base;scope=scope;
derefAliases=deref;sizeLimit=sizelimit;
timeLimit=timelimit;typesOnly=typesonly;
filter=filter;s_attributes=attributes} =
let e_base = encode_ber_octetstring base in
let e_scope =
encode_ber_enum
(match scope with
`BASE -> 0l
| `ONELEVEL -> 1l
| `SUBTREE -> 2l)
in
let e_deref =
encode_ber_enum
(match deref with
`NEVERDEREFALIASES -> 0l
| `DEREFINSEARCHING -> 1l
| `DEREFFINDINGBASE -> 2l
| `DEREFALWAYS -> 3l)
in
let e_sizelimit = encode_ber_int32 sizelimit in
let e_timelimit = encode_ber_int32 timelimit in
let e_typesonly = encode_ber_bool typesonly in
let e_filter = encode_ldapfilter filter in
let e_attributes = encode_attributedescriptionlist attributes in
let len = (String.length e_base) + (String.length e_scope) +
(String.length e_deref) + (String.length e_sizelimit) +
(String.length e_timelimit) + (String.length e_typesonly) +
(String.length e_filter) + (String.length e_attributes)
in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Application;ber_tag=3;
ber_primitive=false;ber_length=(Definite len)});
Buffer.add_string buf e_base;
Buffer.add_string buf e_scope;
Buffer.add_string buf e_deref;
Buffer.add_string buf e_sizelimit;
Buffer.add_string buf e_timelimit;
Buffer.add_string buf e_typesonly;
Buffer.add_string buf e_filter;
Buffer.add_string buf e_attributes;
Buffer.contents buf
let decode_searchrequest rb =
let base = decode_ber_octetstring rb in
let scope = (match decode_ber_enum rb with
0l -> `BASE
| 1l -> `ONELEVEL
| 2l -> `SUBTREE
| _ -> raise (LDAP_Decoder "decode_searchrequest: invalid scope"))
in
let deref = (match decode_ber_enum rb with
0l -> `NEVERDEREFALIASES
| 1l -> `DEREFINSEARCHING
| 2l -> `DEREFFINDINGBASE
| 3l -> `DEREFALWAYS
| _ -> raise (LDAP_Decoder "decode_searchrequest: invalid deref policy"))
in
let sizelimit = decode_ber_int32 rb in
let timelimit = decode_ber_int32 rb in
let typesonly = decode_ber_bool rb in
let filter = decode_ldapfilter rb in
let attributes = decode_attributedescriptionlist rb in
Search_request
{baseObject=base;
scope=scope;
derefAliases=deref;
sizeLimit=sizelimit;
timeLimit=timelimit;
typesOnly=typesonly;
filter=filter;
s_attributes=attributes}
let encode_attribute {attr_type=attrtype;attr_vals=attrvals} =
let e_attrtype = encode_ber_octetstring attrtype in
let e_attrvals =
let vals = encode_berval_list encode_ber_octetstring attrvals in
let len = String.length vals in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Universal;ber_tag=17;
ber_primitive=false;ber_length=(Definite len)});
Buffer.add_string buf vals;
Buffer.contents buf
in
let len = (String.length e_attrtype) + (String.length e_attrvals) in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Universal;ber_tag=16;
ber_primitive=false;ber_length=(Definite len)});
Buffer.add_string buf e_attrtype;
Buffer.add_string buf e_attrvals;
Buffer.contents buf
let decode_attribute rb =
match decode_ber_header rb with
{ber_class=Universal;ber_tag=16;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
let attrtype = decode_ber_octetstring rb in
let attrvals =
match decode_ber_header rb with
{ber_class=Universal;ber_tag=17;_} ->
decode_berval_list decode_ber_octetstring rb
| _ -> raise (LDAP_Decoder "decode_attribute: expected set")
in
{attr_type=attrtype;attr_vals=attrvals}
| _ -> raise (LDAP_Decoder "decode_attributes: expected sequence")
let encode_searchresultentry ?(tag=4) {sr_dn=dn;sr_attributes=attributes} =
let e_dn = encode_ber_octetstring dn in
let e_attributes =
let valu = encode_berval_list encode_attribute attributes in
let len = String.length valu in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Universal;ber_tag=16;
ber_primitive=false;ber_length=(Definite len)});
Buffer.add_string buf valu;
Buffer.contents buf
in
let len = (String.length e_dn) + (String.length e_attributes) in
let buf = Buffer.create 50 in
Buffer.add_string buf
(encode_ber_header
{ber_class=Application;ber_tag=tag;
ber_primitive=false;ber_length=(Definite len)});
Buffer.add_string buf e_dn;
Buffer.add_string buf e_attributes;
Buffer.contents buf
let decode_searchresultentry rb =
let dn = decode_ber_octetstring rb in
let attributes =
match decode_ber_header rb with
{ber_class=Universal;ber_tag=16;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_berval_list decode_attribute rb
| _ -> raise (LDAP_Decoder "decode_searchresultentry: expected squenece")
in
Search_result_entry
{sr_dn=dn;sr_attributes=attributes}
let encode_searchresultdone = encode_ldapresult ~cls:Application ~tag:5
let decode_searchresultdone rb =
Search_result_done
(decode_components_of_ldapresult rb)
let encode_searchresultreference srf =
let refs = encode_berval_list encode_ber_octetstring srf in
let len = String.length refs in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Application;ber_tag=19;
ber_primitive=false;ber_length=(Definite len)});
Buffer.add_string buf refs;
Buffer.contents buf
let decode_searchresultreference rb =
Search_result_reference
(decode_berval_list decode_ber_octetstring rb)
let encode_modification {mod_op=op;mod_value=attr} =
let e_op = encode_ber_enum
(match op with
`ADD -> 0l
| `DELETE -> 1l
| `REPLACE -> 2l)
in
let e_attr = encode_attribute attr in
let len = (String.length e_op) + (String.length e_attr) in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Universal;ber_tag=16;ber_primitive=false;
ber_length=(Definite len)});
Buffer.add_string buf e_op;
Buffer.add_string buf e_attr;
Buffer.contents buf
let decode_modification rb =
match decode_ber_header rb with
{ber_class=Universal;ber_tag=16;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
let op = (match decode_ber_enum rb with
0l -> `ADD
| 1l -> `DELETE
| 2l -> `REPLACE
| _ -> raise (LDAP_Decoder "decode_modification: unknown operation"))
in
let attr = decode_attribute rb in
{mod_op=op;mod_value=attr}
| {ber_class=_cls;ber_tag=tag;ber_length=_len;_} ->
raise (LDAP_Decoder
("decode_modification: expected sequence, or enum, " ^
("tag: " ^ (string_of_int tag))))
let encode_modifyrequest {mod_dn=dn;modification=mods} =
let e_dn = encode_ber_octetstring dn in
let e_mods =
let vals = encode_berval_list encode_modification mods in
let len = String.length vals in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Universal;ber_tag=16;ber_primitive=false;
ber_length=(Definite len)});
Buffer.add_string buf vals;
Buffer.contents buf
in
let len = (String.length e_dn) + (String.length e_mods) in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Application;ber_tag=6;
ber_primitive=false;ber_length=(Definite len)});
Buffer.add_string buf e_dn;
Buffer.add_string buf e_mods;
Buffer.contents buf
let decode_modifyrequest rb =
let dn = decode_ber_octetstring rb in
let mods =
match decode_ber_header rb with
{ber_class=Universal;ber_tag=16;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_berval_list decode_modification rb
| _ -> raise (LDAP_Decoder "decode_modifyrequest: expected sequence")
in
Modify_request {mod_dn=dn;modification=mods}
let encode_modifyresponse = encode_ldapresult ~cls:Application ~tag:7
let decode_modifyresponse rb =
Modify_response (decode_components_of_ldapresult rb)
let encode_addrequest = encode_searchresultentry ~tag:8
let decode_addrequest rb =
let res = decode_searchresultentry rb in
match res with
Search_result_entry res -> Add_request res
| _ -> raise (LDAP_Decoder "decode_addrequest: invalid addrequest")
let encode_addresponse = encode_ldapresult ~cls:Application ~tag:9
let decode_addresponse rb =
Add_response (decode_components_of_ldapresult rb)
let encode_deleterequest req =
encode_ber_octetstring ~cls:Application ~tag:10 req
let decode_deleterequest len rb =
Delete_request
(decode_ber_octetstring ~contents:(Some (read_contents rb len)) rb)
let encode_deleteresponse = encode_ldapresult ~cls:Application ~tag:11
let decode_deleteresponse rb =
Delete_response (decode_components_of_ldapresult rb)
let encode_modifydnrequest {modn_dn=dn;modn_newrdn=newrdn;
modn_deleteoldrdn=deleteold;
modn_newSuperior=newsup} =
let e_dn = encode_ber_octetstring dn in
let e_newrdn = encode_ber_octetstring newrdn in
let e_deleteold = encode_ber_bool deleteold in
let e_newsup = (match newsup with
Some s -> Some (encode_ber_octetstring s)
| None -> None)
in
let len = (String.length e_dn) + (String.length e_newrdn) +
(String.length e_deleteold) + (match e_newsup with
Some s -> String.length s
| None -> 0)
in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Application;ber_tag=12;ber_primitive=false;
ber_length=(Definite len)});
Buffer.add_string buf e_dn;
Buffer.add_string buf e_newrdn;
Buffer.add_string buf e_deleteold;
(match e_newsup with
Some s -> Buffer.add_string buf s
| None -> ());
Buffer.contents buf
let decode_modifydnrequest rb =
let dn = decode_ber_octetstring rb in
let newrdn = decode_ber_octetstring rb in
let deleteoldrdn = decode_ber_bool rb in
let newsup = (try Some (decode_ber_octetstring ~cls:Context_specific ~tag:0 rb)
with Readbyte_error End_of_stream -> None)
in
Modify_dn_request
{modn_dn=dn;modn_newrdn=newrdn;
modn_deleteoldrdn=deleteoldrdn;
modn_newSuperior=newsup}
let encode_modifydnresponse = encode_ldapresult ~cls:Application ~tag:13
let decode_modifydnresponse rb =
Modify_dn_response (decode_components_of_ldapresult rb)
let encode_comparerequest {cmp_dn=dn;
cmp_ava={attributeDesc=attr;assertionValue=valu}} =
let e_dn = encode_ber_octetstring dn in
let e_attr = encode_ber_octetstring attr in
let e_valu = encode_ber_octetstring valu in
let len = (String.length e_dn) + (String.length e_attr) +
(String.length e_valu)
in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Application;ber_tag=14;
ber_primitive=false;ber_length=(Definite len)});
Buffer.add_string buf e_dn;
Buffer.add_string buf e_attr;
Buffer.add_string buf e_valu;
Buffer.contents buf
let decode_comparerequest rb =
let dn = decode_ber_octetstring rb in
let attr = decode_ber_octetstring rb in
let valu = decode_ber_octetstring rb in
Compare_request
{cmp_dn=dn;cmp_ava={attributeDesc=attr;assertionValue=valu}}
let encode_compareresponse = encode_ldapresult ~cls:Application ~tag:15
let decode_compareresponse rb =
Compare_response (decode_components_of_ldapresult rb)
let encode_abandonrequest msgid =
let e_msgid = encode_ber_int32 msgid in
let len = String.length e_msgid in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Application;ber_tag=16;ber_primitive=false;
ber_length=(Definite len)});
Buffer.add_string buf e_msgid;
Buffer.contents buf
let decode_abandonrequest rb =
Abandon_request (decode_ber_int32 rb)
let encode_extendedrequest {ext_requestName=reqname;ext_requestValue=reqval} =
let e_reqname = encode_ber_octetstring reqname in
let e_reqval = (match reqval with
Some s -> Some (encode_ber_octetstring s)
| None -> None)
in
let len = (String.length e_reqname) + (match e_reqval with
Some s -> String.length s
| None -> 0)
in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Application;ber_tag=23;ber_primitive=false;
ber_length=(Definite len)});
Buffer.add_string buf e_reqname;
(match e_reqval with
Some s -> Buffer.add_string buf s
| None -> ());
Buffer.contents buf
let decode_extendedrequest rb =
let reqname = decode_ber_octetstring ~cls:Context_specific ~tag:0 rb in
let reqval =
try Some (decode_ber_octetstring ~cls:Context_specific ~tag:1 rb)
with Readbyte_error End_of_stream -> None
in
Extended_request
{ext_requestName=reqname;ext_requestValue=reqval}
let encode_extendedresponse {ext_result=result;ext_responseName=resname;ext_response=res} =
let e_result = encode_components_of_ldapresult result in
let e_resname = (match resname with
Some s -> Some (encode_ber_octetstring s)
| None -> None)
in
let e_res = (match res with
Some s -> Some (encode_ber_octetstring s)
| None -> None)
in
let len = (String.length e_result) +
(match e_resname with
Some s -> String.length s
| None -> 0) +
(match e_res with
Some s -> String.length s
| None -> 0)
in
let buf = Buffer.create (len + 10) in
Buffer.add_string buf
(encode_ber_header
{ber_class=Application;ber_tag=24;ber_primitive=false;
ber_length=(Definite len)});
Buffer.add_string buf e_result;
(match e_resname with
Some s -> Buffer.add_string buf s
| None -> ());
(match e_res with
Some s -> Buffer.add_string buf s
| None -> ());
Buffer.contents buf
let decode_extendedresponse rb =
let result = decode_components_of_ldapresult rb in
let responsename = ref None in
let response = ref None in
(try
responsename := Some (decode_ber_octetstring ~cls:Context_specific ~tag:10 rb);
response := Some (decode_ber_octetstring ~cls:Context_specific ~tag:11 rb)
with Readbyte_error End_of_stream -> ());
Extended_response
{ext_result=result;
ext_responseName=(!responsename);
ext_response=(!response)}
let encode_ldapmessage {messageID=msgid;protocolOp=protocol_op;controls=controls} =
let encoded_op =
match protocol_op with
Bind_request br -> encode_bindrequest br
| Bind_response br -> encode_bindresponse br
| Unbind_request -> encode_unbindrequest ()
| Search_request sr -> encode_searchrequest sr
| Search_result_entry sre -> encode_searchresultentry sre
| Search_result_done srd -> encode_searchresultdone srd
| Search_result_reference a -> encode_searchresultreference a
| Modify_request mreq -> encode_modifyrequest mreq
| Modify_response res -> encode_modifyresponse res
| Add_request sre -> encode_addrequest sre
| Add_response res -> encode_addresponse res
| Delete_request req -> encode_deleterequest req
| Delete_response res -> encode_deleteresponse res
| Modify_dn_request req -> encode_modifydnrequest req
| Modify_dn_response res -> encode_modifydnresponse res
| Compare_request req -> encode_comparerequest req
| Compare_response res -> encode_compareresponse res
| Abandon_request req -> encode_abandonrequest req
| Extended_request req -> encode_extendedrequest req
| Extended_response res -> encode_extendedresponse res
in
match controls with
| Some ctrl_lst ->
let en_ctrl_lst = encode_ldapcontrol_list ctrl_lst in
let buf =
Buffer.create ((String.length encoded_op) + 20 + (String.length en_ctrl_lst))
in
let msgid = encode_ber_int32 msgid in
Buffer.add_string buf (encode_seq_hdr (
(String.length encoded_op) +
(String.length msgid) +
(String.length en_ctrl_lst)));
Buffer.add_string buf msgid;
Buffer.add_string buf encoded_op;
Buffer.add_string buf en_ctrl_lst;
Buffer.contents buf
| None ->
let buf = Buffer.create ((String.length encoded_op) + 20) in
let msgid = encode_ber_int32 msgid in
Buffer.add_string buf
(encode_seq_hdr ((String.length encoded_op) + (String.length msgid)));
Buffer.add_string buf msgid;
Buffer.add_string buf encoded_op;
Buffer.contents buf
let decode_ldapmessage rb =
match decode_ber_header rb with
{ber_class=Universal;ber_tag=16;ber_length=total_length;_} ->
let rb = readbyte_of_ber_element total_length rb in
let messageid = decode_ber_int32 rb in
let protocol_op =
match decode_ber_header rb with
{ber_class=Application;ber_tag=0;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_bindrequest rb
| {ber_class=Application;ber_tag=1;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_bindresponse rb
| {ber_class=Application;ber_tag=2;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_unbindrequest rb
| {ber_class=Application;ber_tag=3;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_searchrequest rb
| {ber_class=Application;ber_tag=4;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_searchresultentry rb
| {ber_class=Application;ber_tag=5;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_searchresultdone rb
| {ber_class=Application;ber_tag=19;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_searchresultreference rb
| {ber_class=Application;ber_tag=6;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_modifyrequest rb
| {ber_class=Application;ber_tag=7;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_modifyresponse rb
| {ber_class=Application;ber_tag=8;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_addrequest rb
| {ber_class=Application;ber_tag=9;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_addresponse rb
| {ber_class=Application;ber_tag=10;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_deleterequest len rb
| {ber_class=Application;ber_tag=11;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_deleteresponse rb
| {ber_class=Application;ber_tag=12;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_modifydnrequest rb
| {ber_class=Application;ber_tag=13;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_modifydnresponse rb
| {ber_class=Application;ber_tag=14;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_comparerequest rb
| {ber_class=Application;ber_tag=15;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_compareresponse rb
| {ber_class=Application;ber_tag=16;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_abandonrequest rb
| {ber_class=Application;ber_tag=23;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_extendedrequest rb
| {ber_class=Application;ber_tag=24;ber_length=len;_} ->
let rb = readbyte_of_ber_element len rb in
decode_extendedresponse rb
| _ -> raise (LDAP_Decoder "protocol error")
in
let controls = decode_ldapcontrols rb in
{messageID=messageid;protocolOp=protocol_op;controls=controls}
| _ -> raise (LDAP_Decoder "decode_ldapmessage: expected sequence")