594
594
# gnutls.strerror()
596
596
if message is None and code is not None:
597
message = gnutls.strerror(code)
597
message = gnutls.strerror(code).decode(
598
"utf-8", errors="replace")
598
599
return super(gnutls.Error, self).__init__(
601
602
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):
606
632
def __init__(self):
607
self._c_object = gnutls.certificate_credentials_t()
608
gnutls.certificate_allocate_credentials(
609
ctypes.byref(self._c_object))
633
self._as_parameter_ = gnutls.certificate_credentials_t()
634
gnutls.certificate_allocate_credentials(self)
610
635
self.type = gnutls.CRD_CERTIFICATE
612
637
def __del__(self):
613
gnutls.certificate_free_credentials(self._c_object)
638
gnutls.certificate_free_credentials(self)
640
class ClientSession(With_from_param):
616
641
def __init__(self, socket, credentials=None):
617
self._c_object = gnutls.session_t()
642
self._as_parameter_ = gnutls.session_t()
618
643
gnutls_flags = gnutls.CLIENT
619
644
if gnutls.check_version(b"3.5.6"):
620
645
gnutls_flags |= gnutls.NO_TICKETS
621
646
if gnutls.has_rawpk:
622
647
gnutls_flags |= gnutls.ENABLE_RAWPK
623
gnutls.init(ctypes.byref(self._c_object), gnutls_flags)
648
gnutls.init(self, gnutls_flags)
625
gnutls.set_default_priority(self._c_object)
626
gnutls.transport_set_ptr(self._c_object, socket.fileno())
627
gnutls.handshake_set_private_extensions(self._c_object,
650
gnutls.set_default_priority(self)
651
gnutls.transport_set_ptr(self, socket.fileno())
652
gnutls.handshake_set_private_extensions(self, True)
629
653
self.socket = socket
630
654
if credentials is None:
631
655
credentials = gnutls.Credentials()
632
gnutls.credentials_set(self._c_object, credentials.type,
633
ctypes.cast(credentials._c_object,
656
gnutls.credentials_set(self, credentials.type,
635
658
self.credentials = credentials
637
660
def __del__(self):
638
gnutls.deinit(self._c_object)
640
663
def handshake(self):
641
return gnutls.handshake(self._c_object)
664
return gnutls.handshake(self)
643
666
def send(self, data):
644
667
data = bytes(data)
645
668
data_len = len(data)
646
669
while data_len > 0:
647
data_len -= gnutls.record_send(self._c_object,
670
data_len -= gnutls.record_send(self, data[-data_len:],
652
return gnutls.bye(self._c_object, gnutls.SHUT_RDWR)
674
return gnutls.bye(self, gnutls.SHUT_RDWR)
654
676
# Error handling functions
655
677
def _error_code(result):
656
678
"""A function to raise exceptions on errors, suitable
657
for the 'restype' attribute on ctypes functions"""
679
for the "restype" attribute on ctypes functions"""
680
if result >= gnutls.E_SUCCESS:
660
682
if result == gnutls.E_NO_CERTIFICATE_FOUND:
661
683
raise gnutls.CertificateSecurityError(code=result)
662
684
raise gnutls.Error(code=result)
664
def _retry_on_error(result, func, arguments):
686
def _retry_on_error(result, func, arguments,
687
_error_code=_error_code):
665
688
"""A function to retry on some errors, suitable
666
for the 'errcheck' attribute on ctypes functions"""
689
for the "errcheck" attribute on ctypes functions"""
690
while result < gnutls.E_SUCCESS:
668
691
if result not in (gnutls.E_INTERRUPTED, gnutls.E_AGAIN):
669
692
return _error_code(result)
670
693
result = func(*arguments)
677
700
priority_set_direct = _library.gnutls_priority_set_direct
678
priority_set_direct.argtypes = [session_t, ctypes.c_char_p,
701
priority_set_direct.argtypes = [ClientSession, ctypes.c_char_p,
679
702
ctypes.POINTER(ctypes.c_char_p)]
680
703
priority_set_direct.restype = _error_code
682
705
init = _library.gnutls_init
683
init.argtypes = [ctypes.POINTER(session_t), ctypes.c_int]
706
init.argtypes = [PointerTo(ClientSession), ctypes.c_int]
684
707
init.restype = _error_code
686
709
set_default_priority = _library.gnutls_set_default_priority
687
set_default_priority.argtypes = [session_t]
710
set_default_priority.argtypes = [ClientSession]
688
711
set_default_priority.restype = _error_code
690
713
record_send = _library.gnutls_record_send
691
record_send.argtypes = [session_t, ctypes.c_void_p,
714
record_send.argtypes = [ClientSession, ctypes.c_void_p,
693
716
record_send.restype = ctypes.c_ssize_t
694
717
record_send.errcheck = _retry_on_error
696
719
certificate_allocate_credentials = (
697
720
_library.gnutls_certificate_allocate_credentials)
698
721
certificate_allocate_credentials.argtypes = [
699
ctypes.POINTER(certificate_credentials_t)]
722
PointerTo(Credentials)]
700
723
certificate_allocate_credentials.restype = _error_code
702
725
certificate_free_credentials = (
703
726
_library.gnutls_certificate_free_credentials)
704
certificate_free_credentials.argtypes = [
705
certificate_credentials_t]
727
certificate_free_credentials.argtypes = [Credentials]
706
728
certificate_free_credentials.restype = None
708
730
handshake_set_private_extensions = (
709
731
_library.gnutls_handshake_set_private_extensions)
710
handshake_set_private_extensions.argtypes = [session_t,
732
handshake_set_private_extensions.argtypes = [ClientSession,
712
734
handshake_set_private_extensions.restype = None
714
736
credentials_set = _library.gnutls_credentials_set
715
credentials_set.argtypes = [session_t, credentials_type_t,
737
credentials_set.argtypes = [ClientSession, credentials_type_t,
738
CastToVoidPointer(Credentials)]
717
739
credentials_set.restype = _error_code
719
741
strerror = _library.gnutls_strerror
738
760
global_set_log_function.restype = None
740
762
deinit = _library.gnutls_deinit
741
deinit.argtypes = [session_t]
763
deinit.argtypes = [ClientSession]
742
764
deinit.restype = None
744
766
handshake = _library.gnutls_handshake
745
handshake.argtypes = [session_t]
746
handshake.restype = _error_code
767
handshake.argtypes = [ClientSession]
768
handshake.restype = ctypes.c_int
747
769
handshake.errcheck = _retry_on_error
749
771
transport_set_ptr = _library.gnutls_transport_set_ptr
750
transport_set_ptr.argtypes = [session_t, transport_ptr_t]
772
transport_set_ptr.argtypes = [ClientSession, transport_ptr_t]
751
773
transport_set_ptr.restype = None
753
775
bye = _library.gnutls_bye
754
bye.argtypes = [session_t, close_request_t]
755
bye.restype = _error_code
776
bye.argtypes = [ClientSession, close_request_t]
777
bye.restype = ctypes.c_int
756
778
bye.errcheck = _retry_on_error
758
780
check_version = _library.gnutls_check_version
2250
2272
class ProxyClient:
2251
2273
def __init__(self, child_pipe, key_id, fpr, address):
2252
2274
self._pipe = child_pipe
2253
self._pipe.send(('init', key_id, fpr, address))
2275
self._pipe.send(("init", key_id, fpr, address))
2254
2276
if not self._pipe.recv():
2255
2277
raise KeyError(key_id or fpr)
2257
2279
def __getattribute__(self, name):
2259
2281
return super(ProxyClient, self).__getattribute__(name)
2260
self._pipe.send(('getattr', name))
2282
self._pipe.send(("getattr", name))
2261
2283
data = self._pipe.recv()
2262
if data[0] == 'data':
2284
if data[0] == "data":
2264
if data[0] == 'function':
2286
if data[0] == "function":
2266
2288
def func(*args, **kwargs):
2267
self._pipe.send(('funcall', name, args, kwargs))
2289
self._pipe.send(("funcall", name, args, kwargs))
2268
2290
return self._pipe.recv()[1]
2272
2294
def __setattr__(self, name, value):
2274
2296
return super(ProxyClient, self).__setattr__(name, value)
2275
self._pipe.send(('setattr', name, value))
2297
self._pipe.send(("setattr", name, value))
2278
2300
class ClientHandler(socketserver.BaseRequestHandler, object):
2761
2784
# remove the old hook in favor of the new above hook on
2764
if command == 'funcall':
2787
if command == "funcall":
2765
2788
funcname = request[1]
2766
2789
args = request[2]
2767
2790
kwargs = request[3]
2769
parent_pipe.send(('data', getattr(client_object,
2792
parent_pipe.send(("data", getattr(client_object,
2770
2793
funcname)(*args,
2773
if command == 'getattr':
2796
if command == "getattr":
2774
2797
attrname = request[1]
2775
2798
if isinstance(client_object.__getattribute__(attrname),
2776
2799
collections.abc.Callable):
2777
parent_pipe.send(('function', ))
2800
parent_pipe.send(("function", ))
2779
2802
parent_pipe.send((
2780
'data', client_object.__getattribute__(attrname)))
2803
"data", client_object.__getattribute__(attrname)))
2782
if command == 'setattr':
2805
if command == "setattr":
2783
2806
attrname = request[1]
2784
2807
value = request[2]
2785
2808
setattr(client_object, attrname, value)
2891
2914
def string_to_delta(interval):
2892
2915
"""Parse a string and return a datetime.timedelta
2894
>>> string_to_delta('7d') == datetime.timedelta(7)
2896
>>> string_to_delta('60s') == datetime.timedelta(0, 60)
2898
>>> string_to_delta('60m') == datetime.timedelta(0, 3600)
2900
>>> string_to_delta('24h') == datetime.timedelta(1)
2902
>>> string_to_delta('1w') == datetime.timedelta(7)
2904
>>> string_to_delta('5m 30s') == datetime.timedelta(0, 330)
2917
>>> string_to_delta("7d") == datetime.timedelta(7)
2919
>>> string_to_delta("60s") == datetime.timedelta(0, 60)
2921
>>> string_to_delta("60m") == datetime.timedelta(0, 3600)
2923
>>> string_to_delta("24h") == datetime.timedelta(1)
2925
>>> string_to_delta("1w") == datetime.timedelta(7)
2927
>>> string_to_delta("5m 30s") == datetime.timedelta(0, 330)