2018-11-11 12:41:48 +00:00
|
|
|
"""Wrapper for ldap3 to easily manage user"""
|
2019-10-11 10:53:48 +00:00
|
|
|
from typing import Any, Dict, Optional
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
import ldap3
|
|
|
|
import ldap3.core.exceptions
|
2019-10-01 08:24:10 +00:00
|
|
|
from structlog import get_logger
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2019-10-11 10:53:48 +00:00
|
|
|
from passbook.core.models import Group, User
|
2019-10-07 14:33:48 +00:00
|
|
|
from passbook.sources.ldap.models import LDAPSource
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2019-10-04 08:08:53 +00:00
|
|
|
LOGGER = get_logger()
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
|
2019-10-10 15:36:09 +00:00
|
|
|
class Connector:
|
2018-11-26 17:12:04 +00:00
|
|
|
"""Wrapper for ldap3 to easily manage user authentication and creation"""
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2019-10-10 15:36:09 +00:00
|
|
|
_server: ldap3.Server
|
|
|
|
_connection = ldap3.Connection
|
|
|
|
_source: LDAPSource
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2018-11-26 17:12:04 +00:00
|
|
|
def __init__(self, source: LDAPSource):
|
|
|
|
self._source = source
|
|
|
|
self._server = ldap3.Server(source.server_uri) # Implement URI parsing
|
2019-10-11 10:53:48 +00:00
|
|
|
|
|
|
|
def bind(self):
|
|
|
|
"""Bind using Source's Credentials"""
|
2018-11-26 17:12:04 +00:00
|
|
|
self._connection = ldap3.Connection(self._server, raise_exceptions=True,
|
2019-10-11 10:53:48 +00:00
|
|
|
user=self._source.bind_cn,
|
|
|
|
password=self._source.bind_password)
|
2018-11-26 17:12:04 +00:00
|
|
|
|
|
|
|
self._connection.bind()
|
2019-10-11 10:53:48 +00:00
|
|
|
if self._source.start_tls:
|
2019-10-10 15:36:09 +00:00
|
|
|
self._connection.start_tls()
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2019-10-11 10:53:48 +00:00
|
|
|
def encode_pass(password: str) -> bytes:
|
2018-11-11 12:41:48 +00:00
|
|
|
"""Encodes a plain-text password so it can be used by AD"""
|
|
|
|
return '"{}"'.format(password).encode('utf-16-le')
|
|
|
|
|
2019-10-11 10:53:48 +00:00
|
|
|
@property
|
|
|
|
def base_dn_users(self) -> str:
|
|
|
|
"""Shortcut to get full base_dn for user lookups"""
|
|
|
|
return ','.join([self._source.additional_user_dn, self._source.base_dn])
|
|
|
|
|
|
|
|
@property
|
|
|
|
def base_dn_groups(self) -> str:
|
|
|
|
"""Shortcut to get full base_dn for group lookups"""
|
|
|
|
return ','.join([self._source.additional_group_dn, self._source.base_dn])
|
|
|
|
|
|
|
|
def sync_groups(self):
|
|
|
|
"""Iterate over all LDAP Groups and create passbook_core.Group instances"""
|
|
|
|
attributes = [
|
|
|
|
'objectSid', # Used as unique Identifier
|
|
|
|
'name',
|
|
|
|
'dn',
|
|
|
|
]
|
|
|
|
groups = self._connection.extend.standard.paged_search(
|
|
|
|
search_base=self.base_dn_groups,
|
|
|
|
search_filter=self._source.group_object_filter,
|
|
|
|
search_scope=ldap3.SUBTREE,
|
|
|
|
attributes=ldap3.ALL_ATTRIBUTES)
|
|
|
|
for group in groups:
|
|
|
|
attributes = group.get('attributes', {})
|
|
|
|
_, created = Group.objects.update_or_create(
|
|
|
|
attributes__objectSid=attributes.get('objectSid', ''),
|
|
|
|
defaults=self._build_object_properties(attributes),
|
|
|
|
)
|
|
|
|
LOGGER.debug("Synced group", group=attributes.get('name', ''), created=created)
|
|
|
|
|
|
|
|
def sync_users(self):
|
|
|
|
"""Iterate over all LDAP Users and create passbook_core.User instances"""
|
|
|
|
users = self._connection.extend.standard.paged_search(
|
|
|
|
search_base=self.base_dn_users,
|
|
|
|
search_filter=self._source.user_object_filter,
|
|
|
|
search_scope=ldap3.SUBTREE,
|
|
|
|
attributes=ldap3.ALL_ATTRIBUTES)
|
|
|
|
for user in users:
|
|
|
|
attributes = user.get('attributes', {})
|
|
|
|
_, created = User.objects.update_or_create(
|
|
|
|
attributes__objectSid=attributes.get('objectSid', ''),
|
|
|
|
defaults=self._build_object_properties(attributes),
|
|
|
|
)
|
|
|
|
LOGGER.debug("Synced User", user=attributes.get('name', ''), created=created)
|
|
|
|
|
|
|
|
def sync_membership(self):
|
|
|
|
"""Iterate over all Users and assign Groups using memberOf Field"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def _build_object_properties(self, attributes: Dict[str, Any]) -> Dict[str, Dict[Any, Any]]:
|
|
|
|
properties = {
|
|
|
|
'attributes': {}
|
2018-11-11 12:41:48 +00:00
|
|
|
}
|
2019-10-11 10:53:48 +00:00
|
|
|
for mapping in self._source.property_mappings.all().select_subclasses():
|
|
|
|
properties[mapping.object_field] = attributes.get(mapping.ldap_property, '')
|
|
|
|
if 'objectSid' in attributes:
|
|
|
|
properties['attributes']['objectSid'] = attributes.get('objectSid')
|
|
|
|
properties['attributes']['distinguishedName'] = attributes.get('distinguishedName')
|
|
|
|
return properties
|
|
|
|
|
|
|
|
def auth_user(self, password: str, **filters: Dict[str, str]) -> Optional[User]:
|
2018-11-11 12:41:48 +00:00
|
|
|
"""Try to bind as either user_dn or mail with password.
|
|
|
|
Returns True on success, otherwise False"""
|
2019-10-11 10:53:48 +00:00
|
|
|
users = User.objects.filter(**filters)
|
|
|
|
if not users.exists():
|
2018-11-26 17:12:04 +00:00
|
|
|
return None
|
2019-10-11 10:53:48 +00:00
|
|
|
user = users.first()
|
|
|
|
if 'distinguishedName' not in user.attributes:
|
|
|
|
LOGGER.debug("User doesn't have DN set, assuming not LDAP imported.", user=user)
|
2018-11-11 12:41:48 +00:00
|
|
|
return None
|
|
|
|
# Try to bind as new user
|
2019-10-11 10:53:48 +00:00
|
|
|
LOGGER.debug("Attempting Binding as user", user=user)
|
2018-11-11 12:41:48 +00:00
|
|
|
try:
|
2019-10-11 10:53:48 +00:00
|
|
|
temp_connection = ldap3.Connection(self._server,
|
|
|
|
user=user.attributes.get('distinguishedName'),
|
2018-11-26 17:12:04 +00:00
|
|
|
password=password, raise_exceptions=True)
|
|
|
|
temp_connection.bind()
|
2019-10-11 10:53:48 +00:00
|
|
|
return user
|
2018-11-11 12:41:48 +00:00
|
|
|
except ldap3.core.exceptions.LDAPInvalidCredentialsResult as exception:
|
2019-10-11 10:53:48 +00:00
|
|
|
LOGGER.debug("LDAPInvalidCredentialsResult", user=user)
|
2018-11-11 12:41:48 +00:00
|
|
|
except ldap3.core.exceptions.LDAPException as exception:
|
|
|
|
LOGGER.warning(exception)
|
|
|
|
return None
|