158
165
" after %i retries, exiting.",
159
166
self.rename_count)
160
167
raise AvahiServiceError("Too many renames")
161
self.name = unicode(self.server.GetAlternativeServiceName(self.name))
168
self.name = unicode(self.server
169
.GetAlternativeServiceName(self.name))
162
170
logger.info("Changing Zeroconf service name to %r ...",
164
syslogger.setFormatter(logging.Formatter
165
('Mandos (%s) [%%(process)d]:'
166
' %%(levelname)s: %%(message)s'
171
except dbus.exceptions.DBusException, error:
175
except dbus.exceptions.DBusException as error:
172
176
logger.critical("DBusException: %s", error)
175
179
self.rename_count += 1
176
180
def remove(self):
177
181
"""Derived from the Avahi example code"""
182
if self.entry_group_state_changed_match is not None:
183
self.entry_group_state_changed_match.remove()
184
self.entry_group_state_changed_match = None
178
185
if self.group is not None:
179
186
self.group.Reset()
181
188
"""Derived from the Avahi example code"""
182
190
if self.group is None:
183
191
self.group = dbus.Interface(
184
192
self.bus.get_object(avahi.DBUS_NAME,
185
193
self.server.EntryGroupNew()),
186
194
avahi.DBUS_INTERFACE_ENTRY_GROUP)
187
self.group.connect_to_signal('StateChanged',
189
.entry_group_state_changed)
195
self.entry_group_state_changed_match = (
196
self.group.connect_to_signal(
197
'StateChanged', self.entry_group_state_changed))
190
198
logger.debug("Adding Zeroconf service '%s' of type '%s' ...",
191
199
self.name, self.type)
192
200
self.group.AddService(
215
223
def cleanup(self):
216
224
"""Derived from the Avahi example code"""
217
225
if self.group is not None:
228
except (dbus.exceptions.UnknownMethodException,
229
dbus.exceptions.DBusException) as e:
219
231
self.group = None
220
def server_state_changed(self, state):
233
def server_state_changed(self, state, error=None):
221
234
"""Derived from the Avahi example code"""
222
235
logger.debug("Avahi server state change: %i", state)
223
if state == avahi.SERVER_COLLISION:
224
logger.error("Zeroconf server name collision")
236
bad_states = { avahi.SERVER_INVALID:
237
"Zeroconf server invalid",
238
avahi.SERVER_REGISTERING: None,
239
avahi.SERVER_COLLISION:
240
"Zeroconf server name collision",
241
avahi.SERVER_FAILURE:
242
"Zeroconf server failure" }
243
if state in bad_states:
244
if bad_states[state] is not None:
246
logger.error(bad_states[state])
248
logger.error(bad_states[state] + ": %r", error)
226
250
elif state == avahi.SERVER_RUNNING:
254
logger.debug("Unknown state: %r", state)
256
logger.debug("Unknown state: %r: %r", state, error)
228
257
def activate(self):
229
258
"""Derived from the Avahi example code"""
230
259
if self.server is None:
231
260
self.server = dbus.Interface(
232
261
self.bus.get_object(avahi.DBUS_NAME,
233
avahi.DBUS_PATH_SERVER),
262
avahi.DBUS_PATH_SERVER,
263
follow_name_owner_changes=True),
234
264
avahi.DBUS_INTERFACE_SERVER)
235
265
self.server.connect_to_signal("StateChanged",
236
266
self.server_state_changed)
237
267
self.server_state_changed(self.server.GetState())
269
class AvahiServiceToSyslog(AvahiService):
271
"""Add the new name to the syslog messages"""
272
ret = AvahiService.rename(self)
273
syslogger.setFormatter(logging.Formatter
274
('Mandos (%s) [%%(process)d]:'
275
' %%(levelname)s: %%(message)s'
279
def _timedelta_to_milliseconds(td):
280
"Convert a datetime.timedelta() to milliseconds"
281
return ((td.days * 24 * 60 * 60 * 1000)
282
+ (td.seconds * 1000)
283
+ (td.microseconds // 1000))
240
285
class Client(object):
241
286
"""A representation of a client host served by this server.
264
310
interval: datetime.timedelta(); How often to start a new checker
265
311
last_approval_request: datetime.datetime(); (UTC) or None
266
312
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,
267
316
last_enabled: datetime.datetime(); (UTC)
268
317
name: string; from the config file, used in log messages and
269
318
D-Bus identifiers
270
319
secret: bytestring; sent verbatim (over TLS) to client
271
320
timeout: datetime.timedelta(); How long from last_checked_ok
272
321
until this client is disabled
322
extended_timeout: extra long timeout when password has been sent
273
323
runtime_expansions: Allowed attributes for runtime expansion.
324
expires: datetime.datetime(); time (UTC) when a client will be
276
328
runtime_expansions = ("approval_delay", "approval_duration",
278
330
"host", "interval", "last_checked_ok",
279
331
"last_enabled", "name", "timeout")
282
def _timedelta_to_milliseconds(td):
283
"Convert a datetime.timedelta() to milliseconds"
284
return ((td.days * 24 * 60 * 60 * 1000)
285
+ (td.seconds * 1000)
286
+ (td.microseconds // 1000))
288
333
def timeout_milliseconds(self):
289
334
"Return the 'timeout' attribute in milliseconds"
290
return self._timedelta_to_milliseconds(self.timeout)
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)
292
341
def interval_milliseconds(self):
293
342
"Return the 'interval' attribute in milliseconds"
294
return self._timedelta_to_milliseconds(self.interval)
343
return _timedelta_to_milliseconds(self.interval)
296
345
def approval_delay_milliseconds(self):
297
return self._timedelta_to_milliseconds(self.approval_delay)
346
return _timedelta_to_milliseconds(self.approval_delay)
299
def __init__(self, name = None, disable_hook=None, config=None):
348
def __init__(self, name = None, config=None):
300
349
"""Note: the 'checker' key in 'config' sets the
301
350
'checker_command' attribute and *not* the 'checker'
323
372
self.host = config.get("host", "")
324
373
self.created = datetime.datetime.utcnow()
326
375
self.last_approval_request = None
327
self.last_enabled = None
376
self.last_enabled = datetime.datetime.utcnow()
328
377
self.last_checked_ok = None
378
self.last_checker_status = None
329
379
self.timeout = string_to_delta(config["timeout"])
380
self.extended_timeout = string_to_delta(config
381
["extended_timeout"])
330
382
self.interval = string_to_delta(config["interval"])
331
self.disable_hook = disable_hook
332
383
self.checker = None
333
384
self.checker_initiator_tag = None
334
385
self.disable_initiator_tag = None
386
self.expires = datetime.datetime.utcnow() + self.timeout
335
387
self.checker_callback_tag = None
336
388
self.checker_command = config["checker"]
337
389
self.current_checker_command = None
338
self.last_connect = None
339
390
self._approved = None
340
391
self.approved_by_default = config.get("approved_by_default",
344
395
config["approval_delay"])
345
396
self.approval_duration = string_to_delta(
346
397
config["approval_duration"])
347
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
349
411
def send_changedstate(self):
350
self.changedstate.acquire()
351
self.changedstate.notify_all()
352
self.changedstate.release()
412
with self.changedstate:
413
self.changedstate.notify_all()
354
415
def enable(self):
355
416
"""Start this client's checker and timeout hooks"""
356
417
if getattr(self, "enabled", False):
357
418
# Already enabled
359
420
self.send_changedstate()
421
self.expires = datetime.datetime.utcnow() + self.timeout
360
423
self.last_enabled = datetime.datetime.utcnow()
361
# Schedule a new checker to be started an 'interval' from now,
362
# and every interval from then on.
363
self.checker_initiator_tag = (gobject.timeout_add
364
(self.interval_milliseconds(),
366
# Schedule a disable() when 'timeout' has passed
367
self.disable_initiator_tag = (gobject.timeout_add
368
(self.timeout_milliseconds(),
371
# Also start a new checker *right now*.
374
426
def disable(self, quiet=True):
375
427
"""Disable this client."""
382
434
if getattr(self, "disable_initiator_tag", False):
383
435
gobject.source_remove(self.disable_initiator_tag)
384
436
self.disable_initiator_tag = None
385
438
if getattr(self, "checker_initiator_tag", False):
386
439
gobject.source_remove(self.checker_initiator_tag)
387
440
self.checker_initiator_tag = None
388
441
self.stop_checker()
389
if self.disable_hook:
390
self.disable_hook(self)
391
442
self.enabled = False
392
443
# Do not run this again if called by a gobject.timeout_add
395
446
def __del__(self):
396
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*.
399
463
def checker_callback(self, pid, condition, command):
400
464
"""The checker has completed, so take appropriate actions."""
401
465
self.checker_callback_tag = None
402
466
self.checker = None
403
467
if os.WIFEXITED(condition):
404
exitstatus = os.WEXITSTATUS(condition)
468
self.last_checker_status = os.WEXITSTATUS(condition)
469
if self.last_checker_status == 0:
406
470
logger.info("Checker for %(name)s succeeded",
408
472
self.checked_ok()
410
474
logger.info("Checker for %(name)s failed",
477
self.last_checker_status = -1
413
478
logger.warning("Checker for %(name)s crashed?",
416
def checked_ok(self):
481
def checked_ok(self, timeout=None):
417
482
"""Bump up the timeout for this client.
419
484
This should only be called when the client has been seen,
488
timeout = self.timeout
422
489
self.last_checked_ok = datetime.datetime.utcnow()
423
gobject.source_remove(self.disable_initiator_tag)
424
self.disable_initiator_tag = (gobject.timeout_add
425
(self.timeout_milliseconds(),
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
428
498
def need_approval(self):
429
499
self.last_approval_request = datetime.datetime.utcnow()
517
587
#if self.checker.poll() is None:
518
588
# os.kill(self.checker.pid, signal.SIGKILL)
519
except OSError, error:
589
except OSError as error:
520
590
if error.errno != errno.ESRCH: # No such process
522
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
524
641
def dbus_service_property(dbus_interface, signature="v",
525
642
access="readwrite", byte_arrays=False):
526
643
"""Decorators for marking methods of a DBusObjectWithProperties to
585
702
def _get_all_dbus_properties(self):
586
703
"""Returns a generator of (name, attribute) pairs
588
return ((prop._dbus_name, prop)
705
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
706
for cls in self.__class__.__mro__
589
707
for name, prop in
590
inspect.getmembers(self, self._is_dbus_property))
708
inspect.getmembers(cls, self._is_dbus_property))
592
710
def _get_dbus_property(self, interface_name, property_name):
593
711
"""Returns a bound method if one exists which is a D-Bus
594
712
property with the specified name and interface.
596
for name in (property_name,
597
property_name + "_dbus_property"):
598
prop = getattr(self, name, None)
600
or not self._is_dbus_property(prop)
601
or prop._dbus_name != property_name
602
or (interface_name and prop._dbus_interface
603
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)
606
721
# No such property
607
722
raise DBusPropertyNotFound(self.dbus_object_path + ":"
608
723
+ interface_name + "."
704
819
xmlstring = document.toxml("utf-8")
705
820
document.unlink()
706
821
except (AttributeError, xml.dom.DOMException,
707
xml.parsers.expat.ExpatError), error:
822
xml.parsers.expat.ExpatError) as error:
708
823
logger.error("Failed to override Introspection method",
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)
713
932
class ClientDBus(Client, DBusObjectWithProperties):
714
933
"""A Client class using D-Bus
737
957
DBusObjectWithProperties.__init__(self, self.bus,
738
958
self.dbus_object_path)
740
def _get_approvals_pending(self):
741
return self._approvals_pending
742
def _set_approvals_pending(self, value):
743
old_value = self._approvals_pending
744
self._approvals_pending = value
746
if (hasattr(self, "dbus_object_path")
747
and bval is not bool(old_value)):
748
dbus_bool = dbus.Boolean(bval, variant_level=1)
749
self.PropertyChanged(dbus.String("ApprovalPending"),
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
752
approvals_pending = property(_get_approvals_pending,
753
_set_approvals_pending)
754
del _get_approvals_pending, _set_approvals_pending
757
def _datetime_to_dbus(dt, variant_level=0):
758
"""Convert a UTC datetime.datetime() to a D-Bus type."""
759
return dbus.String(dt.isoformat(),
760
variant_level=variant_level)
763
oldstate = getattr(self, "enabled", False)
764
r = Client.enable(self)
765
if oldstate != self.enabled:
767
self.PropertyChanged(dbus.String("Enabled"),
768
dbus.Boolean(True, variant_level=1))
769
self.PropertyChanged(
770
dbus.String("LastEnabled"),
771
self._datetime_to_dbus(self.last_enabled,
775
def disable(self, quiet = False):
776
oldstate = getattr(self, "enabled", False)
777
r = Client.disable(self, quiet=quiet)
778
if not quiet and oldstate != self.enabled:
780
self.PropertyChanged(dbus.String("Enabled"),
781
dbus.Boolean(False, variant_level=1))
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
784
1027
def __del__(self, *args, **kwargs):
812
1052
return Client.checker_callback(self, pid, condition, command,
813
1053
*args, **kwargs)
815
def checked_ok(self, *args, **kwargs):
816
r = Client.checked_ok(self, *args, **kwargs)
818
self.PropertyChanged(
819
dbus.String("LastCheckedOK"),
820
(self._datetime_to_dbus(self.last_checked_ok,
824
def need_approval(self, *args, **kwargs):
825
r = Client.need_approval(self, *args, **kwargs)
827
self.PropertyChanged(
828
dbus.String("LastApprovalRequest"),
829
(self._datetime_to_dbus(self.last_approval_request,
833
1055
def start_checker(self, *args, **kwargs):
834
1056
old_checker = self.checker
835
1057
if self.checker is not None:
842
1064
and old_checker_pid != self.checker.pid):
843
1065
# Emit D-Bus signal
844
1066
self.CheckerStarted(self.current_checker_command)
845
self.PropertyChanged(
846
dbus.String("CheckerRunning"),
847
dbus.Boolean(True, variant_level=1))
850
def stop_checker(self, *args, **kwargs):
851
old_checker = getattr(self, "checker", None)
852
r = Client.stop_checker(self, *args, **kwargs)
853
if (old_checker is not None
854
and getattr(self, "checker", None) is None):
855
self.PropertyChanged(dbus.String("CheckerRunning"),
856
dbus.Boolean(False, variant_level=1))
859
1069
def _reset_approved(self):
860
1070
self._approved = None
972
1187
if value is None: # get
973
1188
return dbus.UInt64(self.approval_delay_milliseconds())
974
1189
self.approval_delay = datetime.timedelta(0, 0, 0, value)
976
self.PropertyChanged(dbus.String("ApprovalDelay"),
977
dbus.UInt64(value, variant_level=1))
979
1191
# ApprovalDuration - property
980
1192
@dbus_service_property(_interface, signature="t",
981
1193
access="readwrite")
982
1194
def ApprovalDuration_dbus_property(self, value=None):
983
1195
if value is None: # get
984
return dbus.UInt64(self._timedelta_to_milliseconds(
1196
return dbus.UInt64(_timedelta_to_milliseconds(
985
1197
self.approval_duration))
986
1198
self.approval_duration = datetime.timedelta(0, 0, 0, value)
988
self.PropertyChanged(dbus.String("ApprovalDuration"),
989
dbus.UInt64(value, variant_level=1))
991
1200
# Name - property
992
1201
@dbus_service_property(_interface, signature="s", access="read")
1005
1214
if value is None: # get
1006
1215
return dbus.String(self.host)
1007
1216
self.host = value
1009
self.PropertyChanged(dbus.String("Host"),
1010
dbus.String(value, variant_level=1))
1012
1218
# Created - property
1013
1219
@dbus_service_property(_interface, signature="s", access="read")
1014
1220
def Created_dbus_property(self):
1015
return dbus.String(self._datetime_to_dbus(self.created))
1221
return dbus.String(datetime_to_dbus(self.created))
1017
1223
# LastEnabled - property
1018
1224
@dbus_service_property(_interface, signature="s", access="read")
1019
1225
def LastEnabled_dbus_property(self):
1020
if self.last_enabled is None:
1021
return dbus.String("")
1022
return dbus.String(self._datetime_to_dbus(self.last_enabled))
1226
return datetime_to_dbus(self.last_enabled)
1024
1228
# Enabled - property
1025
1229
@dbus_service_property(_interface, signature="b",
1060
1262
if value is None: # get
1061
1263
return dbus.UInt64(self.timeout_milliseconds())
1062
1264
self.timeout = datetime.timedelta(0, 0, 0, value)
1064
self.PropertyChanged(dbus.String("Timeout"),
1065
dbus.UInt64(value, variant_level=1))
1066
1265
if getattr(self, "disable_initiator_tag", None) is None:
1068
1267
# Reschedule timeout
1069
1268
gobject.source_remove(self.disable_initiator_tag)
1070
1269
self.disable_initiator_tag = None
1071
time_to_die = (self.
1072
_timedelta_to_milliseconds((self
1271
time_to_die = _timedelta_to_milliseconds((self
1077
1276
if time_to_die <= 0:
1078
1277
# The timeout has passed
1280
self.expires = (datetime.datetime.utcnow()
1281
+ datetime.timedelta(milliseconds =
1081
1283
self.disable_initiator_tag = (gobject.timeout_add
1082
1284
(time_to_die, self.disable))
1286
# ExtendedTimeout - property
1287
@dbus_service_property(_interface, signature="t",
1289
def ExtendedTimeout_dbus_property(self, value=None):
1290
if value is None: # get
1291
return dbus.UInt64(self.extended_timeout_milliseconds())
1292
self.extended_timeout = datetime.timedelta(0, 0, 0, value)
1084
1294
# Interval - property
1085
1295
@dbus_service_property(_interface, signature="t",
1086
1296
access="readwrite")
1205
1410
if int(line.strip().split()[0]) > 1:
1206
1411
raise RuntimeError
1207
except (ValueError, IndexError, RuntimeError), error:
1412
except (ValueError, IndexError, RuntimeError) as error:
1208
1413
logger.error("Unknown protocol version: %s", error)
1211
1416
# Start GnuTLS connection
1213
1418
session.handshake()
1214
except gnutls.errors.GNUTLSError, error:
1419
except gnutls.errors.GNUTLSError as error:
1215
1420
logger.warning("Handshake failed: %s", error)
1216
1421
# Do not run session.bye() here: the session is not
1217
1422
# established. Just abandon the request.
1219
1424
logger.debug("Handshake succeeded")
1221
1426
approval_required = False
1224
1429
fpr = self.fingerprint(self.peer_certificate
1226
except (TypeError, gnutls.errors.GNUTLSError), error:
1432
gnutls.errors.GNUTLSError) as error:
1227
1433
logger.warning("Bad certificate: %s", error)
1229
1435
logger.debug("Fingerprint: %s", fpr)
1436
if self.server.use_dbus:
1438
client.NewRequest(str(self.client_address))
1232
1441
client = ProxyClient(child_pipe, fpr,
1233
1442
self.client_address)
1401
1615
This function creates a new pipe in self.pipe
1403
1617
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1405
super(MultiprocessingMixInWithPipe,
1406
self).process_request(request, client_address)
1619
proc = MultiprocessingMixIn.process_request(self, request,
1407
1621
self.child_pipe.close()
1408
self.add_pipe(parent_pipe)
1410
def add_pipe(self, parent_pipe):
1622
self.add_pipe(parent_pipe, proc)
1624
def add_pipe(self, parent_pipe, proc):
1411
1625
"""Dummy function; override as necessary"""
1412
1626
raise NotImplementedError
1414
1629
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1415
1630
socketserver.TCPServer, object):
1416
1631
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1500
1715
def server_activate(self):
1501
1716
if self.enabled:
1502
1717
return socketserver.TCPServer.server_activate(self)
1503
1719
def enable(self):
1504
1720
self.enabled = True
1505
def add_pipe(self, parent_pipe):
1722
def add_pipe(self, parent_pipe, proc):
1506
1723
# Call "handle_ipc" for both data and EOF events
1507
1724
gobject.io_add_watch(parent_pipe.fileno(),
1508
1725
gobject.IO_IN | gobject.IO_HUP,
1509
1726
functools.partial(self.handle_ipc,
1510
parent_pipe = parent_pipe))
1512
1731
def handle_ipc(self, source, condition, parent_pipe=None,
1513
client_object=None):
1732
proc = None, client_object=None):
1514
1733
condition_names = {
1515
1734
gobject.IO_IN: "IN", # There is data to read.
1516
1735
gobject.IO_OUT: "OUT", # Data can be written (without
1537
1758
fpr = request[1]
1538
1759
address = request[2]
1540
for c in self.clients:
1761
for c in self.clients.itervalues():
1541
1762
if c.fingerprint == fpr:
1545
logger.warning("Client not found for fingerprint: %s, ad"
1546
"dress: %s", fpr, address)
1766
logger.info("Client not found for fingerprint: %s, ad"
1767
"dress: %s", fpr, address)
1547
1768
if self.use_dbus:
1548
1769
# Emit D-Bus signal
1549
mandos_dbus_service.ClientNotFound(fpr, address[0])
1770
mandos_dbus_service.ClientNotFound(fpr,
1550
1772
parent_pipe.send(False)
1553
1775
gobject.io_add_watch(parent_pipe.fileno(),
1554
1776
gobject.IO_IN | gobject.IO_HUP,
1555
1777
functools.partial(self.handle_ipc,
1556
parent_pipe = parent_pipe,
1557
client_object = client))
1558
1783
parent_pipe.send(True)
1559
# remove the old hook in favor of the new above hook on same fileno
1784
# remove the old hook in favor of the new above hook on
1561
1787
if command == 'funcall':
1562
1788
funcname = request[1]
1563
1789
args = request[2]
1564
1790
kwargs = request[3]
1566
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1792
parent_pipe.send(('data', getattr(client_object,
1568
1796
if command == 'getattr':
1569
1797
attrname = request[1]
1570
1798
if callable(client_object.__getattribute__(attrname)):
1571
1799
parent_pipe.send(('function',))
1573
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1801
parent_pipe.send(('data', client_object
1802
.__getattribute__(attrname)))
1575
1804
if command == 'setattr':
1576
1805
attrname = request[1]
1577
1806
value = request[2]
1578
1807
setattr(client_object, attrname, value)
1864
2097
# End of Avahi example code
1867
bus_name = dbus.service.BusName("se.bsnet.fukt.Mandos",
2100
bus_name = dbus.service.BusName("se.recompile.Mandos",
1868
2101
bus, do_not_queue=True)
1869
except dbus.exceptions.NameExistsException, e:
2102
old_bus_name = (dbus.service.BusName
2103
("se.bsnet.fukt.Mandos", bus,
2105
except dbus.exceptions.NameExistsException as e:
1870
2106
logger.error(unicode(e) + ", disabling D-Bus")
1871
2107
use_dbus = False
1872
2108
server_settings["use_dbus"] = False
1873
2109
tcp_server.use_dbus = False
1874
2110
protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
1875
service = AvahiService(name = server_settings["servicename"],
1876
servicetype = "_mandos._tcp",
1877
protocol = protocol, bus = bus)
2111
service = AvahiServiceToSyslog(name =
2112
server_settings["servicename"],
2113
servicetype = "_mandos._tcp",
2114
protocol = protocol, bus = bus)
1878
2115
if server_settings["interface"]:
1879
2116
service.interface = (if_nametoindex
1880
2117
(str(server_settings["interface"])))
1885
2122
client_class = Client
1887
client_class = functools.partial(ClientDBus, bus = bus)
1888
def client_config_items(config, section):
1889
special_settings = {
1890
"approved_by_default":
1891
lambda: config.getboolean(section,
1892
"approved_by_default"),
1894
for name, value in config.items(section):
2124
client_class = functools.partial(ClientDBusTransitional,
2127
special_settings = {
2128
# Some settings need to be accessd by special methods;
2129
# booleans need .getboolean(), etc. Here is a list of them:
2130
"approved_by_default":
2132
client_config.getboolean(section, "approved_by_default"),
2134
# Construct a new dict of client settings of this form:
2135
# { client_name: {setting_name: value, ...}, ...}
2136
# with exceptions for any special settings as defined above
2137
client_settings = dict((clientname,
2139
(value if setting not in special_settings
2140
else special_settings[setting](clientname)))
2141
for setting, value in client_config.items(clientname)))
2142
for clientname in client_config.sections())
2144
old_client_settings = {}
2147
# Get client data and settings from last running state.
2148
if server_settings["restore"]:
2150
with open(stored_state_path, "rb") as stored_state:
2151
clients_data, old_client_settings = pickle.load(stored_state)
2152
os.remove(stored_state_path)
2153
except IOError as e:
2154
logger.warning("Could not load persistant state: {0}".format(e))
2155
if e.errno != errno.ENOENT:
2158
for client in clients_data:
2159
client_name = client["name"]
2161
# Decide which value to use after restoring saved state.
2162
# We have three different values: Old config file,
2163
# new config file, and saved state.
2164
# New config value takes precedence if it differs from old
2165
# config value, otherwise use saved state.
2166
for name, value in client_settings[client_name].items():
1896
yield (name, special_settings[name]())
2168
# For each value in new config, check if it differs
2169
# from the old config value (Except for the "secret"
2171
if name != "secret" and value != old_client_settings[client_name][name]:
2172
setattr(client, name, value)
1897
2173
except KeyError:
2176
# Clients who has passed its expire date, can still be enabled if its
2177
# last checker was sucessful. Clients who checkers failed before we
2178
# stored it state is asumed to had failed checker during downtime.
2179
if client["enabled"] and client["last_checked_ok"]:
2180
if ((datetime.datetime.utcnow() - client["last_checked_ok"])
2181
> client["interval"]):
2182
if client["last_checker_status"] != 0:
2183
client["enabled"] = False
2185
client["expires"] = datetime.datetime.utcnow() + client["timeout"]
2187
client["changedstate"] = (multiprocessing_manager
2188
.Condition(multiprocessing_manager
2191
new_client = ClientDBusTransitional.__new__(ClientDBusTransitional)
2192
tcp_server.clients[client_name] = new_client
2193
new_client.bus = bus
2194
for name, value in client.iteritems():
2195
setattr(new_client, name, value)
2196
client_object_name = unicode(client_name).translate(
2197
{ord("."): ord("_"),
2198
ord("-"): ord("_")})
2199
new_client.dbus_object_path = (dbus.ObjectPath
2200
("/clients/" + client_object_name))
2201
DBusObjectWithProperties.__init__(new_client,
2203
new_client.dbus_object_path)
2205
tcp_server.clients[client_name] = Client.__new__(Client)
2206
for name, value in client.iteritems():
2207
setattr(tcp_server.clients[client_name], name, value)
2209
tcp_server.clients[client_name].decrypt_secret(
2210
client_settings[client_name]["secret"])
2212
# Create/remove clients based on new changes made to config
2213
for clientname in set(old_client_settings) - set(client_settings):
2214
del tcp_server.clients[clientname]
2215
for clientname in set(client_settings) - set(old_client_settings):
2216
tcp_server.clients[clientname] = (client_class(name = clientname,
1900
tcp_server.clients.update(set(
1901
client_class(name = section,
1902
config= dict(client_config_items(
1903
client_config, section)))
1904
for section in client_config.sections()))
1905
2222
if not tcp_server.clients:
1906
2223
logger.warning("No clients defined")
1980
mandos_dbus_service = MandosDBusService()
2298
class MandosDBusServiceTransitional(MandosDBusService):
2299
__metaclass__ = AlternateDBusNamesMetaclass
2300
mandos_dbus_service = MandosDBusServiceTransitional()
1983
2303
"Cleanup function; run on exit"
1984
2304
service.cleanup()
2306
multiprocessing.active_children()
2307
if not (tcp_server.clients or client_settings):
2310
# Store client before exiting. Secrets are encrypted with key based
2311
# on what config file has. If config file is removed/edited, old
2312
# secret will thus be unrecovable.
2314
for client in tcp_server.clients.itervalues():
2315
client.encrypt_secret(client_settings[client.name]["secret"])
2319
# A list of attributes that will not be stored when shuting down.
2320
exclude = set(("bus", "changedstate", "secret"))
2321
for name, typ in inspect.getmembers(dbus.service.Object):
2324
client_dict["encrypted_secret"] = client.encrypted_secret
2325
for attr in client.client_structure:
2326
if attr not in exclude:
2327
client_dict[attr] = getattr(client, attr)
2329
clients.append(client_dict)
2330
del client_settings[client.name]["secret"]
2333
with os.fdopen(os.open(stored_state_path, os.O_CREAT|os.O_WRONLY|os.O_TRUNC, 0600), "wb") as stored_state:
2334
pickle.dump((clients, client_settings), stored_state)
2335
except IOError as e:
2336
logger.warning("Could not save persistant state: {0}".format(e))
2337
if e.errno != errno.ENOENT:
2340
# Delete all clients, and settings from config
1986
2341
while tcp_server.clients:
1987
client = tcp_server.clients.pop()
2342
name, client = tcp_server.clients.popitem()
1989
2344
client.remove_from_connection()
1990
client.disable_hook = None
1991
2345
# Don't signal anything except ClientRemoved
1992
2346
client.disable(quiet=True)
1994
2348
# Emit D-Bus signal
1995
mandos_dbus_service.ClientRemoved(client.dbus_object_path,
2349
mandos_dbus_service.ClientRemoved(client
2352
client_settings.clear()
1998
2354
atexit.register(cleanup)
2000
for client in tcp_server.clients:
2356
for client in tcp_server.clients.itervalues():
2002
2358
# Emit D-Bus signal
2003
2359
mandos_dbus_service.ClientAdded(client.dbus_object_path)
2360
# Need to initiate checking of clients
2362
client.init_checker()
2006
2365
tcp_server.enable()
2007
2366
tcp_server.server_activate()