310
291
interval: datetime.timedelta(); How often to start a new checker
311
292
last_approval_request: datetime.datetime(); (UTC) or None
312
293
last_checked_ok: datetime.datetime(); (UTC) or None
313
last_checker_status: integer between 0 and 255 reflecting exit status
314
of last checker. -1 reflect crashed checker,
316
294
last_enabled: datetime.datetime(); (UTC)
317
295
name: string; from the config file, used in log messages and
318
296
D-Bus identifiers
319
297
secret: bytestring; sent verbatim (over TLS) to client
320
298
timeout: datetime.timedelta(); How long from last_checked_ok
321
299
until this client is disabled
322
extended_timeout: extra long timeout when password has been sent
323
300
runtime_expansions: Allowed attributes for runtime expansion.
324
expires: datetime.datetime(); time (UTC) when a client will be
328
303
runtime_expansions = ("approval_delay", "approval_duration",
330
305
"host", "interval", "last_checked_ok",
331
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))
333
315
def timeout_milliseconds(self):
334
316
"Return the 'timeout' attribute in milliseconds"
335
return _timedelta_to_milliseconds(self.timeout)
337
def extended_timeout_milliseconds(self):
338
"Return the 'extended_timeout' attribute in milliseconds"
339
return _timedelta_to_milliseconds(self.extended_timeout)
317
return self._timedelta_to_milliseconds(self.timeout)
341
319
def interval_milliseconds(self):
342
320
"Return the 'interval' attribute in milliseconds"
343
return _timedelta_to_milliseconds(self.interval)
321
return self._timedelta_to_milliseconds(self.interval)
345
323
def approval_delay_milliseconds(self):
346
return _timedelta_to_milliseconds(self.approval_delay)
324
return self._timedelta_to_milliseconds(self.approval_delay)
348
def __init__(self, name = None, config=None):
326
def __init__(self, name = None, disable_hook=None, config=None):
349
327
"""Note: the 'checker' key in 'config' sets the
350
328
'checker_command' attribute and *not* the 'checker'
372
350
self.host = config.get("host", "")
373
351
self.created = datetime.datetime.utcnow()
375
353
self.last_approval_request = None
376
self.last_enabled = datetime.datetime.utcnow()
354
self.last_enabled = None
377
355
self.last_checked_ok = None
378
self.last_checker_status = None
379
356
self.timeout = string_to_delta(config["timeout"])
380
self.extended_timeout = string_to_delta(config
381
["extended_timeout"])
382
357
self.interval = string_to_delta(config["interval"])
358
self.disable_hook = disable_hook
383
359
self.checker = None
384
360
self.checker_initiator_tag = None
385
361
self.disable_initiator_tag = None
386
self.expires = datetime.datetime.utcnow() + self.timeout
387
362
self.checker_callback_tag = None
388
363
self.checker_command = config["checker"]
389
364
self.current_checker_command = None
365
self.last_connect = None
390
366
self._approved = None
391
367
self.approved_by_default = config.get("approved_by_default",
395
371
config["approval_delay"])
396
372
self.approval_duration = string_to_delta(
397
373
config["approval_duration"])
398
self.changedstate = (multiprocessing_manager
399
.Condition(multiprocessing_manager
401
self.client_structure = [attr for attr in self.__dict__.iterkeys() if not attr.startswith("_")]
402
self.client_structure.append("client_structure")
405
for name, t in inspect.getmembers(type(self),
406
lambda obj: isinstance(obj, property)):
407
if not name.startswith("_"):
408
self.client_structure.append(name)
374
self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
410
# Send notice to process children that client state has changed
411
376
def send_changedstate(self):
412
with self.changedstate:
413
self.changedstate.notify_all()
377
self.changedstate.acquire()
378
self.changedstate.notify_all()
379
self.changedstate.release()
415
381
def enable(self):
416
382
"""Start this client's checker and timeout hooks"""
417
383
if getattr(self, "enabled", False):
418
384
# Already enabled
420
386
self.send_changedstate()
421
self.expires = datetime.datetime.utcnow() + self.timeout
387
self.last_enabled = datetime.datetime.utcnow()
388
# Schedule a new checker to be started an 'interval' from now,
389
# and every interval from then on.
390
self.checker_initiator_tag = (gobject.timeout_add
391
(self.interval_milliseconds(),
393
# Schedule a disable() when 'timeout' has passed
394
self.disable_initiator_tag = (gobject.timeout_add
395
(self.timeout_milliseconds(),
422
397
self.enabled = True
423
self.last_enabled = datetime.datetime.utcnow()
398
# Also start a new checker *right now*.
426
401
def disable(self, quiet=True):
427
402
"""Disable this client."""
434
409
if getattr(self, "disable_initiator_tag", False):
435
410
gobject.source_remove(self.disable_initiator_tag)
436
411
self.disable_initiator_tag = None
438
412
if getattr(self, "checker_initiator_tag", False):
439
413
gobject.source_remove(self.checker_initiator_tag)
440
414
self.checker_initiator_tag = None
441
415
self.stop_checker()
416
if self.disable_hook:
417
self.disable_hook(self)
442
418
self.enabled = False
443
419
# Do not run this again if called by a gobject.timeout_add
446
422
def __del__(self):
423
self.disable_hook = None
449
def init_checker(self):
450
# Schedule a new checker to be started an 'interval' from now,
451
# and every interval from then on.
452
self.checker_initiator_tag = (gobject.timeout_add
453
(self.interval_milliseconds(),
455
# Schedule a disable() when 'timeout' has passed
456
self.disable_initiator_tag = (gobject.timeout_add
457
(self.timeout_milliseconds(),
459
# Also start a new checker *right now*.
463
426
def checker_callback(self, pid, condition, command):
464
427
"""The checker has completed, so take appropriate actions."""
465
428
self.checker_callback_tag = None
466
429
self.checker = None
467
430
if os.WIFEXITED(condition):
468
self.last_checker_status = os.WEXITSTATUS(condition)
469
if self.last_checker_status == 0:
431
exitstatus = os.WEXITSTATUS(condition)
470
433
logger.info("Checker for %(name)s succeeded",
472
435
self.checked_ok()
474
437
logger.info("Checker for %(name)s failed",
477
self.last_checker_status = -1
478
440
logger.warning("Checker for %(name)s crashed?",
481
def checked_ok(self, timeout=None):
443
def checked_ok(self):
482
444
"""Bump up the timeout for this client.
484
446
This should only be called when the client has been seen,
488
timeout = self.timeout
489
449
self.last_checked_ok = datetime.datetime.utcnow()
490
if self.disable_initiator_tag is not None:
491
gobject.source_remove(self.disable_initiator_tag)
492
if getattr(self, "enabled", False):
493
self.disable_initiator_tag = (gobject.timeout_add
494
(_timedelta_to_milliseconds
495
(timeout), self.disable))
496
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(),
498
455
def need_approval(self):
499
456
self.last_approval_request = datetime.datetime.utcnow()
592
549
self.checker = None
594
# Encrypts a client secret and stores it in a varible encrypted_secret
595
def encrypt_secret(self, key):
596
# Encryption-key need to be of a specific size, so we hash inputed key
597
hasheng = hashlib.sha256()
599
encryptionkey = hasheng.digest()
601
# Create validation hash so we know at decryption if it was sucessful
602
hasheng = hashlib.sha256()
603
hasheng.update(self.secret)
604
validationhash = hasheng.digest()
607
iv = os.urandom(Crypto.Cipher.AES.block_size)
608
ciphereng = Crypto.Cipher.AES.new(encryptionkey,
609
Crypto.Cipher.AES.MODE_CFB, iv)
610
ciphertext = ciphereng.encrypt(validationhash+self.secret)
611
self.encrypted_secret = (ciphertext, iv)
613
# Decrypt a encrypted client secret
614
def decrypt_secret(self, key):
615
# Decryption-key need to be of a specific size, so we hash inputed key
616
hasheng = hashlib.sha256()
618
encryptionkey = hasheng.digest()
620
# Decrypt encrypted secret
621
ciphertext, iv = self.encrypted_secret
622
ciphereng = Crypto.Cipher.AES.new(encryptionkey,
623
Crypto.Cipher.AES.MODE_CFB, iv)
624
plain = ciphereng.decrypt(ciphertext)
626
# Validate decrypted secret to know if it was succesful
627
hasheng = hashlib.sha256()
628
validationhash = plain[:hasheng.digest_size]
629
secret = plain[hasheng.digest_size:]
630
hasheng.update(secret)
632
# if validation fails, we use key as new secret. Otherwhise, we use
633
# the decrypted secret
634
if hasheng.digest() == validationhash:
638
del self.encrypted_secret
641
551
def dbus_service_property(dbus_interface, signature="v",
642
552
access="readwrite", byte_arrays=False):
643
553
"""Decorators for marking methods of a DBusObjectWithProperties to
702
612
def _get_all_dbus_properties(self):
703
613
"""Returns a generator of (name, attribute) pairs
705
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
706
for cls in self.__class__.__mro__
615
return ((prop._dbus_name, prop)
707
616
for name, prop in
708
inspect.getmembers(cls, self._is_dbus_property))
617
inspect.getmembers(self, self._is_dbus_property))
710
619
def _get_dbus_property(self, interface_name, property_name):
711
620
"""Returns a bound method if one exists which is a D-Bus
712
621
property with the specified name and interface.
714
for cls in self.__class__.__mro__:
715
for name, value in (inspect.getmembers
716
(cls, self._is_dbus_property)):
717
if (value._dbus_name == property_name
718
and value._dbus_interface == interface_name):
719
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)):
721
633
# No such property
722
634
raise DBusPropertyNotFound(self.dbus_object_path + ":"
723
635
+ interface_name + "."
828
def datetime_to_dbus (dt, variant_level=0):
829
"""Convert a UTC datetime.datetime() to a D-Bus type."""
831
return dbus.String("", variant_level = variant_level)
832
return dbus.String(dt.isoformat(),
833
variant_level=variant_level)
835
class AlternateDBusNamesMetaclass(DBusObjectWithProperties
837
"""Applied to an empty subclass of a D-Bus object, this metaclass
838
will add additional D-Bus attributes matching a certain pattern.
840
def __new__(mcs, name, bases, attr):
841
# Go through all the base classes which could have D-Bus
842
# methods, signals, or properties in them
843
for base in (b for b in bases
844
if issubclass(b, dbus.service.Object)):
845
# Go though all attributes of the base class
846
for attrname, attribute in inspect.getmembers(base):
847
# Ignore non-D-Bus attributes, and D-Bus attributes
848
# with the wrong interface name
849
if (not hasattr(attribute, "_dbus_interface")
850
or not attribute._dbus_interface
851
.startswith("se.recompile.Mandos")):
853
# Create an alternate D-Bus interface name based on
855
alt_interface = (attribute._dbus_interface
856
.replace("se.recompile.Mandos",
857
"se.bsnet.fukt.Mandos"))
858
# Is this a D-Bus signal?
859
if getattr(attribute, "_dbus_is_signal", False):
860
# Extract the original non-method function by
862
nonmethod_func = (dict(
863
zip(attribute.func_code.co_freevars,
864
attribute.__closure__))["func"]
866
# Create a new, but exactly alike, function
867
# object, and decorate it to be a new D-Bus signal
868
# with the alternate D-Bus interface name
869
new_function = (dbus.service.signal
871
attribute._dbus_signature)
873
nonmethod_func.func_code,
874
nonmethod_func.func_globals,
875
nonmethod_func.func_name,
876
nonmethod_func.func_defaults,
877
nonmethod_func.func_closure)))
878
# Define a creator of a function to call both the
879
# old and new functions, so both the old and new
880
# signals gets sent when the function is called
881
def fixscope(func1, func2):
882
"""This function is a scope container to pass
883
func1 and func2 to the "call_both" function
884
outside of its arguments"""
885
def call_both(*args, **kwargs):
886
"""This function will emit two D-Bus
887
signals by calling func1 and func2"""
888
func1(*args, **kwargs)
889
func2(*args, **kwargs)
891
# Create the "call_both" function and add it to
893
attr[attrname] = fixscope(attribute,
895
# Is this a D-Bus method?
896
elif getattr(attribute, "_dbus_is_method", False):
897
# Create a new, but exactly alike, function
898
# object. Decorate it to be a new D-Bus method
899
# with the alternate D-Bus interface name. Add it
901
attr[attrname] = (dbus.service.method
903
attribute._dbus_in_signature,
904
attribute._dbus_out_signature)
906
(attribute.func_code,
907
attribute.func_globals,
909
attribute.func_defaults,
910
attribute.func_closure)))
911
# Is this a D-Bus property?
912
elif getattr(attribute, "_dbus_is_property", False):
913
# Create a new, but exactly alike, function
914
# object, and decorate it to be a new D-Bus
915
# property with the alternate D-Bus interface
916
# name. Add it to the class.
917
attr[attrname] = (dbus_service_property
919
attribute._dbus_signature,
920
attribute._dbus_access,
922
._dbus_get_args_options
925
(attribute.func_code,
926
attribute.func_globals,
928
attribute.func_defaults,
929
attribute.func_closure)))
930
return type.__new__(mcs, name, bases, attr)
932
740
class ClientDBus(Client, DBusObjectWithProperties):
933
741
"""A Client class using D-Bus
957
764
DBusObjectWithProperties.__init__(self, self.bus,
958
765
self.dbus_object_path)
960
def notifychangeproperty(transform_func,
961
dbus_name, type_func=lambda x: x,
963
""" 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"),
966
transform_fun: Function that takes a value and a variant_level
967
and transforms it to a D-Bus type.
968
dbus_name: D-Bus name of the variable
969
type_func: Function that transform the value before sending it
970
to the D-Bus. Default: no transform
971
variant_level: D-Bus variant level. Default: 1
973
attrname = "_{0}".format(dbus_name)
974
def setter(self, value):
975
if hasattr(self, "dbus_object_path"):
976
if (not hasattr(self, attrname) or
977
type_func(getattr(self, attrname, None))
978
!= type_func(value)):
979
dbus_value = transform_func(type_func(value),
982
self.PropertyChanged(dbus.String(dbus_name),
984
setattr(self, attrname, value)
986
return property(lambda self: getattr(self, attrname), setter)
989
expires = notifychangeproperty(datetime_to_dbus, "Expires")
990
approvals_pending = notifychangeproperty(dbus.Boolean,
993
enabled = notifychangeproperty(dbus.Boolean, "Enabled")
994
last_enabled = notifychangeproperty(datetime_to_dbus,
996
checker = notifychangeproperty(dbus.Boolean, "CheckerRunning",
997
type_func = lambda checker:
999
last_checked_ok = notifychangeproperty(datetime_to_dbus,
1001
last_approval_request = notifychangeproperty(
1002
datetime_to_dbus, "LastApprovalRequest")
1003
approved_by_default = notifychangeproperty(dbus.Boolean,
1004
"ApprovedByDefault")
1005
approval_delay = notifychangeproperty(dbus.UInt16,
1008
_timedelta_to_milliseconds)
1009
approval_duration = notifychangeproperty(
1010
dbus.UInt16, "ApprovalDuration",
1011
type_func = _timedelta_to_milliseconds)
1012
host = notifychangeproperty(dbus.String, "Host")
1013
timeout = notifychangeproperty(dbus.UInt16, "Timeout",
1015
_timedelta_to_milliseconds)
1016
extended_timeout = notifychangeproperty(
1017
dbus.UInt16, "ExtendedTimeout",
1018
type_func = _timedelta_to_milliseconds)
1019
interval = notifychangeproperty(dbus.UInt16,
1022
_timedelta_to_milliseconds)
1023
checker_command = notifychangeproperty(dbus.String, "Checker")
1025
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))
1027
811
def __del__(self, *args, **kwargs):
1052
839
return Client.checker_callback(self, pid, condition, command,
1053
840
*args, **kwargs)
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,
1055
859
def start_checker(self, *args, **kwargs):
1056
860
old_checker = self.checker
1057
861
if self.checker is not None:
1064
868
and old_checker_pid != self.checker.pid):
1065
869
# Emit D-Bus signal
1066
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))
1069
885
def _reset_approved(self):
1070
886
self._approved = None
1179
998
if value is None: # get
1180
999
return dbus.UInt64(self.approval_delay_milliseconds())
1181
1000
self.approval_delay = datetime.timedelta(0, 0, 0, value)
1002
self.PropertyChanged(dbus.String("ApprovalDelay"),
1003
dbus.UInt64(value, variant_level=1))
1183
1005
# ApprovalDuration - property
1184
1006
@dbus_service_property(_interface, signature="t",
1185
1007
access="readwrite")
1186
1008
def ApprovalDuration_dbus_property(self, value=None):
1187
1009
if value is None: # get
1188
return dbus.UInt64(_timedelta_to_milliseconds(
1010
return dbus.UInt64(self._timedelta_to_milliseconds(
1189
1011
self.approval_duration))
1190
1012
self.approval_duration = datetime.timedelta(0, 0, 0, value)
1014
self.PropertyChanged(dbus.String("ApprovalDuration"),
1015
dbus.UInt64(value, variant_level=1))
1192
1017
# Name - property
1193
1018
@dbus_service_property(_interface, signature="s", access="read")
1206
1031
if value is None: # get
1207
1032
return dbus.String(self.host)
1208
1033
self.host = value
1035
self.PropertyChanged(dbus.String("Host"),
1036
dbus.String(value, variant_level=1))
1210
1038
# Created - property
1211
1039
@dbus_service_property(_interface, signature="s", access="read")
1212
1040
def Created_dbus_property(self):
1213
return dbus.String(datetime_to_dbus(self.created))
1041
return dbus.String(self._datetime_to_dbus(self.created))
1215
1043
# LastEnabled - property
1216
1044
@dbus_service_property(_interface, signature="s", access="read")
1217
1045
def LastEnabled_dbus_property(self):
1218
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))
1220
1050
# Enabled - property
1221
1051
@dbus_service_property(_interface, signature="b",
1254
1086
if value is None: # get
1255
1087
return dbus.UInt64(self.timeout_milliseconds())
1256
1088
self.timeout = datetime.timedelta(0, 0, 0, value)
1090
self.PropertyChanged(dbus.String("Timeout"),
1091
dbus.UInt64(value, variant_level=1))
1257
1092
if getattr(self, "disable_initiator_tag", None) is None:
1259
1094
# Reschedule timeout
1260
1095
gobject.source_remove(self.disable_initiator_tag)
1261
1096
self.disable_initiator_tag = None
1263
time_to_die = _timedelta_to_milliseconds((self
1097
time_to_die = (self.
1098
_timedelta_to_milliseconds((self
1268
1103
if time_to_die <= 0:
1269
1104
# The timeout has passed
1272
self.expires = (datetime.datetime.utcnow()
1273
+ datetime.timedelta(milliseconds =
1275
1107
self.disable_initiator_tag = (gobject.timeout_add
1276
1108
(time_to_die, self.disable))
1278
# ExtendedTimeout - property
1279
@dbus_service_property(_interface, signature="t",
1281
def ExtendedTimeout_dbus_property(self, value=None):
1282
if value is None: # get
1283
return dbus.UInt64(self.extended_timeout_milliseconds())
1284
self.extended_timeout = datetime.timedelta(0, 0, 0, value)
1286
1110
# Interval - property
1287
1111
@dbus_service_property(_interface, signature="t",
1288
1112
access="readwrite")
1371
1200
unicode(self.client_address))
1372
1201
logger.debug("Pipe FD: %d",
1373
1202
self.server.child_pipe.fileno())
1375
1204
session = (gnutls.connection
1376
1205
.ClientSession(self.request,
1377
1206
gnutls.connection
1378
1207
.X509Credentials()))
1380
1209
# Note: gnutls.connection.X509Credentials is really a
1381
1210
# generic GnuTLS certificate credentials object so long as
1382
1211
# no X.509 keys are added to it. Therefore, we can use it
1383
1212
# here despite using OpenPGP certificates.
1385
1214
#priority = ':'.join(("NONE", "+VERS-TLS1.1",
1386
1215
# "+AES-256-CBC", "+SHA1",
1387
1216
# "+COMP-NULL", "+CTYPE-OPENPGP",
1604
1428
This function creates a new pipe in self.pipe
1606
1430
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1608
proc = MultiprocessingMixIn.process_request(self, request,
1432
super(MultiprocessingMixInWithPipe,
1433
self).process_request(request, client_address)
1610
1434
self.child_pipe.close()
1611
self.add_pipe(parent_pipe, proc)
1613
def add_pipe(self, parent_pipe, proc):
1435
self.add_pipe(parent_pipe)
1437
def add_pipe(self, parent_pipe):
1614
1438
"""Dummy function; override as necessary"""
1615
1439
raise NotImplementedError
1618
1441
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1619
1442
socketserver.TCPServer, object):
1620
1443
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1704
1527
def server_activate(self):
1705
1528
if self.enabled:
1706
1529
return socketserver.TCPServer.server_activate(self)
1708
1530
def enable(self):
1709
1531
self.enabled = True
1711
def add_pipe(self, parent_pipe, proc):
1532
def add_pipe(self, parent_pipe):
1712
1533
# Call "handle_ipc" for both data and EOF events
1713
1534
gobject.io_add_watch(parent_pipe.fileno(),
1714
1535
gobject.IO_IN | gobject.IO_HUP,
1715
1536
functools.partial(self.handle_ipc,
1537
parent_pipe = parent_pipe))
1720
1539
def handle_ipc(self, source, condition, parent_pipe=None,
1721
proc = None, client_object=None):
1540
client_object=None):
1722
1541
condition_names = {
1723
1542
gobject.IO_IN: "IN", # There is data to read.
1724
1543
gobject.IO_OUT: "OUT", # Data can be written (without
1756
1573
"dress: %s", fpr, address)
1757
1574
if self.use_dbus:
1758
1575
# Emit D-Bus signal
1759
mandos_dbus_service.ClientNotFound(fpr,
1576
mandos_dbus_service.ClientNotFound(fpr, address[0])
1761
1577
parent_pipe.send(False)
1764
1580
gobject.io_add_watch(parent_pipe.fileno(),
1765
1581
gobject.IO_IN | gobject.IO_HUP,
1766
1582
functools.partial(self.handle_ipc,
1583
parent_pipe = parent_pipe,
1584
client_object = client))
1772
1585
parent_pipe.send(True)
1773
# 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
1776
1588
if command == 'funcall':
1777
1589
funcname = request[1]
1778
1590
args = request[2]
1779
1591
kwargs = request[3]
1781
parent_pipe.send(('data', getattr(client_object,
1593
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1785
1595
if command == 'getattr':
1786
1596
attrname = request[1]
1787
1597
if callable(client_object.__getattribute__(attrname)):
1788
1598
parent_pipe.send(('function',))
1790
parent_pipe.send(('data', client_object
1791
.__getattribute__(attrname)))
1600
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1793
1602
if command == 'setattr':
1794
1603
attrname = request[1]
1795
1604
value = request[2]
1796
1605
setattr(client_object, attrname, value)
2086
1891
# End of Avahi example code
2089
bus_name = dbus.service.BusName("se.recompile.Mandos",
1894
bus_name = dbus.service.BusName("se.bsnet.fukt.Mandos",
2090
1895
bus, do_not_queue=True)
2091
old_bus_name = (dbus.service.BusName
2092
("se.bsnet.fukt.Mandos", bus,
2094
1896
except dbus.exceptions.NameExistsException as e:
2095
1897
logger.error(unicode(e) + ", disabling D-Bus")
2096
1898
use_dbus = False
2097
1899
server_settings["use_dbus"] = False
2098
1900
tcp_server.use_dbus = False
2099
1901
protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
2100
service = AvahiServiceToSyslog(name =
2101
server_settings["servicename"],
2102
servicetype = "_mandos._tcp",
2103
protocol = protocol, bus = bus)
1902
service = AvahiService(name = server_settings["servicename"],
1903
servicetype = "_mandos._tcp",
1904
protocol = protocol, bus = bus)
2104
1905
if server_settings["interface"]:
2105
1906
service.interface = (if_nametoindex
2106
1907
(str(server_settings["interface"])))
2111
1912
client_class = Client
2113
client_class = functools.partial(ClientDBusTransitional,
2116
special_settings = {
2117
# Some settings need to be accessd by special methods;
2118
# booleans need .getboolean(), etc. Here is a list of them:
2119
"approved_by_default":
2121
client_config.getboolean(section, "approved_by_default"),
2123
# Construct a new dict of client settings of this form:
2124
# { client_name: {setting_name: value, ...}, ...}
2125
# with exceptions for any special settings as defined above
2126
client_settings = dict((clientname,
2128
(value if setting not in special_settings
2129
else special_settings[setting](clientname)))
2130
for setting, value in client_config.items(clientname)))
2131
for clientname in client_config.sections())
2133
old_client_settings = {}
2136
# Get client data and settings from last running state.
2137
if server_settings["restore"]:
2139
with open(stored_state_path, "rb") as stored_state:
2140
clients_data, old_client_settings = pickle.load(stored_state)
2141
os.remove(stored_state_path)
2142
except IOError as e:
2143
logger.warning("Could not load persistant state: {0}".format(e))
2144
if e.errno != errno.ENOENT:
2147
for client in clients_data:
2148
client_name = client["name"]
2150
# Decide which value to use after restoring saved state.
2151
# We have three different values: Old config file,
2152
# new config file, and saved state.
2153
# New config value takes precedence if it differs from old
2154
# config value, otherwise use saved state.
2155
for name, value in client_settings[client_name].items():
1914
client_class = functools.partial(ClientDBus, bus = bus)
1915
def client_config_items(config, section):
1916
special_settings = {
1917
"approved_by_default":
1918
lambda: config.getboolean(section,
1919
"approved_by_default"),
1921
for name, value in config.items(section):
2157
# For each value in new config, check if it differs
2158
# from the old config value (Except for the "secret"
2160
if name != "secret" and value != old_client_settings[client_name][name]:
2161
setattr(client, name, value)
1923
yield (name, special_settings[name]())
2162
1924
except KeyError:
2165
# Clients who has passed its expire date, can still be enabled if its
2166
# last checker was sucessful. Clients who checkers failed before we
2167
# stored it state is asumed to had failed checker during downtime.
2168
if client["enabled"] and client["last_checked_ok"]:
2169
if ((datetime.datetime.utcnow() - client["last_checked_ok"])
2170
> client["interval"]):
2171
if client["last_checker_status"] != 0:
2172
client["enabled"] = False
2174
client["expires"] = datetime.datetime.utcnow() + client["timeout"]
2176
client["changedstate"] = (multiprocessing_manager
2177
.Condition(multiprocessing_manager
2180
new_client = ClientDBusTransitional.__new__(ClientDBusTransitional)
2181
tcp_server.clients[client_name] = new_client
2182
new_client.bus = bus
2183
for name, value in client.iteritems():
2184
setattr(new_client, name, value)
2185
client_object_name = unicode(client_name).translate(
2186
{ord("."): ord("_"),
2187
ord("-"): ord("_")})
2188
new_client.dbus_object_path = (dbus.ObjectPath
2189
("/clients/" + client_object_name))
2190
DBusObjectWithProperties.__init__(new_client,
2192
new_client.dbus_object_path)
2194
tcp_server.clients[client_name] = Client.__new__(Client)
2195
for name, value in client.iteritems():
2196
setattr(tcp_server.clients[client_name], name, value)
2198
tcp_server.clients[client_name].decrypt_secret(
2199
client_settings[client_name]["secret"])
2201
# Create/remove clients based on new changes made to config
2202
for clientname in set(old_client_settings) - set(client_settings):
2203
del tcp_server.clients[clientname]
2204
for clientname in set(client_settings) - set(old_client_settings):
2205
tcp_server.clients[clientname] = (client_class(name = clientname,
1927
tcp_server.clients.update(set(
1928
client_class(name = section,
1929
config= dict(client_config_items(
1930
client_config, section)))
1931
for section in client_config.sections()))
2211
1932
if not tcp_server.clients:
2212
1933
logger.warning("No clients defined")
2287
class MandosDBusServiceTransitional(MandosDBusService):
2288
__metaclass__ = AlternateDBusNamesMetaclass
2289
mandos_dbus_service = MandosDBusServiceTransitional()
2007
mandos_dbus_service = MandosDBusService()
2292
2010
"Cleanup function; run on exit"
2293
2011
service.cleanup()
2295
multiprocessing.active_children()
2296
if not (tcp_server.clients or client_settings):
2299
# Store client before exiting. Secrets are encrypted with key based
2300
# on what config file has. If config file is removed/edited, old
2301
# secret will thus be unrecovable.
2303
for client in tcp_server.clients.itervalues():
2304
client.encrypt_secret(client_settings[client.name]["secret"])
2308
# A list of attributes that will not be stored when shuting down.
2309
exclude = set(("bus", "changedstate", "secret"))
2310
for name, typ in inspect.getmembers(dbus.service.Object):
2313
client_dict["encrypted_secret"] = client.encrypted_secret
2314
for attr in client.client_structure:
2315
if attr not in exclude:
2316
client_dict[attr] = getattr(client, attr)
2318
clients.append(client_dict)
2319
del client_settings[client.name]["secret"]
2322
with os.fdopen(os.open(stored_state_path, os.O_CREAT|os.O_WRONLY|os.O_TRUNC, 0600), "wb") as stored_state:
2323
pickle.dump((clients, client_settings), stored_state)
2324
except IOError as e:
2325
logger.warning("Could not save persistant state: {0}".format(e))
2326
if e.errno != errno.ENOENT:
2329
# Delete all clients, and settings from config
2330
2013
while tcp_server.clients:
2331
name, client = tcp_server.clients.popitem()
2014
client = tcp_server.clients.pop()
2333
2016
client.remove_from_connection()
2017
client.disable_hook = None
2334
2018
# Don't signal anything except ClientRemoved
2335
2019
client.disable(quiet=True)
2337
2021
# Emit D-Bus signal
2338
mandos_dbus_service.ClientRemoved(client
2022
mandos_dbus_service.ClientRemoved(client.dbus_object_path,
2341
client_settings.clear()
2343
2025
atexit.register(cleanup)
2345
for client in tcp_server.clients.itervalues():
2027
for client in tcp_server.clients:
2347
2029
# Emit D-Bus signal
2348
2030
mandos_dbus_service.ClientAdded(client.dbus_object_path)
2349
# Need to initiate checking of clients
2351
client.init_checker()
2354
2033
tcp_server.enable()
2355
2034
tcp_server.server_activate()