308
316
"host", "interval", "last_checked_ok",
309
317
"last_enabled", "name", "timeout")
312
def _timedelta_to_milliseconds(td):
313
"Convert a datetime.timedelta() to milliseconds"
314
return ((td.days * 24 * 60 * 60 * 1000)
315
+ (td.seconds * 1000)
316
+ (td.microseconds // 1000))
318
319
def timeout_milliseconds(self):
319
320
"Return the 'timeout' attribute in milliseconds"
320
return self._timedelta_to_milliseconds(self.timeout)
321
return _timedelta_to_milliseconds(self.timeout)
322
323
def extended_timeout_milliseconds(self):
323
324
"Return the 'extended_timeout' attribute in milliseconds"
324
return self._timedelta_to_milliseconds(self.extended_timeout)
325
return _timedelta_to_milliseconds(self.extended_timeout)
326
327
def interval_milliseconds(self):
327
328
"Return the 'interval' attribute in milliseconds"
328
return self._timedelta_to_milliseconds(self.interval)
329
return _timedelta_to_milliseconds(self.interval)
330
331
def approval_delay_milliseconds(self):
331
return self._timedelta_to_milliseconds(self.approval_delay)
332
return _timedelta_to_milliseconds(self.approval_delay)
333
334
def __init__(self, name = None, disable_hook=None, config=None):
334
335
"""Note: the 'checker' key in 'config' sets the
626
633
def _get_all_dbus_properties(self):
627
634
"""Returns a generator of (name, attribute) pairs
629
return ((prop._dbus_name, prop)
636
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
637
for cls in self.__class__.__mro__
630
638
for name, prop in
631
inspect.getmembers(self, self._is_dbus_property))
639
inspect.getmembers(cls, self._is_dbus_property))
633
641
def _get_dbus_property(self, interface_name, property_name):
634
642
"""Returns a bound method if one exists which is a D-Bus
635
643
property with the specified name and interface.
637
for name in (property_name,
638
property_name + "_dbus_property"):
639
prop = getattr(self, name, None)
641
or not self._is_dbus_property(prop)
642
or prop._dbus_name != property_name
643
or (interface_name and prop._dbus_interface
644
and interface_name != prop._dbus_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)
647
652
# No such property
648
653
raise DBusPropertyNotFound(self.dbus_object_path + ":"
649
654
+ 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)
754
863
class ClientDBus(Client, DBusObjectWithProperties):
755
864
"""A Client class using D-Bus
777
886
("/clients/" + client_object_name))
778
887
DBusObjectWithProperties.__init__(self, self.bus,
779
888
self.dbus_object_path)
780
def _set_expires(self, value):
781
old_value = getattr(self, "_expires", None)
782
self._expires = value
783
if hasattr(self, "dbus_object_path") and old_value != value:
784
dbus_time = (self._datetime_to_dbus(self._expires,
786
self.PropertyChanged(dbus.String("Expires"),
788
expires = property(lambda self: self._expires, _set_expires)
791
def _get_approvals_pending(self):
792
return self._approvals_pending
793
def _set_approvals_pending(self, value):
794
old_value = self._approvals_pending
795
self._approvals_pending = value
797
if (hasattr(self, "dbus_object_path")
798
and bval is not bool(old_value)):
799
dbus_bool = dbus.Boolean(bval, variant_level=1)
800
self.PropertyChanged(dbus.String("ApprovalPending"),
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
803
approvals_pending = property(_get_approvals_pending,
804
_set_approvals_pending)
805
del _get_approvals_pending, _set_approvals_pending
808
def _datetime_to_dbus(dt, variant_level=0):
809
"""Convert a UTC datetime.datetime() to a D-Bus type."""
811
return dbus.String("", variant_level = variant_level)
812
return dbus.String(dt.isoformat(),
813
variant_level=variant_level)
816
oldstate = getattr(self, "enabled", False)
817
r = Client.enable(self)
818
if oldstate != self.enabled:
820
self.PropertyChanged(dbus.String("Enabled"),
821
dbus.Boolean(True, variant_level=1))
822
self.PropertyChanged(
823
dbus.String("LastEnabled"),
824
self._datetime_to_dbus(self.last_enabled,
828
def disable(self, quiet = False):
829
oldstate = getattr(self, "enabled", False)
830
r = Client.disable(self, quiet=quiet)
831
if not quiet and oldstate != self.enabled:
833
self.PropertyChanged(dbus.String("Enabled"),
834
dbus.Boolean(False, variant_level=1))
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
837
957
def __del__(self, *args, **kwargs):
865
982
return Client.checker_callback(self, pid, condition, command,
868
def checked_ok(self, *args, **kwargs):
869
Client.checked_ok(self, *args, **kwargs)
871
self.PropertyChanged(
872
dbus.String("LastCheckedOK"),
873
(self._datetime_to_dbus(self.last_checked_ok,
876
def need_approval(self, *args, **kwargs):
877
r = Client.need_approval(self, *args, **kwargs)
879
self.PropertyChanged(
880
dbus.String("LastApprovalRequest"),
881
(self._datetime_to_dbus(self.last_approval_request,
885
985
def start_checker(self, *args, **kwargs):
886
986
old_checker = self.checker
887
987
if self.checker is not None:
1025
1108
def ApprovalDelay_dbus_property(self, value=None):
1026
1109
if value is None: # get
1027
1110
return dbus.UInt64(self.approval_delay_milliseconds())
1028
old_value = self.approval_delay
1029
1111
self.approval_delay = datetime.timedelta(0, 0, 0, value)
1031
if old_value != self.approval_delay:
1032
self.PropertyChanged(dbus.String("ApprovalDelay"),
1033
dbus.UInt64(value, variant_level=1))
1035
1113
# ApprovalDuration - property
1036
1114
@dbus_service_property(_interface, signature="t",
1037
1115
access="readwrite")
1038
1116
def ApprovalDuration_dbus_property(self, value=None):
1039
1117
if value is None: # get
1040
return dbus.UInt64(self._timedelta_to_milliseconds(
1118
return dbus.UInt64(_timedelta_to_milliseconds(
1041
1119
self.approval_duration))
1042
old_value = self.approval_duration
1043
1120
self.approval_duration = datetime.timedelta(0, 0, 0, value)
1045
if old_value != self.approval_duration:
1046
self.PropertyChanged(dbus.String("ApprovalDuration"),
1047
dbus.UInt64(value, variant_level=1))
1049
1122
# Name - property
1050
1123
@dbus_service_property(_interface, signature="s", access="read")
1062
1135
def Host_dbus_property(self, value=None):
1063
1136
if value is None: # get
1064
1137
return dbus.String(self.host)
1065
old_value = self.host
1066
1138
self.host = value
1068
if old_value != self.host:
1069
self.PropertyChanged(dbus.String("Host"),
1070
dbus.String(value, variant_level=1))
1072
1140
# Created - property
1073
1141
@dbus_service_property(_interface, signature="s", access="read")
1074
1142
def Created_dbus_property(self):
1075
return dbus.String(self._datetime_to_dbus(self.created))
1143
return dbus.String(datetime_to_dbus(self.created))
1077
1145
# LastEnabled - property
1078
1146
@dbus_service_property(_interface, signature="s", access="read")
1079
1147
def LastEnabled_dbus_property(self):
1080
return self._datetime_to_dbus(self.last_enabled)
1148
return datetime_to_dbus(self.last_enabled)
1082
1150
# Enabled - property
1083
1151
@dbus_service_property(_interface, signature="b",
1115
1183
def Timeout_dbus_property(self, value=None):
1116
1184
if value is None: # get
1117
1185
return dbus.UInt64(self.timeout_milliseconds())
1118
old_value = self.timeout
1119
1186
self.timeout = datetime.timedelta(0, 0, 0, value)
1121
if old_value != self.timeout:
1122
self.PropertyChanged(dbus.String("Timeout"),
1123
dbus.UInt64(value, variant_level=1))
1124
1187
if getattr(self, "disable_initiator_tag", None) is None:
1126
1189
# Reschedule timeout
1127
1190
gobject.source_remove(self.disable_initiator_tag)
1128
1191
self.disable_initiator_tag = None
1129
1192
self.expires = None
1130
time_to_die = (self.
1131
_timedelta_to_milliseconds((self
1193
time_to_die = _timedelta_to_milliseconds((self
1136
1198
if time_to_die <= 0:
1137
1199
# The timeout has passed
1140
1202
self.expires = (datetime.datetime.utcnow()
1141
+ datetime.timedelta(milliseconds = time_to_die))
1203
+ datetime.timedelta(milliseconds =
1142
1205
self.disable_initiator_tag = (gobject.timeout_add
1143
1206
(time_to_die, self.disable))
1145
1208
# ExtendedTimeout - property
1146
1209
@dbus_service_property(_interface, signature="t",
1147
1210
access="readwrite")
1148
1211
def ExtendedTimeout_dbus_property(self, value=None):
1149
1212
if value is None: # get
1150
1213
return dbus.UInt64(self.extended_timeout_milliseconds())
1151
old_value = self.extended_timeout
1152
1214
self.extended_timeout = datetime.timedelta(0, 0, 0, value)
1154
if old_value != self.extended_timeout:
1155
self.PropertyChanged(dbus.String("ExtendedTimeout"),
1156
dbus.UInt64(value, variant_level=1))
1158
1216
# Interval - property
1159
1217
@dbus_service_property(_interface, signature="t",
1160
1218
access="readwrite")
1161
1219
def Interval_dbus_property(self, value=None):
1162
1220
if value is None: # get
1163
1221
return dbus.UInt64(self.interval_milliseconds())
1164
old_value = self.interval
1165
1222
self.interval = datetime.timedelta(0, 0, 0, value)
1167
if old_value != self.interval:
1168
self.PropertyChanged(dbus.String("Interval"),
1169
dbus.UInt64(value, variant_level=1))
1170
1223
if getattr(self, "checker_initiator_tag", None) is None:
1172
1225
# Reschedule checker run
1480
1534
This function creates a new pipe in self.pipe
1482
1536
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1484
super(MultiprocessingMixInWithPipe,
1485
self).process_request(request, client_address)
1538
proc = MultiprocessingMixIn.process_request(self, request,
1486
1540
self.child_pipe.close()
1487
self.add_pipe(parent_pipe)
1489
def add_pipe(self, parent_pipe):
1541
self.add_pipe(parent_pipe, proc)
1543
def add_pipe(self, parent_pipe, proc):
1490
1544
"""Dummy function; override as necessary"""
1491
1545
raise NotImplementedError
1493
1548
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1494
1549
socketserver.TCPServer, object):
1495
1550
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1579
1634
def server_activate(self):
1580
1635
if self.enabled:
1581
1636
return socketserver.TCPServer.server_activate(self)
1582
1638
def enable(self):
1583
1639
self.enabled = True
1584
def add_pipe(self, parent_pipe):
1641
def add_pipe(self, parent_pipe, proc):
1585
1642
# Call "handle_ipc" for both data and EOF events
1586
1643
gobject.io_add_watch(parent_pipe.fileno(),
1587
1644
gobject.IO_IN | gobject.IO_HUP,
1588
1645
functools.partial(self.handle_ipc,
1589
parent_pipe = parent_pipe))
1591
1650
def handle_ipc(self, source, condition, parent_pipe=None,
1592
client_object=None):
1651
proc = None, client_object=None):
1593
1652
condition_names = {
1594
1653
gobject.IO_IN: "IN", # There is data to read.
1595
1654
gobject.IO_OUT: "OUT", # Data can be written (without
1625
1686
"dress: %s", fpr, address)
1626
1687
if self.use_dbus:
1627
1688
# Emit D-Bus signal
1628
mandos_dbus_service.ClientNotFound(fpr, address[0])
1689
mandos_dbus_service.ClientNotFound(fpr,
1629
1691
parent_pipe.send(False)
1632
1694
gobject.io_add_watch(parent_pipe.fileno(),
1633
1695
gobject.IO_IN | gobject.IO_HUP,
1634
1696
functools.partial(self.handle_ipc,
1635
parent_pipe = parent_pipe,
1636
client_object = client))
1637
1702
parent_pipe.send(True)
1638
# remove the old hook in favor of the new above hook on same fileno
1703
# remove the old hook in favor of the new above hook on
1640
1706
if command == 'funcall':
1641
1707
funcname = request[1]
1642
1708
args = request[2]
1643
1709
kwargs = request[3]
1645
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1711
parent_pipe.send(('data', getattr(client_object,
1647
1715
if command == 'getattr':
1648
1716
attrname = request[1]
1649
1717
if callable(client_object.__getattribute__(attrname)):
1650
1718
parent_pipe.send(('function',))
1652
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1720
parent_pipe.send(('data', client_object
1721
.__getattribute__(attrname)))
1654
1723
if command == 'setattr':
1655
1724
attrname = request[1]
1656
1725
value = request[2]
1657
1726
setattr(client_object, attrname, value)