2025-12-25 upload
This commit is contained in:
251
venv/Lib/site-packages/ldap3/strategy/sync.py
Normal file
251
venv/Lib/site-packages/ldap3/strategy/sync.py
Normal file
@@ -0,0 +1,251 @@
|
||||
"""
|
||||
"""
|
||||
|
||||
# Created on 2013.07.15
|
||||
#
|
||||
# Author: Giovanni Cannata
|
||||
#
|
||||
# Copyright 2013 - 2020 Giovanni Cannata
|
||||
#
|
||||
# This file is part of ldap3.
|
||||
#
|
||||
# ldap3 is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Lesser General Public License as published
|
||||
# by the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# ldap3 is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with ldap3 in the COPYING and COPYING.LESSER files.
|
||||
# If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import socket
|
||||
|
||||
from .. import SEQUENCE_TYPES, get_config_parameter, DIGEST_MD5
|
||||
from ..core.exceptions import LDAPSocketReceiveError, communication_exception_factory, LDAPExceptionError, LDAPExtensionError, LDAPOperationResult, LDAPSignatureVerificationFailedError
|
||||
from ..strategy.base import BaseStrategy, SESSION_TERMINATED_BY_SERVER, RESPONSE_COMPLETE, TRANSACTION_ERROR
|
||||
from ..protocol.rfc4511 import LDAPMessage
|
||||
from ..utils.log import log, log_enabled, ERROR, NETWORK, EXTENDED, format_ldap_message
|
||||
from ..utils.asn1 import decoder, decode_message_fast
|
||||
from ..protocol.sasl.digestMd5 import md5_hmac
|
||||
|
||||
LDAP_MESSAGE_TEMPLATE = LDAPMessage()
|
||||
|
||||
|
||||
# noinspection PyProtectedMember
|
||||
class SyncStrategy(BaseStrategy):
|
||||
"""
|
||||
This strategy is synchronous. You send the request and get the response
|
||||
Requests return a boolean value to indicate the result of the requested Operation
|
||||
Connection.response will contain the whole LDAP response for the messageId requested in a dict form
|
||||
Connection.request will contain the result LDAP message in a dict form
|
||||
"""
|
||||
|
||||
def __init__(self, ldap_connection):
|
||||
BaseStrategy.__init__(self, ldap_connection)
|
||||
self.sync = True
|
||||
self.no_real_dsa = False
|
||||
self.pooled = False
|
||||
self.can_stream = False
|
||||
self.socket_size = get_config_parameter('SOCKET_SIZE')
|
||||
|
||||
def open(self, reset_usage=True, read_server_info=True):
|
||||
BaseStrategy.open(self, reset_usage, read_server_info)
|
||||
if read_server_info and not self.connection._deferred_open:
|
||||
try:
|
||||
self.connection.refresh_server_info()
|
||||
except LDAPOperationResult: # catch errors from server if raise_exception = True
|
||||
self.connection.server._dsa_info = None
|
||||
self.connection.server._schema_info = None
|
||||
|
||||
def _start_listen(self):
|
||||
if not self.connection.listening and not self.connection.closed:
|
||||
self.connection.listening = True
|
||||
|
||||
def receiving(self):
|
||||
"""
|
||||
Receives data over the socket
|
||||
Checks if the socket is closed
|
||||
"""
|
||||
messages = []
|
||||
receiving = True
|
||||
unprocessed = b''
|
||||
data = b''
|
||||
get_more_data = True
|
||||
# exc = None # not needed here GC
|
||||
sasl_total_bytes_recieved = 0
|
||||
sasl_received_data = b'' # used to verify the signature
|
||||
sasl_next_packet = b''
|
||||
# sasl_signature = b'' # not needed here? GC
|
||||
# sasl_sec_num = b'' # used to verify the signature # not needed here, reformatted to lowercase GC
|
||||
sasl_buffer_length = -1 # added, not initialized? GC
|
||||
while receiving:
|
||||
if get_more_data:
|
||||
try:
|
||||
data = self.connection.socket.recv(self.socket_size)
|
||||
except (OSError, socket.error, AttributeError) as e:
|
||||
self.connection.last_error = 'error receiving data: ' + str(e)
|
||||
try: # try to close the connection before raising exception
|
||||
self.close()
|
||||
except (socket.error, LDAPExceptionError):
|
||||
pass
|
||||
if log_enabled(ERROR):
|
||||
log(ERROR, '<%s> for <%s>', self.connection.last_error, self.connection)
|
||||
# raise communication_exception_factory(LDAPSocketReceiveError, exc)(self.connection.last_error)
|
||||
raise communication_exception_factory(LDAPSocketReceiveError, type(e)(str(e)))(self.connection.last_error)
|
||||
|
||||
# If we are using DIGEST-MD5 and LDAP signing is set : verify & remove the signature from the message
|
||||
if self.connection.sasl_mechanism == DIGEST_MD5 and self.connection._digest_md5_kis and not self.connection.sasl_in_progress:
|
||||
data = sasl_next_packet + data
|
||||
|
||||
if sasl_received_data == b'' or sasl_next_packet:
|
||||
# Remove the sizeOf(encoded_message + signature + 0x0001 + secNum) from data.
|
||||
sasl_buffer_length = int.from_bytes(data[0:4], "big")
|
||||
data = data[4:]
|
||||
sasl_next_packet = b''
|
||||
sasl_total_bytes_recieved += len(data)
|
||||
sasl_received_data += data
|
||||
|
||||
if sasl_total_bytes_recieved >= sasl_buffer_length:
|
||||
# When the LDAP response is splitted accross multiple TCP packets, the SASL buffer length is equal to the MTU of each packet..Which is usually not equal to self.socket_size
|
||||
# This means that the end of one SASL packet/beginning of one other....could be located in the middle of data
|
||||
# We are using "sasl_received_data" instead of "data" & "unprocessed" for this reason
|
||||
|
||||
# structure of messages when LDAP signing is enabled : sizeOf(encoded_message + signature + 0x0001 + secNum) + encoded_message + signature + 0x0001 + secNum
|
||||
sasl_signature = sasl_received_data[sasl_buffer_length - 16:sasl_buffer_length - 6]
|
||||
sasl_sec_num = sasl_received_data[sasl_buffer_length - 4:sasl_buffer_length]
|
||||
sasl_next_packet = sasl_received_data[sasl_buffer_length:] # the last "data" variable may contain another sasl packet. We'll process it at the next iteration.
|
||||
sasl_received_data = sasl_received_data[:sasl_buffer_length - 16] # remove signature + 0x0001 + secNum + the next packet if any, from sasl_received_data
|
||||
|
||||
kis = self.connection._digest_md5_kis # renamed to lowercase GC
|
||||
calculated_signature = bytes.fromhex(md5_hmac(kis, sasl_sec_num + sasl_received_data)[0:20])
|
||||
if sasl_signature != calculated_signature:
|
||||
raise LDAPSignatureVerificationFailedError("Signature verification failed for the recieved LDAP message number " + str(int.from_bytes(sasl_sec_num, 'big')) + ". Expected signature " + calculated_signature.hex() + " but got " + sasl_signature.hex() + ".")
|
||||
sasl_total_bytes_recieved = 0
|
||||
unprocessed += sasl_received_data
|
||||
sasl_received_data = b''
|
||||
else:
|
||||
unprocessed += data
|
||||
if len(data) > 0:
|
||||
length = BaseStrategy.compute_ldap_message_size(unprocessed)
|
||||
if length == -1: # too few data to decode message length
|
||||
get_more_data = True
|
||||
continue
|
||||
if len(unprocessed) < length:
|
||||
get_more_data = True
|
||||
else:
|
||||
if log_enabled(NETWORK):
|
||||
log(NETWORK, 'received %d bytes via <%s>', len(unprocessed[:length]), self.connection)
|
||||
messages.append(unprocessed[:length])
|
||||
unprocessed = unprocessed[length:]
|
||||
get_more_data = False
|
||||
if len(unprocessed) == 0:
|
||||
receiving = False
|
||||
else:
|
||||
receiving = False
|
||||
|
||||
if log_enabled(NETWORK):
|
||||
log(NETWORK, 'received %d ldap messages via <%s>', len(messages), self.connection)
|
||||
return messages
|
||||
|
||||
def post_send_single_response(self, message_id):
|
||||
"""
|
||||
Executed after an Operation Request (except Search)
|
||||
Returns the result message or None
|
||||
"""
|
||||
responses, result = self.get_response(message_id)
|
||||
self.connection.result = result
|
||||
if result['type'] == 'intermediateResponse': # checks that all responses are intermediates (there should be only one)
|
||||
for response in responses:
|
||||
if response['type'] != 'intermediateResponse':
|
||||
self.connection.last_error = 'multiple messages received error'
|
||||
if log_enabled(ERROR):
|
||||
log(ERROR, '<%s> for <%s>', self.connection.last_error, self.connection)
|
||||
raise LDAPSocketReceiveError(self.connection.last_error)
|
||||
|
||||
responses.append(result)
|
||||
return responses
|
||||
|
||||
def post_send_search(self, message_id):
|
||||
"""
|
||||
Executed after a search request
|
||||
Returns the result message and store in connection.response the objects found
|
||||
"""
|
||||
responses, result = self.get_response(message_id)
|
||||
self.connection.result = result
|
||||
if isinstance(responses, SEQUENCE_TYPES):
|
||||
self.connection.response = responses[:] # copy search result entries
|
||||
return responses
|
||||
|
||||
self.connection.last_error = 'error receiving response'
|
||||
if log_enabled(ERROR):
|
||||
log(ERROR, '<%s> for <%s>', self.connection.last_error, self.connection)
|
||||
raise LDAPSocketReceiveError(self.connection.last_error)
|
||||
|
||||
def _get_response(self, message_id, timeout):
|
||||
"""
|
||||
Performs the capture of LDAP response for SyncStrategy
|
||||
"""
|
||||
ldap_responses = []
|
||||
response_complete = False
|
||||
while not response_complete:
|
||||
responses = self.receiving()
|
||||
if responses:
|
||||
for response in responses:
|
||||
if len(response) > 0:
|
||||
if self.connection.usage:
|
||||
self.connection._usage.update_received_message(len(response))
|
||||
if self.connection.fast_decoder:
|
||||
ldap_resp = decode_message_fast(response)
|
||||
dict_response = self.decode_response_fast(ldap_resp)
|
||||
else:
|
||||
ldap_resp, _ = decoder.decode(response, asn1Spec=LDAP_MESSAGE_TEMPLATE) # unprocessed unused because receiving() waits for the whole message
|
||||
dict_response = self.decode_response(ldap_resp)
|
||||
if log_enabled(EXTENDED):
|
||||
log(EXTENDED, 'ldap message received via <%s>:%s', self.connection, format_ldap_message(ldap_resp, '<<'))
|
||||
if int(ldap_resp['messageID']) == message_id:
|
||||
ldap_responses.append(dict_response)
|
||||
if dict_response['type'] not in ['searchResEntry', 'searchResRef', 'intermediateResponse']:
|
||||
response_complete = True
|
||||
elif int(ldap_resp['messageID']) == 0: # 0 is reserved for 'Unsolicited Notification' from server as per RFC4511 (paragraph 4.4)
|
||||
if dict_response['responseName'] == '1.3.6.1.4.1.1466.20036': # Notice of Disconnection as per RFC4511 (paragraph 4.4.1)
|
||||
return SESSION_TERMINATED_BY_SERVER
|
||||
elif dict_response['responseName'] == '2.16.840.1.113719.1.27.103.4': # Novell LDAP transaction error unsolicited notification
|
||||
return TRANSACTION_ERROR
|
||||
else:
|
||||
self.connection.last_error = 'unknown unsolicited notification from server'
|
||||
if log_enabled(ERROR):
|
||||
log(ERROR, '<%s> for <%s>', self.connection.last_error, self.connection)
|
||||
raise LDAPSocketReceiveError(self.connection.last_error)
|
||||
elif int(ldap_resp['messageID']) != message_id and dict_response['type'] == 'extendedResp':
|
||||
self.connection.last_error = 'multiple extended responses to a single extended request'
|
||||
if log_enabled(ERROR):
|
||||
log(ERROR, '<%s> for <%s>', self.connection.last_error, self.connection)
|
||||
raise LDAPExtensionError(self.connection.last_error)
|
||||
# pass # ignore message with invalid messageId when receiving multiple extendedResp. This is not allowed by RFC4511 but some LDAP server do it
|
||||
else:
|
||||
self.connection.last_error = 'invalid messageId received'
|
||||
if log_enabled(ERROR):
|
||||
log(ERROR, '<%s> for <%s>', self.connection.last_error, self.connection)
|
||||
raise LDAPSocketReceiveError(self.connection.last_error)
|
||||
# response = unprocessed
|
||||
# if response: # if this statement is removed unprocessed data will be processed as another message
|
||||
# self.connection.last_error = 'unprocessed substrate error'
|
||||
# if log_enabled(ERROR):
|
||||
# log(ERROR, '<%s> for <%s>', self.connection.last_error, self.connection)
|
||||
# raise LDAPSocketReceiveError(self.connection.last_error)
|
||||
else:
|
||||
return SESSION_TERMINATED_BY_SERVER
|
||||
ldap_responses.append(RESPONSE_COMPLETE)
|
||||
|
||||
return ldap_responses
|
||||
|
||||
def set_stream(self, value):
|
||||
raise NotImplementedError
|
||||
|
||||
def get_stream(self):
|
||||
raise NotImplementedError
|
||||
Reference in New Issue
Block a user