/usr/lib/python2.7/dist-packages/mockldap/ldapobject.py is in python-mockldap 0.3.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | from __future__ import absolute_import, division, print_function, unicode_literals
import base64
from copy import deepcopy
try:
from crypt import crypt
except ImportError:
crypt = None
import hashlib
import re
import ldap
from ldap.cidict import cidict
import ldap.dn
from .recording import SeedRequired, RecordableMethods, recorded
class LDAPObject(RecordableMethods):
"""
:param directory: The initial content of this LDAP connection.
:type directory: :class:`ldap.cidict.cidict`: ``{dn: {attr: [values]}}``
Our mock replacement for :class:`ldap.LDAPObject`. This exports selected
LDAP operations and allows you to set return values in advance as well as
discover which methods were called after the fact.
All of these methods take the same arguments as their python-ldap
counterparts. Some are self-explanatory; those that are only partially
implemented are documented as such.
Ignore the *static* annotations; that's just a Sphinx artifact.
.. attribute:: options
*dict*: Options that have been set by
:meth:`~mockldap.LDAPObject.set_option`.
.. attribute:: tls_enabled
*bool*: True if :meth:`~mockldap.LDAPObject.start_tls_s` was called.
.. attribute:: bound_as
*string*: DN of the last successful bind. None if unbound.
"""
def __init__(self, directory):
if not isinstance(directory, ldap.cidict.cidict):
from . import map_keys
directory = cidict(map_keys(lambda s: s.lower(), directory))
self.directory = deepcopy(directory)
self.async_results = []
self.options = {}
self.tls_enabled = False
self.bound_as = None
def _check_valid_dn(self, dn):
try:
ldap.dn.str2dn(dn)
except ldap.DECODING_ERROR:
raise ldap.INVALID_DN_SYNTAX
#
# Begin LDAP methods
#
@recorded
def initialize(self, *args, **kwargs):
""" This only exists for recording purposes. """
pass
@recorded
def get_option(self, option):
"""
"""
return self.options[option]
@recorded
def set_option(self, option, invalue):
"""
"""
self.options[option] = invalue
@recorded
def simple_bind_s(self, who='', cred=''):
"""
"""
success = False
try:
if(who == '' and cred == ''):
success = True
elif self._compare_s(who, 'userPassword', cred):
success = True
except ldap.NO_SUCH_OBJECT:
pass
if success:
self.bound_as = who
return (97, [])
else:
raise ldap.INVALID_CREDENTIALS('%s:%s' % (who, cred))
@recorded
def search(self, base, scope, filterstr='(objectClass=*)', attrlist=None, attrsonly=0):
"""
See :meth:`~mockldap.LDAPObject.search_s`.
"""
value = self._search_s(base, scope, filterstr, attrlist, attrsonly)
return self._add_async_result(value)
@recorded
def result(self, msgid, all=1, timeout=None):
"""
"""
return ldap.RES_SEARCH_RESULT, self._pop_async_result(msgid)
@recorded
def search_s(self, base, scope, filterstr='(objectClass=*)', attrlist=None, attrsonly=0):
r"""
Supports many, but not all, filter strings.
Tests of the form ``'(foo=bar)'`` and ``'(foo=\*)'`` are supported, as
are the &, \|, and ! operators. attrlist and attrsonly are also
supported. Beyond that, this method must be seeded.
"""
return self._search_s(base, scope, filterstr, attrlist, attrsonly)
@recorded
def start_tls_s(self):
"""
"""
self.tls_enabled = True
@recorded
def compare_s(self, dn, attr, value):
"""
"""
return self._compare_s(dn, attr, value)
@recorded
def modify_s(self, dn, mod_attrs):
"""
"""
return self._modify_s(dn, mod_attrs)
@recorded
def add_s(self, dn, record):
"""
"""
return self._add_s(dn, record)
@recorded
def rename_s(self, dn, newrdn, newsuperior=None):
"""
"""
return self._rename_s(dn, newrdn, newsuperior)
@recorded
def delete_s(self, dn):
"""
"""
return self._delete_s(dn)
@recorded
def unbind(self):
"""
"""
self.bound_as = None
@recorded
def unbind_s(self):
"""
"""
self.bound_as = None
@recorded
def whoami_s(self):
"""
"""
return "dn:" + self.bound_as
@recorded
def passwd_s(self, user, oldpw, newpw, serverctrls=None, clientctrls=None):
"""
"""
return self._passwd_s(user, oldpw, newpw, serverctrls, clientctrls)
#
# Internal implementations
#
def _compare_s(self, dn, attr, value):
self._check_valid_dn(dn)
try:
values = self.directory[dn].get(attr, [])
except KeyError:
raise ldap.NO_SUCH_OBJECT
if attr == 'userPassword':
result = 1 if any(self._compare_password(value, candidate) for candidate in values) else 0
else:
result = (1 if (value in values) else 0)
return result
PASSWORD_RE = re.compile(r'^{(.*?)}(.*)')
def _compare_password(self, password, value):
"""
Compare a password to a (possibly hashed) attribute value.
This returns True iff ``password`` matches the given attribute value. A
limited set of LDAP password hashing schemes is supported; feel free to
add more if you need them.
"""
match = self.PASSWORD_RE.match(value)
if match is not None:
scheme, raw = match.groups()
if crypt is not None and scheme == 'CRYPT':
matches = (crypt(password, raw[:4]) == raw)
elif scheme == 'SSHA':
decoded = base64.b64decode(raw)
h = hashlib.sha1(password.encode('utf-8'))
h.update(decoded[h.digest_size:])
matches = (h.digest() == decoded[:h.digest_size])
else:
matches = False
else:
matches = (value == password)
return matches
def _search_s(self, base, scope, filterstr, attrlist, attrsonly):
from .filter import parse, UnsupportedOp
self._check_valid_dn(base)
if base not in self.directory:
raise ldap.NO_SUCH_OBJECT
# Find directory entries within the requested scope
base_parts = ldap.dn.explode_dn(base.lower())
base_len = len(base_parts)
dn_parts = dict((dn, ldap.dn.explode_dn(dn.lower())) for dn in self.directory.keys())
if scope == ldap.SCOPE_BASE:
dns = (dn for dn, parts in dn_parts.items() if parts == base_parts)
elif scope == ldap.SCOPE_ONELEVEL:
dns = (dn for dn, parts in dn_parts.items() if parts[1:] == base_parts)
elif scope == ldap.SCOPE_SUBTREE:
dns = (dn for dn, parts in dn_parts.items() if parts[-base_len:] == base_parts)
else:
raise ValueError(u"Unrecognized scope: {0}".format(scope))
# Apply the filter expression
try:
filter_expr = parse(filterstr)
except UnsupportedOp as e:
raise SeedRequired(e)
results = ((dn, self.directory[dn]) for dn in dns
if filter_expr.matches(dn, self.directory[dn]))
# Apply attribute filtering, if any
if attrlist is not None:
results = ((dn, dict((attr, values) for attr, values in attrs.items() if attr in attrlist))
for dn, attrs in results)
if attrsonly:
results = ((dn, dict((attr, []) for attr in attrs.keys()))
for dn, attrs in results)
return list(results)
def _modify_s(self, dn, mod_attrs):
self._check_valid_dn(dn)
for item in mod_attrs:
op, key, value = item
try:
entry = self.directory[dn]
except KeyError:
raise ldap.NO_SUCH_OBJECT
if value is None:
value = []
elif not isinstance(value, list):
value = [value]
if op == ldap.MOD_ADD:
if value == []:
raise ldap.PROTOCOL_ERROR
if key not in entry:
entry[key] = value
else:
for subvalue in value:
if subvalue not in entry[key]:
entry[key].append(subvalue)
elif op == ldap.MOD_DELETE:
if key not in entry:
pass
elif value == []:
del entry[key]
else:
entry[key] = [v for v in entry[key] if v not in value]
if entry[key] == []:
del entry[key]
elif op == ldap.MOD_REPLACE:
if value == []:
if key in entry:
del entry[key]
else:
entry[key] = value
return (103, [])
def _add_s(self, dn, record):
self._check_valid_dn(dn)
entry = {}
dn = str(dn)
for item in record:
entry[item[0]] = list(item[1])
try:
self.directory[dn]
raise ldap.ALREADY_EXISTS
except KeyError:
self.directory[dn.lower()] = entry
return (105, [], len(self.methods_called()), [])
def _rename_s(self, dn, newrdn, newsuperior):
self._check_valid_dn(dn)
self._check_valid_dn(newrdn)
if newsuperior:
self._check_valid_dn(newsuperior)
try:
entry = self.directory[dn]
except KeyError:
raise ldap.NO_SUCH_OBJECT
if newsuperior:
superior = newsuperior
else:
superior = ','.join(dn.split(',')[1:])
newfulldn = '%s,%s' % (newrdn, superior)
if newfulldn in self.directory:
raise ldap.ALREADY_EXISTS
oldattr, oldvalue = dn.split(',')[0].split('=')
newattr, newvalue = newrdn.split('=')
if oldattr == newattr or len(entry[oldattr]) > 1:
entry[oldattr].remove(oldvalue)
else:
del entry[oldattr]
try:
if newvalue not in entry[newattr]:
entry[newattr].append(newvalue)
except KeyError:
entry[newattr] = [newvalue]
self.directory[newfulldn] = entry
del self.directory[dn]
return (109, [])
def _delete_s(self, dn):
self._check_valid_dn(dn)
try:
del self.directory[dn]
except KeyError:
raise ldap.NO_SUCH_OBJECT
return (107, [])
def _passwd_s(self, user, oldpw, newpw, serverctrls=None, clientctrls=None):
self._check_valid_dn(user)
entry = self.directory.get(user)
if entry is None:
raise ldap.NO_SUCH_OBJECT
if oldpw is not None:
if entry['userPassword'][0] == oldpw:
entry['userPassword'] = [newpw]
else:
entry['userPassword'] = [newpw]
#
# Async
#
def _add_async_result(self, value):
self.async_results.append(value)
return len(self.async_results) - 1
def _pop_async_result(self, msgid):
if msgid in range(len(self.async_results)):
value = self.async_results[msgid]
self.async_results[msgid] = None
else:
value = None
return value
|