305
316
"host", "interval", "last_checked_ok",
306
317
"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))
315
319
def timeout_milliseconds(self):
316
320
"Return the 'timeout' attribute in milliseconds"
317
return self._timedelta_to_milliseconds(self.timeout)
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)
319
327
def interval_milliseconds(self):
320
328
"Return the 'interval' attribute in milliseconds"
321
return self._timedelta_to_milliseconds(self.interval)
329
return _timedelta_to_milliseconds(self.interval)
323
331
def approval_delay_milliseconds(self):
324
return self._timedelta_to_milliseconds(self.approval_delay)
332
return _timedelta_to_milliseconds(self.approval_delay)
326
334
def __init__(self, name = None, disable_hook=None, config=None):
327
335
"""Note: the 'checker' key in 'config' sets the
371
382
config["approval_delay"])
372
383
self.approval_duration = string_to_delta(
373
384
config["approval_duration"])
374
self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
385
self.changedstate = (multiprocessing_manager
386
.Condition(multiprocessing_manager
376
389
def send_changedstate(self):
377
390
self.changedstate.acquire()
378
391
self.changedstate.notify_all()
379
392
self.changedstate.release()
381
394
def enable(self):
382
395
"""Start this client's checker and timeout hooks"""
383
396
if getattr(self, "enabled", False):
384
397
# Already enabled
386
399
self.send_changedstate()
387
self.last_enabled = datetime.datetime.utcnow()
388
400
# Schedule a new checker to be started an 'interval' from now,
389
401
# and every interval from then on.
390
402
self.checker_initiator_tag = (gobject.timeout_add
391
403
(self.interval_milliseconds(),
392
404
self.start_checker))
393
405
# Schedule a disable() when 'timeout' has passed
406
self.expires = datetime.datetime.utcnow() + self.timeout
394
407
self.disable_initiator_tag = (gobject.timeout_add
395
408
(self.timeout_milliseconds(),
397
410
self.enabled = True
411
self.last_enabled = datetime.datetime.utcnow()
398
412
# Also start a new checker *right now*.
399
413
self.start_checker()
612
631
def _get_all_dbus_properties(self):
613
632
"""Returns a generator of (name, attribute) pairs
615
return ((prop._dbus_name, prop)
634
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
635
for cls in self.__class__.__mro__
616
636
for name, prop in
617
inspect.getmembers(self, self._is_dbus_property))
637
inspect.getmembers(cls, self._is_dbus_property))
619
639
def _get_dbus_property(self, interface_name, property_name):
620
640
"""Returns a bound method if one exists which is a D-Bus
621
641
property with the specified name and interface.
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)):
643
for cls in self.__class__.__mro__:
644
for name, value in (inspect.getmembers
645
(cls, self._is_dbus_property)):
646
if (value._dbus_name == property_name
647
and value._dbus_interface == interface_name):
648
return value.__get__(self)
633
650
# No such property
634
651
raise DBusPropertyNotFound(self.dbus_object_path + ":"
635
652
+ interface_name + "."
757
def datetime_to_dbus (dt, variant_level=0):
758
"""Convert a UTC datetime.datetime() to a D-Bus type."""
760
return dbus.String("", variant_level = variant_level)
761
return dbus.String(dt.isoformat(),
762
variant_level=variant_level)
764
class AlternateDBusNamesMetaclass(DBusObjectWithProperties
766
"""Applied to an empty subclass of a D-Bus object, this metaclass
767
will add additional D-Bus attributes matching a certain pattern.
769
def __new__(mcs, name, bases, attr):
770
# Go through all the base classes which could have D-Bus
771
# methods, signals, or properties in them
772
for base in (b for b in bases
773
if issubclass(b, dbus.service.Object)):
774
# Go though all attributes of the base class
775
for attrname, attribute in inspect.getmembers(base):
776
# Ignore non-D-Bus attributes, and D-Bus attributes
777
# with the wrong interface name
778
if (not hasattr(attribute, "_dbus_interface")
779
or not attribute._dbus_interface
780
.startswith("se.recompile.Mandos")):
782
# Create an alternate D-Bus interface name based on
784
alt_interface = (attribute._dbus_interface
785
.replace("se.recompile.Mandos",
786
"se.bsnet.fukt.Mandos"))
787
# Is this a D-Bus signal?
788
if getattr(attribute, "_dbus_is_signal", False):
789
# Extract the original non-method function by
791
nonmethod_func = (dict(
792
zip(attribute.func_code.co_freevars,
793
attribute.__closure__))["func"]
795
# Create a new, but exactly alike, function
796
# object, and decorate it to be a new D-Bus signal
797
# with the alternate D-Bus interface name
798
new_function = (dbus.service.signal
800
attribute._dbus_signature)
802
nonmethod_func.func_code,
803
nonmethod_func.func_globals,
804
nonmethod_func.func_name,
805
nonmethod_func.func_defaults,
806
nonmethod_func.func_closure)))
807
# Define a creator of a function to call both the
808
# old and new functions, so both the old and new
809
# signals gets sent when the function is called
810
def fixscope(func1, func2):
811
"""This function is a scope container to pass
812
func1 and func2 to the "call_both" function
813
outside of its arguments"""
814
def call_both(*args, **kwargs):
815
"""This function will emit two D-Bus
816
signals by calling func1 and func2"""
817
func1(*args, **kwargs)
818
func2(*args, **kwargs)
820
# Create the "call_both" function and add it to
822
attr[attrname] = fixscope(attribute,
824
# Is this a D-Bus method?
825
elif getattr(attribute, "_dbus_is_method", False):
826
# Create a new, but exactly alike, function
827
# object. Decorate it to be a new D-Bus method
828
# with the alternate D-Bus interface name. Add it
830
attr[attrname] = (dbus.service.method
832
attribute._dbus_in_signature,
833
attribute._dbus_out_signature)
835
(attribute.func_code,
836
attribute.func_globals,
838
attribute.func_defaults,
839
attribute.func_closure)))
840
# Is this a D-Bus property?
841
elif getattr(attribute, "_dbus_is_property", False):
842
# Create a new, but exactly alike, function
843
# object, and decorate it to be a new D-Bus
844
# property with the alternate D-Bus interface
845
# name. Add it to the class.
846
attr[attrname] = (dbus_service_property
848
attribute._dbus_signature,
849
attribute._dbus_access,
851
._dbus_get_args_options
854
(attribute.func_code,
855
attribute.func_globals,
857
attribute.func_defaults,
858
attribute.func_closure)))
859
return type.__new__(mcs, name, bases, attr)
740
861
class ClientDBus(Client, DBusObjectWithProperties):
741
862
"""A Client class using D-Bus
764
885
DBusObjectWithProperties.__init__(self, self.bus,
765
886
self.dbus_object_path)
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"),
888
def notifychangeproperty(transform_func,
889
dbus_name, type_func=lambda x: x,
891
""" Modify a variable so that it's a property which announces
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))
894
transform_fun: Function that takes a value and transforms it
896
dbus_name: D-Bus name of the variable
897
type_func: Function that transform the value before sending it
898
to the D-Bus. Default: no transform
899
variant_level: D-Bus variant level. Default: 1
901
attrname = "_{0}".format(dbus_name)
902
def setter(self, value):
903
if hasattr(self, "dbus_object_path"):
904
if (not hasattr(self, attrname) or
905
type_func(getattr(self, attrname, None))
906
!= type_func(value)):
907
dbus_value = transform_func(type_func(value),
909
self.PropertyChanged(dbus.String(dbus_name),
911
setattr(self, attrname, value)
913
return property(lambda self: getattr(self, attrname), setter)
916
expires = notifychangeproperty(datetime_to_dbus, "Expires")
917
approvals_pending = notifychangeproperty(dbus.Boolean,
920
enabled = notifychangeproperty(dbus.Boolean, "Enabled")
921
last_enabled = notifychangeproperty(datetime_to_dbus,
923
checker = notifychangeproperty(dbus.Boolean, "CheckerRunning",
924
type_func = lambda checker:
926
last_checked_ok = notifychangeproperty(datetime_to_dbus,
928
last_approval_request = notifychangeproperty(
929
datetime_to_dbus, "LastApprovalRequest")
930
approved_by_default = notifychangeproperty(dbus.Boolean,
932
approval_delay = notifychangeproperty(dbus.UInt16,
935
_timedelta_to_milliseconds)
936
approval_duration = notifychangeproperty(
937
dbus.UInt16, "ApprovalDuration",
938
type_func = _timedelta_to_milliseconds)
939
host = notifychangeproperty(dbus.String, "Host")
940
timeout = notifychangeproperty(dbus.UInt16, "Timeout",
942
_timedelta_to_milliseconds)
943
extended_timeout = notifychangeproperty(
944
dbus.UInt16, "ExtendedTimeout",
945
type_func = _timedelta_to_milliseconds)
946
interval = notifychangeproperty(dbus.UInt16,
949
_timedelta_to_milliseconds)
950
checker_command = notifychangeproperty(dbus.String, "Checker")
952
del notifychangeproperty
811
954
def __del__(self, *args, **kwargs):
839
979
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,
859
982
def start_checker(self, *args, **kwargs):
860
983
old_checker = self.checker
861
984
if self.checker is not None:
868
991
and old_checker_pid != self.checker.pid):
869
992
# Emit D-Bus signal
870
993
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))
885
996
def _reset_approved(self):
886
997
self._approved = None
998
1106
if value is None: # get
999
1107
return dbus.UInt64(self.approval_delay_milliseconds())
1000
1108
self.approval_delay = datetime.timedelta(0, 0, 0, value)
1002
self.PropertyChanged(dbus.String("ApprovalDelay"),
1003
dbus.UInt64(value, variant_level=1))
1005
1110
# ApprovalDuration - property
1006
1111
@dbus_service_property(_interface, signature="t",
1007
1112
access="readwrite")
1008
1113
def ApprovalDuration_dbus_property(self, value=None):
1009
1114
if value is None: # get
1010
return dbus.UInt64(self._timedelta_to_milliseconds(
1115
return dbus.UInt64(_timedelta_to_milliseconds(
1011
1116
self.approval_duration))
1012
1117
self.approval_duration = datetime.timedelta(0, 0, 0, value)
1014
self.PropertyChanged(dbus.String("ApprovalDuration"),
1015
dbus.UInt64(value, variant_level=1))
1017
1119
# Name - property
1018
1120
@dbus_service_property(_interface, signature="s", access="read")
1031
1133
if value is None: # get
1032
1134
return dbus.String(self.host)
1033
1135
self.host = value
1035
self.PropertyChanged(dbus.String("Host"),
1036
dbus.String(value, variant_level=1))
1038
1137
# Created - property
1039
1138
@dbus_service_property(_interface, signature="s", access="read")
1040
1139
def Created_dbus_property(self):
1041
return dbus.String(self._datetime_to_dbus(self.created))
1140
return dbus.String(datetime_to_dbus(self.created))
1043
1142
# LastEnabled - property
1044
1143
@dbus_service_property(_interface, signature="s", access="read")
1045
1144
def LastEnabled_dbus_property(self):
1046
if self.last_enabled is None:
1047
return dbus.String("")
1048
return dbus.String(self._datetime_to_dbus(self.last_enabled))
1145
return datetime_to_dbus(self.last_enabled)
1050
1147
# Enabled - property
1051
1148
@dbus_service_property(_interface, signature="b",
1200
1299
unicode(self.client_address))
1201
1300
logger.debug("Pipe FD: %d",
1202
1301
self.server.child_pipe.fileno())
1204
1303
session = (gnutls.connection
1205
1304
.ClientSession(self.request,
1206
1305
gnutls.connection
1207
1306
.X509Credentials()))
1209
1308
# Note: gnutls.connection.X509Credentials is really a
1210
1309
# generic GnuTLS certificate credentials object so long as
1211
1310
# no X.509 keys are added to it. Therefore, we can use it
1212
1311
# here despite using OpenPGP certificates.
1214
1313
#priority = ':'.join(("NONE", "+VERS-TLS1.1",
1215
1314
# "+AES-256-CBC", "+SHA1",
1216
1315
# "+COMP-NULL", "+CTYPE-OPENPGP",
1428
1532
This function creates a new pipe in self.pipe
1430
1534
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1432
super(MultiprocessingMixInWithPipe,
1433
self).process_request(request, client_address)
1536
proc = MultiprocessingMixIn.process_request(self, request,
1434
1538
self.child_pipe.close()
1435
self.add_pipe(parent_pipe)
1437
def add_pipe(self, parent_pipe):
1539
self.add_pipe(parent_pipe, proc)
1541
def add_pipe(self, parent_pipe, proc):
1438
1542
"""Dummy function; override as necessary"""
1439
1543
raise NotImplementedError
1441
1546
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1442
1547
socketserver.TCPServer, object):
1443
1548
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1527
1632
def server_activate(self):
1528
1633
if self.enabled:
1529
1634
return socketserver.TCPServer.server_activate(self)
1530
1636
def enable(self):
1531
1637
self.enabled = True
1532
def add_pipe(self, parent_pipe):
1639
def add_pipe(self, parent_pipe, proc):
1533
1640
# Call "handle_ipc" for both data and EOF events
1534
1641
gobject.io_add_watch(parent_pipe.fileno(),
1535
1642
gobject.IO_IN | gobject.IO_HUP,
1536
1643
functools.partial(self.handle_ipc,
1537
parent_pipe = parent_pipe))
1539
1648
def handle_ipc(self, source, condition, parent_pipe=None,
1540
client_object=None):
1649
proc = None, client_object=None):
1541
1650
condition_names = {
1542
1651
gobject.IO_IN: "IN", # There is data to read.
1543
1652
gobject.IO_OUT: "OUT", # Data can be written (without
1573
1684
"dress: %s", fpr, address)
1574
1685
if self.use_dbus:
1575
1686
# Emit D-Bus signal
1576
mandos_dbus_service.ClientNotFound(fpr, address[0])
1687
mandos_dbus_service.ClientNotFound(fpr,
1577
1689
parent_pipe.send(False)
1580
1692
gobject.io_add_watch(parent_pipe.fileno(),
1581
1693
gobject.IO_IN | gobject.IO_HUP,
1582
1694
functools.partial(self.handle_ipc,
1583
parent_pipe = parent_pipe,
1584
client_object = client))
1585
1700
parent_pipe.send(True)
1586
# remove the old hook in favor of the new above hook on same fileno
1701
# remove the old hook in favor of the new above hook on
1588
1704
if command == 'funcall':
1589
1705
funcname = request[1]
1590
1706
args = request[2]
1591
1707
kwargs = request[3]
1593
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1709
parent_pipe.send(('data', getattr(client_object,
1595
1713
if command == 'getattr':
1596
1714
attrname = request[1]
1597
1715
if callable(client_object.__getattribute__(attrname)):
1598
1716
parent_pipe.send(('function',))
1600
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1718
parent_pipe.send(('data', client_object
1719
.__getattribute__(attrname)))
1602
1721
if command == 'setattr':
1603
1722
attrname = request[1]
1604
1723
value = request[2]
1605
1724
setattr(client_object, attrname, value)