86
82
SO_BINDTODEVICE = None
90
stored_state_file = "clients.pickle"
92
logger = logging.getLogger()
87
#logger = logging.getLogger('mandos')
88
logger = logging.Logger('mandos')
93
89
syslogger = (logging.handlers.SysLogHandler
94
90
(facility = logging.handlers.SysLogHandler.LOG_DAEMON,
95
91
address = str("/dev/log")))
98
if_nametoindex = (ctypes.cdll.LoadLibrary
99
(ctypes.util.find_library("c"))
101
except (OSError, AttributeError):
102
def if_nametoindex(interface):
103
"Get an interface index the hard way, i.e. using fcntl()"
104
SIOCGIFINDEX = 0x8933 # From /usr/include/linux/sockios.h
105
with contextlib.closing(socket.socket()) as s:
106
ifreq = fcntl.ioctl(s, SIOCGIFINDEX,
107
struct.pack(str("16s16x"),
109
interface_index = struct.unpack(str("I"),
111
return interface_index
114
def initlogger(level=logging.WARNING):
115
"""init logger and add loglevel"""
117
syslogger.setFormatter(logging.Formatter
118
('Mandos [%(process)d]: %(levelname)s:'
120
logger.addHandler(syslogger)
122
console = logging.StreamHandler()
123
console.setFormatter(logging.Formatter('%(asctime)s %(name)s'
127
logger.addHandler(console)
128
logger.setLevel(level)
131
class CryptoError(Exception):
135
class Crypto(object):
136
"""A simple class for OpenPGP symmetric encryption & decryption"""
138
self.gnupg = GnuPGInterface.GnuPG()
139
self.tempdir = tempfile.mkdtemp(prefix="mandos-")
140
self.gnupg = GnuPGInterface.GnuPG()
141
self.gnupg.options.meta_interactive = False
142
self.gnupg.options.homedir = self.tempdir
143
self.gnupg.options.extra_args.extend(['--force-mdc',
149
def __exit__ (self, exc_type, exc_value, traceback):
157
if self.tempdir is not None:
158
# Delete contents of tempdir
159
for root, dirs, files in os.walk(self.tempdir,
161
for filename in files:
162
os.remove(os.path.join(root, filename))
164
os.rmdir(os.path.join(root, dirname))
166
os.rmdir(self.tempdir)
169
def password_encode(self, password):
170
# Passphrase can not be empty and can not contain newlines or
171
# NUL bytes. So we prefix it and hex encode it.
172
return b"mandos" + binascii.hexlify(password)
174
def encrypt(self, data, password):
175
self.gnupg.passphrase = self.password_encode(password)
176
with open(os.devnull) as devnull:
178
proc = self.gnupg.run(['--symmetric'],
179
create_fhs=['stdin', 'stdout'],
180
attach_fhs={'stderr': devnull})
181
with contextlib.closing(proc.handles['stdin']) as f:
183
with contextlib.closing(proc.handles['stdout']) as f:
184
ciphertext = f.read()
188
self.gnupg.passphrase = None
191
def decrypt(self, data, password):
192
self.gnupg.passphrase = self.password_encode(password)
193
with open(os.devnull) as devnull:
195
proc = self.gnupg.run(['--decrypt'],
196
create_fhs=['stdin', 'stdout'],
197
attach_fhs={'stderr': devnull})
198
with contextlib.closing(proc.handles['stdin'] ) as f:
200
with contextlib.closing(proc.handles['stdout']) as f:
201
decrypted_plaintext = f.read()
205
self.gnupg.passphrase = None
206
return decrypted_plaintext
92
syslogger.setFormatter(logging.Formatter
93
('Mandos [%(process)d]: %(levelname)s:'
95
logger.addHandler(syslogger)
97
console = logging.StreamHandler()
98
console.setFormatter(logging.Formatter('%(name)s [%(process)d]:'
101
logger.addHandler(console)
210
103
class AvahiError(Exception):
211
104
def __init__(self, value, *args, **kwargs):
266
158
" after %i retries, exiting.",
267
159
self.rename_count)
268
160
raise AvahiServiceError("Too many renames")
269
self.name = unicode(self.server
270
.GetAlternativeServiceName(self.name))
161
self.name = unicode(self.server.GetAlternativeServiceName(self.name))
271
162
logger.info("Changing Zeroconf service name to %r ...",
164
syslogger.setFormatter(logging.Formatter
165
('Mandos (%s) [%%(process)d]:'
166
' %%(levelname)s: %%(message)s'
276
except dbus.exceptions.DBusException as error:
171
except dbus.exceptions.DBusException, error:
277
172
logger.critical("DBusException: %s", error)
280
175
self.rename_count += 1
281
176
def remove(self):
282
177
"""Derived from the Avahi example code"""
283
if self.entry_group_state_changed_match is not None:
284
self.entry_group_state_changed_match.remove()
285
self.entry_group_state_changed_match = None
286
178
if self.group is not None:
287
179
self.group.Reset()
289
181
"""Derived from the Avahi example code"""
291
182
if self.group is None:
292
183
self.group = dbus.Interface(
293
184
self.bus.get_object(avahi.DBUS_NAME,
294
185
self.server.EntryGroupNew()),
295
186
avahi.DBUS_INTERFACE_ENTRY_GROUP)
296
self.entry_group_state_changed_match = (
297
self.group.connect_to_signal(
298
'StateChanged', self.entry_group_state_changed))
187
self.group.connect_to_signal('StateChanged',
189
.entry_group_state_changed)
299
190
logger.debug("Adding Zeroconf service '%s' of type '%s' ...",
300
191
self.name, self.type)
301
192
self.group.AddService(
324
215
def cleanup(self):
325
216
"""Derived from the Avahi example code"""
326
217
if self.group is not None:
329
except (dbus.exceptions.UnknownMethodException,
330
dbus.exceptions.DBusException):
332
219
self.group = None
334
def server_state_changed(self, state, error=None):
220
def server_state_changed(self, state):
335
221
"""Derived from the Avahi example code"""
336
222
logger.debug("Avahi server state change: %i", state)
337
bad_states = { avahi.SERVER_INVALID:
338
"Zeroconf server invalid",
339
avahi.SERVER_REGISTERING: None,
340
avahi.SERVER_COLLISION:
341
"Zeroconf server name collision",
342
avahi.SERVER_FAILURE:
343
"Zeroconf server failure" }
344
if state in bad_states:
345
if bad_states[state] is not None:
347
logger.error(bad_states[state])
349
logger.error(bad_states[state] + ": %r", error)
223
if state == avahi.SERVER_COLLISION:
224
logger.error("Zeroconf server name collision")
351
226
elif state == avahi.SERVER_RUNNING:
355
logger.debug("Unknown state: %r", state)
357
logger.debug("Unknown state: %r: %r", state, error)
358
228
def activate(self):
359
229
"""Derived from the Avahi example code"""
360
230
if self.server is None:
361
231
self.server = dbus.Interface(
362
232
self.bus.get_object(avahi.DBUS_NAME,
363
avahi.DBUS_PATH_SERVER,
364
follow_name_owner_changes=True),
233
avahi.DBUS_PATH_SERVER),
365
234
avahi.DBUS_INTERFACE_SERVER)
366
235
self.server.connect_to_signal("StateChanged",
367
236
self.server_state_changed)
368
237
self.server_state_changed(self.server.GetState())
370
class AvahiServiceToSyslog(AvahiService):
372
"""Add the new name to the syslog messages"""
373
ret = AvahiService.rename(self)
374
syslogger.setFormatter(logging.Formatter
375
('Mandos (%s) [%%(process)d]:'
376
' %%(levelname)s: %%(message)s'
380
def _timedelta_to_milliseconds(td):
381
"Convert a datetime.timedelta() to milliseconds"
382
return ((td.days * 24 * 60 * 60 * 1000)
383
+ (td.seconds * 1000)
384
+ (td.microseconds // 1000))
386
240
class Client(object):
387
241
"""A representation of a client host served by this server.
411
264
interval: datetime.timedelta(); How often to start a new checker
412
265
last_approval_request: datetime.datetime(); (UTC) or None
413
266
last_checked_ok: datetime.datetime(); (UTC) or None
415
last_checker_status: integer between 0 and 255 reflecting exit
416
status of last checker. -1 reflects crashed
418
267
last_enabled: datetime.datetime(); (UTC)
419
268
name: string; from the config file, used in log messages and
420
269
D-Bus identifiers
421
270
secret: bytestring; sent verbatim (over TLS) to client
422
271
timeout: datetime.timedelta(); How long from last_checked_ok
423
272
until this client is disabled
424
extended_timeout: extra long timeout when password has been sent
425
273
runtime_expansions: Allowed attributes for runtime expansion.
426
expires: datetime.datetime(); time (UTC) when a client will be
430
276
runtime_expansions = ("approval_delay", "approval_duration",
432
278
"host", "interval", "last_checked_ok",
433
279
"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))
435
288
def timeout_milliseconds(self):
436
289
"Return the 'timeout' attribute in milliseconds"
437
return _timedelta_to_milliseconds(self.timeout)
439
def extended_timeout_milliseconds(self):
440
"Return the 'extended_timeout' attribute in milliseconds"
441
return _timedelta_to_milliseconds(self.extended_timeout)
290
return self._timedelta_to_milliseconds(self.timeout)
443
292
def interval_milliseconds(self):
444
293
"Return the 'interval' attribute in milliseconds"
445
return _timedelta_to_milliseconds(self.interval)
294
return self._timedelta_to_milliseconds(self.interval)
447
296
def approval_delay_milliseconds(self):
448
return _timedelta_to_milliseconds(self.approval_delay)
297
return self._timedelta_to_milliseconds(self.approval_delay)
450
def __init__(self, name = None, config=None):
299
def __init__(self, name = None, disable_hook=None, config=None):
451
300
"""Note: the 'checker' key in 'config' sets the
452
301
'checker_command' attribute and *not* the 'checker'
474
323
self.host = config.get("host", "")
475
324
self.created = datetime.datetime.utcnow()
477
326
self.last_approval_request = None
478
self.last_enabled = datetime.datetime.utcnow()
327
self.last_enabled = None
479
328
self.last_checked_ok = None
480
self.last_checker_status = None
481
329
self.timeout = string_to_delta(config["timeout"])
482
self.extended_timeout = string_to_delta(config
483
["extended_timeout"])
484
330
self.interval = string_to_delta(config["interval"])
331
self.disable_hook = disable_hook
485
332
self.checker = None
486
333
self.checker_initiator_tag = None
487
334
self.disable_initiator_tag = None
488
self.expires = datetime.datetime.utcnow() + self.timeout
489
335
self.checker_callback_tag = None
490
336
self.checker_command = config["checker"]
491
337
self.current_checker_command = None
338
self.last_connect = None
492
339
self._approved = None
493
340
self.approved_by_default = config.get("approved_by_default",
497
344
config["approval_delay"])
498
345
self.approval_duration = string_to_delta(
499
346
config["approval_duration"])
500
self.changedstate = (multiprocessing_manager
501
.Condition(multiprocessing_manager
503
self.client_structure = [attr for attr in
504
self.__dict__.iterkeys()
505
if not attr.startswith("_")]
506
self.client_structure.append("client_structure")
508
for name, t in inspect.getmembers(type(self),
512
if not name.startswith("_"):
513
self.client_structure.append(name)
347
self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
515
# Send notice to process children that client state has changed
516
349
def send_changedstate(self):
517
with self.changedstate:
518
self.changedstate.notify_all()
350
self.changedstate.acquire()
351
self.changedstate.notify_all()
352
self.changedstate.release()
520
354
def enable(self):
521
355
"""Start this client's checker and timeout hooks"""
522
356
if getattr(self, "enabled", False):
523
357
# Already enabled
525
359
self.send_changedstate()
526
self.expires = datetime.datetime.utcnow() + self.timeout
360
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(),
527
370
self.enabled = True
528
self.last_enabled = datetime.datetime.utcnow()
371
# Also start a new checker *right now*.
531
374
def disable(self, quiet=True):
532
375
"""Disable this client."""
539
382
if getattr(self, "disable_initiator_tag", False):
540
383
gobject.source_remove(self.disable_initiator_tag)
541
384
self.disable_initiator_tag = None
543
385
if getattr(self, "checker_initiator_tag", False):
544
386
gobject.source_remove(self.checker_initiator_tag)
545
387
self.checker_initiator_tag = None
546
388
self.stop_checker()
389
if self.disable_hook:
390
self.disable_hook(self)
547
391
self.enabled = False
548
392
# Do not run this again if called by a gobject.timeout_add
551
395
def __del__(self):
396
self.disable_hook = None
554
def init_checker(self):
555
# Schedule a new checker to be started an 'interval' from now,
556
# and every interval from then on.
557
self.checker_initiator_tag = (gobject.timeout_add
558
(self.interval_milliseconds(),
560
# Schedule a disable() when 'timeout' has passed
561
self.disable_initiator_tag = (gobject.timeout_add
562
(self.timeout_milliseconds(),
564
# Also start a new checker *right now*.
567
399
def checker_callback(self, pid, condition, command):
568
400
"""The checker has completed, so take appropriate actions."""
569
401
self.checker_callback_tag = None
570
402
self.checker = None
571
403
if os.WIFEXITED(condition):
572
self.last_checker_status = os.WEXITSTATUS(condition)
573
if self.last_checker_status == 0:
404
exitstatus = os.WEXITSTATUS(condition)
574
406
logger.info("Checker for %(name)s succeeded",
576
408
self.checked_ok()
578
410
logger.info("Checker for %(name)s failed",
581
self.last_checker_status = -1
582
413
logger.warning("Checker for %(name)s crashed?",
585
def checked_ok(self, timeout=None):
416
def checked_ok(self):
586
417
"""Bump up the timeout for this client.
588
419
This should only be called when the client has been seen,
592
timeout = self.timeout
593
422
self.last_checked_ok = datetime.datetime.utcnow()
594
if self.disable_initiator_tag is not None:
595
gobject.source_remove(self.disable_initiator_tag)
596
if getattr(self, "enabled", False):
597
self.disable_initiator_tag = (gobject.timeout_add
598
(_timedelta_to_milliseconds
599
(timeout), self.disable))
600
self.expires = datetime.datetime.utcnow() + timeout
423
gobject.source_remove(self.disable_initiator_tag)
424
self.disable_initiator_tag = (gobject.timeout_add
425
(self.timeout_milliseconds(),
602
428
def need_approval(self):
603
429
self.last_approval_request = datetime.datetime.utcnow()
760
585
def _get_all_dbus_properties(self):
761
586
"""Returns a generator of (name, attribute) pairs
763
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
764
for cls in self.__class__.__mro__
588
return ((prop._dbus_name, prop)
765
589
for name, prop in
766
inspect.getmembers(cls, self._is_dbus_property))
590
inspect.getmembers(self, self._is_dbus_property))
768
592
def _get_dbus_property(self, interface_name, property_name):
769
593
"""Returns a bound method if one exists which is a D-Bus
770
594
property with the specified name and interface.
772
for cls in self.__class__.__mro__:
773
for name, value in (inspect.getmembers
774
(cls, self._is_dbus_property)):
775
if (value._dbus_name == property_name
776
and value._dbus_interface == interface_name):
777
return value.__get__(self)
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)):
779
606
# No such property
780
607
raise DBusPropertyNotFound(self.dbus_object_path + ":"
781
608
+ interface_name + "."
877
704
xmlstring = document.toxml("utf-8")
878
705
document.unlink()
879
706
except (AttributeError, xml.dom.DOMException,
880
xml.parsers.expat.ExpatError) as error:
707
xml.parsers.expat.ExpatError), error:
881
708
logger.error("Failed to override Introspection method",
886
def datetime_to_dbus (dt, variant_level=0):
887
"""Convert a UTC datetime.datetime() to a D-Bus type."""
889
return dbus.String("", variant_level = variant_level)
890
return dbus.String(dt.isoformat(),
891
variant_level=variant_level)
894
class AlternateDBusNamesMetaclass(DBusObjectWithProperties
896
"""Applied to an empty subclass of a D-Bus object, this metaclass
897
will add additional D-Bus attributes matching a certain pattern.
899
def __new__(mcs, name, bases, attr):
900
# Go through all the base classes which could have D-Bus
901
# methods, signals, or properties in them
902
for base in (b for b in bases
903
if issubclass(b, dbus.service.Object)):
904
# Go though all attributes of the base class
905
for attrname, attribute in inspect.getmembers(base):
906
# Ignore non-D-Bus attributes, and D-Bus attributes
907
# with the wrong interface name
908
if (not hasattr(attribute, "_dbus_interface")
909
or not attribute._dbus_interface
910
.startswith("se.recompile.Mandos")):
912
# Create an alternate D-Bus interface name based on
914
alt_interface = (attribute._dbus_interface
915
.replace("se.recompile.Mandos",
916
"se.bsnet.fukt.Mandos"))
917
# Is this a D-Bus signal?
918
if getattr(attribute, "_dbus_is_signal", False):
919
# Extract the original non-method function by
921
nonmethod_func = (dict(
922
zip(attribute.func_code.co_freevars,
923
attribute.__closure__))["func"]
925
# Create a new, but exactly alike, function
926
# object, and decorate it to be a new D-Bus signal
927
# with the alternate D-Bus interface name
928
new_function = (dbus.service.signal
930
attribute._dbus_signature)
932
nonmethod_func.func_code,
933
nonmethod_func.func_globals,
934
nonmethod_func.func_name,
935
nonmethod_func.func_defaults,
936
nonmethod_func.func_closure)))
937
# Define a creator of a function to call both the
938
# old and new functions, so both the old and new
939
# signals gets sent when the function is called
940
def fixscope(func1, func2):
941
"""This function is a scope container to pass
942
func1 and func2 to the "call_both" function
943
outside of its arguments"""
944
def call_both(*args, **kwargs):
945
"""This function will emit two D-Bus
946
signals by calling func1 and func2"""
947
func1(*args, **kwargs)
948
func2(*args, **kwargs)
950
# Create the "call_both" function and add it to
952
attr[attrname] = fixscope(attribute,
954
# Is this a D-Bus method?
955
elif getattr(attribute, "_dbus_is_method", False):
956
# Create a new, but exactly alike, function
957
# object. Decorate it to be a new D-Bus method
958
# with the alternate D-Bus interface name. Add it
960
attr[attrname] = (dbus.service.method
962
attribute._dbus_in_signature,
963
attribute._dbus_out_signature)
965
(attribute.func_code,
966
attribute.func_globals,
968
attribute.func_defaults,
969
attribute.func_closure)))
970
# Is this a D-Bus property?
971
elif getattr(attribute, "_dbus_is_property", False):
972
# Create a new, but exactly alike, function
973
# object, and decorate it to be a new D-Bus
974
# property with the alternate D-Bus interface
975
# name. Add it to the class.
976
attr[attrname] = (dbus_service_property
978
attribute._dbus_signature,
979
attribute._dbus_access,
981
._dbus_get_args_options
984
(attribute.func_code,
985
attribute.func_globals,
987
attribute.func_defaults,
988
attribute.func_closure)))
989
return type.__new__(mcs, name, bases, attr)
992
713
class ClientDBus(Client, DBusObjectWithProperties):
993
714
"""A Client class using D-Bus
1017
737
DBusObjectWithProperties.__init__(self, self.bus,
1018
738
self.dbus_object_path)
1020
def notifychangeproperty(transform_func,
1021
dbus_name, type_func=lambda x: x,
1023
""" Modify a variable so that it's a property which announces
1024
its changes to DBus.
1026
transform_fun: Function that takes a value and a variant_level
1027
and transforms it to a D-Bus type.
1028
dbus_name: D-Bus name of the variable
1029
type_func: Function that transform the value before sending it
1030
to the D-Bus. Default: no transform
1031
variant_level: D-Bus variant level. Default: 1
1033
attrname = "_{0}".format(dbus_name)
1034
def setter(self, value):
1035
if hasattr(self, "dbus_object_path"):
1036
if (not hasattr(self, attrname) or
1037
type_func(getattr(self, attrname, None))
1038
!= type_func(value)):
1039
dbus_value = transform_func(type_func(value),
1042
self.PropertyChanged(dbus.String(dbus_name),
1044
setattr(self, attrname, value)
1046
return property(lambda self: getattr(self, attrname), setter)
1049
expires = notifychangeproperty(datetime_to_dbus, "Expires")
1050
approvals_pending = notifychangeproperty(dbus.Boolean,
1053
enabled = notifychangeproperty(dbus.Boolean, "Enabled")
1054
last_enabled = notifychangeproperty(datetime_to_dbus,
1056
checker = notifychangeproperty(dbus.Boolean, "CheckerRunning",
1057
type_func = lambda checker:
1058
checker is not None)
1059
last_checked_ok = notifychangeproperty(datetime_to_dbus,
1061
last_approval_request = notifychangeproperty(
1062
datetime_to_dbus, "LastApprovalRequest")
1063
approved_by_default = notifychangeproperty(dbus.Boolean,
1064
"ApprovedByDefault")
1065
approval_delay = notifychangeproperty(dbus.UInt16,
1068
_timedelta_to_milliseconds)
1069
approval_duration = notifychangeproperty(
1070
dbus.UInt16, "ApprovalDuration",
1071
type_func = _timedelta_to_milliseconds)
1072
host = notifychangeproperty(dbus.String, "Host")
1073
timeout = notifychangeproperty(dbus.UInt16, "Timeout",
1075
_timedelta_to_milliseconds)
1076
extended_timeout = notifychangeproperty(
1077
dbus.UInt16, "ExtendedTimeout",
1078
type_func = _timedelta_to_milliseconds)
1079
interval = notifychangeproperty(dbus.UInt16,
1082
_timedelta_to_milliseconds)
1083
checker_command = notifychangeproperty(dbus.String, "Checker")
1085
del notifychangeproperty
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"),
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))
1087
784
def __del__(self, *args, **kwargs):
1112
812
return Client.checker_callback(self, pid, condition, command,
1113
813
*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,
1115
833
def start_checker(self, *args, **kwargs):
1116
834
old_checker = self.checker
1117
835
if self.checker is not None:
1124
842
and old_checker_pid != self.checker.pid):
1125
843
# Emit D-Bus signal
1126
844
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))
1129
859
def _reset_approved(self):
1130
860
self._approved = None
1247
972
if value is None: # get
1248
973
return dbus.UInt64(self.approval_delay_milliseconds())
1249
974
self.approval_delay = datetime.timedelta(0, 0, 0, value)
976
self.PropertyChanged(dbus.String("ApprovalDelay"),
977
dbus.UInt64(value, variant_level=1))
1251
979
# ApprovalDuration - property
1252
980
@dbus_service_property(_interface, signature="t",
1253
981
access="readwrite")
1254
982
def ApprovalDuration_dbus_property(self, value=None):
1255
983
if value is None: # get
1256
return dbus.UInt64(_timedelta_to_milliseconds(
984
return dbus.UInt64(self._timedelta_to_milliseconds(
1257
985
self.approval_duration))
1258
986
self.approval_duration = datetime.timedelta(0, 0, 0, value)
988
self.PropertyChanged(dbus.String("ApprovalDuration"),
989
dbus.UInt64(value, variant_level=1))
1260
991
# Name - property
1261
992
@dbus_service_property(_interface, signature="s", access="read")
1274
1005
if value is None: # get
1275
1006
return dbus.String(self.host)
1276
1007
self.host = value
1009
self.PropertyChanged(dbus.String("Host"),
1010
dbus.String(value, variant_level=1))
1278
1012
# Created - property
1279
1013
@dbus_service_property(_interface, signature="s", access="read")
1280
1014
def Created_dbus_property(self):
1281
return dbus.String(datetime_to_dbus(self.created))
1015
return dbus.String(self._datetime_to_dbus(self.created))
1283
1017
# LastEnabled - property
1284
1018
@dbus_service_property(_interface, signature="s", access="read")
1285
1019
def LastEnabled_dbus_property(self):
1286
return datetime_to_dbus(self.last_enabled)
1020
if self.last_enabled is None:
1021
return dbus.String("")
1022
return dbus.String(self._datetime_to_dbus(self.last_enabled))
1288
1024
# Enabled - property
1289
1025
@dbus_service_property(_interface, signature="b",
1322
1060
if value is None: # get
1323
1061
return dbus.UInt64(self.timeout_milliseconds())
1324
1062
self.timeout = datetime.timedelta(0, 0, 0, value)
1064
self.PropertyChanged(dbus.String("Timeout"),
1065
dbus.UInt64(value, variant_level=1))
1325
1066
if getattr(self, "disable_initiator_tag", None) is None:
1327
1068
# Reschedule timeout
1328
1069
gobject.source_remove(self.disable_initiator_tag)
1329
1070
self.disable_initiator_tag = None
1331
time_to_die = _timedelta_to_milliseconds((self
1071
time_to_die = (self.
1072
_timedelta_to_milliseconds((self
1336
1077
if time_to_die <= 0:
1337
1078
# The timeout has passed
1340
self.expires = (datetime.datetime.utcnow()
1341
+ datetime.timedelta(milliseconds =
1343
1081
self.disable_initiator_tag = (gobject.timeout_add
1344
1082
(time_to_die, self.disable))
1346
# ExtendedTimeout - property
1347
@dbus_service_property(_interface, signature="t",
1349
def ExtendedTimeout_dbus_property(self, value=None):
1350
if value is None: # get
1351
return dbus.UInt64(self.extended_timeout_milliseconds())
1352
self.extended_timeout = datetime.timedelta(0, 0, 0, value)
1354
1084
# Interval - property
1355
1085
@dbus_service_property(_interface, signature="t",
1356
1086
access="readwrite")
1472
1205
if int(line.strip().split()[0]) > 1:
1473
1206
raise RuntimeError
1474
except (ValueError, IndexError, RuntimeError) as error:
1207
except (ValueError, IndexError, RuntimeError), error:
1475
1208
logger.error("Unknown protocol version: %s", error)
1478
1211
# Start GnuTLS connection
1480
1213
session.handshake()
1481
except gnutls.errors.GNUTLSError as error:
1214
except gnutls.errors.GNUTLSError, error:
1482
1215
logger.warning("Handshake failed: %s", error)
1483
1216
# Do not run session.bye() here: the session is not
1484
1217
# established. Just abandon the request.
1486
1219
logger.debug("Handshake succeeded")
1488
1221
approval_required = False
1491
1224
fpr = self.fingerprint(self.peer_certificate
1494
gnutls.errors.GNUTLSError) as error:
1226
except (TypeError, gnutls.errors.GNUTLSError), error:
1495
1227
logger.warning("Bad certificate: %s", error)
1497
1229
logger.debug("Fingerprint: %s", fpr)
1498
if self.server.use_dbus:
1500
client.NewRequest(str(self.client_address))
1503
1232
client = ProxyClient(child_pipe, fpr,
1504
1233
self.client_address)
1677
1401
This function creates a new pipe in self.pipe
1679
1403
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1681
proc = MultiprocessingMixIn.process_request(self, request,
1405
super(MultiprocessingMixInWithPipe,
1406
self).process_request(request, client_address)
1683
1407
self.child_pipe.close()
1684
self.add_pipe(parent_pipe, proc)
1686
def add_pipe(self, parent_pipe, proc):
1408
self.add_pipe(parent_pipe)
1410
def add_pipe(self, parent_pipe):
1687
1411
"""Dummy function; override as necessary"""
1688
1412
raise NotImplementedError
1691
1414
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1692
1415
socketserver.TCPServer, object):
1693
1416
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1777
1500
def server_activate(self):
1778
1501
if self.enabled:
1779
1502
return socketserver.TCPServer.server_activate(self)
1781
1503
def enable(self):
1782
1504
self.enabled = True
1784
def add_pipe(self, parent_pipe, proc):
1505
def add_pipe(self, parent_pipe):
1785
1506
# Call "handle_ipc" for both data and EOF events
1786
1507
gobject.io_add_watch(parent_pipe.fileno(),
1787
1508
gobject.IO_IN | gobject.IO_HUP,
1788
1509
functools.partial(self.handle_ipc,
1510
parent_pipe = parent_pipe))
1793
1512
def handle_ipc(self, source, condition, parent_pipe=None,
1794
proc = None, client_object=None):
1513
client_object=None):
1795
1514
condition_names = {
1796
1515
gobject.IO_IN: "IN", # There is data to read.
1797
1516
gobject.IO_OUT: "OUT", # Data can be written (without
1820
1537
fpr = request[1]
1821
1538
address = request[2]
1823
for c in self.clients.itervalues():
1540
for c in self.clients:
1824
1541
if c.fingerprint == fpr:
1828
logger.info("Client not found for fingerprint: %s, ad"
1829
"dress: %s", fpr, address)
1545
logger.warning("Client not found for fingerprint: %s, ad"
1546
"dress: %s", fpr, address)
1830
1547
if self.use_dbus:
1831
1548
# Emit D-Bus signal
1832
mandos_dbus_service.ClientNotFound(fpr,
1549
mandos_dbus_service.ClientNotFound(fpr, address[0])
1834
1550
parent_pipe.send(False)
1837
1553
gobject.io_add_watch(parent_pipe.fileno(),
1838
1554
gobject.IO_IN | gobject.IO_HUP,
1839
1555
functools.partial(self.handle_ipc,
1556
parent_pipe = parent_pipe,
1557
client_object = client))
1845
1558
parent_pipe.send(True)
1846
# remove the old hook in favor of the new above hook on
1559
# remove the old hook in favor of the new above hook on same fileno
1849
1561
if command == 'funcall':
1850
1562
funcname = request[1]
1851
1563
args = request[2]
1852
1564
kwargs = request[3]
1854
parent_pipe.send(('data', getattr(client_object,
1566
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1858
1568
if command == 'getattr':
1859
1569
attrname = request[1]
1860
1570
if callable(client_object.__getattribute__(attrname)):
1861
1571
parent_pipe.send(('function',))
1863
parent_pipe.send(('data', client_object
1864
.__getattribute__(attrname)))
1573
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1866
1575
if command == 'setattr':
1867
1576
attrname = request[1]
1868
1577
value = request[2]
1869
1578
setattr(client_object, attrname, value)
1904
1613
delta = datetime.timedelta(0, 0, 0, 0, 0, 0, value)
1906
1615
raise ValueError("Unknown suffix %r" % suffix)
1907
except (ValueError, IndexError) as e:
1616
except (ValueError, IndexError), e:
1908
1617
raise ValueError(*(e.args))
1909
1618
timevalue += delta
1910
1619
return timevalue
1622
def if_nametoindex(interface):
1623
"""Call the C function if_nametoindex(), or equivalent
1625
Note: This function cannot accept a unicode string."""
1626
global if_nametoindex
1628
if_nametoindex = (ctypes.cdll.LoadLibrary
1629
(ctypes.util.find_library("c"))
1631
except (OSError, AttributeError):
1632
logger.warning("Doing if_nametoindex the hard way")
1633
def if_nametoindex(interface):
1634
"Get an interface index the hard way, i.e. using fcntl()"
1635
SIOCGIFINDEX = 0x8933 # From /usr/include/linux/sockios.h
1636
with contextlib.closing(socket.socket()) as s:
1637
ifreq = fcntl.ioctl(s, SIOCGIFINDEX,
1638
struct.pack(str("16s16x"),
1640
interface_index = struct.unpack(str("I"),
1642
return interface_index
1643
return if_nametoindex(interface)
1913
1646
def daemon(nochdir = False, noclose = False):
1914
1647
"""See daemon(3). Standard BSD Unix function.
1940
1673
##################################################################
1941
1674
# Parsing of options, both command line and config file
1943
parser = argparse.ArgumentParser()
1944
parser.add_argument("-v", "--version", action="version",
1945
version = "%%(prog)s %s" % version,
1946
help="show version number and exit")
1947
parser.add_argument("-i", "--interface", metavar="IF",
1948
help="Bind to interface IF")
1949
parser.add_argument("-a", "--address",
1950
help="Address to listen for requests on")
1951
parser.add_argument("-p", "--port", type=int,
1952
help="Port number to receive requests on")
1953
parser.add_argument("--check", action="store_true",
1954
help="Run self-test")
1955
parser.add_argument("--debug", action="store_true",
1956
help="Debug mode; run in foreground and log"
1958
parser.add_argument("--debuglevel", metavar="LEVEL",
1959
help="Debug level for stdout output")
1960
parser.add_argument("--priority", help="GnuTLS"
1961
" priority string (see GnuTLS documentation)")
1962
parser.add_argument("--servicename",
1963
metavar="NAME", help="Zeroconf service name")
1964
parser.add_argument("--configdir",
1965
default="/etc/mandos", metavar="DIR",
1966
help="Directory to search for configuration"
1968
parser.add_argument("--no-dbus", action="store_false",
1969
dest="use_dbus", help="Do not provide D-Bus"
1970
" system bus interface")
1971
parser.add_argument("--no-ipv6", action="store_false",
1972
dest="use_ipv6", help="Do not use IPv6")
1973
parser.add_argument("--no-restore", action="store_false",
1974
dest="restore", help="Do not restore stored"
1976
parser.add_argument("--statedir", metavar="DIR",
1977
help="Directory to save/restore state in")
1979
options = parser.parse_args()
1676
parser = optparse.OptionParser(version = "%%prog %s" % version)
1677
parser.add_option("-i", "--interface", type="string",
1678
metavar="IF", help="Bind to interface IF")
1679
parser.add_option("-a", "--address", type="string",
1680
help="Address to listen for requests on")
1681
parser.add_option("-p", "--port", type="int",
1682
help="Port number to receive requests on")
1683
parser.add_option("--check", action="store_true",
1684
help="Run self-test")
1685
parser.add_option("--debug", action="store_true",
1686
help="Debug mode; run in foreground and log to"
1688
parser.add_option("--debuglevel", type="string", metavar="LEVEL",
1689
help="Debug level for stdout output")
1690
parser.add_option("--priority", type="string", help="GnuTLS"
1691
" priority string (see GnuTLS documentation)")
1692
parser.add_option("--servicename", type="string",
1693
metavar="NAME", help="Zeroconf service name")
1694
parser.add_option("--configdir", type="string",
1695
default="/etc/mandos", metavar="DIR",
1696
help="Directory to search for configuration"
1698
parser.add_option("--no-dbus", action="store_false",
1699
dest="use_dbus", help="Do not provide D-Bus"
1700
" system bus interface")
1701
parser.add_option("--no-ipv6", action="store_false",
1702
dest="use_ipv6", help="Do not use IPv6")
1703
options = parser.parse_args()[0]
1981
1705
if options.check:
2144
1861
# End of Avahi example code
2147
bus_name = dbus.service.BusName("se.recompile.Mandos",
1864
bus_name = dbus.service.BusName("se.bsnet.fukt.Mandos",
2148
1865
bus, do_not_queue=True)
2149
old_bus_name = (dbus.service.BusName
2150
("se.bsnet.fukt.Mandos", bus,
2152
except dbus.exceptions.NameExistsException as e:
1866
except dbus.exceptions.NameExistsException, e:
2153
1867
logger.error(unicode(e) + ", disabling D-Bus")
2154
1868
use_dbus = False
2155
1869
server_settings["use_dbus"] = False
2156
1870
tcp_server.use_dbus = False
2157
1871
protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
2158
service = AvahiServiceToSyslog(name =
2159
server_settings["servicename"],
2160
servicetype = "_mandos._tcp",
2161
protocol = protocol, bus = bus)
1872
service = AvahiService(name = server_settings["servicename"],
1873
servicetype = "_mandos._tcp",
1874
protocol = protocol, bus = bus)
2162
1875
if server_settings["interface"]:
2163
1876
service.interface = (if_nametoindex
2164
1877
(str(server_settings["interface"])))
2169
1882
client_class = Client
2171
client_class = functools.partial(ClientDBusTransitional,
2174
special_settings = {
2175
# Some settings need to be accessd by special methods;
2176
# booleans need .getboolean(), etc. Here is a list of them:
2177
"approved_by_default":
2179
client_config.getboolean(section, "approved_by_default"),
2181
# Construct a new dict of client settings of this form:
2182
# { client_name: {setting_name: value, ...}, ...}
2183
# with exceptions for any special settings as defined above
2184
client_settings = dict((clientname,
2187
if setting not in special_settings
2188
else special_settings[setting]
2190
for setting, value in
2191
client_config.items(clientname)))
2192
for clientname in client_config.sections())
2194
old_client_settings = {}
2197
# Get client data and settings from last running state.
2198
if server_settings["restore"]:
2200
with open(stored_state_path, "rb") as stored_state:
2201
clients_data, old_client_settings = (pickle.load
2203
os.remove(stored_state_path)
2204
except IOError as e:
2205
logger.warning("Could not load persistent state: {0}"
2207
if e.errno != errno.ENOENT:
2210
with Crypto() as crypt:
2211
for client in clients_data:
2212
client_name = client["name"]
2214
# Decide which value to use after restoring saved state.
2215
# We have three different values: Old config file,
2216
# new config file, and saved state.
2217
# New config value takes precedence if it differs from old
2218
# config value, otherwise use saved state.
2219
for name, value in client_settings[client_name].items():
2221
# For each value in new config, check if it
2222
# differs from the old config value (Except for
2223
# the "secret" attribute)
2224
if (name != "secret" and
2225
value != old_client_settings[client_name]
2227
setattr(client, name, value)
2231
# Clients who has passed its expire date can still be
2232
# enabled if its last checker was sucessful. Clients
2233
# whose checker failed before we stored its state is
2234
# assumed to have failed all checkers during downtime.
2235
if client["enabled"] and client["last_checked_ok"]:
2236
if ((datetime.datetime.utcnow()
2237
- client["last_checked_ok"])
2238
> client["interval"]):
2239
if client["last_checker_status"] != 0:
2240
client["enabled"] = False
2242
client["expires"] = (datetime.datetime
2244
+ client["timeout"])
2246
client["changedstate"] = (multiprocessing_manager
2248
(multiprocessing_manager
2251
new_client = (ClientDBusTransitional.__new__
2252
(ClientDBusTransitional))
2253
tcp_server.clients[client_name] = new_client
2254
new_client.bus = bus
2255
for name, value in client.iteritems():
2256
setattr(new_client, name, value)
2257
client_object_name = unicode(client_name).translate(
2258
{ord("."): ord("_"),
2259
ord("-"): ord("_")})
2260
new_client.dbus_object_path = (dbus.ObjectPath
2262
+ client_object_name))
2263
DBusObjectWithProperties.__init__(new_client,
2268
tcp_server.clients[client_name] = (Client.__new__
2270
for name, value in client.iteritems():
2271
setattr(tcp_server.clients[client_name],
1884
client_class = functools.partial(ClientDBus, bus = bus)
1885
def client_config_items(config, section):
1886
special_settings = {
1887
"approved_by_default":
1888
lambda: config.getboolean(section,
1889
"approved_by_default"),
1891
for name, value in config.items(section):
2275
tcp_server.clients[client_name].secret = (
2276
crypt.decrypt(tcp_server.clients[client_name]
2278
client_settings[client_name]
2281
# If decryption fails, we use secret from new settings
2282
tcp_server.clients[client_name].secret = (
2283
client_settings[client_name]["secret"])
2285
# Create/remove clients based on new changes made to config
2286
for clientname in set(old_client_settings) - set(client_settings):
2287
del tcp_server.clients[clientname]
2288
for clientname in set(client_settings) - set(old_client_settings):
2289
tcp_server.clients[clientname] = (client_class(name
1893
yield (name, special_settings[name]())
1897
tcp_server.clients.update(set(
1898
client_class(name = section,
1899
config= dict(client_config_items(
1900
client_config, section)))
1901
for section in client_config.sections()))
2295
1902
if not tcp_server.clients:
2296
1903
logger.warning("No clients defined")
2371
class MandosDBusServiceTransitional(MandosDBusService):
2372
__metaclass__ = AlternateDBusNamesMetaclass
2373
mandos_dbus_service = MandosDBusServiceTransitional()
1977
mandos_dbus_service = MandosDBusService()
2376
1980
"Cleanup function; run on exit"
2377
1981
service.cleanup()
2379
multiprocessing.active_children()
2380
if not (tcp_server.clients or client_settings):
2383
# Store client before exiting. Secrets are encrypted with key
2384
# based on what config file has. If config file is
2385
# removed/edited, old secret will thus be unrecovable.
2387
with Crypto() as crypt:
2388
for client in tcp_server.clients.itervalues():
2389
key = client_settings[client.name]["secret"]
2390
client.encrypted_secret = crypt.encrypt(client.secret,
2394
# A list of attributes that will not be stored when
2396
exclude = set(("bus", "changedstate", "secret"))
2397
for name, typ in (inspect.getmembers
2398
(dbus.service.Object)):
2401
client_dict["encrypted_secret"] = (client
2403
for attr in client.client_structure:
2404
if attr not in exclude:
2405
client_dict[attr] = getattr(client, attr)
2407
clients.append(client_dict)
2408
del client_settings[client.name]["secret"]
2411
with os.fdopen(os.open(stored_state_path,
2412
os.O_CREAT|os.O_WRONLY|os.O_TRUNC,
2413
0600), "wb") as stored_state:
2414
pickle.dump((clients, client_settings), stored_state)
2415
except (IOError, OSError) as e:
2416
logger.warning("Could not save persistent state: {0}"
2418
if e.errno not in (errno.ENOENT, errno.EACCES):
2421
# Delete all clients, and settings from config
2422
1983
while tcp_server.clients:
2423
name, client = tcp_server.clients.popitem()
1984
client = tcp_server.clients.pop()
2425
1986
client.remove_from_connection()
1987
client.disable_hook = None
2426
1988
# Don't signal anything except ClientRemoved
2427
1989
client.disable(quiet=True)
2429
1991
# Emit D-Bus signal
2430
mandos_dbus_service.ClientRemoved(client
1992
mandos_dbus_service.ClientRemoved(client.dbus_object_path,
2433
client_settings.clear()
2435
1995
atexit.register(cleanup)
2437
for client in tcp_server.clients.itervalues():
1997
for client in tcp_server.clients:
2439
1999
# Emit D-Bus signal
2440
2000
mandos_dbus_service.ClientAdded(client.dbus_object_path)
2441
# Need to initiate checking of clients
2443
client.init_checker()
2445
2003
tcp_server.enable()
2446
2004
tcp_server.server_activate()