86
101
except ImportError:
87
102
SO_BINDTODEVICE = None
104
if sys.version_info.major == 2:
90
108
stored_state_file = "clients.pickle"
92
110
logger = logging.getLogger()
93
syslogger = (logging.handlers.SysLogHandler
94
(facility = logging.handlers.SysLogHandler.LOG_DAEMON,
95
address = str("/dev/log")))
98
if_nametoindex = (ctypes.cdll.LoadLibrary
99
(ctypes.util.find_library("c"))
114
if_nametoindex = ctypes.cdll.LoadLibrary(
115
ctypes.util.find_library("c")).if_nametoindex
101
116
except (OSError, AttributeError):
102
118
def if_nametoindex(interface):
103
119
"Get an interface index the hard way, i.e. using fcntl()"
104
120
SIOCGIFINDEX = 0x8933 # From /usr/include/linux/sockios.h
105
121
with contextlib.closing(socket.socket()) as s:
106
122
ifreq = fcntl.ioctl(s, SIOCGIFINDEX,
107
struct.pack(str("16s16x"),
109
interface_index = struct.unpack(str("I"),
123
struct.pack(b"16s16x", interface))
124
interface_index = struct.unpack("I", ifreq[16:20])[0]
111
125
return interface_index
114
128
def initlogger(debug, level=logging.WARNING):
115
129
"""init logger and add loglevel"""
132
syslogger = (logging.handlers.SysLogHandler(
133
facility = logging.handlers.SysLogHandler.LOG_DAEMON,
134
address = "/dev/log"))
117
135
syslogger.setFormatter(logging.Formatter
118
136
('Mandos [%(process)d]: %(levelname)s:'
172
189
def password_encode(self, password):
173
190
# Passphrase can not be empty and can not contain newlines or
174
191
# NUL bytes. So we prefix it and hex encode it.
175
return b"mandos" + binascii.hexlify(password)
192
encoded = b"mandos" + binascii.hexlify(password)
193
if len(encoded) > 2048:
194
# GnuPG can't handle long passwords, so encode differently
195
encoded = (b"mandos" + password.replace(b"\\", b"\\\\")
196
.replace(b"\n", b"\\n")
197
.replace(b"\0", b"\\x00"))
177
200
def encrypt(self, data, password):
178
self.gnupg.passphrase = self.password_encode(password)
179
with open(os.devnull, "w") as devnull:
181
proc = self.gnupg.run(['--symmetric'],
182
create_fhs=['stdin', 'stdout'],
183
attach_fhs={'stderr': devnull})
184
with contextlib.closing(proc.handles['stdin']) as f:
186
with contextlib.closing(proc.handles['stdout']) as f:
187
ciphertext = f.read()
191
self.gnupg.passphrase = None
201
passphrase = self.password_encode(password)
202
with tempfile.NamedTemporaryFile(
203
dir=self.tempdir) as passfile:
204
passfile.write(passphrase)
206
proc = subprocess.Popen(['gpg', '--symmetric',
210
stdin = subprocess.PIPE,
211
stdout = subprocess.PIPE,
212
stderr = subprocess.PIPE)
213
ciphertext, err = proc.communicate(input = data)
214
if proc.returncode != 0:
192
216
return ciphertext
194
218
def decrypt(self, data, password):
195
self.gnupg.passphrase = self.password_encode(password)
196
with open(os.devnull, "w") as devnull:
198
proc = self.gnupg.run(['--decrypt'],
199
create_fhs=['stdin', 'stdout'],
200
attach_fhs={'stderr': devnull})
201
with contextlib.closing(proc.handles['stdin']) as f:
203
with contextlib.closing(proc.handles['stdout']) as f:
204
decrypted_plaintext = f.read()
208
self.gnupg.passphrase = None
219
passphrase = self.password_encode(password)
220
with tempfile.NamedTemporaryFile(
221
dir = self.tempdir) as passfile:
222
passfile.write(passphrase)
224
proc = subprocess.Popen(['gpg', '--decrypt',
228
stdin = subprocess.PIPE,
229
stdout = subprocess.PIPE,
230
stderr = subprocess.PIPE)
231
decrypted_plaintext, err = proc.communicate(input = data)
232
if proc.returncode != 0:
209
234
return decrypted_plaintext
212
237
class AvahiError(Exception):
213
238
def __init__(self, value, *args, **kwargs):
214
239
self.value = value
215
super(AvahiError, self).__init__(value, *args, **kwargs)
216
def __unicode__(self):
217
return unicode(repr(self.value))
240
return super(AvahiError, self).__init__(value, *args,
219
244
class AvahiServiceError(AvahiError):
222
248
class AvahiGroupError(AvahiError):
374
422
follow_name_owner_changes=True),
375
423
avahi.DBUS_INTERFACE_SERVER)
376
424
self.server.connect_to_signal("StateChanged",
377
self.server_state_changed)
425
self.server_state_changed)
378
426
self.server_state_changed(self.server.GetState())
380
429
class AvahiServiceToSyslog(AvahiService):
430
def rename(self, *args, **kwargs):
382
431
"""Add the new name to the syslog messages"""
383
ret = AvahiService.rename(self)
384
syslogger.setFormatter(logging.Formatter
385
('Mandos ({0}) [%(process)d]:'
386
' %(levelname)s: %(message)s'
432
ret = AvahiService.rename(self, *args, **kwargs)
433
syslogger.setFormatter(logging.Formatter(
434
'Mandos ({}) [%(process)d]: %(levelname)s: %(message)s'
390
def timedelta_to_milliseconds(td):
391
"Convert a datetime.timedelta() to milliseconds"
392
return ((td.days * 24 * 60 * 60 * 1000)
393
+ (td.seconds * 1000)
394
+ (td.microseconds // 1000))
438
def call_pipe(connection, # : multiprocessing.Connection
439
func, *args, **kwargs):
440
"""This function is meant to be called by multiprocessing.Process
442
This function runs func(*args, **kwargs), and writes the resulting
443
return value on the provided multiprocessing.Connection.
445
connection.send(func(*args, **kwargs))
396
448
class Client(object):
397
449
"""A representation of a client host served by this server.
434
488
runtime_expansions: Allowed attributes for runtime expansion.
435
489
expires: datetime.datetime(); time (UTC) when a client will be
436
490
disabled, or None
491
server_settings: The server_settings dict from main()
439
494
runtime_expansions = ("approval_delay", "approval_duration",
440
"created", "enabled", "fingerprint",
441
"host", "interval", "last_checked_ok",
495
"created", "enabled", "expires",
496
"fingerprint", "host", "interval",
497
"last_approval_request", "last_checked_ok",
442
498
"last_enabled", "name", "timeout")
443
client_defaults = { "timeout": "5m",
444
"extended_timeout": "15m",
446
"checker": "fping -q -- %%(host)s",
448
"approval_delay": "0s",
449
"approval_duration": "1s",
450
"approved_by_default": "True",
454
def timeout_milliseconds(self):
455
"Return the 'timeout' attribute in milliseconds"
456
return timedelta_to_milliseconds(self.timeout)
458
def extended_timeout_milliseconds(self):
459
"Return the 'extended_timeout' attribute in milliseconds"
460
return timedelta_to_milliseconds(self.extended_timeout)
462
def interval_milliseconds(self):
463
"Return the 'interval' attribute in milliseconds"
464
return timedelta_to_milliseconds(self.interval)
466
def approval_delay_milliseconds(self):
467
return timedelta_to_milliseconds(self.approval_delay)
501
"extended_timeout": "PT15M",
503
"checker": "fping -q -- %%(host)s",
505
"approval_delay": "PT0S",
506
"approval_duration": "PT1S",
507
"approved_by_default": "True",
470
512
def config_parser(config):
602
644
def init_checker(self):
603
645
# Schedule a new checker to be started an 'interval' from now,
604
646
# and every interval from then on.
605
self.checker_initiator_tag = (gobject.timeout_add
606
(self.interval_milliseconds(),
647
if self.checker_initiator_tag is not None:
648
gobject.source_remove(self.checker_initiator_tag)
649
self.checker_initiator_tag = gobject.timeout_add(
650
int(self.interval.total_seconds() * 1000),
608
652
# Schedule a disable() when 'timeout' has passed
609
self.disable_initiator_tag = (gobject.timeout_add
610
(self.timeout_milliseconds(),
653
if self.disable_initiator_tag is not None:
654
gobject.source_remove(self.disable_initiator_tag)
655
self.disable_initiator_tag = gobject.timeout_add(
656
int(self.timeout.total_seconds() * 1000), self.disable)
612
657
# Also start a new checker *right now*.
613
658
self.start_checker()
615
def checker_callback(self, pid, condition, command):
660
def checker_callback(self, source, condition, connection,
616
662
"""The checker has completed, so take appropriate actions."""
617
663
self.checker_callback_tag = None
618
664
self.checker = None
619
if os.WIFEXITED(condition):
620
self.last_checker_status = os.WEXITSTATUS(condition)
665
# Read return code from connection (see call_pipe)
666
returncode = connection.recv()
670
self.last_checker_status = returncode
671
self.last_checker_signal = None
621
672
if self.last_checker_status == 0:
622
673
logger.info("Checker for %(name)s succeeded",
624
675
self.checked_ok()
626
logger.info("Checker for %(name)s failed",
677
logger.info("Checker for %(name)s failed", vars(self))
629
679
self.last_checker_status = -1
680
self.last_checker_signal = -returncode
630
681
logger.warning("Checker for %(name)s crashed?",
633
685
def checked_ok(self):
634
686
"""Assert that the client has been seen, alive and well."""
635
687
self.last_checked_ok = datetime.datetime.utcnow()
636
688
self.last_checker_status = 0
689
self.last_checker_signal = None
637
690
self.bump_timeout()
639
692
def bump_timeout(self, timeout=None):
657
710
If a checker already exists, leave it running and do
659
712
# The reason for not killing a running checker is that if we
660
# did that, then if a checker (for some reason) started
661
# running slowly and taking more than 'interval' time, the
662
# client would inevitably timeout, since no checker would get
663
# a chance to run to completion. If we instead leave running
713
# did that, and if a checker (for some reason) started running
714
# slowly and taking more than 'interval' time, then the client
715
# would inevitably timeout, since no checker would get a
716
# chance to run to completion. If we instead leave running
664
717
# checkers alone, the checker would have to take more time
665
718
# than 'timeout' for the client to be disabled, which is as it
668
# If a checker exists, make sure it is not a zombie
670
pid, status = os.waitpid(self.checker.pid, os.WNOHANG)
671
except (AttributeError, OSError) as error:
672
if (isinstance(error, OSError)
673
and error.errno != errno.ECHILD):
677
logger.warning("Checker was a zombie")
678
gobject.source_remove(self.checker_callback_tag)
679
self.checker_callback(pid, status,
680
self.current_checker_command)
721
if self.checker is not None and not self.checker.is_alive():
722
logger.warning("Checker was not alive; joining")
681
725
# Start a new checker if needed
682
726
if self.checker is None:
727
# Escape attributes for the shell
729
attr: re.escape(str(getattr(self, attr)))
730
for attr in self.runtime_expansions }
684
# In case checker_command has exactly one % operator
685
command = self.checker_command % self.host
687
# Escape attributes for the shell
688
escaped_attrs = dict(
690
re.escape(unicode(str(getattr(self, attr, "")),
694
self.runtime_expansions)
697
command = self.checker_command % escaped_attrs
698
except TypeError as error:
699
logger.error('Could not format string "%s"',
700
self.checker_command, exc_info=error)
701
return True # Try again later
732
command = self.checker_command % escaped_attrs
733
except TypeError as error:
734
logger.error('Could not format string "%s"',
735
self.checker_command,
737
return True # Try again later
702
738
self.current_checker_command = command
704
logger.info("Starting checker %r for %s",
706
# We don't need to redirect stdout and stderr, since
707
# in normal mode, that is already done by daemon(),
708
# and in debug mode we don't want to. (Stdin is
709
# always replaced by /dev/null.)
710
self.checker = subprocess.Popen(command,
713
self.checker_callback_tag = (gobject.child_watch_add
715
self.checker_callback,
717
# The checker may have completed before the gobject
718
# watch was added. Check for this.
719
pid, status = os.waitpid(self.checker.pid, os.WNOHANG)
721
gobject.source_remove(self.checker_callback_tag)
722
self.checker_callback(pid, status, command)
723
except OSError as error:
724
logger.error("Failed to start subprocess",
739
logger.info("Starting checker %r for %s", command,
741
# We don't need to redirect stdout and stderr, since
742
# in normal mode, that is already done by daemon(),
743
# and in debug mode we don't want to. (Stdin is
744
# always replaced by /dev/null.)
745
# The exception is when not debugging but nevertheless
746
# running in the foreground; use the previously
748
popen_args = { "close_fds": True,
751
if (not self.server_settings["debug"]
752
and self.server_settings["foreground"]):
753
popen_args.update({"stdout": wnull,
755
pipe = multiprocessing.Pipe(duplex = False)
756
self.checker = multiprocessing.Process(
758
args = (pipe[1], subprocess.call, command),
761
self.checker_callback_tag = gobject.io_add_watch(
762
pipe[0].fileno(), gobject.IO_IN,
763
self.checker_callback, pipe[0], command)
726
764
# Re-run this periodically if run by gobject.timeout_add
846
884
If called like _is_dbus_thing("method") it returns a function
847
885
suitable for use as predicate to inspect.getmembers().
849
return lambda obj: getattr(obj, "_dbus_is_{0}".format(thing),
887
return lambda obj: getattr(obj, "_dbus_is_{}".format(thing),
852
890
def _get_all_dbus_things(self, thing):
853
891
"""Returns a generator of (name, attribute) pairs
855
return ((getattr(athing.__get__(self), "_dbus_name",
893
return ((getattr(athing.__get__(self), "_dbus_name", name),
857
894
athing.__get__(self))
858
895
for cls in self.__class__.__mro__
859
896
for name, athing in
860
inspect.getmembers(cls,
861
self._is_dbus_thing(thing)))
897
inspect.getmembers(cls, self._is_dbus_thing(thing)))
863
899
def _get_dbus_property(self, interface_name, property_name):
864
900
"""Returns a bound method if one exists which is a D-Bus
865
901
property with the specified name and interface.
867
for cls in self.__class__.__mro__:
868
for name, value in (inspect.getmembers
870
self._is_dbus_thing("property"))):
903
for cls in self.__class__.__mro__:
904
for name, value in inspect.getmembers(
905
cls, self._is_dbus_thing("property")):
871
906
if (value._dbus_name == property_name
872
907
and value._dbus_interface == interface_name):
873
908
return value.__get__(self)
875
910
# No such property
876
raise DBusPropertyNotFound(self.dbus_object_path + ":"
877
+ interface_name + "."
911
raise DBusPropertyNotFound("{}:{}.{}".format(
912
self.dbus_object_path, interface_name, property_name))
880
@dbus.service.method(dbus.PROPERTIES_IFACE, in_signature="ss",
914
@dbus.service.method(dbus.PROPERTIES_IFACE,
881
916
out_signature="v")
882
917
def Get(self, interface_name, property_name):
883
918
"""Standard D-Bus property Get() method, see D-Bus standard.
1013
1059
return xmlstring
1016
def datetime_to_dbus (dt, variant_level=0):
1062
def datetime_to_dbus(dt, variant_level=0):
1017
1063
"""Convert a UTC datetime.datetime() to a D-Bus type."""
1019
1065
return dbus.String("", variant_level = variant_level)
1020
return dbus.String(dt.isoformat(),
1021
variant_level=variant_level)
1024
class AlternateDBusNamesMetaclass(DBusObjectWithProperties
1026
"""Applied to an empty subclass of a D-Bus object, this metaclass
1027
will add additional D-Bus attributes matching a certain pattern.
1066
return dbus.String(dt.isoformat(), variant_level=variant_level)
1069
def alternate_dbus_interfaces(alt_interface_names, deprecate=True):
1070
"""A class decorator; applied to a subclass of
1071
dbus.service.Object, it will add alternate D-Bus attributes with
1072
interface names according to the "alt_interface_names" mapping.
1075
@alternate_dbus_interfaces({"org.example.Interface":
1076
"net.example.AlternateInterface"})
1077
class SampleDBusObject(dbus.service.Object):
1078
@dbus.service.method("org.example.Interface")
1079
def SampleDBusMethod():
1082
The above "SampleDBusMethod" on "SampleDBusObject" will be
1083
reachable via two interfaces: "org.example.Interface" and
1084
"net.example.AlternateInterface", the latter of which will have
1085
its D-Bus annotation "org.freedesktop.DBus.Deprecated" set to
1086
"true", unless "deprecate" is passed with a False value.
1088
This works for methods and signals, and also for D-Bus properties
1089
(from DBusObjectWithProperties) and interfaces (from the
1090
dbus_interface_annotations decorator).
1029
def __new__(mcs, name, bases, attr):
1030
# Go through all the base classes which could have D-Bus
1031
# methods, signals, or properties in them
1032
old_interface_names = []
1033
for base in (b for b in bases
1034
if issubclass(b, dbus.service.Object)):
1035
# Go though all attributes of the base class
1036
for attrname, attribute in inspect.getmembers(base):
1094
for orig_interface_name, alt_interface_name in (
1095
alt_interface_names.items()):
1097
interface_names = set()
1098
# Go though all attributes of the class
1099
for attrname, attribute in inspect.getmembers(cls):
1037
1100
# Ignore non-D-Bus attributes, and D-Bus attributes
1038
1101
# with the wrong interface name
1039
1102
if (not hasattr(attribute, "_dbus_interface")
1040
or not attribute._dbus_interface
1041
.startswith("se.recompile.Mandos")):
1103
or not attribute._dbus_interface.startswith(
1104
orig_interface_name)):
1043
1106
# Create an alternate D-Bus interface name based on
1044
1107
# the current name
1045
alt_interface = (attribute._dbus_interface
1046
.replace("se.recompile.Mandos",
1047
"se.bsnet.fukt.Mandos"))
1048
if alt_interface != attribute._dbus_interface:
1049
old_interface_names.append(alt_interface)
1108
alt_interface = attribute._dbus_interface.replace(
1109
orig_interface_name, alt_interface_name)
1110
interface_names.add(alt_interface)
1050
1111
# Is this a D-Bus signal?
1051
1112
if getattr(attribute, "_dbus_is_signal", False):
1052
# Extract the original non-method function by
1054
nonmethod_func = (dict(
1113
if sys.version_info.major == 2:
1114
# Extract the original non-method undecorated
1115
# function by black magic
1116
nonmethod_func = (dict(
1055
1117
zip(attribute.func_code.co_freevars,
1056
attribute.__closure__))["func"]
1118
attribute.__closure__))
1119
["func"].cell_contents)
1121
nonmethod_func = attribute
1058
1122
# Create a new, but exactly alike, function
1059
1123
# object, and decorate it to be a new D-Bus signal
1060
1124
# with the alternate D-Bus interface name
1061
new_function = (dbus.service.signal
1063
attribute._dbus_signature)
1064
(types.FunctionType(
1065
nonmethod_func.func_code,
1066
nonmethod_func.func_globals,
1067
nonmethod_func.func_name,
1068
nonmethod_func.func_defaults,
1069
nonmethod_func.func_closure)))
1125
if sys.version_info.major == 2:
1126
new_function = types.FunctionType(
1127
nonmethod_func.func_code,
1128
nonmethod_func.func_globals,
1129
nonmethod_func.func_name,
1130
nonmethod_func.func_defaults,
1131
nonmethod_func.func_closure)
1133
new_function = types.FunctionType(
1134
nonmethod_func.__code__,
1135
nonmethod_func.__globals__,
1136
nonmethod_func.__name__,
1137
nonmethod_func.__defaults__,
1138
nonmethod_func.__closure__)
1139
new_function = (dbus.service.signal(
1141
attribute._dbus_signature)(new_function))
1070
1142
# Copy annotations, if any
1072
new_function._dbus_annotations = (
1073
dict(attribute._dbus_annotations))
1144
new_function._dbus_annotations = dict(
1145
attribute._dbus_annotations)
1074
1146
except AttributeError:
1076
1148
# Define a creator of a function to call both the
1077
# old and new functions, so both the old and new
1078
# signals gets sent when the function is called
1149
# original and alternate functions, so both the
1150
# original and alternate signals gets sent when
1151
# the function is called
1079
1152
def fixscope(func1, func2):
1080
1153
"""This function is a scope container to pass
1081
1154
func1 and func2 to the "call_both" function
1082
1155
outside of its arguments"""
1083
1157
def call_both(*args, **kwargs):
1084
1158
"""This function will emit two D-Bus
1085
1159
signals by calling func1 and func2"""
1086
1160
func1(*args, **kwargs)
1087
1161
func2(*args, **kwargs)
1088
1163
return call_both
1089
1164
# Create the "call_both" function and add it to
1091
attr[attrname] = fixscope(attribute,
1166
attr[attrname] = fixscope(attribute, new_function)
1093
1167
# Is this a D-Bus method?
1094
1168
elif getattr(attribute, "_dbus_is_method", False):
1095
1169
# Create a new, but exactly alike, function
1096
1170
# object. Decorate it to be a new D-Bus method
1097
1171
# with the alternate D-Bus interface name. Add it
1098
1172
# to the class.
1099
attr[attrname] = (dbus.service.method
1101
attribute._dbus_in_signature,
1102
attribute._dbus_out_signature)
1104
(attribute.func_code,
1105
attribute.func_globals,
1106
attribute.func_name,
1107
attribute.func_defaults,
1108
attribute.func_closure)))
1174
dbus.service.method(
1176
attribute._dbus_in_signature,
1177
attribute._dbus_out_signature)
1178
(types.FunctionType(attribute.func_code,
1179
attribute.func_globals,
1180
attribute.func_name,
1181
attribute.func_defaults,
1182
attribute.func_closure)))
1109
1183
# Copy annotations, if any
1111
attr[attrname]._dbus_annotations = (
1112
dict(attribute._dbus_annotations))
1185
attr[attrname]._dbus_annotations = dict(
1186
attribute._dbus_annotations)
1113
1187
except AttributeError:
1115
1189
# Is this a D-Bus property?
1143
1215
# object. Decorate it to be a new D-Bus interface
1144
1216
# with the alternate D-Bus interface name. Add it
1145
1217
# to the class.
1146
attr[attrname] = (dbus_interface_annotations
1149
(attribute.func_code,
1150
attribute.func_globals,
1151
attribute.func_name,
1152
attribute.func_defaults,
1153
attribute.func_closure)))
1154
# Deprecate all old interfaces
1155
iname="_AlternateDBusNamesMetaclass_interface_annotation{0}"
1156
for old_interface_name in old_interface_names:
1157
@dbus_interface_annotations(old_interface_name)
1159
return { "org.freedesktop.DBus.Deprecated": "true" }
1160
# Find an unused name
1161
for aname in (iname.format(i) for i in itertools.count()):
1162
if aname not in attr:
1165
return type.__new__(mcs, name, bases, attr)
1219
dbus_interface_annotations(alt_interface)
1220
(types.FunctionType(attribute.func_code,
1221
attribute.func_globals,
1222
attribute.func_name,
1223
attribute.func_defaults,
1224
attribute.func_closure)))
1226
# Deprecate all alternate interfaces
1227
iname="_AlternateDBusNames_interface_annotation{}"
1228
for interface_name in interface_names:
1230
@dbus_interface_annotations(interface_name)
1232
return { "org.freedesktop.DBus.Deprecated":
1234
# Find an unused name
1235
for aname in (iname.format(i)
1236
for i in itertools.count()):
1237
if aname not in attr:
1241
# Replace the class with a new subclass of it with
1242
# methods, signals, etc. as created above.
1243
cls = type(b"{}Alternate".format(cls.__name__),
1250
@alternate_dbus_interfaces({"se.recompile.Mandos":
1251
"se.bsnet.fukt.Mandos"})
1168
1252
class ClientDBus(Client, DBusObjectWithProperties):
1169
1253
"""A Client class using D-Bus
1237
1336
datetime_to_dbus, "LastApprovalRequest")
1238
1337
approved_by_default = notifychangeproperty(dbus.Boolean,
1239
1338
"ApprovedByDefault")
1240
approval_delay = notifychangeproperty(dbus.UInt64,
1243
timedelta_to_milliseconds)
1339
approval_delay = notifychangeproperty(
1340
dbus.UInt64, "ApprovalDelay",
1341
type_func = lambda td: td.total_seconds() * 1000)
1244
1342
approval_duration = notifychangeproperty(
1245
1343
dbus.UInt64, "ApprovalDuration",
1246
type_func = timedelta_to_milliseconds)
1344
type_func = lambda td: td.total_seconds() * 1000)
1247
1345
host = notifychangeproperty(dbus.String, "Host")
1248
timeout = notifychangeproperty(dbus.UInt64, "Timeout",
1250
timedelta_to_milliseconds)
1346
timeout = notifychangeproperty(
1347
dbus.UInt64, "Timeout",
1348
type_func = lambda td: td.total_seconds() * 1000)
1251
1349
extended_timeout = notifychangeproperty(
1252
1350
dbus.UInt64, "ExtendedTimeout",
1253
type_func = timedelta_to_milliseconds)
1254
interval = notifychangeproperty(dbus.UInt64,
1257
timedelta_to_milliseconds)
1351
type_func = lambda td: td.total_seconds() * 1000)
1352
interval = notifychangeproperty(
1353
dbus.UInt64, "Interval",
1354
type_func = lambda td: td.total_seconds() * 1000)
1258
1355
checker_command = notifychangeproperty(dbus.String, "Checker")
1356
secret = notifychangeproperty(dbus.ByteArray, "Secret",
1357
invalidate_only=True)
1260
1359
del notifychangeproperty
1268
1367
DBusObjectWithProperties.__del__(self, *args, **kwargs)
1269
1368
Client.__del__(self, *args, **kwargs)
1271
def checker_callback(self, pid, condition, command,
1273
self.checker_callback_tag = None
1275
if os.WIFEXITED(condition):
1276
exitstatus = os.WEXITSTATUS(condition)
1370
def checker_callback(self, source, condition,
1371
connection, command, *args, **kwargs):
1372
ret = Client.checker_callback(self, source, condition,
1373
connection, command, *args,
1375
exitstatus = self.last_checker_status
1277
1377
# Emit D-Bus signal
1278
1378
self.CheckerCompleted(dbus.Int16(exitstatus),
1279
dbus.Int64(condition),
1280
1380
dbus.String(command))
1282
1382
# Emit D-Bus signal
1283
1383
self.CheckerCompleted(dbus.Int16(-1),
1284
dbus.Int64(condition),
1385
self.last_checker_signal),
1285
1386
dbus.String(command))
1287
return Client.checker_callback(self, pid, condition, command,
1290
1389
def start_checker(self, *args, **kwargs):
1291
old_checker = self.checker
1292
if self.checker is not None:
1293
old_checker_pid = self.checker.pid
1295
old_checker_pid = None
1390
old_checker_pid = getattr(self.checker, "pid", None)
1296
1391
r = Client.start_checker(self, *args, **kwargs)
1297
1392
# Only if new checker process was started
1298
1393
if (self.checker is not None
1414
1508
self.approved_by_default = bool(value)
1416
1510
# ApprovalDelay - property
1417
@dbus_service_property(_interface, signature="t",
1511
@dbus_service_property(_interface,
1418
1513
access="readwrite")
1419
1514
def ApprovalDelay_dbus_property(self, value=None):
1420
1515
if value is None: # get
1421
return dbus.UInt64(self.approval_delay_milliseconds())
1516
return dbus.UInt64(self.approval_delay.total_seconds()
1422
1518
self.approval_delay = datetime.timedelta(0, 0, 0, value)
1424
1520
# ApprovalDuration - property
1425
@dbus_service_property(_interface, signature="t",
1521
@dbus_service_property(_interface,
1426
1523
access="readwrite")
1427
1524
def ApprovalDuration_dbus_property(self, value=None):
1428
1525
if value is None: # get
1429
return dbus.UInt64(timedelta_to_milliseconds(
1430
self.approval_duration))
1526
return dbus.UInt64(self.approval_duration.total_seconds()
1431
1528
self.approval_duration = datetime.timedelta(0, 0, 0, value)
1433
1530
# Name - property
1532
{"org.freedesktop.DBus.Property.EmitsChangedSignal": "const"})
1434
1533
@dbus_service_property(_interface, signature="s", access="read")
1435
1534
def Name_dbus_property(self):
1436
1535
return dbus.String(self.name)
1438
1537
# Fingerprint - property
1539
{"org.freedesktop.DBus.Property.EmitsChangedSignal": "const"})
1439
1540
@dbus_service_property(_interface, signature="s", access="read")
1440
1541
def Fingerprint_dbus_property(self):
1441
1542
return dbus.String(self.fingerprint)
1443
1544
# Host - property
1444
@dbus_service_property(_interface, signature="s",
1545
@dbus_service_property(_interface,
1445
1547
access="readwrite")
1446
1548
def Host_dbus_property(self, value=None):
1447
1549
if value is None: # get
1448
1550
return dbus.String(self.host)
1449
self.host = unicode(value)
1551
self.host = str(value)
1451
1553
# Created - property
1555
{"org.freedesktop.DBus.Property.EmitsChangedSignal": "const"})
1452
1556
@dbus_service_property(_interface, signature="s", access="read")
1453
1557
def Created_dbus_property(self):
1454
1558
return datetime_to_dbus(self.created)
1495
1600
return datetime_to_dbus(self.last_approval_request)
1497
1602
# Timeout - property
1498
@dbus_service_property(_interface, signature="t",
1603
@dbus_service_property(_interface,
1499
1605
access="readwrite")
1500
1606
def Timeout_dbus_property(self, value=None):
1501
1607
if value is None: # get
1502
return dbus.UInt64(self.timeout_milliseconds())
1608
return dbus.UInt64(self.timeout.total_seconds() * 1000)
1609
old_timeout = self.timeout
1503
1610
self.timeout = datetime.timedelta(0, 0, 0, value)
1504
# Reschedule timeout
1611
# Reschedule disabling
1505
1612
if self.enabled:
1506
1613
now = datetime.datetime.utcnow()
1507
time_to_die = timedelta_to_milliseconds(
1508
(self.last_checked_ok + self.timeout) - now)
1509
if time_to_die <= 0:
1614
self.expires += self.timeout - old_timeout
1615
if self.expires <= now:
1510
1616
# The timeout has passed
1513
self.expires = (now +
1514
datetime.timedelta(milliseconds =
1516
1619
if (getattr(self, "disable_initiator_tag", None)
1519
1622
gobject.source_remove(self.disable_initiator_tag)
1520
self.disable_initiator_tag = (gobject.timeout_add
1623
self.disable_initiator_tag = gobject.timeout_add(
1624
int((self.expires - now).total_seconds() * 1000),
1524
1627
# ExtendedTimeout - property
1525
@dbus_service_property(_interface, signature="t",
1628
@dbus_service_property(_interface,
1526
1630
access="readwrite")
1527
1631
def ExtendedTimeout_dbus_property(self, value=None):
1528
1632
if value is None: # get
1529
return dbus.UInt64(self.extended_timeout_milliseconds())
1633
return dbus.UInt64(self.extended_timeout.total_seconds()
1530
1635
self.extended_timeout = datetime.timedelta(0, 0, 0, value)
1532
1637
# Interval - property
1533
@dbus_service_property(_interface, signature="t",
1638
@dbus_service_property(_interface,
1534
1640
access="readwrite")
1535
1641
def Interval_dbus_property(self, value=None):
1536
1642
if value is None: # get
1537
return dbus.UInt64(self.interval_milliseconds())
1643
return dbus.UInt64(self.interval.total_seconds() * 1000)
1538
1644
self.interval = datetime.timedelta(0, 0, 0, value)
1539
1645
if getattr(self, "checker_initiator_tag", None) is None:
1541
1647
if self.enabled:
1542
1648
# Reschedule checker run
1543
1649
gobject.source_remove(self.checker_initiator_tag)
1544
self.checker_initiator_tag = (gobject.timeout_add
1545
(value, self.start_checker))
1546
self.start_checker() # Start one now, too
1650
self.checker_initiator_tag = gobject.timeout_add(
1651
value, self.start_checker)
1652
self.start_checker() # Start one now, too
1548
1654
# Checker - property
1549
@dbus_service_property(_interface, signature="s",
1655
@dbus_service_property(_interface,
1550
1657
access="readwrite")
1551
1658
def Checker_dbus_property(self, value=None):
1552
1659
if value is None: # get
1553
1660
return dbus.String(self.checker_command)
1554
self.checker_command = unicode(value)
1661
self.checker_command = str(value)
1556
1663
# CheckerRunning - property
1557
@dbus_service_property(_interface, signature="b",
1664
@dbus_service_property(_interface,
1558
1666
access="readwrite")
1559
1667
def CheckerRunning_dbus_property(self, value=None):
1560
1668
if value is None: # get
1790
1898
def fingerprint(openpgp):
1791
1899
"Convert an OpenPGP bytestring to a hexdigit fingerprint"
1792
1900
# New GnuTLS "datum" with the OpenPGP public key
1793
datum = (gnutls.library.types
1794
.gnutls_datum_t(ctypes.cast(ctypes.c_char_p(openpgp),
1797
ctypes.c_uint(len(openpgp))))
1901
datum = gnutls.library.types.gnutls_datum_t(
1902
ctypes.cast(ctypes.c_char_p(openpgp),
1903
ctypes.POINTER(ctypes.c_ubyte)),
1904
ctypes.c_uint(len(openpgp)))
1798
1905
# New empty GnuTLS certificate
1799
1906
crt = gnutls.library.types.gnutls_openpgp_crt_t()
1800
(gnutls.library.functions
1801
.gnutls_openpgp_crt_init(ctypes.byref(crt)))
1907
gnutls.library.functions.gnutls_openpgp_crt_init(
1802
1909
# Import the OpenPGP public key into the certificate
1803
(gnutls.library.functions
1804
.gnutls_openpgp_crt_import(crt, ctypes.byref(datum),
1805
gnutls.library.constants
1806
.GNUTLS_OPENPGP_FMT_RAW))
1910
gnutls.library.functions.gnutls_openpgp_crt_import(
1911
crt, ctypes.byref(datum),
1912
gnutls.library.constants.GNUTLS_OPENPGP_FMT_RAW)
1807
1913
# Verify the self signature in the key
1808
1914
crtverify = ctypes.c_uint()
1809
(gnutls.library.functions
1810
.gnutls_openpgp_crt_verify_self(crt, 0,
1811
ctypes.byref(crtverify)))
1915
gnutls.library.functions.gnutls_openpgp_crt_verify_self(
1916
crt, 0, ctypes.byref(crtverify))
1812
1917
if crtverify.value != 0:
1813
1918
gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
1814
raise (gnutls.errors.CertificateSecurityError
1919
raise gnutls.errors.CertificateSecurityError(
1816
1921
# New buffer for the fingerprint
1817
1922
buf = ctypes.create_string_buffer(20)
1818
1923
buf_len = ctypes.c_size_t()
1819
1924
# Get the fingerprint from the certificate into the buffer
1820
(gnutls.library.functions
1821
.gnutls_openpgp_crt_get_fingerprint(crt, ctypes.byref(buf),
1822
ctypes.byref(buf_len)))
1925
gnutls.library.functions.gnutls_openpgp_crt_get_fingerprint(
1926
crt, ctypes.byref(buf), ctypes.byref(buf_len))
1823
1927
# Deinit the certificate
1824
1928
gnutls.library.functions.gnutls_openpgp_crt_deinit(crt)
1825
1929
# Convert the buffer to a Python bytestring
1875
1980
interface: None or a network interface name (string)
1876
1981
use_ipv6: Boolean; to use IPv6 or not
1878
1984
def __init__(self, server_address, RequestHandlerClass,
1879
interface=None, use_ipv6=True):
1988
"""If socketfd is set, use that file descriptor instead of
1989
creating a new one with socket.socket().
1880
1991
self.interface = interface
1882
1993
self.address_family = socket.AF_INET6
1994
if socketfd is not None:
1995
# Save the file descriptor
1996
self.socketfd = socketfd
1997
# Save the original socket.socket() function
1998
self.socket_socket = socket.socket
1999
# To implement --socket, we monkey patch socket.socket.
2001
# (When socketserver.TCPServer is a new-style class, we
2002
# could make self.socket into a property instead of monkey
2003
# patching socket.socket.)
2005
# Create a one-time-only replacement for socket.socket()
2006
@functools.wraps(socket.socket)
2007
def socket_wrapper(*args, **kwargs):
2008
# Restore original function so subsequent calls are
2010
socket.socket = self.socket_socket
2011
del self.socket_socket
2012
# This time only, return a new socket object from the
2013
# saved file descriptor.
2014
return socket.fromfd(self.socketfd, *args, **kwargs)
2015
# Replace socket.socket() function with wrapper
2016
socket.socket = socket_wrapper
2017
# The socketserver.TCPServer.__init__ will call
2018
# socket.socket(), which might be our replacement,
2019
# socket_wrapper(), if socketfd was set.
1883
2020
socketserver.TCPServer.__init__(self, server_address,
1884
2021
RequestHandlerClass)
1885
2023
def server_bind(self):
1886
2024
"""This overrides the normal server_bind() function
1887
2025
to bind to an interface if one was specified, and also NOT to
1962
2107
def add_pipe(self, parent_pipe, proc):
1963
2108
# Call "handle_ipc" for both data and EOF events
1964
gobject.io_add_watch(parent_pipe.fileno(),
1965
gobject.IO_IN | gobject.IO_HUP,
1966
functools.partial(self.handle_ipc,
2109
gobject.io_add_watch(
2110
parent_pipe.fileno(),
2111
gobject.IO_IN | gobject.IO_HUP,
2112
functools.partial(self.handle_ipc,
2113
parent_pipe = parent_pipe,
1971
def handle_ipc(self, source, condition, parent_pipe=None,
1972
proc = None, client_object=None):
1974
gobject.IO_IN: "IN", # There is data to read.
1975
gobject.IO_OUT: "OUT", # Data can be written (without
1977
gobject.IO_PRI: "PRI", # There is urgent data to read.
1978
gobject.IO_ERR: "ERR", # Error condition.
1979
gobject.IO_HUP: "HUP" # Hung up (the connection has been
1980
# broken, usually for pipes and
1983
conditions_string = ' | '.join(name
1985
condition_names.iteritems()
1986
if cond & condition)
2116
def handle_ipc(self, source, condition,
2119
client_object=None):
1987
2120
# error, or the other end of multiprocessing.Pipe has closed
1988
if condition & (gobject.IO_ERR | condition & gobject.IO_HUP):
2121
if condition & (gobject.IO_ERR | gobject.IO_HUP):
1989
2122
# Wait for other process to exit
2185
def rfc3339_duration_to_delta(duration):
2186
"""Parse an RFC 3339 "duration" and return a datetime.timedelta
2188
>>> rfc3339_duration_to_delta("P7D")
2189
datetime.timedelta(7)
2190
>>> rfc3339_duration_to_delta("PT60S")
2191
datetime.timedelta(0, 60)
2192
>>> rfc3339_duration_to_delta("PT60M")
2193
datetime.timedelta(0, 3600)
2194
>>> rfc3339_duration_to_delta("PT24H")
2195
datetime.timedelta(1)
2196
>>> rfc3339_duration_to_delta("P1W")
2197
datetime.timedelta(7)
2198
>>> rfc3339_duration_to_delta("PT5M30S")
2199
datetime.timedelta(0, 330)
2200
>>> rfc3339_duration_to_delta("P1DT3M20S")
2201
datetime.timedelta(1, 200)
2204
# Parsing an RFC 3339 duration with regular expressions is not
2205
# possible - there would have to be multiple places for the same
2206
# values, like seconds. The current code, while more esoteric, is
2207
# cleaner without depending on a parsing library. If Python had a
2208
# built-in library for parsing we would use it, but we'd like to
2209
# avoid excessive use of external libraries.
2211
# New type for defining tokens, syntax, and semantics all-in-one
2212
Token = collections.namedtuple("Token", (
2213
"regexp", # To match token; if "value" is not None, must have
2214
# a "group" containing digits
2215
"value", # datetime.timedelta or None
2216
"followers")) # Tokens valid after this token
2217
# RFC 3339 "duration" tokens, syntax, and semantics; taken from
2218
# the "duration" ABNF definition in RFC 3339, Appendix A.
2219
token_end = Token(re.compile(r"$"), None, frozenset())
2220
token_second = Token(re.compile(r"(\d+)S"),
2221
datetime.timedelta(seconds=1),
2222
frozenset((token_end, )))
2223
token_minute = Token(re.compile(r"(\d+)M"),
2224
datetime.timedelta(minutes=1),
2225
frozenset((token_second, token_end)))
2226
token_hour = Token(re.compile(r"(\d+)H"),
2227
datetime.timedelta(hours=1),
2228
frozenset((token_minute, token_end)))
2229
token_time = Token(re.compile(r"T"),
2231
frozenset((token_hour, token_minute,
2233
token_day = Token(re.compile(r"(\d+)D"),
2234
datetime.timedelta(days=1),
2235
frozenset((token_time, token_end)))
2236
token_month = Token(re.compile(r"(\d+)M"),
2237
datetime.timedelta(weeks=4),
2238
frozenset((token_day, token_end)))
2239
token_year = Token(re.compile(r"(\d+)Y"),
2240
datetime.timedelta(weeks=52),
2241
frozenset((token_month, token_end)))
2242
token_week = Token(re.compile(r"(\d+)W"),
2243
datetime.timedelta(weeks=1),
2244
frozenset((token_end, )))
2245
token_duration = Token(re.compile(r"P"), None,
2246
frozenset((token_year, token_month,
2247
token_day, token_time,
2249
# Define starting values
2250
value = datetime.timedelta() # Value so far
2252
followers = frozenset((token_duration, )) # Following valid tokens
2253
s = duration # String left to parse
2254
# Loop until end token is found
2255
while found_token is not token_end:
2256
# Search for any currently valid tokens
2257
for token in followers:
2258
match = token.regexp.match(s)
2259
if match is not None:
2261
if token.value is not None:
2262
# Value found, parse digits
2263
factor = int(match.group(1), 10)
2264
# Add to value so far
2265
value += factor * token.value
2266
# Strip token from string
2267
s = token.regexp.sub("", s, 1)
2270
# Set valid next tokens
2271
followers = found_token.followers
2274
# No currently valid tokens were found
2275
raise ValueError("Invalid RFC 3339 duration: {!r}"
2052
2281
def string_to_delta(interval):
2053
2282
"""Parse a string and return a datetime.timedelta
2147
2381
parser.add_argument("--no-dbus", action="store_false",
2148
2382
dest="use_dbus", help="Do not provide D-Bus"
2149
" system bus interface")
2383
" system bus interface", default=None)
2150
2384
parser.add_argument("--no-ipv6", action="store_false",
2151
dest="use_ipv6", help="Do not use IPv6")
2385
dest="use_ipv6", help="Do not use IPv6",
2152
2387
parser.add_argument("--no-restore", action="store_false",
2153
2388
dest="restore", help="Do not restore stored"
2389
" state", default=None)
2390
parser.add_argument("--socket", type=int,
2391
help="Specify a file descriptor to a network"
2392
" socket to use instead of creating one")
2155
2393
parser.add_argument("--statedir", metavar="DIR",
2156
2394
help="Directory to save/restore state in")
2395
parser.add_argument("--foreground", action="store_true",
2396
help="Run in foreground", default=None)
2397
parser.add_argument("--no-zeroconf", action="store_false",
2398
dest="zeroconf", help="Do not use Zeroconf",
2158
2401
options = parser.parse_args()
2160
2403
if options.check:
2405
fail_count, test_count = doctest.testmod()
2406
sys.exit(os.EX_OK if fail_count == 0 else 1)
2165
2408
# Default values for config file for server-global settings
2166
2409
server_defaults = { "interface": "",
2169
2412
"debug": "False",
2171
"SECURE256:!CTYPE-X.509:+CTYPE-OPENPGP",
2414
"SECURE256:!CTYPE-X.509:+CTYPE-OPENPGP:!RSA"
2415
":+SIGN-DSA-SHA256",
2172
2416
"servicename": "Mandos",
2173
2417
"use_dbus": "True",
2174
2418
"use_ipv6": "True",
2175
2419
"debuglevel": "",
2176
2420
"restore": "True",
2177
"statedir": "/var/lib/mandos"
2422
"statedir": "/var/lib/mandos",
2423
"foreground": "False",
2180
2427
# Parse config file for server-global settings
2181
2428
server_config = configparser.SafeConfigParser(server_defaults)
2182
2429
del server_defaults
2183
server_config.read(os.path.join(options.configdir,
2430
server_config.read(os.path.join(options.configdir, "mandos.conf"))
2185
2431
# Convert the SafeConfigParser object to a dict
2186
2432
server_settings = server_config.defaults()
2187
2433
# Use the appropriate methods on the non-string config options
2188
for option in ("debug", "use_dbus", "use_ipv6"):
2434
for option in ("debug", "use_dbus", "use_ipv6", "foreground"):
2189
2435
server_settings[option] = server_config.getboolean("DEFAULT",
2191
2437
if server_settings["port"]:
2192
2438
server_settings["port"] = server_config.getint("DEFAULT",
2440
if server_settings["socket"]:
2441
server_settings["socket"] = server_config.getint("DEFAULT",
2443
# Later, stdin will, and stdout and stderr might, be dup'ed
2444
# over with an opened os.devnull. But we don't want this to
2445
# happen with a supplied network socket.
2446
if 0 <= server_settings["socket"] <= 2:
2447
server_settings["socket"] = os.dup(server_settings
2194
2449
del server_config
2196
2451
# Override the settings from the config file with command line
2197
2452
# options, if set.
2198
2453
for option in ("interface", "address", "port", "debug",
2199
"priority", "servicename", "configdir",
2200
"use_dbus", "use_ipv6", "debuglevel", "restore",
2454
"priority", "servicename", "configdir", "use_dbus",
2455
"use_ipv6", "debuglevel", "restore", "statedir",
2456
"socket", "foreground", "zeroconf"):
2202
2457
value = getattr(options, option)
2203
2458
if value is not None:
2204
2459
server_settings[option] = value
2206
2461
# Force all strings to be unicode
2207
2462
for option in server_settings.keys():
2208
if type(server_settings[option]) is str:
2209
server_settings[option] = unicode(server_settings[option])
2463
if isinstance(server_settings[option], bytes):
2464
server_settings[option] = (server_settings[option]
2466
# Force all boolean options to be boolean
2467
for option in ("debug", "use_dbus", "use_ipv6", "restore",
2468
"foreground", "zeroconf"):
2469
server_settings[option] = bool(server_settings[option])
2470
# Debug implies foreground
2471
if server_settings["debug"]:
2472
server_settings["foreground"] = True
2210
2473
# Now we have our good server settings in "server_settings"
2212
2475
##################################################################
2477
if (not server_settings["zeroconf"]
2478
and not (server_settings["port"]
2479
or server_settings["socket"] != "")):
2480
parser.error("Needs port or socket to work without Zeroconf")
2214
2482
# For convenience
2215
2483
debug = server_settings["debug"]
2216
2484
debuglevel = server_settings["debuglevel"]
2316
2592
bus_name = dbus.service.BusName("se.recompile.Mandos",
2317
bus, do_not_queue=True)
2318
old_bus_name = (dbus.service.BusName
2319
("se.bsnet.fukt.Mandos", bus,
2321
except dbus.exceptions.NameExistsException as e:
2595
old_bus_name = dbus.service.BusName(
2596
"se.bsnet.fukt.Mandos", bus,
2598
except dbus.exceptions.DBusException as e:
2322
2599
logger.error("Disabling D-Bus:", exc_info=e)
2323
2600
use_dbus = False
2324
2601
server_settings["use_dbus"] = False
2325
2602
tcp_server.use_dbus = False
2326
protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
2327
service = AvahiServiceToSyslog(name =
2328
server_settings["servicename"],
2329
servicetype = "_mandos._tcp",
2330
protocol = protocol, bus = bus)
2331
if server_settings["interface"]:
2332
service.interface = (if_nametoindex
2333
(str(server_settings["interface"])))
2604
protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
2605
service = AvahiServiceToSyslog(
2606
name = server_settings["servicename"],
2607
servicetype = "_mandos._tcp",
2608
protocol = protocol,
2610
if server_settings["interface"]:
2611
service.interface = if_nametoindex(
2612
server_settings["interface"].encode("utf-8"))
2335
2614
global multiprocessing_manager
2336
2615
multiprocessing_manager = multiprocessing.Manager()
2338
2617
client_class = Client
2340
client_class = functools.partial(ClientDBusTransitional,
2619
client_class = functools.partial(ClientDBus, bus = bus)
2343
2621
client_settings = Client.config_parser(client_config)
2344
2622
old_client_settings = {}
2345
2623
clients_data = {}
2625
# This is used to redirect stdout and stderr for checker processes
2627
wnull = open(os.devnull, "w") # A writable /dev/null
2628
# Only used if server is running in foreground but not in debug
2630
if debug or not foreground:
2347
2633
# Get client data and settings from last running state.
2348
2634
if server_settings["restore"]:
2350
2636
with open(stored_state_path, "rb") as stored_state:
2351
clients_data, old_client_settings = (pickle.load
2637
clients_data, old_client_settings = pickle.load(
2353
2639
os.remove(stored_state_path)
2354
2640
except IOError as e:
2355
2641
if e.errno == errno.ENOENT:
2356
logger.warning("Could not load persistent state: {0}"
2357
.format(os.strerror(e.errno)))
2642
logger.warning("Could not load persistent state:"
2643
" {}".format(os.strerror(e.errno)))
2359
2645
logger.critical("Could not load persistent state:",
2362
2648
except EOFError as e:
2363
2649
logger.warning("Could not load persistent state: "
2364
"EOFError:", exc_info=e)
2366
2653
with PGPEngine() as pgp:
2367
for client_name, client in clients_data.iteritems():
2654
for client_name, client in clients_data.items():
2655
# Skip removed clients
2656
if client_name not in client_settings:
2368
2659
# Decide which value to use after restoring saved state.
2369
2660
# We have three different values: Old config file,
2370
2661
# new config file, and saved state.
2391
2682
if datetime.datetime.utcnow() >= client["expires"]:
2392
2683
if not client["last_checked_ok"]:
2393
2684
logger.warning(
2394
"disabling client {0} - Client never "
2395
"performed a successful checker"
2396
.format(client_name))
2685
"disabling client {} - Client never "
2686
"performed a successful checker".format(
2397
2688
client["enabled"] = False
2398
2689
elif client["last_checker_status"] != 0:
2399
2690
logger.warning(
2400
"disabling client {0} - Client "
2401
"last checker failed with error code {1}"
2402
.format(client_name,
2403
client["last_checker_status"]))
2691
"disabling client {} - Client last"
2692
" checker failed with error code"
2695
client["last_checker_status"]))
2404
2696
client["enabled"] = False
2406
client["expires"] = (datetime.datetime
2408
+ client["timeout"])
2698
client["expires"] = (
2699
datetime.datetime.utcnow()
2700
+ client["timeout"])
2409
2701
logger.debug("Last checker succeeded,"
2410
" keeping {0} enabled"
2411
.format(client_name))
2702
" keeping {} enabled".format(
2413
client["secret"] = (
2414
pgp.decrypt(client["encrypted_secret"],
2415
client_settings[client_name]
2705
client["secret"] = pgp.decrypt(
2706
client["encrypted_secret"],
2707
client_settings[client_name]["secret"])
2417
2708
except PGPError:
2418
2709
# If decryption fails, we use secret from new settings
2419
logger.debug("Failed to decrypt {0} old secret"
2420
.format(client_name))
2421
client["secret"] = (
2422
client_settings[client_name]["secret"])
2710
logger.debug("Failed to decrypt {} old secret".format(
2712
client["secret"] = (client_settings[client_name]
2424
2715
# Add/remove clients based on new changes made to config
2425
2716
for client_name in (set(old_client_settings)
2430
2721
clients_data[client_name] = client_settings[client_name]
2432
2723
# Create all client objects
2433
for client_name, client in clients_data.iteritems():
2724
for client_name, client in clients_data.items():
2434
2725
tcp_server.clients[client_name] = client_class(
2435
name = client_name, settings = client)
2728
server_settings = server_settings)
2437
2730
if not tcp_server.clients:
2438
2731
logger.warning("No clients defined")
2444
pidfile.write(str(pid) + "\n".encode("utf-8"))
2447
logger.error("Could not write to file %r with PID %d",
2450
# "pidfile" was never created
2734
if pidfile is not None:
2738
print(pid, file=pidfile)
2740
logger.error("Could not write to file %r with PID %d",
2452
2743
del pidfilename
2453
signal.signal(signal.SIGINT, signal.SIG_IGN)
2455
2745
signal.signal(signal.SIGHUP, lambda signum, frame: sys.exit())
2456
2746
signal.signal(signal.SIGTERM, lambda signum, frame: sys.exit())
2750
@alternate_dbus_interfaces(
2751
{ "se.recompile.Mandos": "se.bsnet.fukt.Mandos" })
2459
2752
class MandosDBusService(DBusObjectWithProperties):
2460
2753
"""A D-Bus proxy object"""
2461
2755
def __init__(self):
2462
2756
dbus.service.Object.__init__(self, bus, "/")
2463
2758
_interface = "se.recompile.Mandos"
2465
2760
@dbus_interface_annotations(_interface)
2466
2761
def _foo(self):
2467
return { "org.freedesktop.DBus.Property"
2468
".EmitsChangedSignal":
2763
"org.freedesktop.DBus.Property.EmitsChangedSignal":
2471
2766
@dbus.service.signal(_interface, signature="o")
2472
2767
def ClientAdded(self, objpath):