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
|
"""
ldapurl - handling of LDAP URLs as described in RFC 2255
written by Michael Stroeder <michael@stroeder.com>
\$Id: ldapurl.py,v 1.6 2002/01/24 10:02:41 stroeder Exp $
This module is part of the python-ldap project:
http://python-ldap.sourceforge.net
License:
Public domain. Do anything you want with this module.
Python compability note:
This module only works with Python 2.0+ since all string parameters
are assumed to be Unicode objects, string methods are used instead of
module string and list comprehensions are used.
"""
__version__ = '0.4.0'
__all__ = [
# constants
'SEARCH_SCOPE','SEARCH_SCOPE_STR',
# functions
'isLDAPUrl',
# classes
'LDAPUrlExtension','LDAPUrl'
]
import re
from urllib import quote,quote_plus,unquote_plus
host_pattern = r'([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+|[a-zA-Z]+[a-zA-Z0-9-]*(\.[a-zA-Z]+[a-zA-Z0-9-]*)*)+(:[0-9]*)*'
host_regex = re.compile('^%s$' % host_pattern)
# Some widely used types
StringType = type('')
UnicodeType = type(u'')
LDAP_SCOPE_BASE = 0
LDAP_SCOPE_ONELEVEL = 1
LDAP_SCOPE_SUBTREE = 2
SEARCH_SCOPE_STR = ['base','one','sub']
SEARCH_SCOPE = {
# the search scope strings defined in RFC22xx(?)
'base':LDAP_SCOPE_BASE,
'one':LDAP_SCOPE_ONELEVEL,
'sub':LDAP_SCOPE_SUBTREE
}
def isLDAPUrl(s):
"""
Returns 1 if s is a LDAP URL, 0 else
"""
if type(s)==UnicodeType:
s=s.encode('utf-8')
return \
s.startswith('ldap://') or \
s.startswith('ldaps://') or \
s.startswith('ldapi://')
def decode_dn(dn,charset,relaxed_charset_handling):
dn = unquote_plus(dn)
try:
result_dn = unicode(dn,charset)
except UnicodeError:
if relaxed_charset_handling:
result_dn = None
for c in ['utf-8','iso-8859-1']:
if c!=charset:
try:
result_dn = unicode(dn,c)
except UnicodeError:
pass
else:
break
if result_dn is None:
raise ValueError,'Invalid character set used in DN part of LDAP URL.'
else:
raise ValueError,'Invalid character set used in DN part of LDAP URL.'
return result_dn
class LDAPUrlExtension:
"""
Class for parsing and unparsing LDAP URL extensions
as described in RFC 2255.
BNF definition of LDAP URL extensions:
extensions = extension *("," extension)
extension = ["!"] extype ["=" exvalue]
extype = token / xtoken
exvalue = LDAPString from section 4.1.2 of [2]
token = oid from section 4.1 of [3]
xtoken = ("X-" / "x-") token
Usable class attributes:
critical
Boolean integer marking the extension as critical
extype
Type of extension
exvalue
Value of extension
"""
def __init__(self,extensionStr=None,critical=0,extype=None,exvalue=None):
if extensionStr is None:
self.critical = critical
self.extype = extype
self.exvalue = exvalue
else:
self._parse(extensionStr)
def _parse(self,extension):
extension = extension.strip()
if not extension:
# Don't parse empty strings
self.extype,self.exvalue = None,None
return
self.critical = extension[0]=='!'
if extension[0]=='!':
extension = extension[1:].strip()
self.extype,self.exvalue = extension.split('=',1)
self.extype = self.extype.strip()
self.exvalue = unquote_plus(self.exvalue.strip())
def __str__(self):
return '%s%s=%s' % (
'!'*(self.critical>0),
self.extype,self.exvalue.replace(',',r'%2C')
)
class LDAPUrl:
"""
Class for parsing and unparsing LDAP URLs
as described in RFC 2255.
BNF definition of LDAP URL:
hostport host:port
dn distinguished name
attributes list with attributes
scope search scope string
filter LDAP search filter
ldapurl = scheme "://" [hostport] ["/"
[dn ["?" [attrs] ["?" [scope]
["?" [filter] ["?" extensions]]]]]]
Usable class attributes:
urlscheme
URL scheme (either ldap, ldaps or ldapi)
hostport
LDAP host (default '')
dn
Unicode string holding distinguished name (default '')
attrs
list of attribute types (default None)
scope
integer search scope for ldap-module
filterstr
Unicode string representation of LDAP Search Filters
(see RFC 2254)
extensions
Dictionary used as extensions store
charset
Character set to be assumed for LDAP data
who
Maps automagically to bindname LDAP URL extension
cred
Maps automagically to X-BINDPW LDAP URL extension
"""
attr2extype = {'who':'bindname','cred':'X-BINDPW'}
def __init__(
self,
ldapUrl=None,
urlscheme='ldap',
hostport='',
dn=None,
attrs=None,
scope=LDAP_SCOPE_BASE,
filterstr='(objectclass=*)',
extensions = {},
charset='utf-8',
who=None,
cred=None,
):
self.urlscheme=urlscheme
self.hostport=hostport
self.dn=dn
self.attrs=attrs
self.scope=scope
self.filterstr=filterstr
self.extensions=extensions
self.charset=charset
self.who = who
self.cred = cred
if ldapUrl!=None:
self._parse(ldapUrl)
def __getattr__(self,name):
if self.attr2extype.has_key(name):
extype = self.attr2extype[name]
if self.extensions.has_key(extype):
return unquote_plus(
self.extensions[extype].exvalue
)
else:
return None
else:
raise AttributeError,'No attribute %s in instance of %s.' % (
name,self.__class__.__name__
)
return None # __getattr__()
def __setattr__(self,name,value):
if (name=='who' or name=='cred'):
extype = self.attr2extype[name]
if value is None and self.extensions.has_key(extype):
# A value of None means that extension is deleted
del self.extensions[extype]
elif value!=None:
# Add appropriate extension
self.extensions[extype] = LDAPUrlExtension(
extype=extype,exvalue=unquote_plus(value)
)
else:
self.__dict__[name] = value
def __delattr__(self,name):
if (name=='who' or name=='cred'):
extype = self.attr2extype[name]
del self.extensions[extype]
else:
del self.__dict__[name]
def _parse(self,ldap_url,relaxed_charset_handling=1):
"""
parse a LDAP URL and set the class attributes
urlscheme,host,dn,attrs,scope,filterstr,extensions
"""
if not isLDAPUrl(ldap_url):
raise ValueError,'Parameter ldap_url does not seem to be a LDAP URL.'
scheme,rest = ldap_url.split('://',1)
self.urlscheme = scheme.strip()
if not self.urlscheme in ['ldap','ldaps','ldapi']:
raise ValueError,'LDAP URL contains unsupported URL scheme %s.' % (self.urlscheme)
slash_pos = rest.find('/')
qemark_pos = rest.find('?')
if (slash_pos==-1) and (qemark_pos==-1):
# No / and ? found at all
self.hostport = unquote_plus(rest)
self.dn = u''
return
else:
if slash_pos!=-1 and (qemark_pos==-1 or (slash_pos<qemark_pos)):
# Slash separates DN from hostport
self.hostport = unquote_plus(rest[:slash_pos])
# Eat the slash from rest
rest = rest[slash_pos+1:]
elif qemark_pos!=1 and (slash_pos==-1 or (slash_pos>qemark_pos)):
# Question mark separates hostport from rest, DN is assumed to be empty
self.hostport = unquote_plus(rest[:qemark_pos])
# Do not eat question mark
rest = rest[qemark_pos:]
else:
raise ValueError,'Something completely weird happened!'
paramlist=rest.split('?')
paramlist_len = len(paramlist)
if paramlist_len>=1:
self.dn = decode_dn(paramlist[0],self.charset,relaxed_charset_handling)
if (paramlist_len>=2) and (paramlist[1]):
self.attrs = unquote_plus(paramlist[1].strip()).split(',')
if paramlist_len>=3:
scope = paramlist[2].strip()
if not scope:
scope = 'base'
try:
self.scope = SEARCH_SCOPE[scope]
except KeyError:
raise ValueError,"Search scope must be either one of base, one or sub. LDAP URL contained %s" % (repr(scope))
if paramlist_len>=4:
filterstr = unquote_plus(paramlist[3].strip())
if not filterstr:
filterstr='(objectclass=*)'
try:
self.filterstr = unicode(filterstr,self.charset)
except:
self.filterstr = unicode(filterstr,'iso-8859-1')
if paramlist_len>=5:
extensions = [
LDAPUrlExtension(extension)
for extension in paramlist[4].strip().split(',')
]
self.extensions = {}
for e in extensions:
self.extensions[e.extype] = e
return
def _urlEncoding(self,s,charset):
"""Returns URL encoding of string s"""
if type(s)==UnicodeType:
s = s.encode(charset)
return quote(s).replace(',','%2C').replace('/','%2F')
def initializeUrl(self):
"""
Returns LDAP URL suitable to be passed to ldap.initialize()
"""
if self.urlscheme=='ldapi':
# hostport part might contain slashes when ldapi:// is used
hostport = quote_plus(self.hostport)
else:
hostport = self.hostport
return '%s://%s' % (self.urlscheme,self.hostport)
def unparse(self,charset=None,urlEncode=0):
"""
Returns LDAP URL depending on class attributes set.
charset
Character set used to encode the LDAP URL.
If charset is None a Unicode object is returned.
urlEncode
Integer flag. If 1 the returned LDAP URL will be URL encoded.
"""
if self.attrs is None:
attrs_str = ''
else:
attrs_str = ','.join(self.attrs)
scope_str = SEARCH_SCOPE_STR[self.scope]
if urlEncode:
dn = self._urlEncoding(self.dn,self.charset)
filterstr = self._urlEncoding(self.filterstr,self.charset)
else:
dn = self.dn ; filterstr = self.filterstr
if self.urlscheme=='ldapi':
# hostport part might contain slashes when ldapi:// is used
hostport = quote_plus(self.hostport)
else:
hostport = self.hostport
ldap_url = u'%s://%s/%s?%s?%s?%s' % (
self.urlscheme,
hostport,
dn,
attrs_str,
scope_str,
filterstr
)
if self.extensions:
ldap_url = ldap_url+'?'+','.join(
[
str(e)
for e in self.extensions.values()
]
)
if charset is None:
return ldap_url
else:
return ldap_url.encode(charset)
def htmlHREF(self,urlPrefix='',hrefText=None,hrefTarget=None,httpCharset='utf-8'):
"""Complete """
assert type(urlPrefix)==StringType, "urlPrefix must be StringType"
if hrefText is None:
hrefText = self.unparse(charset=httpCharset,urlEncode=0)
assert type(hrefText)==StringType, "hrefText must be StringType"
if hrefTarget is None:
target = ''
else:
assert type(hrefTarget)==StringType, "hrefTarget must be StringType"
target = ' target="%s"' % hrefTarget
return '<a%s href="%s%s">%s</a>' % (
target,urlPrefix,self.unparse('utf-8',urlEncode=1),hrefText
)
def __str__(self):
return self.unparse('utf-8')
def test():
"""Test functions"""
print '\nTesting function isLDAPUrl():'
is_ldap_url_tests = {
# Examples from RFC2255
'ldap:///o=University%20of%20Michigan,c=US':1,
'ldap://ldap.itd.umich.edu/o=University%20of%20Michigan,c=US':1,
'ldap://ldap.itd.umich.edu/o=University%20of%20Michigan,':1,
'ldap://host.com:6666/o=University%20of%20Michigan,':1,
'ldap://ldap.itd.umich.edu/c=GB?objectClass?one':1,
'ldap://ldap.question.com/o=Question%3f,c=US?mail':1,
'ldap://ldap.netscape.com/o=Babsco,c=US??(int=%5c00%5c00%5c00%5c04)':1,
'ldap:///??sub??bindname=cn=Manager%2co=Foo':1,
'ldap:///??sub??!bindname=cn=Manager%2co=Foo':1,
# More examples from various sources
'ldap://ldap.nameflow.net:1389/c%3dDE':1,
'ldap://root.openldap.org/dc=openldap,dc=org':1,
'ldap://root.openldap.org/dc=openldap,dc=org':1,
'ldap://x500.mh.se/o=Mitthogskolan,c=se????1.2.752.58.10.2=T.61':1,
'ldp://root.openldap.org/dc=openldap,dc=org':0,
'ldap://localhost:1389/ou%3DUnstructured%20testing%20tree%2Cdc%3Dstroeder%2Cdc%3Dcom??one':1,
}
for ldap_url in is_ldap_url_tests.keys():
result_is_ldap_url = isLDAPUrl(ldap_url)
if result_is_ldap_url !=is_ldap_url_tests[ldap_url]:
print 'isLDAPUrl("%s") returns %d instead of %d.' % (
repr(ldap_url),result_is_ldap_url,is_ldap_url_tests[ldap_url]
)
print '\nTesting class LDAPUrl:'
parse_ldap_url_tests = {
'ldap://root.openldap.org/dc=openldap,dc=org':(
'ldap',
u'root.openldap.org', u'dc=openldap,dc=org',None,0,'(objectclass=*)',[]
),
'ldap://localhost/dc=stroeder,dc=com??one?':(
'ldap',
u'localhost', u'dc=stroeder,dc=com',None,1,'(objectclass=*)',[]
),
'ldap://localhost??one?':(
'ldap',
u'localhost', u'',None,1,'(objectclass=*)',[]
),
'ldap://x500.mh.se/o=Mitthogskolan,c=se????1.2.752.58.10.2=T.61':(
'ldap',
u'x500.mh.se',
u'o=Mitthogskolan,c=se',None,
0,
u'(objectclass=*)',
[u'1.2.752.58.10.2=T.61']
),
'ldap://ldap.openldap.org/uid%3dkurt%2cdc%3dboolean%2cdc%3dnet??base?%28objectclass%3d%2a%29':(
'ldap',
'ldap.openldap.org',
u'uid=kurt,dc=boolean,dc=net',
None,
0,
u'(objectclass=*)',
[]
),
'ldap://localhost:12345/dc=stroeder,dc=com????bindname=cn=Michael%2Cdc=stroeder%2Cdc=com,X-BINDPW=secretpassword':(
'ldap',
'localhost:12345',
u'dc=stroeder,dc=com',
None,
0,
u'(objectclass=*)',
[u'bindname=cn=Michael%2Cdc=stroeder%2Cdc=com',u'X-BINDPW=secretpassword']
),
'ldaps://localhost:12345/dc=stroeder,dc=com????bindname=cn=Michael%2Cdc=stroeder%2Cdc=com,X-BINDPW=secretpassword':(
'ldaps',
'localhost:12345',
u'dc=stroeder,dc=com',
None,
0,
u'(objectclass=*)',
[u'bindname=cn=Michael%2Cdc=stroeder%2Cdc=com',u'X-BINDPW=secretpassword']
),
'ldapi://%2ftmp%2fopenldap2-1389/dc=stroeder,dc=com????bindname=cn=Michael%2Cdc=stroeder%2Cdc=com,X-BINDPW=secretpassword':(
'ldapi',
'/tmp/openldap2-1389',
u'dc=stroeder,dc=com',
None,
0,
u'(objectclass=*)',
[u'bindname=cn=Michael%2Cdc=stroeder%2Cdc=com',u'X-BINDPW=secretpassword']
),
}
for ldap_url in parse_ldap_url_tests.keys():
print 72*'#','\nTesting LDAP URL:',ldap_url
ldapUrl = LDAPUrl(ldapUrl=ldap_url)
print 'Unparsed LDAP URL',ldapUrl.unparse()
if (
ldapUrl.urlscheme,ldapUrl.hostport,ldapUrl.dn,ldapUrl.attrs,
ldapUrl.scope,ldapUrl.filterstr,map(str,ldapUrl.extensions.values())
) != \
parse_ldap_url_tests[ldap_url]:
print 'Attributes of LDAPUrl(%s) are:\n%s\ninstead of:\n%s\n' % (
repr(ldap_url),
(
ldapUrl.urlscheme,ldapUrl.hostport,ldapUrl.dn,ldapUrl.attrs,
ldapUrl.scope,ldapUrl.filterstr,map(str,ldapUrl.extensions.values())
),
repr(parse_ldap_url_tests[ldap_url])
)
if __name__ == '__main__':
test()
|