313
329
"created", "enabled", "fingerprint",
314
330
"host", "interval", "last_checked_ok",
315
331
"last_enabled", "name", "timeout")
317
333
def timeout_milliseconds(self):
318
334
"Return the 'timeout' attribute in milliseconds"
319
335
return _timedelta_to_milliseconds(self.timeout)
321
337
def extended_timeout_milliseconds(self):
322
338
"Return the 'extended_timeout' attribute in milliseconds"
323
return _timedelta_to_milliseconds(self.extended_timeout)
339
return _timedelta_to_milliseconds(self.extended_timeout)
325
341
def interval_milliseconds(self):
326
342
"Return the 'interval' attribute in milliseconds"
327
343
return _timedelta_to_milliseconds(self.interval)
329
345
def approval_delay_milliseconds(self):
330
346
return _timedelta_to_milliseconds(self.approval_delay)
332
def __init__(self, name = None, disable_hook=None, config=None):
348
def __init__(self, name = None, config=None):
333
349
"""Note: the 'checker' key in 'config' sets the
334
350
'checker_command' attribute and *not* the 'checker'
356
372
self.host = config.get("host", "")
357
373
self.created = datetime.datetime.utcnow()
359
375
self.last_approval_request = None
360
self.last_enabled = None
376
self.last_enabled = datetime.datetime.utcnow()
361
377
self.last_checked_ok = None
378
self.last_checker_status = None
362
379
self.timeout = string_to_delta(config["timeout"])
363
self.extended_timeout = string_to_delta(config["extended_timeout"])
380
self.extended_timeout = string_to_delta(config
381
["extended_timeout"])
364
382
self.interval = string_to_delta(config["interval"])
365
self.disable_hook = disable_hook
366
383
self.checker = None
367
384
self.checker_initiator_tag = None
368
385
self.disable_initiator_tag = None
386
self.expires = datetime.datetime.utcnow() + self.timeout
370
387
self.checker_callback_tag = None
371
388
self.checker_command = config["checker"]
372
389
self.current_checker_command = None
373
self.last_connect = None
374
390
self._approved = None
375
391
self.approved_by_default = config.get("approved_by_default",
379
395
config["approval_delay"])
380
396
self.approval_duration = string_to_delta(
381
397
config["approval_duration"])
382
self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
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)
410
# Send notice to process children that client state has changed
384
411
def send_changedstate(self):
385
self.changedstate.acquire()
386
self.changedstate.notify_all()
387
self.changedstate.release()
412
with self.changedstate:
413
self.changedstate.notify_all()
389
415
def enable(self):
390
416
"""Start this client's checker and timeout hooks"""
391
417
if getattr(self, "enabled", False):
392
418
# Already enabled
394
420
self.send_changedstate()
395
# Schedule a new checker to be started an 'interval' from now,
396
# and every interval from then on.
397
self.checker_initiator_tag = (gobject.timeout_add
398
(self.interval_milliseconds(),
400
# Schedule a disable() when 'timeout' has passed
401
421
self.expires = datetime.datetime.utcnow() + self.timeout
402
self.disable_initiator_tag = (gobject.timeout_add
403
(self.timeout_milliseconds(),
405
422
self.enabled = True
406
423
self.last_enabled = datetime.datetime.utcnow()
407
# Also start a new checker *right now*.
410
426
def disable(self, quiet=True):
411
427
"""Disable this client."""
423
439
gobject.source_remove(self.checker_initiator_tag)
424
440
self.checker_initiator_tag = None
425
441
self.stop_checker()
426
if self.disable_hook:
427
self.disable_hook(self)
428
442
self.enabled = False
429
443
# Do not run this again if called by a gobject.timeout_add
432
446
def __del__(self):
433
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*.
436
463
def checker_callback(self, pid, condition, command):
437
464
"""The checker has completed, so take appropriate actions."""
438
465
self.checker_callback_tag = None
439
466
self.checker = None
440
467
if os.WIFEXITED(condition):
441
exitstatus = os.WEXITSTATUS(condition)
468
self.last_checker_status = os.WEXITSTATUS(condition)
469
if self.last_checker_status == 0:
443
470
logger.info("Checker for %(name)s succeeded",
445
472
self.checked_ok()
459
487
if timeout is None:
460
488
timeout = self.timeout
461
489
self.last_checked_ok = datetime.datetime.utcnow()
462
gobject.source_remove(self.disable_initiator_tag)
463
self.expires = datetime.datetime.utcnow() + timeout
464
self.disable_initiator_tag = (gobject.timeout_add
465
(_timedelta_to_milliseconds(timeout),
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
468
498
def need_approval(self):
469
499
self.last_approval_request = datetime.datetime.utcnow()
562
592
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
564
641
def dbus_service_property(dbus_interface, signature="v",
565
642
access="readwrite", byte_arrays=False):
566
643
"""Decorators for marking methods of a DBusObjectWithProperties to
625
702
def _get_all_dbus_properties(self):
626
703
"""Returns a generator of (name, attribute) pairs
628
return ((prop._dbus_name, prop)
705
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
706
for cls in self.__class__.__mro__
629
707
for name, prop in
630
inspect.getmembers(self, self._is_dbus_property))
708
inspect.getmembers(cls, self._is_dbus_property))
632
710
def _get_dbus_property(self, interface_name, property_name):
633
711
"""Returns a bound method if one exists which is a D-Bus
634
712
property with the specified name and interface.
636
for name in (property_name,
637
property_name + "_dbus_property"):
638
prop = getattr(self, name, None)
640
or not self._is_dbus_property(prop)
641
or prop._dbus_name != property_name
642
or (interface_name and prop._dbus_interface
643
and interface_name != prop._dbus_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)
646
721
# No such property
647
722
raise DBusPropertyNotFound(self.dbus_object_path + ":"
648
723
+ interface_name + "."
757
832
return dbus.String(dt.isoformat(),
758
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)
760
932
class ClientDBus(Client, DBusObjectWithProperties):
761
933
"""A Client class using D-Bus
787
960
def notifychangeproperty(transform_func,
788
961
dbus_name, type_func=lambda x: x,
789
962
variant_level=1):
790
""" Modify a variable so that its a property that announce its
792
transform_fun: Function that takes a value and transform it to
794
dbus_name: DBus name of the variable
963
""" Modify a variable so that it's a property which announces
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
795
969
type_func: Function that transform the value before sending it
797
variant_level: DBus variant level. default: 1
970
to the D-Bus. Default: no transform
971
variant_level: D-Bus variant level. Default: 1
973
attrname = "_{0}".format(dbus_name)
800
974
def setter(self, value):
801
old_value = real_value[0]
802
real_value[0] = value
803
975
if hasattr(self, "dbus_object_path"):
804
if type_func(old_value) != type_func(real_value[0]):
805
dbus_value = transform_func(type_func(real_value[0]),
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),
807
982
self.PropertyChanged(dbus.String(dbus_name),
810
return property(lambda self: real_value[0], setter)
984
setattr(self, attrname, value)
986
return property(lambda self: getattr(self, attrname), setter)
813
989
expires = notifychangeproperty(datetime_to_dbus, "Expires")
814
990
approvals_pending = notifychangeproperty(dbus.Boolean,
815
991
"ApprovalPending",
818
994
last_enabled = notifychangeproperty(datetime_to_dbus,
820
996
checker = notifychangeproperty(dbus.Boolean, "CheckerRunning",
821
type_func = lambda checker: checker is not None)
997
type_func = lambda checker:
822
999
last_checked_ok = notifychangeproperty(datetime_to_dbus,
823
1000
"LastCheckedOK")
824
last_approval_request = notifychangeproperty(datetime_to_dbus,
825
"LastApprovalRequest")
1001
last_approval_request = notifychangeproperty(
1002
datetime_to_dbus, "LastApprovalRequest")
826
1003
approved_by_default = notifychangeproperty(dbus.Boolean,
827
1004
"ApprovedByDefault")
828
approval_delay = notifychangeproperty(dbus.UInt16, "ApprovalDelay",
829
type_func = _timedelta_to_milliseconds)
830
approval_duration = notifychangeproperty(dbus.UInt16, "ApprovalDuration",
831
type_func = _timedelta_to_milliseconds)
1005
approval_delay = notifychangeproperty(dbus.UInt16,
1008
_timedelta_to_milliseconds)
1009
approval_duration = notifychangeproperty(
1010
dbus.UInt16, "ApprovalDuration",
1011
type_func = _timedelta_to_milliseconds)
832
1012
host = notifychangeproperty(dbus.String, "Host")
833
1013
timeout = notifychangeproperty(dbus.UInt16, "Timeout",
834
type_func = _timedelta_to_milliseconds)
835
extended_timeout = notifychangeproperty(dbus.UInt16, "ExtendedTimeout",
836
type_func = _timedelta_to_milliseconds)
837
interval = notifychangeproperty(dbus.UInt16, "Interval",
838
type_func = _timedelta_to_milliseconds)
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)
839
1023
checker_command = notifychangeproperty(dbus.String, "Checker")
841
1025
del notifychangeproperty
1185
1371
unicode(self.client_address))
1186
1372
logger.debug("Pipe FD: %d",
1187
1373
self.server.child_pipe.fileno())
1189
1375
session = (gnutls.connection
1190
1376
.ClientSession(self.request,
1191
1377
gnutls.connection
1192
1378
.X509Credentials()))
1194
1380
# Note: gnutls.connection.X509Credentials is really a
1195
1381
# generic GnuTLS certificate credentials object so long as
1196
1382
# no X.509 keys are added to it. Therefore, we can use it
1197
1383
# here despite using OpenPGP certificates.
1199
1385
#priority = ':'.join(("NONE", "+VERS-TLS1.1",
1200
1386
# "+AES-256-CBC", "+SHA1",
1201
1387
# "+COMP-NULL", "+CTYPE-OPENPGP",
1413
1604
This function creates a new pipe in self.pipe
1415
1606
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1417
super(MultiprocessingMixInWithPipe,
1418
self).process_request(request, client_address)
1608
proc = MultiprocessingMixIn.process_request(self, request,
1419
1610
self.child_pipe.close()
1420
self.add_pipe(parent_pipe)
1422
def add_pipe(self, parent_pipe):
1611
self.add_pipe(parent_pipe, proc)
1613
def add_pipe(self, parent_pipe, proc):
1423
1614
"""Dummy function; override as necessary"""
1424
1615
raise NotImplementedError
1426
1618
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1427
1619
socketserver.TCPServer, object):
1428
1620
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1512
1704
def server_activate(self):
1513
1705
if self.enabled:
1514
1706
return socketserver.TCPServer.server_activate(self)
1515
1708
def enable(self):
1516
1709
self.enabled = True
1517
def add_pipe(self, parent_pipe):
1711
def add_pipe(self, parent_pipe, proc):
1518
1712
# Call "handle_ipc" for both data and EOF events
1519
1713
gobject.io_add_watch(parent_pipe.fileno(),
1520
1714
gobject.IO_IN | gobject.IO_HUP,
1521
1715
functools.partial(self.handle_ipc,
1522
parent_pipe = parent_pipe))
1524
1720
def handle_ipc(self, source, condition, parent_pipe=None,
1525
client_object=None):
1721
proc = None, client_object=None):
1526
1722
condition_names = {
1527
1723
gobject.IO_IN: "IN", # There is data to read.
1528
1724
gobject.IO_OUT: "OUT", # Data can be written (without
1558
1756
"dress: %s", fpr, address)
1559
1757
if self.use_dbus:
1560
1758
# Emit D-Bus signal
1561
mandos_dbus_service.ClientNotFound(fpr, address[0])
1759
mandos_dbus_service.ClientNotFound(fpr,
1562
1761
parent_pipe.send(False)
1565
1764
gobject.io_add_watch(parent_pipe.fileno(),
1566
1765
gobject.IO_IN | gobject.IO_HUP,
1567
1766
functools.partial(self.handle_ipc,
1568
parent_pipe = parent_pipe,
1569
client_object = client))
1570
1772
parent_pipe.send(True)
1571
# remove the old hook in favor of the new above hook on same fileno
1773
# remove the old hook in favor of the new above hook on
1573
1776
if command == 'funcall':
1574
1777
funcname = request[1]
1575
1778
args = request[2]
1576
1779
kwargs = request[3]
1578
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1781
parent_pipe.send(('data', getattr(client_object,
1580
1785
if command == 'getattr':
1581
1786
attrname = request[1]
1582
1787
if callable(client_object.__getattribute__(attrname)):
1583
1788
parent_pipe.send(('function',))
1585
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1790
parent_pipe.send(('data', client_object
1791
.__getattribute__(attrname)))
1587
1793
if command == 'setattr':
1588
1794
attrname = request[1]
1589
1795
value = request[2]
1590
1796
setattr(client_object, attrname, value)
1877
2086
# End of Avahi example code
1880
bus_name = dbus.service.BusName("se.bsnet.fukt.Mandos",
2089
bus_name = dbus.service.BusName("se.recompile.Mandos",
1881
2090
bus, do_not_queue=True)
2091
old_bus_name = (dbus.service.BusName
2092
("se.bsnet.fukt.Mandos", bus,
1882
2094
except dbus.exceptions.NameExistsException as e:
1883
2095
logger.error(unicode(e) + ", disabling D-Bus")
1884
2096
use_dbus = False
1885
2097
server_settings["use_dbus"] = False
1886
2098
tcp_server.use_dbus = False
1887
2099
protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
1888
service = AvahiService(name = server_settings["servicename"],
1889
servicetype = "_mandos._tcp",
1890
protocol = protocol, bus = bus)
2100
service = AvahiServiceToSyslog(name =
2101
server_settings["servicename"],
2102
servicetype = "_mandos._tcp",
2103
protocol = protocol, bus = bus)
1891
2104
if server_settings["interface"]:
1892
2105
service.interface = (if_nametoindex
1893
2106
(str(server_settings["interface"])))
1898
2111
client_class = Client
1900
client_class = functools.partial(ClientDBus, bus = bus)
1901
def client_config_items(config, section):
1902
special_settings = {
1903
"approved_by_default":
1904
lambda: config.getboolean(section,
1905
"approved_by_default"),
1907
for name, value in config.items(section):
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():
1909
yield (name, special_settings[name]())
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)
1910
2162
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,
1913
tcp_server.clients.update(set(
1914
client_class(name = section,
1915
config= dict(client_config_items(
1916
client_config, section)))
1917
for section in client_config.sections()))
1918
2211
if not tcp_server.clients:
1919
2212
logger.warning("No clients defined")
1993
mandos_dbus_service = MandosDBusService()
2287
class MandosDBusServiceTransitional(MandosDBusService):
2288
__metaclass__ = AlternateDBusNamesMetaclass
2289
mandos_dbus_service = MandosDBusServiceTransitional()
1996
2292
"Cleanup function; run on exit"
1997
2293
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
1999
2330
while tcp_server.clients:
2000
client = tcp_server.clients.pop()
2331
name, client = tcp_server.clients.popitem()
2002
2333
client.remove_from_connection()
2003
client.disable_hook = None
2004
2334
# Don't signal anything except ClientRemoved
2005
2335
client.disable(quiet=True)
2007
2337
# Emit D-Bus signal
2008
mandos_dbus_service.ClientRemoved(client.dbus_object_path,
2338
mandos_dbus_service.ClientRemoved(client
2341
client_settings.clear()
2011
2343
atexit.register(cleanup)
2013
for client in tcp_server.clients:
2345
for client in tcp_server.clients.itervalues():
2015
2347
# Emit D-Bus signal
2016
2348
mandos_dbus_service.ClientAdded(client.dbus_object_path)
2349
# Need to initiate checking of clients
2351
client.init_checker()
2019
2354
tcp_server.enable()
2020
2355
tcp_server.server_activate()