178
176
self.rename_count += 1
179
177
def remove(self):
180
178
"""Derived from the Avahi example code"""
179
if self.group is not None:
182
except (dbus.exceptions.UnknownMethodException,
183
dbus.exceptions.DBusException) as e:
181
186
if self.entry_group_state_changed_match is not None:
182
187
self.entry_group_state_changed_match.remove()
183
188
self.entry_group_state_changed_match = None
184
if self.group is not None:
187
190
"""Derived from the Avahi example code"""
189
if self.group is None:
190
self.group = dbus.Interface(
191
self.bus.get_object(avahi.DBUS_NAME,
192
self.server.EntryGroupNew()),
193
avahi.DBUS_INTERFACE_ENTRY_GROUP)
192
self.group = dbus.Interface(
193
self.bus.get_object(avahi.DBUS_NAME,
194
self.server.EntryGroupNew(),
195
follow_name_owner_changes=True),
196
avahi.DBUS_INTERFACE_ENTRY_GROUP)
194
197
self.entry_group_state_changed_match = (
195
198
self.group.connect_to_signal(
196
199
'StateChanged', self .entry_group_state_changed))
316
297
"host", "interval", "last_checked_ok",
317
298
"last_enabled", "name", "timeout")
301
def _timedelta_to_milliseconds(td):
302
"Convert a datetime.timedelta() to milliseconds"
303
return ((td.days * 24 * 60 * 60 * 1000)
304
+ (td.seconds * 1000)
305
+ (td.microseconds // 1000))
319
307
def timeout_milliseconds(self):
320
308
"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)
309
return self._timedelta_to_milliseconds(self.timeout)
327
311
def interval_milliseconds(self):
328
312
"Return the 'interval' attribute in milliseconds"
329
return _timedelta_to_milliseconds(self.interval)
313
return self._timedelta_to_milliseconds(self.interval)
331
315
def approval_delay_milliseconds(self):
332
return _timedelta_to_milliseconds(self.approval_delay)
316
return self._timedelta_to_milliseconds(self.approval_delay)
334
318
def __init__(self, name = None, disable_hook=None, config=None):
335
319
"""Note: the 'checker' key in 'config' sets the
382
363
config["approval_delay"])
383
364
self.approval_duration = string_to_delta(
384
365
config["approval_duration"])
385
self.changedstate = (multiprocessing_manager
386
.Condition(multiprocessing_manager
366
self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
389
368
def send_changedstate(self):
390
369
self.changedstate.acquire()
391
370
self.changedstate.notify_all()
392
371
self.changedstate.release()
394
373
def enable(self):
395
374
"""Start this client's checker and timeout hooks"""
396
375
if getattr(self, "enabled", False):
397
376
# Already enabled
399
378
self.send_changedstate()
379
self.last_enabled = datetime.datetime.utcnow()
400
380
# Schedule a new checker to be started an 'interval' from now,
401
381
# and every interval from then on.
402
382
self.checker_initiator_tag = (gobject.timeout_add
403
383
(self.interval_milliseconds(),
404
384
self.start_checker))
405
385
# Schedule a disable() when 'timeout' has passed
406
self.expires = datetime.datetime.utcnow() + self.timeout
407
386
self.disable_initiator_tag = (gobject.timeout_add
408
387
(self.timeout_milliseconds(),
410
389
self.enabled = True
411
self.last_enabled = datetime.datetime.utcnow()
412
390
# Also start a new checker *right now*.
413
391
self.start_checker()
631
604
def _get_all_dbus_properties(self):
632
605
"""Returns a generator of (name, attribute) pairs
634
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
635
for cls in self.__class__.__mro__
607
return ((prop._dbus_name, prop)
636
608
for name, prop in
637
inspect.getmembers(cls, self._is_dbus_property))
609
inspect.getmembers(self, self._is_dbus_property))
639
611
def _get_dbus_property(self, interface_name, property_name):
640
612
"""Returns a bound method if one exists which is a D-Bus
641
613
property with the specified name and 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)
615
for name in (property_name,
616
property_name + "_dbus_property"):
617
prop = getattr(self, name, None)
619
or not self._is_dbus_property(prop)
620
or prop._dbus_name != property_name
621
or (interface_name and prop._dbus_interface
622
and interface_name != prop._dbus_interface)):
650
625
# No such property
651
626
raise DBusPropertyNotFound(self.dbus_object_path + ":"
652
627
+ 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)
861
732
class ClientDBus(Client, DBusObjectWithProperties):
862
733
"""A Client class using D-Bus
885
756
DBusObjectWithProperties.__init__(self, self.bus,
886
757
self.dbus_object_path)
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
759
def _get_approvals_pending(self):
760
return self._approvals_pending
761
def _set_approvals_pending(self, value):
762
old_value = self._approvals_pending
763
self._approvals_pending = value
765
if (hasattr(self, "dbus_object_path")
766
and bval is not bool(old_value)):
767
dbus_bool = dbus.Boolean(bval, variant_level=1)
768
self.PropertyChanged(dbus.String("ApprovalPending"),
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
771
approvals_pending = property(_get_approvals_pending,
772
_set_approvals_pending)
773
del _get_approvals_pending, _set_approvals_pending
776
def _datetime_to_dbus(dt, variant_level=0):
777
"""Convert a UTC datetime.datetime() to a D-Bus type."""
778
return dbus.String(dt.isoformat(),
779
variant_level=variant_level)
782
oldstate = getattr(self, "enabled", False)
783
r = Client.enable(self)
784
if oldstate != self.enabled:
786
self.PropertyChanged(dbus.String("Enabled"),
787
dbus.Boolean(True, variant_level=1))
788
self.PropertyChanged(
789
dbus.String("LastEnabled"),
790
self._datetime_to_dbus(self.last_enabled,
794
def disable(self, quiet = False):
795
oldstate = getattr(self, "enabled", False)
796
r = Client.disable(self, quiet=quiet)
797
if not quiet and oldstate != self.enabled:
799
self.PropertyChanged(dbus.String("Enabled"),
800
dbus.Boolean(False, variant_level=1))
954
803
def __del__(self, *args, **kwargs):
979
831
return Client.checker_callback(self, pid, condition, command,
834
def checked_ok(self, *args, **kwargs):
835
Client.checked_ok(self, *args, **kwargs)
837
self.PropertyChanged(
838
dbus.String("LastCheckedOK"),
839
(self._datetime_to_dbus(self.last_checked_ok,
842
def need_approval(self, *args, **kwargs):
843
r = Client.need_approval(self, *args, **kwargs)
845
self.PropertyChanged(
846
dbus.String("LastApprovalRequest"),
847
(self._datetime_to_dbus(self.last_approval_request,
982
851
def start_checker(self, *args, **kwargs):
983
852
old_checker = self.checker
984
853
if self.checker is not None:
991
860
and old_checker_pid != self.checker.pid):
992
861
# Emit D-Bus signal
993
862
self.CheckerStarted(self.current_checker_command)
863
self.PropertyChanged(
864
dbus.String("CheckerRunning"),
865
dbus.Boolean(True, variant_level=1))
868
def stop_checker(self, *args, **kwargs):
869
old_checker = getattr(self, "checker", None)
870
r = Client.stop_checker(self, *args, **kwargs)
871
if (old_checker is not None
872
and getattr(self, "checker", None) is None):
873
self.PropertyChanged(dbus.String("CheckerRunning"),
874
dbus.Boolean(False, variant_level=1))
996
877
def _reset_approved(self):
997
878
self._approved = None
1106
990
if value is None: # get
1107
991
return dbus.UInt64(self.approval_delay_milliseconds())
1108
992
self.approval_delay = datetime.timedelta(0, 0, 0, value)
994
self.PropertyChanged(dbus.String("ApprovalDelay"),
995
dbus.UInt64(value, variant_level=1))
1110
997
# ApprovalDuration - property
1111
998
@dbus_service_property(_interface, signature="t",
1112
999
access="readwrite")
1113
1000
def ApprovalDuration_dbus_property(self, value=None):
1114
1001
if value is None: # get
1115
return dbus.UInt64(_timedelta_to_milliseconds(
1002
return dbus.UInt64(self._timedelta_to_milliseconds(
1116
1003
self.approval_duration))
1117
1004
self.approval_duration = datetime.timedelta(0, 0, 0, value)
1006
self.PropertyChanged(dbus.String("ApprovalDuration"),
1007
dbus.UInt64(value, variant_level=1))
1119
1009
# Name - property
1120
1010
@dbus_service_property(_interface, signature="s", access="read")
1133
1023
if value is None: # get
1134
1024
return dbus.String(self.host)
1135
1025
self.host = value
1027
self.PropertyChanged(dbus.String("Host"),
1028
dbus.String(value, variant_level=1))
1137
1030
# Created - property
1138
1031
@dbus_service_property(_interface, signature="s", access="read")
1139
1032
def Created_dbus_property(self):
1140
return dbus.String(datetime_to_dbus(self.created))
1033
return dbus.String(self._datetime_to_dbus(self.created))
1142
1035
# LastEnabled - property
1143
1036
@dbus_service_property(_interface, signature="s", access="read")
1144
1037
def LastEnabled_dbus_property(self):
1145
return datetime_to_dbus(self.last_enabled)
1038
if self.last_enabled is None:
1039
return dbus.String("")
1040
return dbus.String(self._datetime_to_dbus(self.last_enabled))
1147
1042
# Enabled - property
1148
1043
@dbus_service_property(_interface, signature="b",
1299
1192
unicode(self.client_address))
1300
1193
logger.debug("Pipe FD: %d",
1301
1194
self.server.child_pipe.fileno())
1303
1196
session = (gnutls.connection
1304
1197
.ClientSession(self.request,
1305
1198
gnutls.connection
1306
1199
.X509Credentials()))
1308
1201
# Note: gnutls.connection.X509Credentials is really a
1309
1202
# generic GnuTLS certificate credentials object so long as
1310
1203
# no X.509 keys are added to it. Therefore, we can use it
1311
1204
# here despite using OpenPGP certificates.
1313
1206
#priority = ':'.join(("NONE", "+VERS-TLS1.1",
1314
1207
# "+AES-256-CBC", "+SHA1",
1315
1208
# "+COMP-NULL", "+CTYPE-OPENPGP",
1677
logger.info("Client not found for fingerprint: %s, ad"
1678
"dress: %s", fpr, address)
1564
logger.warning("Client not found for fingerprint: %s, ad"
1565
"dress: %s", fpr, address)
1679
1566
if self.use_dbus:
1680
1567
# Emit D-Bus signal
1681
mandos_dbus_service.ClientNotFound(fpr,
1568
mandos_dbus_service.ClientNotFound(fpr, address[0])
1683
1569
parent_pipe.send(False)
1686
1572
gobject.io_add_watch(parent_pipe.fileno(),
1687
1573
gobject.IO_IN | gobject.IO_HUP,
1688
1574
functools.partial(self.handle_ipc,
1575
parent_pipe = parent_pipe,
1576
client_object = client))
1693
1577
parent_pipe.send(True)
1694
# remove the old hook in favor of the new above hook on
1578
# remove the old hook in favor of the new above hook on same fileno
1697
1580
if command == 'funcall':
1698
1581
funcname = request[1]
1699
1582
args = request[2]
1700
1583
kwargs = request[3]
1702
parent_pipe.send(('data', getattr(client_object,
1585
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1706
1587
if command == 'getattr':
1707
1588
attrname = request[1]
1708
1589
if callable(client_object.__getattribute__(attrname)):
1709
1590
parent_pipe.send(('function',))
1711
parent_pipe.send(('data', client_object
1712
.__getattribute__(attrname)))
1592
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1714
1594
if command == 'setattr':
1715
1595
attrname = request[1]
1716
1596
value = request[2]
1717
1597
setattr(client_object, attrname, value)