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