316
305
"host", "interval", "last_checked_ok",
317
306
"last_enabled", "name", "timeout")
309
def _timedelta_to_milliseconds(td):
310
"Convert a datetime.timedelta() to milliseconds"
311
return ((td.days * 24 * 60 * 60 * 1000)
312
+ (td.seconds * 1000)
313
+ (td.microseconds // 1000))
319
315
def timeout_milliseconds(self):
320
316
"Return the 'timeout' attribute in milliseconds"
321
return _timedelta_to_milliseconds(self.timeout)
323
def extended_timeout_milliseconds(self):
324
"Return the 'extended_timeout' attribute in milliseconds"
325
return _timedelta_to_milliseconds(self.extended_timeout)
317
return self._timedelta_to_milliseconds(self.timeout)
327
319
def interval_milliseconds(self):
328
320
"Return the 'interval' attribute in milliseconds"
329
return _timedelta_to_milliseconds(self.interval)
321
return self._timedelta_to_milliseconds(self.interval)
331
323
def approval_delay_milliseconds(self):
332
return _timedelta_to_milliseconds(self.approval_delay)
324
return self._timedelta_to_milliseconds(self.approval_delay)
334
326
def __init__(self, name = None, disable_hook=None, config=None):
335
327
"""Note: the 'checker' key in 'config' sets the
382
371
config["approval_delay"])
383
372
self.approval_duration = string_to_delta(
384
373
config["approval_duration"])
385
self.changedstate = (multiprocessing_manager
386
.Condition(multiprocessing_manager
374
self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
389
376
def send_changedstate(self):
390
377
self.changedstate.acquire()
391
378
self.changedstate.notify_all()
392
379
self.changedstate.release()
394
381
def enable(self):
395
382
"""Start this client's checker and timeout hooks"""
396
383
if getattr(self, "enabled", False):
397
384
# Already enabled
399
386
self.send_changedstate()
387
self.last_enabled = datetime.datetime.utcnow()
400
388
# Schedule a new checker to be started an 'interval' from now,
401
389
# and every interval from then on.
402
390
self.checker_initiator_tag = (gobject.timeout_add
403
391
(self.interval_milliseconds(),
404
392
self.start_checker))
405
393
# Schedule a disable() when 'timeout' has passed
406
self.expires = datetime.datetime.utcnow() + self.timeout
407
394
self.disable_initiator_tag = (gobject.timeout_add
408
395
(self.timeout_milliseconds(),
410
397
self.enabled = True
411
self.last_enabled = datetime.datetime.utcnow()
412
398
# Also start a new checker *right now*.
413
399
self.start_checker()
455
440
logger.warning("Checker for %(name)s crashed?",
458
def checked_ok(self, timeout=None):
443
def checked_ok(self):
459
444
"""Bump up the timeout for this client.
461
446
This should only be called when the client has been seen,
465
timeout = self.timeout
466
449
self.last_checked_ok = datetime.datetime.utcnow()
467
if self.disable_initiator_tag is not None:
468
gobject.source_remove(self.disable_initiator_tag)
469
if getattr(self, "enabled", False):
470
self.disable_initiator_tag = (gobject.timeout_add
471
(_timedelta_to_milliseconds
472
(timeout), self.disable))
473
self.expires = datetime.datetime.utcnow() + timeout
450
gobject.source_remove(self.disable_initiator_tag)
451
self.disable_initiator_tag = (gobject.timeout_add
452
(self.timeout_milliseconds(),
475
455
def need_approval(self):
476
456
self.last_approval_request = datetime.datetime.utcnow()
633
612
def _get_all_dbus_properties(self):
634
613
"""Returns a generator of (name, attribute) pairs
636
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
637
for cls in self.__class__.__mro__
615
return ((prop._dbus_name, prop)
638
616
for name, prop in
639
inspect.getmembers(cls, self._is_dbus_property))
617
inspect.getmembers(self, self._is_dbus_property))
641
619
def _get_dbus_property(self, interface_name, property_name):
642
620
"""Returns a bound method if one exists which is a D-Bus
643
621
property with the specified name and interface.
645
for cls in self.__class__.__mro__:
646
for name, value in (inspect.getmembers
647
(cls, self._is_dbus_property)):
648
if (value._dbus_name == property_name
649
and value._dbus_interface == interface_name):
650
return value.__get__(self)
623
for name in (property_name,
624
property_name + "_dbus_property"):
625
prop = getattr(self, name, None)
627
or not self._is_dbus_property(prop)
628
or prop._dbus_name != property_name
629
or (interface_name and prop._dbus_interface
630
and interface_name != prop._dbus_interface)):
652
633
# No such property
653
634
raise DBusPropertyNotFound(self.dbus_object_path + ":"
654
635
+ interface_name + "."
759
def datetime_to_dbus (dt, variant_level=0):
760
"""Convert a UTC datetime.datetime() to a D-Bus type."""
762
return dbus.String("", variant_level = variant_level)
763
return dbus.String(dt.isoformat(),
764
variant_level=variant_level)
766
class AlternateDBusNamesMetaclass(DBusObjectWithProperties
768
"""Applied to an empty subclass of a D-Bus object, this metaclass
769
will add additional D-Bus attributes matching a certain pattern.
771
def __new__(mcs, name, bases, attr):
772
# Go through all the base classes which could have D-Bus
773
# methods, signals, or properties in them
774
for base in (b for b in bases
775
if issubclass(b, dbus.service.Object)):
776
# Go though all attributes of the base class
777
for attrname, attribute in inspect.getmembers(base):
778
# Ignore non-D-Bus attributes, and D-Bus attributes
779
# with the wrong interface name
780
if (not hasattr(attribute, "_dbus_interface")
781
or not attribute._dbus_interface
782
.startswith("se.recompile.Mandos")):
784
# Create an alternate D-Bus interface name based on
786
alt_interface = (attribute._dbus_interface
787
.replace("se.recompile.Mandos",
788
"se.bsnet.fukt.Mandos"))
789
# Is this a D-Bus signal?
790
if getattr(attribute, "_dbus_is_signal", False):
791
# Extract the original non-method function by
793
nonmethod_func = (dict(
794
zip(attribute.func_code.co_freevars,
795
attribute.__closure__))["func"]
797
# Create a new, but exactly alike, function
798
# object, and decorate it to be a new D-Bus signal
799
# with the alternate D-Bus interface name
800
new_function = (dbus.service.signal
802
attribute._dbus_signature)
804
nonmethod_func.func_code,
805
nonmethod_func.func_globals,
806
nonmethod_func.func_name,
807
nonmethod_func.func_defaults,
808
nonmethod_func.func_closure)))
809
# Define a creator of a function to call both the
810
# old and new functions, so both the old and new
811
# signals gets sent when the function is called
812
def fixscope(func1, func2):
813
"""This function is a scope container to pass
814
func1 and func2 to the "call_both" function
815
outside of its arguments"""
816
def call_both(*args, **kwargs):
817
"""This function will emit two D-Bus
818
signals by calling func1 and func2"""
819
func1(*args, **kwargs)
820
func2(*args, **kwargs)
822
# Create the "call_both" function and add it to
824
attr[attrname] = fixscope(attribute,
826
# Is this a D-Bus method?
827
elif getattr(attribute, "_dbus_is_method", False):
828
# Create a new, but exactly alike, function
829
# object. Decorate it to be a new D-Bus method
830
# with the alternate D-Bus interface name. Add it
832
attr[attrname] = (dbus.service.method
834
attribute._dbus_in_signature,
835
attribute._dbus_out_signature)
837
(attribute.func_code,
838
attribute.func_globals,
840
attribute.func_defaults,
841
attribute.func_closure)))
842
# Is this a D-Bus property?
843
elif getattr(attribute, "_dbus_is_property", False):
844
# Create a new, but exactly alike, function
845
# object, and decorate it to be a new D-Bus
846
# property with the alternate D-Bus interface
847
# name. Add it to the class.
848
attr[attrname] = (dbus_service_property
850
attribute._dbus_signature,
851
attribute._dbus_access,
853
._dbus_get_args_options
856
(attribute.func_code,
857
attribute.func_globals,
859
attribute.func_defaults,
860
attribute.func_closure)))
861
return type.__new__(mcs, name, bases, attr)
863
740
class ClientDBus(Client, DBusObjectWithProperties):
864
741
"""A Client class using D-Bus
887
764
DBusObjectWithProperties.__init__(self, self.bus,
888
765
self.dbus_object_path)
890
def notifychangeproperty(transform_func,
891
dbus_name, type_func=lambda x: x,
893
""" Modify a variable so that it's a property which announces
767
def _get_approvals_pending(self):
768
return self._approvals_pending
769
def _set_approvals_pending(self, value):
770
old_value = self._approvals_pending
771
self._approvals_pending = value
773
if (hasattr(self, "dbus_object_path")
774
and bval is not bool(old_value)):
775
dbus_bool = dbus.Boolean(bval, variant_level=1)
776
self.PropertyChanged(dbus.String("ApprovalPending"),
896
transform_fun: Function that takes a value and a variant_level
897
and transforms it to a D-Bus type.
898
dbus_name: D-Bus name of the variable
899
type_func: Function that transform the value before sending it
900
to the D-Bus. Default: no transform
901
variant_level: D-Bus variant level. Default: 1
903
attrname = "_{0}".format(dbus_name)
904
def setter(self, value):
905
if hasattr(self, "dbus_object_path"):
906
if (not hasattr(self, attrname) or
907
type_func(getattr(self, attrname, None))
908
!= type_func(value)):
909
dbus_value = transform_func(type_func(value),
912
self.PropertyChanged(dbus.String(dbus_name),
914
setattr(self, attrname, value)
916
return property(lambda self: getattr(self, attrname), setter)
919
expires = notifychangeproperty(datetime_to_dbus, "Expires")
920
approvals_pending = notifychangeproperty(dbus.Boolean,
923
enabled = notifychangeproperty(dbus.Boolean, "Enabled")
924
last_enabled = notifychangeproperty(datetime_to_dbus,
926
checker = notifychangeproperty(dbus.Boolean, "CheckerRunning",
927
type_func = lambda checker:
929
last_checked_ok = notifychangeproperty(datetime_to_dbus,
931
last_approval_request = notifychangeproperty(
932
datetime_to_dbus, "LastApprovalRequest")
933
approved_by_default = notifychangeproperty(dbus.Boolean,
935
approval_delay = notifychangeproperty(dbus.UInt16,
938
_timedelta_to_milliseconds)
939
approval_duration = notifychangeproperty(
940
dbus.UInt16, "ApprovalDuration",
941
type_func = _timedelta_to_milliseconds)
942
host = notifychangeproperty(dbus.String, "Host")
943
timeout = notifychangeproperty(dbus.UInt16, "Timeout",
945
_timedelta_to_milliseconds)
946
extended_timeout = notifychangeproperty(
947
dbus.UInt16, "ExtendedTimeout",
948
type_func = _timedelta_to_milliseconds)
949
interval = notifychangeproperty(dbus.UInt16,
952
_timedelta_to_milliseconds)
953
checker_command = notifychangeproperty(dbus.String, "Checker")
955
del notifychangeproperty
779
approvals_pending = property(_get_approvals_pending,
780
_set_approvals_pending)
781
del _get_approvals_pending, _set_approvals_pending
784
def _datetime_to_dbus(dt, variant_level=0):
785
"""Convert a UTC datetime.datetime() to a D-Bus type."""
786
return dbus.String(dt.isoformat(),
787
variant_level=variant_level)
790
oldstate = getattr(self, "enabled", False)
791
r = Client.enable(self)
792
if oldstate != self.enabled:
794
self.PropertyChanged(dbus.String("Enabled"),
795
dbus.Boolean(True, variant_level=1))
796
self.PropertyChanged(
797
dbus.String("LastEnabled"),
798
self._datetime_to_dbus(self.last_enabled,
802
def disable(self, quiet = False):
803
oldstate = getattr(self, "enabled", False)
804
r = Client.disable(self, quiet=quiet)
805
if not quiet and oldstate != self.enabled:
807
self.PropertyChanged(dbus.String("Enabled"),
808
dbus.Boolean(False, variant_level=1))
957
811
def __del__(self, *args, **kwargs):
982
839
return Client.checker_callback(self, pid, condition, command,
842
def checked_ok(self, *args, **kwargs):
843
Client.checked_ok(self, *args, **kwargs)
845
self.PropertyChanged(
846
dbus.String("LastCheckedOK"),
847
(self._datetime_to_dbus(self.last_checked_ok,
850
def need_approval(self, *args, **kwargs):
851
r = Client.need_approval(self, *args, **kwargs)
853
self.PropertyChanged(
854
dbus.String("LastApprovalRequest"),
855
(self._datetime_to_dbus(self.last_approval_request,
985
859
def start_checker(self, *args, **kwargs):
986
860
old_checker = self.checker
987
861
if self.checker is not None:
994
868
and old_checker_pid != self.checker.pid):
995
869
# Emit D-Bus signal
996
870
self.CheckerStarted(self.current_checker_command)
871
self.PropertyChanged(
872
dbus.String("CheckerRunning"),
873
dbus.Boolean(True, variant_level=1))
876
def stop_checker(self, *args, **kwargs):
877
old_checker = getattr(self, "checker", None)
878
r = Client.stop_checker(self, *args, **kwargs)
879
if (old_checker is not None
880
and getattr(self, "checker", None) is None):
881
self.PropertyChanged(dbus.String("CheckerRunning"),
882
dbus.Boolean(False, variant_level=1))
999
885
def _reset_approved(self):
1000
886
self._approved = None
1109
998
if value is None: # get
1110
999
return dbus.UInt64(self.approval_delay_milliseconds())
1111
1000
self.approval_delay = datetime.timedelta(0, 0, 0, value)
1002
self.PropertyChanged(dbus.String("ApprovalDelay"),
1003
dbus.UInt64(value, variant_level=1))
1113
1005
# ApprovalDuration - property
1114
1006
@dbus_service_property(_interface, signature="t",
1115
1007
access="readwrite")
1116
1008
def ApprovalDuration_dbus_property(self, value=None):
1117
1009
if value is None: # get
1118
return dbus.UInt64(_timedelta_to_milliseconds(
1010
return dbus.UInt64(self._timedelta_to_milliseconds(
1119
1011
self.approval_duration))
1120
1012
self.approval_duration = datetime.timedelta(0, 0, 0, value)
1014
self.PropertyChanged(dbus.String("ApprovalDuration"),
1015
dbus.UInt64(value, variant_level=1))
1122
1017
# Name - property
1123
1018
@dbus_service_property(_interface, signature="s", access="read")
1136
1031
if value is None: # get
1137
1032
return dbus.String(self.host)
1138
1033
self.host = value
1035
self.PropertyChanged(dbus.String("Host"),
1036
dbus.String(value, variant_level=1))
1140
1038
# Created - property
1141
1039
@dbus_service_property(_interface, signature="s", access="read")
1142
1040
def Created_dbus_property(self):
1143
return dbus.String(datetime_to_dbus(self.created))
1041
return dbus.String(self._datetime_to_dbus(self.created))
1145
1043
# LastEnabled - property
1146
1044
@dbus_service_property(_interface, signature="s", access="read")
1147
1045
def LastEnabled_dbus_property(self):
1148
return datetime_to_dbus(self.last_enabled)
1046
if self.last_enabled is None:
1047
return dbus.String("")
1048
return dbus.String(self._datetime_to_dbus(self.last_enabled))
1150
1050
# Enabled - property
1151
1051
@dbus_service_property(_interface, signature="b",
1184
1086
if value is None: # get
1185
1087
return dbus.UInt64(self.timeout_milliseconds())
1186
1088
self.timeout = datetime.timedelta(0, 0, 0, value)
1090
self.PropertyChanged(dbus.String("Timeout"),
1091
dbus.UInt64(value, variant_level=1))
1187
1092
if getattr(self, "disable_initiator_tag", None) is None:
1189
1094
# Reschedule timeout
1190
1095
gobject.source_remove(self.disable_initiator_tag)
1191
1096
self.disable_initiator_tag = None
1193
time_to_die = _timedelta_to_milliseconds((self
1097
time_to_die = (self.
1098
_timedelta_to_milliseconds((self
1198
1103
if time_to_die <= 0:
1199
1104
# The timeout has passed
1202
self.expires = (datetime.datetime.utcnow()
1203
+ datetime.timedelta(milliseconds =
1205
1107
self.disable_initiator_tag = (gobject.timeout_add
1206
1108
(time_to_die, self.disable))
1208
# ExtendedTimeout - property
1209
@dbus_service_property(_interface, signature="t",
1211
def ExtendedTimeout_dbus_property(self, value=None):
1212
if value is None: # get
1213
return dbus.UInt64(self.extended_timeout_milliseconds())
1214
self.extended_timeout = datetime.timedelta(0, 0, 0, value)
1216
1110
# Interval - property
1217
1111
@dbus_service_property(_interface, signature="t",
1218
1112
access="readwrite")
1301
1200
unicode(self.client_address))
1302
1201
logger.debug("Pipe FD: %d",
1303
1202
self.server.child_pipe.fileno())
1305
1204
session = (gnutls.connection
1306
1205
.ClientSession(self.request,
1307
1206
gnutls.connection
1308
1207
.X509Credentials()))
1310
1209
# Note: gnutls.connection.X509Credentials is really a
1311
1210
# generic GnuTLS certificate credentials object so long as
1312
1211
# no X.509 keys are added to it. Therefore, we can use it
1313
1212
# here despite using OpenPGP certificates.
1315
1214
#priority = ':'.join(("NONE", "+VERS-TLS1.1",
1316
1215
# "+AES-256-CBC", "+SHA1",
1317
1216
# "+COMP-NULL", "+CTYPE-OPENPGP",
1534
1428
This function creates a new pipe in self.pipe
1536
1430
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1538
proc = MultiprocessingMixIn.process_request(self, request,
1432
super(MultiprocessingMixInWithPipe,
1433
self).process_request(request, client_address)
1540
1434
self.child_pipe.close()
1541
self.add_pipe(parent_pipe, proc)
1543
def add_pipe(self, parent_pipe, proc):
1435
self.add_pipe(parent_pipe)
1437
def add_pipe(self, parent_pipe):
1544
1438
"""Dummy function; override as necessary"""
1545
1439
raise NotImplementedError
1548
1441
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1549
1442
socketserver.TCPServer, object):
1550
1443
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1634
1527
def server_activate(self):
1635
1528
if self.enabled:
1636
1529
return socketserver.TCPServer.server_activate(self)
1638
1530
def enable(self):
1639
1531
self.enabled = True
1641
def add_pipe(self, parent_pipe, proc):
1532
def add_pipe(self, parent_pipe):
1642
1533
# Call "handle_ipc" for both data and EOF events
1643
1534
gobject.io_add_watch(parent_pipe.fileno(),
1644
1535
gobject.IO_IN | gobject.IO_HUP,
1645
1536
functools.partial(self.handle_ipc,
1537
parent_pipe = parent_pipe))
1650
1539
def handle_ipc(self, source, condition, parent_pipe=None,
1651
proc = None, client_object=None):
1540
client_object=None):
1652
1541
condition_names = {
1653
1542
gobject.IO_IN: "IN", # There is data to read.
1654
1543
gobject.IO_OUT: "OUT", # Data can be written (without
1686
1573
"dress: %s", fpr, address)
1687
1574
if self.use_dbus:
1688
1575
# Emit D-Bus signal
1689
mandos_dbus_service.ClientNotFound(fpr,
1576
mandos_dbus_service.ClientNotFound(fpr, address[0])
1691
1577
parent_pipe.send(False)
1694
1580
gobject.io_add_watch(parent_pipe.fileno(),
1695
1581
gobject.IO_IN | gobject.IO_HUP,
1696
1582
functools.partial(self.handle_ipc,
1583
parent_pipe = parent_pipe,
1584
client_object = client))
1702
1585
parent_pipe.send(True)
1703
# remove the old hook in favor of the new above hook on
1586
# remove the old hook in favor of the new above hook on same fileno
1706
1588
if command == 'funcall':
1707
1589
funcname = request[1]
1708
1590
args = request[2]
1709
1591
kwargs = request[3]
1711
parent_pipe.send(('data', getattr(client_object,
1593
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1715
1595
if command == 'getattr':
1716
1596
attrname = request[1]
1717
1597
if callable(client_object.__getattribute__(attrname)):
1718
1598
parent_pipe.send(('function',))
1720
parent_pipe.send(('data', client_object
1721
.__getattribute__(attrname)))
1600
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1723
1602
if command == 'setattr':
1724
1603
attrname = request[1]
1725
1604
value = request[2]
1726
1605
setattr(client_object, attrname, value)