594
577
# gnutls.strerror()
596
579
if message is None and code is not None:
597
message = gnutls.strerror(code).decode(
598
"utf-8", errors="replace")
580
message = gnutls.strerror(code)
599
581
return super(gnutls.Error, self).__init__(
602
584
class CertificateSecurityError(Error):
606
def __init__(self, cls):
609
def from_param(self, obj):
610
if not isinstance(obj, self.cls):
611
raise TypeError("Not of type {}: {!r}"
612
.format(self.cls.__name__, obj))
613
return ctypes.byref(obj.from_param(obj))
615
class CastToVoidPointer:
616
def __init__(self, cls):
619
def from_param(self, obj):
620
if not isinstance(obj, self.cls):
621
raise TypeError("Not of type {}: {!r}"
622
.format(self.cls.__name__, obj))
623
return ctypes.cast(obj.from_param(obj), ctypes.c_void_p)
625
class With_from_param:
627
def from_param(cls, obj):
628
return obj._as_parameter_
631
class Credentials(With_from_param):
632
589
def __init__(self):
633
self._as_parameter_ = gnutls.certificate_credentials_t()
634
gnutls.certificate_allocate_credentials(self)
590
self._c_object = gnutls.certificate_credentials_t()
591
gnutls.certificate_allocate_credentials(
592
ctypes.byref(self._c_object))
635
593
self.type = gnutls.CRD_CERTIFICATE
637
595
def __del__(self):
638
gnutls.certificate_free_credentials(self)
596
gnutls.certificate_free_credentials(self._c_object)
640
class ClientSession(With_from_param):
641
599
def __init__(self, socket, credentials=None):
642
self._as_parameter_ = gnutls.session_t()
600
self._c_object = gnutls.session_t()
643
601
gnutls_flags = gnutls.CLIENT
644
602
if gnutls.check_version(b"3.5.6"):
645
603
gnutls_flags |= gnutls.NO_TICKETS
646
604
if gnutls.has_rawpk:
647
605
gnutls_flags |= gnutls.ENABLE_RAWPK
648
gnutls.init(self, gnutls_flags)
606
gnutls.init(ctypes.byref(self._c_object), gnutls_flags)
650
gnutls.set_default_priority(self)
651
gnutls.transport_set_ptr(self, socket.fileno())
652
gnutls.handshake_set_private_extensions(self, True)
608
gnutls.set_default_priority(self._c_object)
609
gnutls.transport_set_ptr(self._c_object, socket.fileno())
610
gnutls.handshake_set_private_extensions(self._c_object,
653
612
self.socket = socket
654
613
if credentials is None:
655
614
credentials = gnutls.Credentials()
656
gnutls.credentials_set(self, credentials.type,
615
gnutls.credentials_set(self._c_object, credentials.type,
616
ctypes.cast(credentials._c_object,
658
618
self.credentials = credentials
660
620
def __del__(self):
621
gnutls.deinit(self._c_object)
663
623
def handshake(self):
664
return gnutls.handshake(self)
624
return gnutls.handshake(self._c_object)
666
626
def send(self, data):
667
627
data = bytes(data)
668
628
data_len = len(data)
669
629
while data_len > 0:
670
data_len -= gnutls.record_send(self, data[-data_len:],
630
data_len -= gnutls.record_send(self._c_object,
674
return gnutls.bye(self, gnutls.SHUT_RDWR)
635
return gnutls.bye(self._c_object, gnutls.SHUT_RDWR)
676
637
# Error handling functions
677
638
def _error_code(result):
678
639
"""A function to raise exceptions on errors, suitable
679
640
for the 'restype' attribute on ctypes functions"""
680
if result >= gnutls.E_SUCCESS:
682
643
if result == gnutls.E_NO_CERTIFICATE_FOUND:
683
644
raise gnutls.CertificateSecurityError(code=result)
684
645
raise gnutls.Error(code=result)
686
def _retry_on_error(result, func, arguments,
687
_error_code=_error_code):
647
def _retry_on_error(result, func, arguments):
688
648
"""A function to retry on some errors, suitable
689
649
for the 'errcheck' attribute on ctypes functions"""
690
while result < gnutls.E_SUCCESS:
691
651
if result not in (gnutls.E_INTERRUPTED, gnutls.E_AGAIN):
692
652
return _error_code(result)
693
653
result = func(*arguments)
700
660
priority_set_direct = _library.gnutls_priority_set_direct
701
priority_set_direct.argtypes = [ClientSession, ctypes.c_char_p,
661
priority_set_direct.argtypes = [session_t, ctypes.c_char_p,
702
662
ctypes.POINTER(ctypes.c_char_p)]
703
663
priority_set_direct.restype = _error_code
705
665
init = _library.gnutls_init
706
init.argtypes = [PointerTo(ClientSession), ctypes.c_int]
666
init.argtypes = [ctypes.POINTER(session_t), ctypes.c_int]
707
667
init.restype = _error_code
709
669
set_default_priority = _library.gnutls_set_default_priority
710
set_default_priority.argtypes = [ClientSession]
670
set_default_priority.argtypes = [session_t]
711
671
set_default_priority.restype = _error_code
713
673
record_send = _library.gnutls_record_send
714
record_send.argtypes = [ClientSession, ctypes.c_void_p,
674
record_send.argtypes = [session_t, ctypes.c_void_p,
716
676
record_send.restype = ctypes.c_ssize_t
717
677
record_send.errcheck = _retry_on_error
719
679
certificate_allocate_credentials = (
720
680
_library.gnutls_certificate_allocate_credentials)
721
681
certificate_allocate_credentials.argtypes = [
722
PointerTo(Credentials)]
682
ctypes.POINTER(certificate_credentials_t)]
723
683
certificate_allocate_credentials.restype = _error_code
725
685
certificate_free_credentials = (
726
686
_library.gnutls_certificate_free_credentials)
727
certificate_free_credentials.argtypes = [Credentials]
687
certificate_free_credentials.argtypes = [
688
certificate_credentials_t]
728
689
certificate_free_credentials.restype = None
730
691
handshake_set_private_extensions = (
731
692
_library.gnutls_handshake_set_private_extensions)
732
handshake_set_private_extensions.argtypes = [ClientSession,
693
handshake_set_private_extensions.argtypes = [session_t,
734
695
handshake_set_private_extensions.restype = None
736
697
credentials_set = _library.gnutls_credentials_set
737
credentials_set.argtypes = [ClientSession, credentials_type_t,
738
CastToVoidPointer(Credentials)]
698
credentials_set.argtypes = [session_t, credentials_type_t,
739
700
credentials_set.restype = _error_code
741
702
strerror = _library.gnutls_strerror
760
721
global_set_log_function.restype = None
762
723
deinit = _library.gnutls_deinit
763
deinit.argtypes = [ClientSession]
724
deinit.argtypes = [session_t]
764
725
deinit.restype = None
766
727
handshake = _library.gnutls_handshake
767
handshake.argtypes = [ClientSession]
768
handshake.restype = ctypes.c_int
728
handshake.argtypes = [session_t]
729
handshake.restype = _error_code
769
730
handshake.errcheck = _retry_on_error
771
732
transport_set_ptr = _library.gnutls_transport_set_ptr
772
transport_set_ptr.argtypes = [ClientSession, transport_ptr_t]
733
transport_set_ptr.argtypes = [session_t, transport_ptr_t]
773
734
transport_set_ptr.restype = None
775
736
bye = _library.gnutls_bye
776
bye.argtypes = [ClientSession, close_request_t]
777
bye.restype = ctypes.c_int
737
bye.argtypes = [session_t, close_request_t]
738
bye.restype = _error_code
778
739
bye.errcheck = _retry_on_error
780
741
check_version = _library.gnutls_check_version
2813
2765
def rfc3339_duration_to_delta(duration):
2814
2766
"""Parse an RFC 3339 "duration" and return a datetime.timedelta
2816
>>> timedelta = datetime.timedelta
2817
>>> rfc3339_duration_to_delta("P7D") == timedelta(7)
2819
>>> rfc3339_duration_to_delta("PT60S") == timedelta(0, 60)
2821
>>> rfc3339_duration_to_delta("PT60M") == timedelta(0, 3600)
2823
>>> rfc3339_duration_to_delta("PT24H") == timedelta(1)
2825
>>> rfc3339_duration_to_delta("P1W") == timedelta(7)
2827
>>> rfc3339_duration_to_delta("PT5M30S") == timedelta(0, 330)
2829
>>> rfc3339_duration_to_delta("P1DT3M20S") == timedelta(1, 200)
2768
>>> rfc3339_duration_to_delta("P7D") == datetime.timedelta(7)
2770
>>> rfc3339_duration_to_delta("PT60S") == datetime.timedelta(0, 60)
2772
>>> rfc3339_duration_to_delta("PT60M") == datetime.timedelta(0, 3600)
2774
>>> rfc3339_duration_to_delta("PT24H") == datetime.timedelta(1)
2776
>>> rfc3339_duration_to_delta("P1W") == datetime.timedelta(7)
2778
>>> rfc3339_duration_to_delta("PT5M30S") == datetime.timedelta(0, 330)
2780
>>> rfc3339_duration_to_delta("P1DT3M20S") == datetime.timedelta(1, 200)
2834
2784
# Parsing an RFC 3339 duration with regular expressions is not