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 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
|
#-----------------------------------------------------------------------------
# Copyright (C) 1999-2004 Jochen C. Loewer (loewerj@web.de)
#-----------------------------------------------------------------------------
#
# A (partial) LDAPv3 protocol implementation in plain Tcl.
#
# See RFC 2251 and ASN.1 (X.680) and BER (X.690).
#
#
# This software is copyrighted by Jochen C. Loewer (loewerj@web.de). The
# following terms apply to all files associated with the software unless
# explicitly disclaimed in individual files.
#
# The authors hereby grant permission to use, copy, modify, distribute,
# and license this software and its documentation for any purpose, provided
# that existing copyright notices are retained in all copies and that this
# notice is included verbatim in any distributions. No written agreement,
# license, or royalty fee is required for any of the authorized uses.
# Modifications to this software may be copyrighted by their authors
# and need not follow the licensing terms described here, provided that
# the new terms are clearly indicated on the first page of each file where
# they apply.
#
# IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
# FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
# ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
# DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
# IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
# NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
# MODIFICATIONS.
#
#
# $Log: ldap.tcl,v $
# Revision 1.7 2005/07/20 11:58:17 mic42
# * ldap.tcl: Applied fix for bug 1239915. Thanks to Pierre David for the patch.
# * pkgIndex.tcl: Version raised to 1.2.1
#
# Revision 1.6 2005/03/16 18:21:51 andreas_kupries
#
# * ldap.tcl (ldap::asnGetInteger): Fixed [SF Tcllib Bug 1164663], a
# copy/paste bug in the definition of this procedure. It belongs
# into the ldap namespace, not the asn namespace.
#
# Revision 1.5 2005/02/16 03:54:24 andreas_kupries
# Reformatting for indentation, trimmed trailing whitespace.
#
# ldap merge, manual help required.
#
# Import of fixes for ldap by Michael Schlenker, cross-ported
# from the asn fixes.
#
# Import of asn fixes by Michael Schlenker.
#
# More fixes and 8.5 feature removal for the compiler
# packages.
#
# Revision 1.4 2005/02/15 19:05:16 mic42
# Fixed various issues with signed/unsigned values in the ldap module by crossporting from the asn module
#
# Revision 1.3 2004/09/24 06:54:24 andreas_kupries
# Scattered small fixes, mostly adding braces to unbraced
# expressions.
#
# Fixed problem with mismatched package names for the packages
# implementing the standard types.
#
# Revision 1.1 2004/04/27 19:45:35 andreas_kupries
#
# * installed_modules.tcl: Added new module.
# * examples/ldap:
# * modules/ldap: New module: LDAP client. Provided to us by Joechen
# Loewer <loewerj@web.de>.
#
# * Added doctools documentation.
#
# Revision 1.1 2000/03/23 17:40:22 17:40:22 jolo (Jochen Loewer)
# Initial revision
#
#
# written by Jochen Loewer
# 3 June, 1999
#
#-----------------------------------------------------------------------------
package require Tcl 8.4
package provide ldap 1.2.1
namespace eval ldap {
namespace export connect secure_connect \
disconnect \
bind unbind \
search \
modify \
add \
delete \
modifyDN
variable SSLCertifiedAuthoritiesFile
variable doDebug
set doDebug 0
array set resultCode2String {
0 success
1 operationsError
2 protocolError
3 timeLimitExceeded
4 sizeLimitExceeded
5 compareFalse
6 compareTrue
7 authMethodNotSupported
8 strongAuthRequired
10 referral
11 adminLimitExceeded
12 unavailableCriticalExtension
13 confidentialityRequired
14 saslBindInProgress
16 noSuchAttribute
17 undefinedAttributeType
18 inappropriateMatching
19 constraintViolation
20 attributeOrValueExists
21 invalidAttributeSyntax
32 noSuchObject
33 aliasProblem
34 invalidDNSyntax
35 isLeaf
36 aliasDereferencingProblem
48 inappropriateAuthentication
49 invalidCredentials
50 insufficientAccessRights
51 busy
52 unavailable
53 unwillingToPerform
54 loopDetect
64 namingViolation
65 objectClassViolation
66 notAllowedOnNonLeaf
67 notAllowedOnRDN
68 entryAlreadyExists
69 objectClassModsProhibited
80 other
}
}
#-----------------------------------------------------------------------------
# connect
#
#-----------------------------------------------------------------------------
proc ldap::connect { host {port 389} } {
#--------------------------------------
# connect via TCP/IP
#--------------------------------------
set sock [socket $host $port]
fconfigure $sock -blocking yes -translation binary
#--------------------------------------
# initialize connection array
#--------------------------------------
upvar ::ldap::ldap$sock conn
catch { unset conn }
set conn(sock) $sock
set conn(messageId) 0
return ::ldap::ldap$sock
}
#-----------------------------------------------------------------------------
# secure_connect
#
#-----------------------------------------------------------------------------
proc ldap::secure_connect { host {port 636} } {
variable SSLCertifiedAuthoritiesFile
package require tls
#------------------------------------------------------------------
# connect via TCP/IP
#------------------------------------------------------------------
set sock [socket $host $port]
fconfigure $sock -blocking yes -translation binary
#------------------------------------------------------------------
# make it a SSL connection
#
#------------------------------------------------------------------
#tls::import $sock -cafile $SSLCertifiedAuthoritiesFile -ssl2 no -ssl3 yes -tls1 yes
tls::import $sock -cafile "" -certfile "" -keyfile "" \
-request 1 -server 0 -require 0 -ssl2 no -ssl3 yes -tls1 yes
set retry 0
while {1} {
if {$retry > 20} {
close $sock
return -code error "too long retry to setup SSL connection"
}
if {[catch { tls::handshake $sock } err]} {
if {[string match "*resource temporarily unavailable*" $err]} {
after 50
incr retry
} else {
close $sock
return -code error $err
}
} else {
break
}
}
#puts stderr [tls::status $sock]
#--------------------------------------
# initialize connection array
#--------------------------------------
upvar ::ldap::ldap$sock conn
catch { unset conn }
set conn(sock) $sock
set conn(messageId) 0
return ::ldap::ldap$sock
}
#-----------------------------------------------------------------------------
# bind - does a bind with simple authentication
#
#-----------------------------------------------------------------------------
proc ldap::bind { handle {name ""} {password ""} } {
upvar $handle conn
incr conn(messageId)
#-----------------------------------------------------------------
# marshal bind request packet and send it
#
#-----------------------------------------------------------------
set request [asnSequence \
[asnInteger $conn(messageId)] \
[asnApplicationConstr 0 \
[asnInteger 3] \
[asnOctetString $name] \
[asnChoice 0 $password] \
] \
]
debugData bindRequest $request
puts -nonewline $conn(sock) $request
flush $conn(sock)
#-----------------------------------------------------------------
# receive (blocking) bind response packet(s) and unmarshal it
#
#-----------------------------------------------------------------
asnGetResponse $conn(sock) response
debugData bindResponse $response
asnGetSequence response response
asnGetInteger response MessageID
if { $MessageID != $conn(messageId) } {
error "umatching response packet ($MessageID != $conn(messageId))"
}
asnGetApplication response appNum
if { $appNum != 1 } {
error "unexpected application number ($appNum != 1)"
}
asnGetEnumeration response resultCode
asnGetOctetString response matchedDN
asnGetOctetString response errorMessage
if {$resultCode != 0} {
return -code error "LDAP error $ldap::resultCode2String($resultCode) '$matchedDN': $errorMessage"
}
}
#-----------------------------------------------------------------------------
# unbind
#
#-----------------------------------------------------------------------------
proc ldap::unbind { handle } {
upvar $handle conn
incr conn(messageId)
#------------------------------------------------
# marshal unbind request packet and send it
#------------------------------------------------
set request [asnSequence \
[asnInteger $conn(messageId)] \
[asnApplication 2 ""] ]
debugData unbindRequest $request
puts -nonewline $conn(sock) $request
flush $conn(sock)
}
#-----------------------------------------------------------------------------
# buildUpFilter - parses the text representation of LDAP search
# filters and transforms it into the correct
# marshalled representation for the search request
# packet
#
#-----------------------------------------------------------------------------
proc ldap::buildUpFilter { filter } {
set first [lindex $filter 0]
set data ""
switch -regexp -- $first {
^\\&$ { #--- and -------------------------------------------
foreach term [lrange $filter 1 end] {
append data [buildUpFilter $term]
}
return [asnChoiceConstr 0 $data]
}
^\\|$ { #--- or --------------------------------------------
foreach term [lrange $filter 1 end] {
append data [buildUpFilter $term]
}
return [asnChoiceConstr 1 $data]
}
^\\!$ { #--- not -------------------------------------------
return [asnChoiceConstr 2 [buildUpFilter [lindex $filter 1]]]
}
=\\*$ { #--- present ---------------------------------------
set endpos [expr {[string length $first] -3}]
set attributetype [string range $first 0 $endpos]
return [asnChoice 7 $attributetype]
}
^[0-9A-z.]*~= { #--- approxMatch --------------------------
regexp {^([0-9A-z.]*)~=(.*)$} $first all attributetype value
return [asnChoiceConstr 8 [asnOctetString $attributetype] \
[asnOctetString $value] ]
}
^[0-9A-z.]*<= { #--- lessOrEqual --------------------------
regexp {^([0-9A-z.]*)<=(.*)$} $first all attributetype value
return [asnChoiceConstr 6 [asnOctetString $attributetype] \
[asnOctetString $value] ]
}
^[0-9A-z.]*>= { #--- greaterOrEqual -----------------------
regexp {^([0-9A-z.]*)>=(.*)$} $first all attributetype value
return [asnChoiceConstr 5 [asnOctetString $attributetype] \
[asnOctetString $value] ]
}
^[0-9A-z.]*=.*\\*.* { #--- substrings -----------------
regexp {^([0-9A-z.]*)=(.*)$} $first all attributetype value
regsub -all {\*+} $value {*} value
set value [split $value "*"]
set firstsubstrtype 0 ;# initial
set lastsubstrtype 2 ;# final
if {[string equal [lindex $value 0] ""]} {
set firstsubstrtype 1 ;# any
set value [lreplace $value 0 0]
}
if {[string equal [lindex $value end] ""]} {
set lastsubstrtype 1 ;# any
set value [lreplace $value end end]
}
set n [llength $value]
set i 1
set l {}
set substrtype 0 ;# initial
foreach str $value {
if {$i == 1 && $i == $n} {
if {$firstsubstrtype == 0} {
set substrtype 0 ;# initial
} elseif {$lastsubstrtype == 2} {
set substrtype 2 ;# final
} else {
set substrtype 1 ;# any
}
} elseif {$i == 1} {
set substrtype $firstsubstrtype
} elseif {$i == $n} {
set substrtype $lastsubstrtype
} else {
set substrtype 1 ;# any
}
lappend l [asnChoice $substrtype $str]
incr i
}
return [asnChoiceConstr 4 [asnOctetString $attributetype] \
[asnSequenceFromList $l] ]
}
^[0-9A-z.]*= { #--- equal ---------------------------------
regexp {^([0-9A-z.]*)=(.*)$} $first all attributetype value
trace "equal: attributetype='$attributetype' value='$value'"
return [asnChoiceConstr 3 [asnOctetString $attributetype] \
[asnOctetString $value] ]
}
default {
return [buildUpFilter $first]
#error "cant handle $first for filter part"
}
}
}
#-----------------------------------------------------------------------------
# search - performs a LDAP search below the baseObject tree using a
# complex LDAP search expression (like "|(cn=Linus*)(sn=Torvalds*)"
# and returns all matching objects (DNs) with given attributes
# (or all attributes if empty list is given) as list:
#
# dn1 { attr1 val1 attr2 val2 ... } dn2 { a1 v1 } ....
#
#-----------------------------------------------------------------------------
proc ldap::search { handle baseObject filterString attributes } {
upvar $handle conn
set scope 2
set derefAliases 0
set sizeLimit 0
set timeLimit 0
set attrsOnly 0
#----------------------------------------------------------
# marshal filter and attributes parameter
#----------------------------------------------------------
regsub -all {\(} $filterString " \{" filterString
regsub -all {\)} $filterString "\} " filterString
set berFilter [buildUpFilter $filterString]
set berAttributes ""
foreach attribute $attributes {
append berAttributes [asnOctetString $attribute]
}
#----------------------------------------------------------
# marshal search request packet and send it
#----------------------------------------------------------
incr conn(messageId)
set request [asnSequence \
[asnInteger $conn(messageId)] \
[asnApplicationConstr 3 \
[asnOctetString $baseObject] \
[asnEnumeration $scope] \
[asnEnumeration $derefAliases] \
[asnInteger $sizeLimit] \
[asnInteger $timeLimit] \
[asnBoolean $attrsOnly] \
$berFilter \
[asnSequence $berAttributes] \
] \
]
debugData searchRequest $request
puts -nonewline $conn(sock) $request
flush $conn(sock)
#----------------------------------------------------------
# receive (blocking) search response packet(s)
#----------------------------------------------------------
set results {}
set lastPacket 0
while { !$lastPacket } {
asnGetResponse $conn(sock) response
debugData searchResponse $response
asnGetSequence response response
asnGetInteger response MessageID
if { $MessageID != $conn(messageId) } {
error "umatching response packet ($MessageID != $conn(messageId))"
}
asnGetApplication response appNum
if { ($appNum != 4) && ($appNum != 5) } {
error "unexpected application number ($appNum != 4 or 5)"
}
if {$appNum == 4} {
#----------------------------------------------------------
# unmarshal search data packet
#----------------------------------------------------------
asnGetOctetString response objectName
asnGetSequence response attributes
set result_attributes {}
while { [string length $attributes] != 0 } {
asnGetSequence attributes attribute
asnGetOctetString attribute attrType
asnGetSet attribute attrValues
set result_attrValues {}
while { [string length $attrValues] != 0 } {
asnGetOctetString attrValues attrValue
lappend result_attrValues $attrValue
}
lappend result_attributes $attrType $result_attrValues
}
lappend results [list $objectName $result_attributes]
}
if {$appNum == 5} {
#----------------------------------------------------------
# unmarshal search final response packet
#----------------------------------------------------------
asnGetEnumeration response resultCode
asnGetOctetString response matchedDN
asnGetOctetString response errorMessage
if {$resultCode != 0} {
return -code error "LDAP error $ldap::resultCode2String($resultCode): $errorMessage"
}
set lastPacket 1
}
}
return $results
}
#-----------------------------------------------------------------------------
# modify - provides attribute modifications on one single object (DN):
# o replace attributes with new values
# o delete attributes (having certain values)
# o add attributes with new values
#
#-----------------------------------------------------------------------------
proc ldap::modify { handle dn
attrValToReplace { attrToDelete {} } { attrValToAdd {} } } {
upvar $handle conn
set operationAdd 0
set operationDelete 1
set operationReplace 2
#------------------------------------------------------------------
# marshal attribute modify operations
# - always mode 'replace' ! see rfc2251:
#
# replace: replace all existing values of the given attribute
# with the new values listed, creating the attribute if it
# did not already exist. A replace with no value will delete
# the entire attribute if it exists, and is ignored if the
# attribute does not exist.
#
#------------------------------------------------------------------
set modifications {}
foreach { attrName attrValue } $attrValToReplace {
append modifications [asnSequence \
[asnEnumeration $operationReplace ] \
[asnSequence \
[asnOctetString $attrName ] \
[asnSet \
[asnOctetString $attrValue ] \
] \
] \
]
}
#------------------------------------------------------------------
# marshal attribute add operations
#
#------------------------------------------------------------------
foreach { attrName attrValue } $attrValToAdd {
append modifications [asnSequence \
[asnEnumeration $operationAdd ] \
[asnSequence \
[asnOctetString $attrName ] \
[asnSet \
[asnOctetString $attrValue ] \
] \
] \
]
}
#------------------------------------------------------------------
# marshal attribute delete operations
#
# - a non-empty value will trigger to delete only those
# attributes which have the same value as the given one
#
# - an empty value will trigger to delete the attribute
# in all cases
#
#------------------------------------------------------------------
foreach { attrName attrValue } $attrToDelete {
if {$attrValue == ""} {
set val [asnSet ""]
} else {
set val [asnSet [asnOctetString $attrValue]]
}
append modifications [asnSequence \
[asnEnumeration $operationDelete ] \
[asnSequence \
[asnOctetString $attrName ] \
$val \
] \
]
}
#----------------------------------------------------------
# marshal 'modify' request packet and send it
#----------------------------------------------------------
incr conn(messageId)
set request [asnSequence \
[asnInteger $conn(messageId)] \
[asnApplicationConstr 6 \
[asnOctetString $dn ] \
[asnSequence $modifications ] \
] \
]
debugData modifyRequest $request
puts -nonewline $conn(sock) $request
flush $conn(sock)
#-----------------------------------------------------------------------
# receive (blocking) 'modify' response packet(s) and unmarshal it
#-----------------------------------------------------------------------
asnGetResponse $conn(sock) response
debugData bindResponse $response
asnGetSequence response response
asnGetInteger response MessageID
if { $MessageID != $conn(messageId) } {
error "umatching response packet ($MessageID != $conn(messageId))"
}
asnGetApplication response appNum
if { $appNum != 7 } {
error "unexpected application number ($appNum != 7)"
}
asnGetEnumeration response resultCode
asnGetOctetString response matchedDN
asnGetOctetString response errorMessage
if {$resultCode != 0} {
return -code error "LDAP error $ldap::resultCode2String($resultCode) $matchedDN: $errorMessage"
}
}
#-----------------------------------------------------------------------------
# add - will create a new object using given DN and sets the given
# attributes
#
#-----------------------------------------------------------------------------
proc ldap::add { handle dn attrValueTuples } {
upvar $handle conn
#------------------------------------------------------------------
# marshal attribute list
#
#------------------------------------------------------------------
set attrList ""
foreach { attrName attrValue } $attrValueTuples {
append attrList [asnSequence \
[asnOctetString $attrName ] \
[asnSet \
[asnOctetString $attrValue ] \
] \
]
}
#----------------------------------------------------------
# marshal search 'add' request packet and send it
#----------------------------------------------------------
incr conn(messageId)
set request [asnSequence \
[asnInteger $conn(messageId)] \
[asnApplicationConstr 8 \
[asnOctetString $dn ] \
[asnSequence $attrList ] \
] \
]
debugData addRequest $request
puts -nonewline $conn(sock) $request
flush $conn(sock)
#-----------------------------------------------------------------------
# receive (blocking) 'add' response packet(s) and unmarshal it
#
#-----------------------------------------------------------------------
asnGetResponse $conn(sock) response
debugData bindResponse $response
asnGetSequence response response
asnGetInteger response MessageID
if { $MessageID != $conn(messageId) } {
error "umatching response packet ($MessageID != $conn(messageId))"
}
asnGetApplication response appNum
if { $appNum != 9 } {
error "unexpected application number ($appNum != 9)"
}
asnGetEnumeration response resultCode
asnGetOctetString response matchedDN
asnGetOctetString response errorMessage
if {$resultCode != 0} {
return -code error "LDAP error $ldap::resultCode2String($resultCode) $matchedDN: $errorMessage"
}
}
#-----------------------------------------------------------------------------
# delete - removes the whole object (DN) inclusive all attributes
#
#-----------------------------------------------------------------------------
proc ldap::delete { handle dn } {
upvar $handle conn
#----------------------------------------------------------
# marshal 'delete' request packet and send it
#----------------------------------------------------------
incr conn(messageId)
set request [asnSequence \
[asnInteger $conn(messageId)] \
[asnApplication 10 $dn ] \
]
debugData deleteRequest $request
puts -nonewline $conn(sock) $request
flush $conn(sock)
#-----------------------------------------------------------------------
# receive (blocking) 'delete' response packet(s) and unmarshal it
#
#-----------------------------------------------------------------------
asnGetResponse $conn(sock) response
debugData bindResponse $response
asnGetSequence response response
asnGetInteger response MessageID
if { $MessageID != $conn(messageId) } {
error "umatching response packet ($MessageID != $conn(messageId))"
}
asnGetApplication response appNum
if { $appNum != 11 } {
error "unexpected application number ($appNum != 11)"
}
asnGetEnumeration response resultCode
asnGetOctetString response matchedDN
asnGetOctetString response errorMessage
if {$resultCode != 0} {
return -code error "LDAP error $ldap::resultCode2String($resultCode) $matchedDN: $errorMessage"
}
}
#-----------------------------------------------------------------------------
# modifyDN - moves an object (DN) to another (relative) place
#
#-----------------------------------------------------------------------------
proc ldap::modifyDN { handle dn newrdn { deleteOld 1 } } {
upvar $handle conn
#----------------------------------------------------------
# marshal 'modifyDN' request packet and send it
#----------------------------------------------------------
incr conn(messageId)
set request [asnSequence \
[asnInteger $conn(messageId)] \
[asnApplicationConstr 12 \
[asnOctetString $dn ] \
[asnOctetString $newrdn ] \
[asnBoolean $deleteOld ] \
] \
]
debugData modifyRequest $request
puts -nonewline $conn(sock) $request
flush $conn(sock)
#-----------------------------------------------------------------------
# receive (blocking) 'modifyDN' response packet(s) and unmarshal it
#-----------------------------------------------------------------------
asnGetResponse $conn(sock) response
debugData bindResponse $response
asnGetSequence response response
asnGetInteger response MessageID
if { $MessageID != $conn(messageId) } {
error "umatching response packet ($MessageID != $conn(messageId))"
}
asnGetApplication response appNum
if { $appNum != 13 } {
error "unexpected application number ($appNum != 13)"
}
asnGetEnumeration response resultCode
asnGetOctetString response matchedDN
asnGetOctetString response errorMessage
if {$resultCode != 0} {
return -code error "LDAP error $ldap::resultCode2String($resultCode) $matchedDN: $errorMessage"
}
}
#-----------------------------------------------------------------------------
# disconnect
#
#-----------------------------------------------------------------------------
proc ldap::disconnect { handle } {
upvar $handle conn
# should we sent an 'unbind' ?
close $conn(sock)
unset conn
return
}
#-----------------------------------------------------------------------------
# trace
#
#-----------------------------------------------------------------------------
proc ldap::trace { message } {
variable doDebug
if {!$doDebug} return
puts stderr $message
}
#-----------------------------------------------------------------------------
# debugData
#
#-----------------------------------------------------------------------------
proc ldap::debugData { info data } {
variable doDebug
if {!$doDebug} return
set len [string length $data]
trace "$info ($len bytes):"
set address ""
set hexnums ""
set ascii ""
for {set i 0} {$i < $len} {incr i} {
set v [string index $data $i]
binary scan $v H2 hex
binary scan $v c num
set num [expr {( $num + 0x100 ) % 0x100}]
set text .
if {$num > 31} {
set text $v
}
if { ($i % 16) == 0 } {
if {$address != ""} {
trace [format "%4s %-48s |%s|" $address $hexnums $ascii ]
set address ""
set hexnums ""
set ascii ""
}
append address [format "%04d" $i]
}
append hexnums "$hex "
append ascii $text
#trace [format "%3d %2s %s" $i $hex $text]
}
if {$address != ""} {
trace [format "%4s %-48s |%s|" $address $hexnums $ascii ]
}
trace ""
}
#-----------------------------------------------------------------------------
# asnLength
#
#-----------------------------------------------------------------------------
proc ldap::asnLength { len } {
if {$len < 0} {
return -code error "Negative length octet requested"
}
if {$len < 128} {
# short form: ISO X.690 8.1.3.4
return [binary format c $len]
}
# long form: ISO X.690 8.1.3.5
# try to use a minimal encoding,
# even if not required by BER, but it is required by DER
# take care for signed vs. unsigned issues
if {$len < 256 } {
return [binary format H2c 81 [expr {$len - 256}]]
}
if {$len < 32769} {
# two octet signed value
return [binary format H2S 82 $len]
}
if {$len < 65536} {
return [binary format H2S 82 [expr {$len - 65536}]]
}
if {$len < 8388608} {
# three octet signed value
return [binary format H2cS 83 [expr {$len >> 16}] [expr {($len & 0xFFFF) - 65536}]]
}
if {$len < 16777216} {
# three octet signed value
return [binary format H2cS 83 [expr {($len >> 16) -256}] [expr {($len & 0xFFFF) -65536}]]
}
if {$len < 2147483649} {
# four octet signed value
return [binary format H2I 84 $len]
}
if {$len < 4294967296} {
# four octet unsigned value
return [binary format H2I 84 [expr {$len - 4294967296}]]
}
if {$len < 1099511627776} {
# five octet unsigned value
return [binary format H2 85][string range [binary format W $len] 3 end]
}
if {$len < 281474976710656} {
# six octet unsigned value
return [binary format H2 86][string range [binary format W $len] 2 end]
}
if {$len < 72057594037927936} {
# seven octet value
return [binary format H2 87][string range [binary format W $len] 1 end]
}
# must be a 64-bit wide signed value
return [binary format H2W 88 $len]
}
#-----------------------------------------------------------------------------
# asnSequence
#
#-----------------------------------------------------------------------------
proc ldap::asnSequence { args } {
return [asnSequenceFromList $args]
}
#-----------------------------------------------------------------------------
# asnSequenceFromList
#
#-----------------------------------------------------------------------------
proc ldap::asnSequenceFromList { lst } {
set out ""
foreach part $lst {
append out $part
}
set len [string length $out]
return [binary format H2a*a$len 30 [asnLength $len] $out]
}
#-----------------------------------------------------------------------------
# asnSet
#
#-----------------------------------------------------------------------------
proc ldap::asnSet { args } {
set out ""
foreach part $args {
append out $part
}
set len [string length $out]
return [binary format H2a*a$len 31 [asnLength $len] $out]
}
#-----------------------------------------------------------------------------
# asnApplicationConstr
#
#-----------------------------------------------------------------------------
proc ldap::asnApplicationConstr { appNumber args } {
set out ""
foreach part $args {
append out $part
}
set code [expr {0x060 + $appNumber}]
set len [string length $out]
return [binary format ca*a$len $code [asnLength $len] $out]
}
#-----------------------------------------------------------------------------
# asnApplication
#
#-----------------------------------------------------------------------------
proc ldap::asnApplication { appNumber data } {
set code [expr {0x040 + $appNumber}]
set len [string length $data]
return [binary format ca*a$len $code [asnLength $len] $data]
}
#-----------------------------------------------------------------------------
# asnChoice
#
#-----------------------------------------------------------------------------
proc ldap::asnChoice { appNumber args } {
set out ""
foreach part $args {
append out $part
}
set code [expr {0x080 + $appNumber}]
set len [string length $out]
return [binary format ca*a$len $code [asnLength $len] $out]
}
#-----------------------------------------------------------------------------
# asnChoiceConstr
#
#-----------------------------------------------------------------------------
proc ldap::asnChoiceConstr { appNumber args } {
set out ""
foreach part $args {
append out $part
}
set code [expr {0x0A0 + $appNumber}]
set len [string length $out]
return [binary format ca*a$len $code [asnLength $len] $out]
}
#-----------------------------------------------------------------------------
# asnInteger : Encode integer value.
#-----------------------------------------------------------------------------
proc ::ldap::asnInteger {number} {
asnIntegerOrEnum 02 $number
}
#-----------------------------------------------------------------------------
# asnEnumeration : Encode enumeration value.
#-----------------------------------------------------------------------------
proc ::ldap::asnEnumeration {number} {
asnIntegerOrEnum 0a $number
}
#-----------------------------------------------------------------------------
# asnIntegerOrEnum : Common code for Integers and Enumerations
# No Bignum version, as we do not expect large Enums.
#-----------------------------------------------------------------------------
proc ::ldap::asnIntegerOrEnum {tag number} {
# The integer tag is 0x02 , the Enum Tag 0x0a otherwise identical.
# The length is 1, 2, 3, or 4, coded in a
# single byte. This can be done directly, no need to go through
# asnLength. The value itself is written in big-endian.
# Known bug/issue: The command cannot handle very wide integers, i.e.
# anything above 8 bytes length. Use asnBignumInteger for those.
# check if we really have an int
set num $number
incr num
if {($number >= -128) && ($number < 128)} {
return [binary format H2H2c $tag 01 $number]
}
if {($number >= -32768) && ($number < 32768)} {
return [binary format H2H2S $tag 02 $number]
}
if {($number >= -8388608) && ($number < 8388608)} {
set numberb [expr {$number & 0xFFFF}]
set numbera [expr {($number >> 16) & 0xFF}]
return [binary format H2H2cS $tag 03 $numbera $numberb]
}
if {($number >= -2147483648) && ($number < 2147483648)} {
return [binary format H2H2I $tag 04 $number]
}
if {($number >= -549755813888) && ($number < 549755813888)} {
set numberb [expr {$number & 0xFFFFFFFF}]
set numbera [expr {($number >> 32) & 0xFF}]
return [binary format H2H2cI $tag 05 $numbera $numberb]
}
if {($number >= -140737488355328) && ($number < 140737488355328)} {
set numberb [expr {$number & 0xFFFFFFFF}]
set numbera [expr {($number >> 32) & 0xFFFF}]
return [binary format H2H2SI $tag 06 $numbera $numberb]
}
if {($number >= -36028797018963968) && ($number < 36028797018963968)} {
set numberc [expr {$number & 0xFFFFFFFF}]
set numberb [expr {($number >> 32) & 0xFFFF}]
set numbera [expr {($number >> 48) & 0xFF}]
return [binary format H2H2cSI $tag 07 $numbera $numberb $numberc]
}
if {($number >= -9223372036854775808) && ($number <= 9223372036854775807)} {
return [binary format H2H2W $tag 08 $number]
}
return -code error "Integer value to large to encode, use asnBigInteger"
}
#-----------------------------------------------------------------------------
# asnBoolean
#
#-----------------------------------------------------------------------------
proc ldap::asnBoolean { bool } {
return [binary format H2H2c 01 01 [expr {$bool ? 0x0FF : 0}]]
}
#-----------------------------------------------------------------------------
# asnOctetString
#
#-----------------------------------------------------------------------------
proc ldap::asnOctetString { string } {
set len [string length $string]
return [binary format H2a*a$len 04 [asnLength $len] $string]
}
#-----------------------------------------------------------------------------
# asnGetResponse - LDAP specific ?
#
#-----------------------------------------------------------------------------
proc ldap::asnGetResponse { sock data_var } {
upvar $data_var data
set tag [read $sock 1]
if {$tag == "\x30"} {
set len1 [read $sock 1]
binary scan $len1 c num
set length [expr {($num + 0x100) % 0x100}]
trace "asnGetResponse length=$length"
if {$length >= 0x080} {
set len_length [expr {$length & 0x7f}]
set lengthBytes [read $sock $len_length]
switch $len_length {
1 {
# Efficiently coded data will not go through this
# path, as small length values can be coded directly,
# without a prefix.
binary scan $lengthBytes c length
set length [expr {($length + 0x100) % 0x100}]
}
2 {
binary scan $lengthBytes S length
set length [expr {($length + 0x10000) % 0x10000}]
}
3 {
binary scan \x00$lengthBytes I length
set length [expr {($length + 0x1000000) % 0x1000000}]
}
4 {
binary scan $lengthBytes I length
set length [expr {(wide($length) + 0x100000000) % 0x100000000}]
}
default {
binary scan $lengthBytes H* hexstr
# skip leading zeros which are allowed by BER
set hexlen [string trimleft $hexstr 0]
# check if it fits into a 64-bit signed integer
if {[string length $hexlen] > 16} {
return -code {ARITH IOVERFLOW
{Length value too large for normal use, try asnGetBigLength}} "Length value to large"
} elseif {[string length $hexlen] == 16 && ([string index $hexlen 0] & 0x8)} {
# check most significant bit, if set we need bignum
return -code {ARITH IOVERFLOW
{Length value too large for normal use, try asnGetBigLength}} "Length value to large"
} else {
scan $hexstr "%lx" length
}
}
}
}
set rest [read $sock $length]
set data [binary format aa*a$length $tag [asnLength $length] $rest]
} else {
set tag_hex ""
binary scan $tag H2 tag_hex
error "unknown start tag [string length $tag] $tag_hex"
}
}
#-----------------------------------------------------------------------------
# asnGetByte
#
#-----------------------------------------------------------------------------
proc ldap::asnGetByte { data_var byte_var } {
upvar $data_var data $byte_var byte
binary scan [string index $data 0] c byte
set byte [expr {($byte + 0x100) % 0x100}]
set data [string range $data 1 end]
trace "asnGetByte $byte"
}
#-----------------------------------------------------------------------------
# asnGetBytes
#
#-----------------------------------------------------------------------------
proc ldap::asnGetBytes { data_var length bytes_var } {
upvar $data_var data $bytes_var bytes
incr length -1
set bytes [string range $data 0 $length]
incr length
set data [string range $data $length end]
debugData asnGetBytes $bytes
}
#-----------------------------------------------------------------------------
# asnGetLength : Decode an ASN length value (See notes)
#-----------------------------------------------------------------------------
proc ::ldap::asnGetLength {data_var length_var} {
upvar $data_var data $length_var length
asnGetByte data length
if {$length == 0x080} {
return -code error "Indefinite length BER encoding not yet supported"
}
if {$length > 0x080} {
# The retrieved byte is a prefix value, and the integer in the
# lower nibble tells us how many bytes were used to encode the
# length data following immediately after this prefix.
set len_length [expr {$length & 0x7f}]
if {[string length $data] < $len_length} {
return -code error "length information invalid, not enough octets left"
}
asnGetBytes data $len_length lengthBytes
switch $len_length {
1 {
# Efficiently coded data will not go through this
# path, as small length values can be coded directly,
# without a prefix.
binary scan $lengthBytes c length
set length [expr {($length + 0x100) % 0x100}]
}
2 {
binary scan $lengthBytes S length
set length [expr {($length + 0x10000) % 0x10000}]
}
3 {
binary scan \x00$lengthBytes I length
set length [expr {($length + 0x1000000) % 0x1000000}]
}
4 {
binary scan $lengthBytes I length
set length [expr {(wide($length) + 0x100000000) % 0x100000000}]
}
default {
binary scan $lengthBytes H* hexstr
# skip leading zeros which are allowed by BER
set hexlen [string trimleft $hexstr 0]
# check if it fits into a 64-bit signed integer
if {[string length $hexlen] > 16} {
return -code {ARITH IOVERFLOW
{Length value too large for normal use, try asnGetBigLength}} \
"Length value to large"
} elseif {[string length $hexlen] == 16 && ([string index $hexlen 0] & 0x8)} {
# check most significant bit, if set we need bignum
return -code {ARITH IOVERFLOW
{Length value too large for normal use, try asnGetBigLength}} \
"Length value to large"
} else {
scan $hexstr "%lx" length
}
}
}
}
trace "asnGetLength -> length = $length"
return
}
#-----------------------------------------------------------------------------
# asnGetInteger : Retrieve integer.
#-----------------------------------------------------------------------------
proc ldap::asnGetInteger {data_var int_var} {
# Tag is 0x02.
upvar $data_var data $int_var int
asnGetByte data tag
if {$tag != 0x02} {
return -code error \
[format "Expected Integer (0x02), but got %02x" $tag]
}
asnGetLength data len
asnGetBytes data $len integerBytes
set int ?
trace "asnGetInteger len=$len"
switch $len {
1 { binary scan $integerBytes c int }
2 { binary scan $integerBytes S int }
3 {
# check for negative int and pad
scan [string index $integerBytes 0] %c byte
if {$byte & 128} {
binary scan \xff$integerBytes I int
} else {
binary scan \x00$integerBytes I int
}
}
4 { binary scan $integerBytes I int }
5 -
6 -
7 -
8 {
# check for negative int and pad
scan [string index $integerBytes 0] %c byte
if {$byte & 128} {
set pad [string repeat \xff [expr {8-$len}]]
} else {
set pad [string repeat \x00 [expr {8-$len}]]
}
binary scan $pad$integerBytes W int
}
default {
# Too long
return -code error "length information too long"
}
}
trace "asnGetInteger int=$int"
return
}
#-----------------------------------------------------------------------------
# asnGetEnumeration
#
#-----------------------------------------------------------------------------
proc ldap::asnGetEnumeration { data_var enum_var } {
upvar $data_var data $enum_var enum
asnGetByte data tag
asnGetLength data len
asnGetBytes data $len integerBytes
if {$tag != 0x0a} {
error "Expected Enumeration, but got $tag"
}
set enum ?
trace "asnGetEnumeration len=$len"
switch $len {
1 { binary scan $integerBytes c enum }
2 { binary scan $integerBytes S enum }
3 { binary scan \x00$integerBytes I enum }
4 { binary scan $integerBytes I enum }
default {
error "length information too long"
}
}
trace "asnGetEnumeration enum=$enum"
}
#-----------------------------------------------------------------------------
# asnGetOctetString
#
#-----------------------------------------------------------------------------
proc ldap::asnGetOctetString { data_var string_var } {
upvar $data_var data $string_var string
asnGetByte data byte
if {$byte != 0x04} {
error "Got different tag than octet string (0x04)"
}
asnGetLength data length
asnGetBytes data $length temp
set string $temp
}
#-----------------------------------------------------------------------------
# asnGetSequence
#
#-----------------------------------------------------------------------------
proc ldap::asnGetSequence { data_var sequence_var } {
upvar $data_var data $sequence_var sequence
asnGetByte data byte
if {$byte != 0x030} {
error "Got different tag than sequence (0x030)"
}
asnGetLength data length
asnGetBytes data $length temp
set sequence $temp
}
#-----------------------------------------------------------------------------
# asnGetSet
#
#-----------------------------------------------------------------------------
proc ldap::asnGetSet { data_var set_var } {
upvar $data_var data $set_var set
asnGetByte data byte
if {$byte != 0x031} {
error "Got different tag than set (0x031)"
}
asnGetLength data length
asnGetBytes data $length temp
set set $temp
}
#-----------------------------------------------------------------------------
# asnGetApplication
#
#-----------------------------------------------------------------------------
proc ldap::asnGetApplication { data_var appNumber_var } {
upvar $data_var data $appNumber_var appNumber
asnGetByte data byte
asnGetLength data length
if {($byte & 0xE0) != 0x060} {
error "Got different tag than application (0x060)"
}
set appNumber [expr {$byte & 0x1F}]
}
|