524
496
class AvahiServiceToSyslog(AvahiService):
525
497
def rename(self, *args, **kwargs):
526
498
"""Add the new name to the syslog messages"""
527
ret = super(AvahiServiceToSyslog, self).rename(*args,
499
ret = super(AvahiServiceToSyslog, self).rename(self, *args,
529
501
syslogger.setFormatter(logging.Formatter(
530
"Mandos ({}) [%(process)d]: %(levelname)s: %(message)s"
502
'Mandos ({}) [%(process)d]: %(levelname)s: %(message)s'
531
503
.format(self.name)))
535
507
# Pretend that we have a GnuTLS module
537
"""This isn't so much a class as it is a module-like namespace."""
508
class GnuTLS(object):
509
"""This isn't so much a class as it is a module-like namespace.
510
It is instantiated once, and simulates having a GnuTLS module."""
539
512
library = ctypes.util.find_library("gnutls")
540
513
if library is None:
541
514
library = ctypes.util.find_library("gnutls-deb0")
542
515
_library = ctypes.cdll.LoadLibrary(library)
517
_need_version = b"3.3.0"
520
# Need to use "self" here, since this method is called before
521
# the assignment to the "gnutls" global variable happens.
522
if self.check_version(self._need_version) is None:
523
raise self.Error("Needs GnuTLS {} or later"
524
.format(self._need_version))
545
526
# Unless otherwise indicated, the constants and types below are
546
527
# all from the gnutls/gnutls.h C header file.
590
565
class Error(Exception):
566
# We need to use the class name "GnuTLS" here, since this
567
# exception might be raised from within GnuTLS.__init__,
568
# which is called before the assignment to the "gnutls"
569
# global variable has happened.
591
570
def __init__(self, message=None, code=None, args=()):
592
571
# Default usage is by a message string, but if a return
593
572
# code is passed, convert it to a string with
594
573
# gnutls.strerror()
596
575
if message is None and code is not None:
597
message = gnutls.strerror(code).decode(
598
"utf-8", errors="replace")
599
return super(gnutls.Error, self).__init__(
576
message = GnuTLS.strerror(code)
577
return super(GnuTLS.Error, self).__init__(
602
580
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):
584
class Credentials(object):
632
585
def __init__(self):
633
self._as_parameter_ = gnutls.certificate_credentials_t()
634
gnutls.certificate_allocate_credentials(self)
586
self._c_object = gnutls.certificate_credentials_t()
587
gnutls.certificate_allocate_credentials(
588
ctypes.byref(self._c_object))
635
589
self.type = gnutls.CRD_CERTIFICATE
637
591
def __del__(self):
638
gnutls.certificate_free_credentials(self)
592
gnutls.certificate_free_credentials(self._c_object)
640
class ClientSession(With_from_param):
594
class ClientSession(object):
641
595
def __init__(self, socket, credentials=None):
642
self._as_parameter_ = gnutls.session_t()
643
gnutls_flags = gnutls.CLIENT
644
if gnutls.check_version(b"3.5.6"):
645
gnutls_flags |= gnutls.NO_TICKETS
647
gnutls_flags |= gnutls.ENABLE_RAWPK
648
gnutls.init(self, gnutls_flags)
650
gnutls.set_default_priority(self)
651
gnutls.transport_set_ptr(self, socket.fileno())
652
gnutls.handshake_set_private_extensions(self, True)
596
self._c_object = gnutls.session_t()
597
gnutls.init(ctypes.byref(self._c_object), gnutls.CLIENT)
598
gnutls.set_default_priority(self._c_object)
599
gnutls.transport_set_ptr(self._c_object, socket.fileno())
600
gnutls.handshake_set_private_extensions(self._c_object,
653
602
self.socket = socket
654
603
if credentials is None:
655
604
credentials = gnutls.Credentials()
656
gnutls.credentials_set(self, credentials.type,
605
gnutls.credentials_set(self._c_object, credentials.type,
606
ctypes.cast(credentials._c_object,
658
608
self.credentials = credentials
660
610
def __del__(self):
611
gnutls.deinit(self._c_object)
663
613
def handshake(self):
664
return gnutls.handshake(self)
614
return gnutls.handshake(self._c_object)
666
616
def send(self, data):
667
617
data = bytes(data)
668
618
data_len = len(data)
669
619
while data_len > 0:
670
data_len -= gnutls.record_send(self, data[-data_len:],
620
data_len -= gnutls.record_send(self._c_object,
674
return gnutls.bye(self, gnutls.SHUT_RDWR)
625
return gnutls.bye(self._c_object, gnutls.SHUT_RDWR)
676
627
# Error handling functions
677
628
def _error_code(result):
678
629
"""A function to raise exceptions on errors, suitable
679
for the "restype" attribute on ctypes functions"""
680
if result >= gnutls.E_SUCCESS:
630
for the 'restype' attribute on ctypes functions"""
682
633
if result == gnutls.E_NO_CERTIFICATE_FOUND:
683
634
raise gnutls.CertificateSecurityError(code=result)
684
635
raise gnutls.Error(code=result)
686
def _retry_on_error(result, func, arguments,
687
_error_code=_error_code):
637
def _retry_on_error(result, func, arguments):
688
638
"""A function to retry on some errors, suitable
689
for the "errcheck" attribute on ctypes functions"""
690
while result < gnutls.E_SUCCESS:
639
for the 'errcheck' attribute on ctypes functions"""
691
641
if result not in (gnutls.E_INTERRUPTED, gnutls.E_AGAIN):
692
642
return _error_code(result)
693
643
result = func(*arguments)
700
650
priority_set_direct = _library.gnutls_priority_set_direct
701
priority_set_direct.argtypes = [ClientSession, ctypes.c_char_p,
651
priority_set_direct.argtypes = [session_t, ctypes.c_char_p,
702
652
ctypes.POINTER(ctypes.c_char_p)]
703
653
priority_set_direct.restype = _error_code
705
655
init = _library.gnutls_init
706
init.argtypes = [PointerTo(ClientSession), ctypes.c_int]
656
init.argtypes = [ctypes.POINTER(session_t), ctypes.c_int]
707
657
init.restype = _error_code
709
659
set_default_priority = _library.gnutls_set_default_priority
710
set_default_priority.argtypes = [ClientSession]
660
set_default_priority.argtypes = [session_t]
711
661
set_default_priority.restype = _error_code
713
663
record_send = _library.gnutls_record_send
714
record_send.argtypes = [ClientSession, ctypes.c_void_p,
664
record_send.argtypes = [session_t, ctypes.c_void_p,
716
666
record_send.restype = ctypes.c_ssize_t
717
667
record_send.errcheck = _retry_on_error
719
669
certificate_allocate_credentials = (
720
670
_library.gnutls_certificate_allocate_credentials)
721
671
certificate_allocate_credentials.argtypes = [
722
PointerTo(Credentials)]
672
ctypes.POINTER(certificate_credentials_t)]
723
673
certificate_allocate_credentials.restype = _error_code
725
675
certificate_free_credentials = (
726
676
_library.gnutls_certificate_free_credentials)
727
certificate_free_credentials.argtypes = [Credentials]
677
certificate_free_credentials.argtypes = [
678
certificate_credentials_t]
728
679
certificate_free_credentials.restype = None
730
681
handshake_set_private_extensions = (
731
682
_library.gnutls_handshake_set_private_extensions)
732
handshake_set_private_extensions.argtypes = [ClientSession,
683
handshake_set_private_extensions.argtypes = [session_t,
734
685
handshake_set_private_extensions.restype = None
736
687
credentials_set = _library.gnutls_credentials_set
737
credentials_set.argtypes = [ClientSession, credentials_type_t,
738
CastToVoidPointer(Credentials)]
688
credentials_set.argtypes = [session_t, credentials_type_t,
739
690
credentials_set.restype = _error_code
741
692
strerror = _library.gnutls_strerror
760
711
global_set_log_function.restype = None
762
713
deinit = _library.gnutls_deinit
763
deinit.argtypes = [ClientSession]
714
deinit.argtypes = [session_t]
764
715
deinit.restype = None
766
717
handshake = _library.gnutls_handshake
767
handshake.argtypes = [ClientSession]
768
handshake.restype = ctypes.c_int
718
handshake.argtypes = [session_t]
719
handshake.restype = _error_code
769
720
handshake.errcheck = _retry_on_error
771
722
transport_set_ptr = _library.gnutls_transport_set_ptr
772
transport_set_ptr.argtypes = [ClientSession, transport_ptr_t]
723
transport_set_ptr.argtypes = [session_t, transport_ptr_t]
773
724
transport_set_ptr.restype = None
775
726
bye = _library.gnutls_bye
776
bye.argtypes = [ClientSession, close_request_t]
777
bye.restype = ctypes.c_int
727
bye.argtypes = [session_t, close_request_t]
728
bye.restype = _error_code
778
729
bye.errcheck = _retry_on_error
780
731
check_version = _library.gnutls_check_version
781
732
check_version.argtypes = [ctypes.c_char_p]
782
733
check_version.restype = ctypes.c_char_p
784
_need_version = b"3.3.0"
785
if check_version(_need_version) is None:
786
raise self.Error("Needs GnuTLS {} or later"
787
.format(_need_version))
789
_tls_rawpk_version = b"3.6.6"
790
has_rawpk = bool(check_version(_tls_rawpk_version))
794
class pubkey_st(ctypes.Structure):
796
pubkey_t = ctypes.POINTER(pubkey_st)
798
x509_crt_fmt_t = ctypes.c_int
800
# All the function declarations below are from
802
pubkey_init = _library.gnutls_pubkey_init
803
pubkey_init.argtypes = [ctypes.POINTER(pubkey_t)]
804
pubkey_init.restype = _error_code
806
pubkey_import = _library.gnutls_pubkey_import
807
pubkey_import.argtypes = [pubkey_t, ctypes.POINTER(datum_t),
809
pubkey_import.restype = _error_code
811
pubkey_get_key_id = _library.gnutls_pubkey_get_key_id
812
pubkey_get_key_id.argtypes = [pubkey_t, ctypes.c_int,
813
ctypes.POINTER(ctypes.c_ubyte),
814
ctypes.POINTER(ctypes.c_size_t)]
815
pubkey_get_key_id.restype = _error_code
817
pubkey_deinit = _library.gnutls_pubkey_deinit
818
pubkey_deinit.argtypes = [pubkey_t]
819
pubkey_deinit.restype = None
821
# All the function declarations below are from
824
openpgp_crt_init = _library.gnutls_openpgp_crt_init
825
openpgp_crt_init.argtypes = [ctypes.POINTER(openpgp_crt_t)]
826
openpgp_crt_init.restype = _error_code
828
openpgp_crt_import = _library.gnutls_openpgp_crt_import
829
openpgp_crt_import.argtypes = [openpgp_crt_t,
830
ctypes.POINTER(datum_t),
832
openpgp_crt_import.restype = _error_code
834
openpgp_crt_verify_self = \
835
_library.gnutls_openpgp_crt_verify_self
836
openpgp_crt_verify_self.argtypes = [
839
ctypes.POINTER(ctypes.c_uint),
841
openpgp_crt_verify_self.restype = _error_code
843
openpgp_crt_deinit = _library.gnutls_openpgp_crt_deinit
844
openpgp_crt_deinit.argtypes = [openpgp_crt_t]
845
openpgp_crt_deinit.restype = None
847
openpgp_crt_get_fingerprint = (
848
_library.gnutls_openpgp_crt_get_fingerprint)
849
openpgp_crt_get_fingerprint.argtypes = [openpgp_crt_t,
853
openpgp_crt_get_fingerprint.restype = _error_code
855
if check_version(b"3.6.4"):
856
certificate_type_get2 = _library.gnutls_certificate_type_get2
857
certificate_type_get2.argtypes = [ClientSession, ctypes.c_int]
858
certificate_type_get2.restype = _error_code
735
# All the function declarations below are from gnutls/openpgp.h
737
openpgp_crt_init = _library.gnutls_openpgp_crt_init
738
openpgp_crt_init.argtypes = [ctypes.POINTER(openpgp_crt_t)]
739
openpgp_crt_init.restype = _error_code
741
openpgp_crt_import = _library.gnutls_openpgp_crt_import
742
openpgp_crt_import.argtypes = [openpgp_crt_t,
743
ctypes.POINTER(datum_t),
745
openpgp_crt_import.restype = _error_code
747
openpgp_crt_verify_self = _library.gnutls_openpgp_crt_verify_self
748
openpgp_crt_verify_self.argtypes = [openpgp_crt_t, ctypes.c_uint,
749
ctypes.POINTER(ctypes.c_uint)]
750
openpgp_crt_verify_self.restype = _error_code
752
openpgp_crt_deinit = _library.gnutls_openpgp_crt_deinit
753
openpgp_crt_deinit.argtypes = [openpgp_crt_t]
754
openpgp_crt_deinit.restype = None
756
openpgp_crt_get_fingerprint = (
757
_library.gnutls_openpgp_crt_get_fingerprint)
758
openpgp_crt_get_fingerprint.argtypes = [openpgp_crt_t,
762
openpgp_crt_get_fingerprint.restype = _error_code
860
764
# Remove non-public functions
861
765
del _error_code, _retry_on_error
766
# Create the global "gnutls" object, simulating a module
864
770
def call_pipe(connection, # : multiprocessing.Connection
2273
def __init__(self, child_pipe, key_id, fpr, address):
2163
class ProxyClient(object):
2164
def __init__(self, child_pipe, fpr, address):
2274
2165
self._pipe = child_pipe
2275
self._pipe.send(("init", key_id, fpr, address))
2166
self._pipe.send(('init', fpr, address))
2276
2167
if not self._pipe.recv():
2277
raise KeyError(key_id or fpr)
2279
2170
def __getattribute__(self, name):
2281
2172
return super(ProxyClient, self).__getattribute__(name)
2282
self._pipe.send(("getattr", name))
2173
self._pipe.send(('getattr', name))
2283
2174
data = self._pipe.recv()
2284
if data[0] == "data":
2175
if data[0] == 'data':
2286
if data[0] == "function":
2177
if data[0] == 'function':
2288
2179
def func(*args, **kwargs):
2289
self._pipe.send(("funcall", name, args, kwargs))
2180
self._pipe.send(('funcall', name, args, kwargs))
2290
2181
return self._pipe.recv()[1]
2294
2185
def __setattr__(self, name, value):
2296
2187
return super(ProxyClient, self).__setattr__(name, value)
2297
self._pipe.send(("setattr", name, value))
2188
self._pipe.send(('setattr', name, value))
2300
2191
class ClientHandler(socketserver.BaseRequestHandler, object):
2347
2239
approval_required = False
2349
if gnutls.has_rawpk:
2352
key_id = self.key_id(
2353
self.peer_certificate(session))
2354
except (TypeError, gnutls.Error) as error:
2355
logger.warning("Bad certificate: %s", error)
2357
logger.debug("Key ID: %s",
2358
key_id.decode("utf-8",
2364
fpr = self.fingerprint(
2365
self.peer_certificate(session))
2366
except (TypeError, gnutls.Error) as error:
2367
logger.warning("Bad certificate: %s", error)
2369
logger.debug("Fingerprint: %s", fpr)
2372
client = ProxyClient(child_pipe, key_id, fpr,
2242
fpr = self.fingerprint(
2243
self.peer_certificate(session))
2244
except (TypeError, gnutls.Error) as error:
2245
logger.warning("Bad certificate: %s", error)
2247
logger.debug("Fingerprint: %s", fpr)
2250
client = ProxyClient(child_pipe, fpr,
2373
2251
self.client_address)
2374
2252
except KeyError:
2454
2332
def peer_certificate(session):
2455
"Return the peer's certificate as a bytestring"
2457
cert_type = gnutls.certificate_type_get2(
2458
session, gnutls.CTYPE_PEERS)
2459
except AttributeError:
2460
cert_type = gnutls.certificate_type_get(session)
2461
if gnutls.has_rawpk:
2462
valid_cert_types = frozenset((gnutls.CRT_RAWPK,))
2464
valid_cert_types = frozenset((gnutls.CRT_OPENPGP,))
2465
# If not a valid certificate type...
2466
if cert_type not in valid_cert_types:
2467
logger.info("Cert type %r not in %r", cert_type,
2333
"Return the peer's OpenPGP certificate as a bytestring"
2334
# If not an OpenPGP certificate...
2335
if (gnutls.certificate_type_get(session._c_object)
2336
!= gnutls.CRT_OPENPGP):
2469
2337
# ...return invalid data
2471
2339
list_size = ctypes.c_uint(1)
2472
2340
cert_list = (gnutls.certificate_get_peers
2473
(session, ctypes.byref(list_size)))
2341
(session._c_object, ctypes.byref(list_size)))
2474
2342
if not bool(cert_list) and list_size.value != 0:
2475
2343
raise gnutls.Error("error getting peer certificate")
2476
2344
if list_size.value == 0:
2479
2347
return ctypes.string_at(cert.data, cert.size)
2482
def key_id(certificate):
2483
"Convert a certificate bytestring to a hexdigit key ID"
2484
# New GnuTLS "datum" with the public key
2485
datum = gnutls.datum_t(
2486
ctypes.cast(ctypes.c_char_p(certificate),
2487
ctypes.POINTER(ctypes.c_ubyte)),
2488
ctypes.c_uint(len(certificate)))
2489
# XXX all these need to be created in the gnutls "module"
2490
# New empty GnuTLS certificate
2491
pubkey = gnutls.pubkey_t()
2492
gnutls.pubkey_init(ctypes.byref(pubkey))
2493
# Import the raw public key into the certificate
2494
gnutls.pubkey_import(pubkey,
2495
ctypes.byref(datum),
2496
gnutls.X509_FMT_DER)
2497
# New buffer for the key ID
2498
buf = ctypes.create_string_buffer(32)
2499
buf_len = ctypes.c_size_t(len(buf))
2500
# Get the key ID from the raw public key into the buffer
2501
gnutls.pubkey_get_key_id(
2503
gnutls.KEYID_USE_SHA256,
2504
ctypes.cast(ctypes.byref(buf),
2505
ctypes.POINTER(ctypes.c_ubyte)),
2506
ctypes.byref(buf_len))
2507
# Deinit the certificate
2508
gnutls.pubkey_deinit(pubkey)
2510
# Convert the buffer to a Python bytestring
2511
key_id = ctypes.string_at(buf, buf_len.value)
2512
# Convert the bytestring to hexadecimal notation
2513
hex_key_id = binascii.hexlify(key_id).upper()
2517
2350
def fingerprint(openpgp):
2518
2351
"Convert an OpenPGP bytestring to a hexdigit fingerprint"
2519
2352
# New GnuTLS "datum" with the OpenPGP public key
2748
2578
request = parent_pipe.recv()
2749
2579
command = request[0]
2751
if command == "init":
2752
key_id = request[1].decode("ascii")
2753
fpr = request[2].decode("ascii")
2754
address = request[3]
2581
if command == 'init':
2582
fpr = request[1].decode("ascii")
2583
address = request[2]
2756
2585
for c in self.clients.values():
2757
if key_id == ("E3B0C44298FC1C149AFBF4C8996FB924"
2758
"27AE41E4649B934CA495991B7852B855"):
2760
if key_id and c.key_id == key_id:
2763
if fpr and c.fingerprint == fpr:
2586
if c.fingerprint == fpr:
2767
logger.info("Client not found for key ID: %s, address"
2768
": %s", key_id or fpr, address)
2590
logger.info("Client not found for fingerprint: %s, ad"
2591
"dress: %s", fpr, address)
2769
2592
if self.use_dbus:
2770
2593
# Emit D-Bus signal
2771
mandos_dbus_service.ClientNotFound(key_id or fpr,
2594
mandos_dbus_service.ClientNotFound(fpr,
2773
2596
parent_pipe.send(False)
2776
2599
GLib.io_add_watch(
2777
GLib.IOChannel.unix_new(parent_pipe.fileno()),
2778
GLib.PRIORITY_DEFAULT, GLib.IO_IN | GLib.IO_HUP,
2600
parent_pipe.fileno(),
2601
GLib.IO_IN | GLib.IO_HUP,
2779
2602
functools.partial(self.handle_ipc,
2780
2603
parent_pipe=parent_pipe,
2813
2636
def rfc3339_duration_to_delta(duration):
2814
2637
"""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)
2639
>>> rfc3339_duration_to_delta("P7D")
2640
datetime.timedelta(7)
2641
>>> rfc3339_duration_to_delta("PT60S")
2642
datetime.timedelta(0, 60)
2643
>>> rfc3339_duration_to_delta("PT60M")
2644
datetime.timedelta(0, 3600)
2645
>>> rfc3339_duration_to_delta("PT24H")
2646
datetime.timedelta(1)
2647
>>> rfc3339_duration_to_delta("P1W")
2648
datetime.timedelta(7)
2649
>>> rfc3339_duration_to_delta("PT5M30S")
2650
datetime.timedelta(0, 330)
2651
>>> rfc3339_duration_to_delta("P1DT3M20S")
2652
datetime.timedelta(1, 200)
2834
2655
# Parsing an RFC 3339 duration with regular expressions is not
2914
2735
def string_to_delta(interval):
2915
2736
"""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)
2738
>>> string_to_delta('7d')
2739
datetime.timedelta(7)
2740
>>> string_to_delta('60s')
2741
datetime.timedelta(0, 60)
2742
>>> string_to_delta('60m')
2743
datetime.timedelta(0, 3600)
2744
>>> string_to_delta('24h')
2745
datetime.timedelta(1)
2746
>>> string_to_delta('1w')
2747
datetime.timedelta(7)
2748
>>> string_to_delta('5m 30s')
2749
datetime.timedelta(0, 330)