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 PGPError(Exception):
132
"""Exception if encryption/decryption fails"""
136
class PGPEngine(object):
137
"""A simple class for OpenPGP symmetric encryption & decryption"""
139
self.gnupg = GnuPGInterface.GnuPG()
140
self.tempdir = tempfile.mkdtemp(prefix="mandos-")
141
self.gnupg = GnuPGInterface.GnuPG()
142
self.gnupg.options.meta_interactive = False
143
self.gnupg.options.homedir = self.tempdir
144
self.gnupg.options.extra_args.extend(['--force-mdc',
150
def __exit__ (self, exc_type, exc_value, traceback):
158
if self.tempdir is not None:
159
# Delete contents of tempdir
160
for root, dirs, files in os.walk(self.tempdir,
162
for filename in files:
163
os.remove(os.path.join(root, filename))
165
os.rmdir(os.path.join(root, dirname))
167
os.rmdir(self.tempdir)
170
def password_encode(self, password):
171
# Passphrase can not be empty and can not contain newlines or
172
# NUL bytes. So we prefix it and hex encode it.
173
return b"mandos" + binascii.hexlify(password)
175
def encrypt(self, data, password):
176
self.gnupg.passphrase = self.password_encode(password)
177
with open(os.devnull) as devnull:
179
proc = self.gnupg.run(['--symmetric'],
180
create_fhs=['stdin', 'stdout'],
181
attach_fhs={'stderr': devnull})
182
with contextlib.closing(proc.handles['stdin']) as f:
184
with contextlib.closing(proc.handles['stdout']) as f:
185
ciphertext = f.read()
189
self.gnupg.passphrase = None
192
def decrypt(self, data, password):
193
self.gnupg.passphrase = self.password_encode(password)
194
with open(os.devnull) as devnull:
196
proc = self.gnupg.run(['--decrypt'],
197
create_fhs=['stdin', 'stdout'],
198
attach_fhs={'stderr': devnull})
199
with contextlib.closing(proc.handles['stdin'] ) as f:
201
with contextlib.closing(proc.handles['stdout']) as f:
202
decrypted_plaintext = f.read()
206
self.gnupg.passphrase = None
207
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)
211
103
class AvahiError(Exception):
212
104
def __init__(self, value, *args, **kwargs):
267
158
" after %i retries, exiting.",
268
159
self.rename_count)
269
160
raise AvahiServiceError("Too many renames")
270
self.name = unicode(self.server
271
.GetAlternativeServiceName(self.name))
161
self.name = unicode(self.server.GetAlternativeServiceName(self.name))
272
162
logger.info("Changing Zeroconf service name to %r ...",
164
syslogger.setFormatter(logging.Formatter
165
('Mandos (%s) [%%(process)d]:'
166
' %%(levelname)s: %%(message)s'
277
except dbus.exceptions.DBusException as error:
171
except dbus.exceptions.DBusException, error:
278
172
logger.critical("DBusException: %s", error)
281
175
self.rename_count += 1
282
176
def remove(self):
283
177
"""Derived from the Avahi example code"""
284
if self.entry_group_state_changed_match is not None:
285
self.entry_group_state_changed_match.remove()
286
self.entry_group_state_changed_match = None
287
178
if self.group is not None:
288
179
self.group.Reset()
290
181
"""Derived from the Avahi example code"""
292
182
if self.group is None:
293
183
self.group = dbus.Interface(
294
184
self.bus.get_object(avahi.DBUS_NAME,
295
185
self.server.EntryGroupNew()),
296
186
avahi.DBUS_INTERFACE_ENTRY_GROUP)
297
self.entry_group_state_changed_match = (
298
self.group.connect_to_signal(
299
'StateChanged', self.entry_group_state_changed))
187
self.group.connect_to_signal('StateChanged',
189
.entry_group_state_changed)
300
190
logger.debug("Adding Zeroconf service '%s' of type '%s' ...",
301
191
self.name, self.type)
302
192
self.group.AddService(
325
215
def cleanup(self):
326
216
"""Derived from the Avahi example code"""
327
217
if self.group is not None:
330
except (dbus.exceptions.UnknownMethodException,
331
dbus.exceptions.DBusException):
333
219
self.group = None
335
def server_state_changed(self, state, error=None):
220
def server_state_changed(self, state):
336
221
"""Derived from the Avahi example code"""
337
222
logger.debug("Avahi server state change: %i", state)
338
bad_states = { avahi.SERVER_INVALID:
339
"Zeroconf server invalid",
340
avahi.SERVER_REGISTERING: None,
341
avahi.SERVER_COLLISION:
342
"Zeroconf server name collision",
343
avahi.SERVER_FAILURE:
344
"Zeroconf server failure" }
345
if state in bad_states:
346
if bad_states[state] is not None:
348
logger.error(bad_states[state])
350
logger.error(bad_states[state] + ": %r", error)
223
if state == avahi.SERVER_COLLISION:
224
logger.error("Zeroconf server name collision")
352
226
elif state == avahi.SERVER_RUNNING:
356
logger.debug("Unknown state: %r", state)
358
logger.debug("Unknown state: %r: %r", state, error)
359
228
def activate(self):
360
229
"""Derived from the Avahi example code"""
361
230
if self.server is None:
362
231
self.server = dbus.Interface(
363
232
self.bus.get_object(avahi.DBUS_NAME,
364
avahi.DBUS_PATH_SERVER,
365
follow_name_owner_changes=True),
233
avahi.DBUS_PATH_SERVER),
366
234
avahi.DBUS_INTERFACE_SERVER)
367
235
self.server.connect_to_signal("StateChanged",
368
236
self.server_state_changed)
369
237
self.server_state_changed(self.server.GetState())
371
class AvahiServiceToSyslog(AvahiService):
373
"""Add the new name to the syslog messages"""
374
ret = AvahiService.rename(self)
375
syslogger.setFormatter(logging.Formatter
376
('Mandos (%s) [%%(process)d]:'
377
' %%(levelname)s: %%(message)s'
381
def timedelta_to_milliseconds(td):
382
"Convert a datetime.timedelta() to milliseconds"
383
return ((td.days * 24 * 60 * 60 * 1000)
384
+ (td.seconds * 1000)
385
+ (td.microseconds // 1000))
387
240
class Client(object):
388
241
"""A representation of a client host served by this server.
391
approved: bool(); 'None' if not yet approved/disapproved
244
_approved: bool(); 'None' if not yet approved/disapproved
392
245
approval_delay: datetime.timedelta(); Time to wait for approval
393
246
approval_duration: datetime.timedelta(); Duration of one approval
394
247
checker: subprocess.Popen(); a running checker process used
412
264
interval: datetime.timedelta(); How often to start a new checker
413
265
last_approval_request: datetime.datetime(); (UTC) or None
414
266
last_checked_ok: datetime.datetime(); (UTC) or None
416
last_checker_status: integer between 0 and 255 reflecting exit
417
status of last checker. -1 reflects crashed
419
last_enabled: datetime.datetime(); (UTC) or None
267
last_enabled: datetime.datetime(); (UTC)
420
268
name: string; from the config file, used in log messages and
421
269
D-Bus identifiers
422
270
secret: bytestring; sent verbatim (over TLS) to client
423
271
timeout: datetime.timedelta(); How long from last_checked_ok
424
272
until this client is disabled
425
extended_timeout: extra long timeout when password has been sent
426
273
runtime_expansions: Allowed attributes for runtime expansion.
427
expires: datetime.datetime(); time (UTC) when a client will be
431
276
runtime_expansions = ("approval_delay", "approval_duration",
433
278
"host", "interval", "last_checked_ok",
434
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))
436
288
def timeout_milliseconds(self):
437
289
"Return the 'timeout' attribute in milliseconds"
438
return timedelta_to_milliseconds(self.timeout)
440
def extended_timeout_milliseconds(self):
441
"Return the 'extended_timeout' attribute in milliseconds"
442
return timedelta_to_milliseconds(self.extended_timeout)
290
return self._timedelta_to_milliseconds(self.timeout)
444
292
def interval_milliseconds(self):
445
293
"Return the 'interval' attribute in milliseconds"
446
return timedelta_to_milliseconds(self.interval)
294
return self._timedelta_to_milliseconds(self.interval)
448
296
def approval_delay_milliseconds(self):
449
return timedelta_to_milliseconds(self.approval_delay)
297
return self._timedelta_to_milliseconds(self.approval_delay)
451
def __init__(self, name = None, config=None):
299
def __init__(self, name = None, disable_hook=None, config=None):
452
300
"""Note: the 'checker' key in 'config' sets the
453
301
'checker_command' attribute and *not* the 'checker'
475
323
self.host = config.get("host", "")
476
324
self.created = datetime.datetime.utcnow()
477
self.enabled = config.get("enabled", True)
478
326
self.last_approval_request = None
480
self.last_enabled = datetime.datetime.utcnow()
482
self.last_enabled = None
327
self.last_enabled = None
483
328
self.last_checked_ok = None
484
self.last_checker_status = None
485
329
self.timeout = string_to_delta(config["timeout"])
486
self.extended_timeout = string_to_delta(config
487
["extended_timeout"])
488
330
self.interval = string_to_delta(config["interval"])
331
self.disable_hook = disable_hook
489
332
self.checker = None
490
333
self.checker_initiator_tag = None
491
334
self.disable_initiator_tag = None
493
self.expires = datetime.datetime.utcnow() + self.timeout
496
335
self.checker_callback_tag = None
497
336
self.checker_command = config["checker"]
498
337
self.current_checker_command = None
338
self.last_connect = None
339
self._approved = None
500
340
self.approved_by_default = config.get("approved_by_default",
502
342
self.approvals_pending = 0
504
344
config["approval_delay"])
505
345
self.approval_duration = string_to_delta(
506
346
config["approval_duration"])
507
self.changedstate = (multiprocessing_manager
508
.Condition(multiprocessing_manager
510
self.client_structure = [attr for attr in
511
self.__dict__.iterkeys()
512
if not attr.startswith("_")]
513
self.client_structure.append("client_structure")
515
for name, t in inspect.getmembers(type(self),
519
if not name.startswith("_"):
520
self.client_structure.append(name)
347
self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
522
# Send notice to process children that client state has changed
523
349
def send_changedstate(self):
524
with self.changedstate:
525
self.changedstate.notify_all()
350
self.changedstate.acquire()
351
self.changedstate.notify_all()
352
self.changedstate.release()
527
354
def enable(self):
528
355
"""Start this client's checker and timeout hooks"""
529
356
if getattr(self, "enabled", False):
530
357
# Already enabled
532
359
self.send_changedstate()
533
self.expires = datetime.datetime.utcnow() + self.timeout
535
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(),
371
# Also start a new checker *right now*.
538
374
def disable(self, quiet=True):
539
375
"""Disable this client."""
546
382
if getattr(self, "disable_initiator_tag", False):
547
383
gobject.source_remove(self.disable_initiator_tag)
548
384
self.disable_initiator_tag = None
550
385
if getattr(self, "checker_initiator_tag", False):
551
386
gobject.source_remove(self.checker_initiator_tag)
552
387
self.checker_initiator_tag = None
553
388
self.stop_checker()
389
if self.disable_hook:
390
self.disable_hook(self)
554
391
self.enabled = False
555
392
# Do not run this again if called by a gobject.timeout_add
558
395
def __del__(self):
396
self.disable_hook = None
561
def init_checker(self):
562
# Schedule a new checker to be started an 'interval' from now,
563
# and every interval from then on.
564
self.checker_initiator_tag = (gobject.timeout_add
565
(self.interval_milliseconds(),
567
# Schedule a disable() when 'timeout' has passed
568
self.disable_initiator_tag = (gobject.timeout_add
569
(self.timeout_milliseconds(),
571
# Also start a new checker *right now*.
574
399
def checker_callback(self, pid, condition, command):
575
400
"""The checker has completed, so take appropriate actions."""
576
401
self.checker_callback_tag = None
577
402
self.checker = None
578
403
if os.WIFEXITED(condition):
579
self.last_checker_status = os.WEXITSTATUS(condition)
580
if self.last_checker_status == 0:
404
exitstatus = os.WEXITSTATUS(condition)
581
406
logger.info("Checker for %(name)s succeeded",
583
408
self.checked_ok()
585
410
logger.info("Checker for %(name)s failed",
588
self.last_checker_status = -1
589
413
logger.warning("Checker for %(name)s crashed?",
592
def checked_ok(self, timeout=None):
416
def checked_ok(self):
593
417
"""Bump up the timeout for this client.
595
419
This should only be called when the client has been seen,
599
timeout = self.timeout
600
422
self.last_checked_ok = datetime.datetime.utcnow()
601
if self.disable_initiator_tag is not None:
602
gobject.source_remove(self.disable_initiator_tag)
603
if getattr(self, "enabled", False):
604
self.disable_initiator_tag = (gobject.timeout_add
605
(timedelta_to_milliseconds
606
(timeout), self.disable))
607
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(),
609
428
def need_approval(self):
610
429
self.last_approval_request = datetime.datetime.utcnow()
767
585
def _get_all_dbus_properties(self):
768
586
"""Returns a generator of (name, attribute) pairs
770
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
771
for cls in self.__class__.__mro__
588
return ((prop._dbus_name, prop)
772
589
for name, prop in
773
inspect.getmembers(cls, self._is_dbus_property))
590
inspect.getmembers(self, self._is_dbus_property))
775
592
def _get_dbus_property(self, interface_name, property_name):
776
593
"""Returns a bound method if one exists which is a D-Bus
777
594
property with the specified name and interface.
779
for cls in self.__class__.__mro__:
780
for name, value in (inspect.getmembers
781
(cls, self._is_dbus_property)):
782
if (value._dbus_name == property_name
783
and value._dbus_interface == interface_name):
784
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)):
786
606
# No such property
787
607
raise DBusPropertyNotFound(self.dbus_object_path + ":"
788
608
+ interface_name + "."
884
704
xmlstring = document.toxml("utf-8")
885
705
document.unlink()
886
706
except (AttributeError, xml.dom.DOMException,
887
xml.parsers.expat.ExpatError) as error:
707
xml.parsers.expat.ExpatError), error:
888
708
logger.error("Failed to override Introspection method",
893
def datetime_to_dbus (dt, variant_level=0):
894
"""Convert a UTC datetime.datetime() to a D-Bus type."""
896
return dbus.String("", variant_level = variant_level)
897
return dbus.String(dt.isoformat(),
898
variant_level=variant_level)
901
class AlternateDBusNamesMetaclass(DBusObjectWithProperties
903
"""Applied to an empty subclass of a D-Bus object, this metaclass
904
will add additional D-Bus attributes matching a certain pattern.
906
def __new__(mcs, name, bases, attr):
907
# Go through all the base classes which could have D-Bus
908
# methods, signals, or properties in them
909
for base in (b for b in bases
910
if issubclass(b, dbus.service.Object)):
911
# Go though all attributes of the base class
912
for attrname, attribute in inspect.getmembers(base):
913
# Ignore non-D-Bus attributes, and D-Bus attributes
914
# with the wrong interface name
915
if (not hasattr(attribute, "_dbus_interface")
916
or not attribute._dbus_interface
917
.startswith("se.recompile.Mandos")):
919
# Create an alternate D-Bus interface name based on
921
alt_interface = (attribute._dbus_interface
922
.replace("se.recompile.Mandos",
923
"se.bsnet.fukt.Mandos"))
924
# Is this a D-Bus signal?
925
if getattr(attribute, "_dbus_is_signal", False):
926
# Extract the original non-method function by
928
nonmethod_func = (dict(
929
zip(attribute.func_code.co_freevars,
930
attribute.__closure__))["func"]
932
# Create a new, but exactly alike, function
933
# object, and decorate it to be a new D-Bus signal
934
# with the alternate D-Bus interface name
935
new_function = (dbus.service.signal
937
attribute._dbus_signature)
939
nonmethod_func.func_code,
940
nonmethod_func.func_globals,
941
nonmethod_func.func_name,
942
nonmethod_func.func_defaults,
943
nonmethod_func.func_closure)))
944
# Define a creator of a function to call both the
945
# old and new functions, so both the old and new
946
# signals gets sent when the function is called
947
def fixscope(func1, func2):
948
"""This function is a scope container to pass
949
func1 and func2 to the "call_both" function
950
outside of its arguments"""
951
def call_both(*args, **kwargs):
952
"""This function will emit two D-Bus
953
signals by calling func1 and func2"""
954
func1(*args, **kwargs)
955
func2(*args, **kwargs)
957
# Create the "call_both" function and add it to
959
attr[attrname] = fixscope(attribute,
961
# Is this a D-Bus method?
962
elif getattr(attribute, "_dbus_is_method", False):
963
# Create a new, but exactly alike, function
964
# object. Decorate it to be a new D-Bus method
965
# with the alternate D-Bus interface name. Add it
967
attr[attrname] = (dbus.service.method
969
attribute._dbus_in_signature,
970
attribute._dbus_out_signature)
972
(attribute.func_code,
973
attribute.func_globals,
975
attribute.func_defaults,
976
attribute.func_closure)))
977
# Is this a D-Bus property?
978
elif getattr(attribute, "_dbus_is_property", False):
979
# Create a new, but exactly alike, function
980
# object, and decorate it to be a new D-Bus
981
# property with the alternate D-Bus interface
982
# name. Add it to the class.
983
attr[attrname] = (dbus_service_property
985
attribute._dbus_signature,
986
attribute._dbus_access,
988
._dbus_get_args_options
991
(attribute.func_code,
992
attribute.func_globals,
994
attribute.func_defaults,
995
attribute.func_closure)))
996
return type.__new__(mcs, name, bases, attr)
999
713
class ClientDBus(Client, DBusObjectWithProperties):
1000
714
"""A Client class using D-Bus
1024
737
DBusObjectWithProperties.__init__(self, self.bus,
1025
738
self.dbus_object_path)
1027
def notifychangeproperty(transform_func,
1028
dbus_name, type_func=lambda x: x,
1030
""" Modify a variable so that it's a property which announces
1031
its changes to DBus.
1033
transform_fun: Function that takes a value and a variant_level
1034
and transforms it to a D-Bus type.
1035
dbus_name: D-Bus name of the variable
1036
type_func: Function that transform the value before sending it
1037
to the D-Bus. Default: no transform
1038
variant_level: D-Bus variant level. Default: 1
1040
attrname = "_{0}".format(dbus_name)
1041
def setter(self, value):
1042
if hasattr(self, "dbus_object_path"):
1043
if (not hasattr(self, attrname) or
1044
type_func(getattr(self, attrname, None))
1045
!= type_func(value)):
1046
dbus_value = transform_func(type_func(value),
1049
self.PropertyChanged(dbus.String(dbus_name),
1051
setattr(self, attrname, value)
1053
return property(lambda self: getattr(self, attrname), setter)
1056
expires = notifychangeproperty(datetime_to_dbus, "Expires")
1057
approvals_pending = notifychangeproperty(dbus.Boolean,
1060
enabled = notifychangeproperty(dbus.Boolean, "Enabled")
1061
last_enabled = notifychangeproperty(datetime_to_dbus,
1063
checker = notifychangeproperty(dbus.Boolean, "CheckerRunning",
1064
type_func = lambda checker:
1065
checker is not None)
1066
last_checked_ok = notifychangeproperty(datetime_to_dbus,
1068
last_approval_request = notifychangeproperty(
1069
datetime_to_dbus, "LastApprovalRequest")
1070
approved_by_default = notifychangeproperty(dbus.Boolean,
1071
"ApprovedByDefault")
1072
approval_delay = notifychangeproperty(dbus.UInt64,
1075
timedelta_to_milliseconds)
1076
approval_duration = notifychangeproperty(
1077
dbus.UInt64, "ApprovalDuration",
1078
type_func = timedelta_to_milliseconds)
1079
host = notifychangeproperty(dbus.String, "Host")
1080
timeout = notifychangeproperty(dbus.UInt64, "Timeout",
1082
timedelta_to_milliseconds)
1083
extended_timeout = notifychangeproperty(
1084
dbus.UInt64, "ExtendedTimeout",
1085
type_func = timedelta_to_milliseconds)
1086
interval = notifychangeproperty(dbus.UInt64,
1089
timedelta_to_milliseconds)
1090
checker_command = notifychangeproperty(dbus.String, "Checker")
1092
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))
1094
784
def __del__(self, *args, **kwargs):
1119
812
return Client.checker_callback(self, pid, condition, command,
1120
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,
1122
833
def start_checker(self, *args, **kwargs):
1123
834
old_checker = self.checker
1124
835
if self.checker is not None:
1131
842
and old_checker_pid != self.checker.pid):
1132
843
# Emit D-Bus signal
1133
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))
1136
859
def _reset_approved(self):
1137
self.approved = None
860
self._approved = None
1140
863
def approve(self, value=True):
1141
864
self.send_changedstate()
1142
self.approved = value
1143
gobject.timeout_add(timedelta_to_milliseconds
865
self._approved = value
866
gobject.timeout_add(self._timedelta_to_milliseconds
1144
867
(self.approval_duration),
1145
868
self._reset_approved)
1148
871
## D-Bus methods, signals & properties
1149
_interface = "se.recompile.Mandos.Client"
872
_interface = "se.bsnet.fukt.Mandos.Client"
1254
972
if value is None: # get
1255
973
return dbus.UInt64(self.approval_delay_milliseconds())
1256
974
self.approval_delay = datetime.timedelta(0, 0, 0, value)
976
self.PropertyChanged(dbus.String("ApprovalDelay"),
977
dbus.UInt64(value, variant_level=1))
1258
979
# ApprovalDuration - property
1259
980
@dbus_service_property(_interface, signature="t",
1260
981
access="readwrite")
1261
982
def ApprovalDuration_dbus_property(self, value=None):
1262
983
if value is None: # get
1263
return dbus.UInt64(timedelta_to_milliseconds(
984
return dbus.UInt64(self._timedelta_to_milliseconds(
1264
985
self.approval_duration))
1265
986
self.approval_duration = datetime.timedelta(0, 0, 0, value)
988
self.PropertyChanged(dbus.String("ApprovalDuration"),
989
dbus.UInt64(value, variant_level=1))
1267
991
# Name - property
1268
992
@dbus_service_property(_interface, signature="s", access="read")
1280
1004
def Host_dbus_property(self, value=None):
1281
1005
if value is None: # get
1282
1006
return dbus.String(self.host)
1283
self.host = unicode(value)
1009
self.PropertyChanged(dbus.String("Host"),
1010
dbus.String(value, variant_level=1))
1285
1012
# Created - property
1286
1013
@dbus_service_property(_interface, signature="s", access="read")
1287
1014
def Created_dbus_property(self):
1288
return datetime_to_dbus(self.created)
1015
return dbus.String(self._datetime_to_dbus(self.created))
1290
1017
# LastEnabled - property
1291
1018
@dbus_service_property(_interface, signature="s", access="read")
1292
1019
def LastEnabled_dbus_property(self):
1293
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))
1295
1024
# Enabled - property
1296
1025
@dbus_service_property(_interface, signature="b",
1329
1060
if value is None: # get
1330
1061
return dbus.UInt64(self.timeout_milliseconds())
1331
1062
self.timeout = datetime.timedelta(0, 0, 0, value)
1064
self.PropertyChanged(dbus.String("Timeout"),
1065
dbus.UInt64(value, variant_level=1))
1332
1066
if getattr(self, "disable_initiator_tag", None) is None:
1334
1068
# Reschedule timeout
1335
1069
gobject.source_remove(self.disable_initiator_tag)
1336
1070
self.disable_initiator_tag = None
1338
time_to_die = timedelta_to_milliseconds((self
1071
time_to_die = (self.
1072
_timedelta_to_milliseconds((self
1343
1077
if time_to_die <= 0:
1344
1078
# The timeout has passed
1347
self.expires = (datetime.datetime.utcnow()
1348
+ datetime.timedelta(milliseconds =
1350
1081
self.disable_initiator_tag = (gobject.timeout_add
1351
1082
(time_to_die, self.disable))
1353
# ExtendedTimeout - property
1354
@dbus_service_property(_interface, signature="t",
1356
def ExtendedTimeout_dbus_property(self, value=None):
1357
if value is None: # get
1358
return dbus.UInt64(self.extended_timeout_milliseconds())
1359
self.extended_timeout = datetime.timedelta(0, 0, 0, value)
1361
1084
# Interval - property
1362
1085
@dbus_service_property(_interface, signature="t",
1363
1086
access="readwrite")
1365
1088
if value is None: # get
1366
1089
return dbus.UInt64(self.interval_milliseconds())
1367
1090
self.interval = datetime.timedelta(0, 0, 0, value)
1092
self.PropertyChanged(dbus.String("Interval"),
1093
dbus.UInt64(value, variant_level=1))
1368
1094
if getattr(self, "checker_initiator_tag", None) is None:
1371
# Reschedule checker run
1372
gobject.source_remove(self.checker_initiator_tag)
1373
self.checker_initiator_tag = (gobject.timeout_add
1374
(value, self.start_checker))
1375
self.start_checker() # Start one now, too
1096
# Reschedule checker run
1097
gobject.source_remove(self.checker_initiator_tag)
1098
self.checker_initiator_tag = (gobject.timeout_add
1099
(value, self.start_checker))
1100
self.start_checker() # Start one now, too
1377
1102
# Checker - property
1378
1103
@dbus_service_property(_interface, signature="s",
1379
1104
access="readwrite")
1380
1105
def Checker_dbus_property(self, value=None):
1381
1106
if value is None: # get
1382
1107
return dbus.String(self.checker_command)
1383
self.checker_command = unicode(value)
1108
self.checker_command = value
1110
self.PropertyChanged(dbus.String("Checker"),
1111
dbus.String(self.checker_command,
1385
1114
# CheckerRunning - property
1386
1115
@dbus_service_property(_interface, signature="b",
1480
1205
if int(line.strip().split()[0]) > 1:
1481
1206
raise RuntimeError
1482
except (ValueError, IndexError, RuntimeError) as error:
1207
except (ValueError, IndexError, RuntimeError), error:
1483
1208
logger.error("Unknown protocol version: %s", error)
1486
1211
# Start GnuTLS connection
1488
1213
session.handshake()
1489
except gnutls.errors.GNUTLSError as error:
1214
except gnutls.errors.GNUTLSError, error:
1490
1215
logger.warning("Handshake failed: %s", error)
1491
1216
# Do not run session.bye() here: the session is not
1492
1217
# established. Just abandon the request.
1494
1219
logger.debug("Handshake succeeded")
1496
1221
approval_required = False
1499
1224
fpr = self.fingerprint(self.peer_certificate
1502
gnutls.errors.GNUTLSError) as error:
1226
except (TypeError, gnutls.errors.GNUTLSError), error:
1503
1227
logger.warning("Bad certificate: %s", error)
1505
1229
logger.debug("Fingerprint: %s", fpr)
1508
1232
client = ProxyClient(child_pipe, fpr,
1509
1233
self.client_address)
1510
1234
except KeyError:
1513
if self.server.use_dbus:
1515
client.NewRequest(str(self.client_address))
1517
1237
if client.approval_delay:
1518
1238
delay = client.approval_delay
1519
1239
client.approvals_pending += 1
1686
1401
This function creates a new pipe in self.pipe
1688
1403
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1690
proc = MultiprocessingMixIn.process_request(self, request,
1405
super(MultiprocessingMixInWithPipe,
1406
self).process_request(request, client_address)
1692
1407
self.child_pipe.close()
1693
self.add_pipe(parent_pipe, proc)
1695
def add_pipe(self, parent_pipe, proc):
1408
self.add_pipe(parent_pipe)
1410
def add_pipe(self, parent_pipe):
1696
1411
"""Dummy function; override as necessary"""
1697
1412
raise NotImplementedError
1700
1414
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1701
1415
socketserver.TCPServer, object):
1702
1416
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1786
1500
def server_activate(self):
1787
1501
if self.enabled:
1788
1502
return socketserver.TCPServer.server_activate(self)
1790
1503
def enable(self):
1791
1504
self.enabled = True
1793
def add_pipe(self, parent_pipe, proc):
1505
def add_pipe(self, parent_pipe):
1794
1506
# Call "handle_ipc" for both data and EOF events
1795
1507
gobject.io_add_watch(parent_pipe.fileno(),
1796
1508
gobject.IO_IN | gobject.IO_HUP,
1797
1509
functools.partial(self.handle_ipc,
1510
parent_pipe = parent_pipe))
1802
1512
def handle_ipc(self, source, condition, parent_pipe=None,
1803
proc = None, client_object=None):
1513
client_object=None):
1804
1514
condition_names = {
1805
1515
gobject.IO_IN: "IN", # There is data to read.
1806
1516
gobject.IO_OUT: "OUT", # Data can be written (without
1829
1537
fpr = request[1]
1830
1538
address = request[2]
1832
for c in self.clients.itervalues():
1540
for c in self.clients:
1833
1541
if c.fingerprint == fpr:
1837
logger.info("Client not found for fingerprint: %s, ad"
1838
"dress: %s", fpr, address)
1545
logger.warning("Client not found for fingerprint: %s, ad"
1546
"dress: %s", fpr, address)
1839
1547
if self.use_dbus:
1840
1548
# Emit D-Bus signal
1841
mandos_dbus_service.ClientNotFound(fpr,
1549
mandos_dbus_service.ClientNotFound(fpr, address[0])
1843
1550
parent_pipe.send(False)
1846
1553
gobject.io_add_watch(parent_pipe.fileno(),
1847
1554
gobject.IO_IN | gobject.IO_HUP,
1848
1555
functools.partial(self.handle_ipc,
1556
parent_pipe = parent_pipe,
1557
client_object = client))
1854
1558
parent_pipe.send(True)
1855
# 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
1858
1561
if command == 'funcall':
1859
1562
funcname = request[1]
1860
1563
args = request[2]
1861
1564
kwargs = request[3]
1863
parent_pipe.send(('data', getattr(client_object,
1566
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1867
1568
if command == 'getattr':
1868
1569
attrname = request[1]
1869
1570
if callable(client_object.__getattribute__(attrname)):
1870
1571
parent_pipe.send(('function',))
1872
parent_pipe.send(('data', client_object
1873
.__getattribute__(attrname)))
1573
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1875
1575
if command == 'setattr':
1876
1576
attrname = request[1]
1877
1577
value = request[2]
1878
1578
setattr(client_object, attrname, value)
1913
1613
delta = datetime.timedelta(0, 0, 0, 0, 0, 0, value)
1915
1615
raise ValueError("Unknown suffix %r" % suffix)
1916
except (ValueError, IndexError) as e:
1616
except (ValueError, IndexError), e:
1917
1617
raise ValueError(*(e.args))
1918
1618
timevalue += delta
1919
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)
1922
1646
def daemon(nochdir = False, noclose = False):
1923
1647
"""See daemon(3). Standard BSD Unix function.
1949
1673
##################################################################
1950
1674
# Parsing of options, both command line and config file
1952
parser = argparse.ArgumentParser()
1953
parser.add_argument("-v", "--version", action="version",
1954
version = "%%(prog)s %s" % version,
1955
help="show version number and exit")
1956
parser.add_argument("-i", "--interface", metavar="IF",
1957
help="Bind to interface IF")
1958
parser.add_argument("-a", "--address",
1959
help="Address to listen for requests on")
1960
parser.add_argument("-p", "--port", type=int,
1961
help="Port number to receive requests on")
1962
parser.add_argument("--check", action="store_true",
1963
help="Run self-test")
1964
parser.add_argument("--debug", action="store_true",
1965
help="Debug mode; run in foreground and log"
1967
parser.add_argument("--debuglevel", metavar="LEVEL",
1968
help="Debug level for stdout output")
1969
parser.add_argument("--priority", help="GnuTLS"
1970
" priority string (see GnuTLS documentation)")
1971
parser.add_argument("--servicename",
1972
metavar="NAME", help="Zeroconf service name")
1973
parser.add_argument("--configdir",
1974
default="/etc/mandos", metavar="DIR",
1975
help="Directory to search for configuration"
1977
parser.add_argument("--no-dbus", action="store_false",
1978
dest="use_dbus", help="Do not provide D-Bus"
1979
" system bus interface")
1980
parser.add_argument("--no-ipv6", action="store_false",
1981
dest="use_ipv6", help="Do not use IPv6")
1982
parser.add_argument("--no-restore", action="store_false",
1983
dest="restore", help="Do not restore stored"
1985
parser.add_argument("--statedir", metavar="DIR",
1986
help="Directory to save/restore state in")
1988
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]
1990
1705
if options.check:
2153
1861
# End of Avahi example code
2156
bus_name = dbus.service.BusName("se.recompile.Mandos",
1864
bus_name = dbus.service.BusName("se.bsnet.fukt.Mandos",
2157
1865
bus, do_not_queue=True)
2158
old_bus_name = (dbus.service.BusName
2159
("se.bsnet.fukt.Mandos", bus,
2161
except dbus.exceptions.NameExistsException as e:
1866
except dbus.exceptions.NameExistsException, e:
2162
1867
logger.error(unicode(e) + ", disabling D-Bus")
2163
1868
use_dbus = False
2164
1869
server_settings["use_dbus"] = False
2165
1870
tcp_server.use_dbus = False
2166
1871
protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
2167
service = AvahiServiceToSyslog(name =
2168
server_settings["servicename"],
2169
servicetype = "_mandos._tcp",
2170
protocol = protocol, bus = bus)
1872
service = AvahiService(name = server_settings["servicename"],
1873
servicetype = "_mandos._tcp",
1874
protocol = protocol, bus = bus)
2171
1875
if server_settings["interface"]:
2172
1876
service.interface = (if_nametoindex
2173
1877
(str(server_settings["interface"])))
2178
1882
client_class = Client
2180
client_class = functools.partial(ClientDBusTransitional,
2183
special_settings = {
2184
# Some settings need to be accessd by special methods;
2185
# booleans need .getboolean(), etc. Here is a list of them:
2186
"approved_by_default":
2188
client_config.getboolean(section, "approved_by_default"),
2191
client_config.getboolean(section, "enabled"),
2193
# Construct a new dict of client settings of this form:
2194
# { client_name: {setting_name: value, ...}, ...}
2195
# with exceptions for any special settings as defined above
2196
client_settings = dict((clientname,
2199
if setting not in special_settings
2200
else special_settings[setting]
2202
for setting, value in
2203
client_config.items(clientname)))
2204
for clientname in client_config.sections())
2206
old_client_settings = {}
2209
# Get client data and settings from last running state.
2210
if server_settings["restore"]:
2212
with open(stored_state_path, "rb") as stored_state:
2213
clients_data, old_client_settings = (pickle.load
2215
os.remove(stored_state_path)
2216
except IOError as e:
2217
logger.warning("Could not load persistent state: {0}"
2219
if e.errno != errno.ENOENT:
2222
with PGPEngine() as pgp:
2223
for client in clients_data:
2224
client_name = client["name"]
2226
# Decide which value to use after restoring saved state.
2227
# We have three different values: Old config file,
2228
# new config file, and saved state.
2229
# New config value takes precedence if it differs from old
2230
# config value, otherwise use saved state.
2231
for name, value in client_settings[client_name].items():
2233
# For each value in new config, check if it
2234
# differs from the old config value (Except for
2235
# the "secret" attribute)
2236
if (name != "secret" and
2237
value != old_client_settings[client_name]
2239
client[name] = value
2243
# Clients who has passed its expire date can still be
2244
# enabled if its last checker was sucessful. Clients
2245
# whose checker failed before we stored its state is
2246
# assumed to have failed all checkers during downtime.
2247
if client["enabled"]:
2248
if client["expires"] <= (datetime.datetime
2250
# Client has expired
2251
if client["last_checker_status"] != 0:
2252
client["enabled"] = False
2254
client["expires"] = (datetime.datetime
2256
+ client["timeout"])
2258
client["changedstate"] = (multiprocessing_manager
2260
(multiprocessing_manager
2263
new_client = (ClientDBusTransitional.__new__
2264
(ClientDBusTransitional))
2265
tcp_server.clients[client_name] = new_client
2266
new_client.bus = bus
2267
for name, value in client.iteritems():
2268
setattr(new_client, name, value)
2269
client_object_name = unicode(client_name).translate(
2270
{ord("."): ord("_"),
2271
ord("-"): ord("_")})
2272
new_client.dbus_object_path = (dbus.ObjectPath
2274
+ client_object_name))
2275
DBusObjectWithProperties.__init__(new_client,
2280
tcp_server.clients[client_name] = (Client.__new__
2282
for name, value in client.iteritems():
2283
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):
2287
tcp_server.clients[client_name].secret = (
2288
pgp.decrypt(tcp_server.clients[client_name]
2290
client_settings[client_name]
2293
# If decryption fails, we use secret from new settings
2294
logger.debug("Failed to decrypt {0} old secret"
2295
.format(client_name))
2296
tcp_server.clients[client_name].secret = (
2297
client_settings[client_name]["secret"])
2299
# Create/remove clients based on new changes made to config
2300
for clientname in set(old_client_settings) - set(client_settings):
2301
del tcp_server.clients[clientname]
2302
for clientname in set(client_settings) - set(old_client_settings):
2303
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()))
2309
1902
if not tcp_server.clients:
2310
1903
logger.warning("No clients defined")
2385
class MandosDBusServiceTransitional(MandosDBusService):
2386
__metaclass__ = AlternateDBusNamesMetaclass
2387
mandos_dbus_service = MandosDBusServiceTransitional()
1977
mandos_dbus_service = MandosDBusService()
2390
1980
"Cleanup function; run on exit"
2391
1981
service.cleanup()
2393
multiprocessing.active_children()
2394
if not (tcp_server.clients or client_settings):
2397
# Store client before exiting. Secrets are encrypted with key
2398
# based on what config file has. If config file is
2399
# removed/edited, old secret will thus be unrecovable.
2401
with PGPEngine() as pgp:
2402
for client in tcp_server.clients.itervalues():
2403
key = client_settings[client.name]["secret"]
2404
client.encrypted_secret = pgp.encrypt(client.secret,
2408
# A list of attributes that will not be stored when
2410
exclude = set(("bus", "changedstate", "secret"))
2411
for name, typ in (inspect.getmembers
2412
(dbus.service.Object)):
2415
client_dict["encrypted_secret"] = (client
2417
for attr in client.client_structure:
2418
if attr not in exclude:
2419
client_dict[attr] = getattr(client, attr)
2421
clients.append(client_dict)
2422
del client_settings[client.name]["secret"]
2425
with os.fdopen(os.open(stored_state_path,
2426
os.O_CREAT|os.O_WRONLY|os.O_TRUNC,
2427
0600), "wb") as stored_state:
2428
pickle.dump((clients, client_settings), stored_state)
2429
except (IOError, OSError) as e:
2430
logger.warning("Could not save persistent state: {0}"
2432
if e.errno not in (errno.ENOENT, errno.EACCES):
2435
# Delete all clients, and settings from config
2436
1983
while tcp_server.clients:
2437
name, client = tcp_server.clients.popitem()
1984
client = tcp_server.clients.pop()
2439
1986
client.remove_from_connection()
1987
client.disable_hook = None
2440
1988
# Don't signal anything except ClientRemoved
2441
1989
client.disable(quiet=True)
2443
1991
# Emit D-Bus signal
2444
mandos_dbus_service.ClientRemoved(client
1992
mandos_dbus_service.ClientRemoved(client.dbus_object_path,
2447
client_settings.clear()
2449
1995
atexit.register(cleanup)
2451
for client in tcp_server.clients.itervalues():
1997
for client in tcp_server.clients:
2453
1999
# Emit D-Bus signal
2454
2000
mandos_dbus_service.ClientAdded(client.dbus_object_path)
2455
# Need to initiate checking of clients
2457
client.init_checker()
2459
2003
tcp_server.enable()
2460
2004
tcp_server.server_activate()