82
86
SO_BINDTODEVICE = None
90
stored_state_file = "clients.pickle"
87
#logger = logging.getLogger('mandos')
88
logger = logging.Logger('mandos')
92
logger = logging.getLogger()
89
93
syslogger = (logging.handlers.SysLogHandler
90
94
(facility = logging.handlers.SysLogHandler.LOG_DAEMON,
91
95
address = str("/dev/log")))
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)
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
103
210
class AvahiError(Exception):
104
211
def __init__(self, value, *args, **kwargs):
291
411
interval: datetime.timedelta(); How often to start a new checker
292
412
last_approval_request: datetime.datetime(); (UTC) or None
293
413
last_checked_ok: datetime.datetime(); (UTC) or None
294
last_enabled: datetime.datetime(); (UTC)
415
last_checker_status: integer between 0 and 255 reflecting exit
416
status of last checker. -1 reflects crashed
418
last_enabled: datetime.datetime(); (UTC) or None
295
419
name: string; from the config file, used in log messages and
296
420
D-Bus identifiers
297
421
secret: bytestring; sent verbatim (over TLS) to client
298
422
timeout: datetime.timedelta(); How long from last_checked_ok
299
423
until this client is disabled
424
extended_timeout: extra long timeout when password has been sent
300
425
runtime_expansions: Allowed attributes for runtime expansion.
426
expires: datetime.datetime(); time (UTC) when a client will be
303
430
runtime_expansions = ("approval_delay", "approval_duration",
305
432
"host", "interval", "last_checked_ok",
306
433
"last_enabled", "name", "timeout")
309
def _timedelta_to_milliseconds(td):
310
"Convert a datetime.timedelta() to milliseconds"
311
return ((td.days * 24 * 60 * 60 * 1000)
312
+ (td.seconds * 1000)
313
+ (td.microseconds // 1000))
315
435
def timeout_milliseconds(self):
316
436
"Return the 'timeout' attribute in milliseconds"
317
return self._timedelta_to_milliseconds(self.timeout)
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)
319
443
def interval_milliseconds(self):
320
444
"Return the 'interval' attribute in milliseconds"
321
return self._timedelta_to_milliseconds(self.interval)
445
return _timedelta_to_milliseconds(self.interval)
323
447
def approval_delay_milliseconds(self):
324
return self._timedelta_to_milliseconds(self.approval_delay)
448
return _timedelta_to_milliseconds(self.approval_delay)
326
def __init__(self, name = None, disable_hook=None, config=None):
450
def __init__(self, name = None, config=None):
327
451
"""Note: the 'checker' key in 'config' sets the
328
452
'checker_command' attribute and *not* the 'checker'
350
474
self.host = config.get("host", "")
351
475
self.created = datetime.datetime.utcnow()
476
self.enabled = config.get("enabled", True)
353
477
self.last_approval_request = None
354
self.last_enabled = None
479
self.last_enabled = datetime.datetime.utcnow()
481
self.last_enabled = None
355
482
self.last_checked_ok = None
483
self.last_checker_status = None
356
484
self.timeout = string_to_delta(config["timeout"])
485
self.extended_timeout = string_to_delta(config
486
["extended_timeout"])
357
487
self.interval = string_to_delta(config["interval"])
358
self.disable_hook = disable_hook
359
488
self.checker = None
360
489
self.checker_initiator_tag = None
361
490
self.disable_initiator_tag = None
492
self.expires = datetime.datetime.utcnow() + self.timeout
362
495
self.checker_callback_tag = None
363
496
self.checker_command = config["checker"]
364
497
self.current_checker_command = None
365
self.last_connect = None
366
498
self._approved = None
367
499
self.approved_by_default = config.get("approved_by_default",
371
503
config["approval_delay"])
372
504
self.approval_duration = string_to_delta(
373
505
config["approval_duration"])
374
self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
506
self.changedstate = (multiprocessing_manager
507
.Condition(multiprocessing_manager
509
self.client_structure = [attr for attr in
510
self.__dict__.iterkeys()
511
if not attr.startswith("_")]
512
self.client_structure.append("client_structure")
514
for name, t in inspect.getmembers(type(self),
518
if not name.startswith("_"):
519
self.client_structure.append(name)
521
# Send notice to process children that client state has changed
376
522
def send_changedstate(self):
377
self.changedstate.acquire()
378
self.changedstate.notify_all()
379
self.changedstate.release()
523
with self.changedstate:
524
self.changedstate.notify_all()
381
526
def enable(self):
382
527
"""Start this client's checker and timeout hooks"""
383
528
if getattr(self, "enabled", False):
384
529
# Already enabled
386
531
self.send_changedstate()
532
self.expires = datetime.datetime.utcnow() + self.timeout
387
534
self.last_enabled = datetime.datetime.utcnow()
388
# Schedule a new checker to be started an 'interval' from now,
389
# and every interval from then on.
390
self.checker_initiator_tag = (gobject.timeout_add
391
(self.interval_milliseconds(),
393
# Schedule a disable() when 'timeout' has passed
394
self.disable_initiator_tag = (gobject.timeout_add
395
(self.timeout_milliseconds(),
398
# Also start a new checker *right now*.
401
537
def disable(self, quiet=True):
402
538
"""Disable this client."""
409
545
if getattr(self, "disable_initiator_tag", False):
410
546
gobject.source_remove(self.disable_initiator_tag)
411
547
self.disable_initiator_tag = None
412
549
if getattr(self, "checker_initiator_tag", False):
413
550
gobject.source_remove(self.checker_initiator_tag)
414
551
self.checker_initiator_tag = None
415
552
self.stop_checker()
416
if self.disable_hook:
417
self.disable_hook(self)
418
553
self.enabled = False
419
554
# Do not run this again if called by a gobject.timeout_add
422
557
def __del__(self):
423
self.disable_hook = None
560
def init_checker(self):
561
# Schedule a new checker to be started an 'interval' from now,
562
# and every interval from then on.
563
self.checker_initiator_tag = (gobject.timeout_add
564
(self.interval_milliseconds(),
566
# Schedule a disable() when 'timeout' has passed
567
self.disable_initiator_tag = (gobject.timeout_add
568
(self.timeout_milliseconds(),
570
# Also start a new checker *right now*.
426
573
def checker_callback(self, pid, condition, command):
427
574
"""The checker has completed, so take appropriate actions."""
428
575
self.checker_callback_tag = None
429
576
self.checker = None
430
577
if os.WIFEXITED(condition):
431
exitstatus = os.WEXITSTATUS(condition)
578
self.last_checker_status = os.WEXITSTATUS(condition)
579
if self.last_checker_status == 0:
433
580
logger.info("Checker for %(name)s succeeded",
435
582
self.checked_ok()
437
584
logger.info("Checker for %(name)s failed",
587
self.last_checker_status = -1
440
588
logger.warning("Checker for %(name)s crashed?",
443
def checked_ok(self):
591
def checked_ok(self, timeout=None):
444
592
"""Bump up the timeout for this client.
446
594
This should only be called when the client has been seen,
598
timeout = self.timeout
449
599
self.last_checked_ok = datetime.datetime.utcnow()
450
gobject.source_remove(self.disable_initiator_tag)
451
self.disable_initiator_tag = (gobject.timeout_add
452
(self.timeout_milliseconds(),
600
if self.disable_initiator_tag is not None:
601
gobject.source_remove(self.disable_initiator_tag)
602
if getattr(self, "enabled", False):
603
self.disable_initiator_tag = (gobject.timeout_add
604
(_timedelta_to_milliseconds
605
(timeout), self.disable))
606
self.expires = datetime.datetime.utcnow() + timeout
455
608
def need_approval(self):
456
609
self.last_approval_request = datetime.datetime.utcnow()
612
766
def _get_all_dbus_properties(self):
613
767
"""Returns a generator of (name, attribute) pairs
615
return ((prop._dbus_name, prop)
769
return ((prop.__get__(self)._dbus_name, prop.__get__(self))
770
for cls in self.__class__.__mro__
616
771
for name, prop in
617
inspect.getmembers(self, self._is_dbus_property))
772
inspect.getmembers(cls, self._is_dbus_property))
619
774
def _get_dbus_property(self, interface_name, property_name):
620
775
"""Returns a bound method if one exists which is a D-Bus
621
776
property with the specified name and interface.
623
for name in (property_name,
624
property_name + "_dbus_property"):
625
prop = getattr(self, name, None)
627
or not self._is_dbus_property(prop)
628
or prop._dbus_name != property_name
629
or (interface_name and prop._dbus_interface
630
and interface_name != prop._dbus_interface)):
778
for cls in self.__class__.__mro__:
779
for name, value in (inspect.getmembers
780
(cls, self._is_dbus_property)):
781
if (value._dbus_name == property_name
782
and value._dbus_interface == interface_name):
783
return value.__get__(self)
633
785
# No such property
634
786
raise DBusPropertyNotFound(self.dbus_object_path + ":"
635
787
+ interface_name + "."
892
def datetime_to_dbus (dt, variant_level=0):
893
"""Convert a UTC datetime.datetime() to a D-Bus type."""
895
return dbus.String("", variant_level = variant_level)
896
return dbus.String(dt.isoformat(),
897
variant_level=variant_level)
900
class AlternateDBusNamesMetaclass(DBusObjectWithProperties
902
"""Applied to an empty subclass of a D-Bus object, this metaclass
903
will add additional D-Bus attributes matching a certain pattern.
905
def __new__(mcs, name, bases, attr):
906
# Go through all the base classes which could have D-Bus
907
# methods, signals, or properties in them
908
for base in (b for b in bases
909
if issubclass(b, dbus.service.Object)):
910
# Go though all attributes of the base class
911
for attrname, attribute in inspect.getmembers(base):
912
# Ignore non-D-Bus attributes, and D-Bus attributes
913
# with the wrong interface name
914
if (not hasattr(attribute, "_dbus_interface")
915
or not attribute._dbus_interface
916
.startswith("se.recompile.Mandos")):
918
# Create an alternate D-Bus interface name based on
920
alt_interface = (attribute._dbus_interface
921
.replace("se.recompile.Mandos",
922
"se.bsnet.fukt.Mandos"))
923
# Is this a D-Bus signal?
924
if getattr(attribute, "_dbus_is_signal", False):
925
# Extract the original non-method function by
927
nonmethod_func = (dict(
928
zip(attribute.func_code.co_freevars,
929
attribute.__closure__))["func"]
931
# Create a new, but exactly alike, function
932
# object, and decorate it to be a new D-Bus signal
933
# with the alternate D-Bus interface name
934
new_function = (dbus.service.signal
936
attribute._dbus_signature)
938
nonmethod_func.func_code,
939
nonmethod_func.func_globals,
940
nonmethod_func.func_name,
941
nonmethod_func.func_defaults,
942
nonmethod_func.func_closure)))
943
# Define a creator of a function to call both the
944
# old and new functions, so both the old and new
945
# signals gets sent when the function is called
946
def fixscope(func1, func2):
947
"""This function is a scope container to pass
948
func1 and func2 to the "call_both" function
949
outside of its arguments"""
950
def call_both(*args, **kwargs):
951
"""This function will emit two D-Bus
952
signals by calling func1 and func2"""
953
func1(*args, **kwargs)
954
func2(*args, **kwargs)
956
# Create the "call_both" function and add it to
958
attr[attrname] = fixscope(attribute,
960
# Is this a D-Bus method?
961
elif getattr(attribute, "_dbus_is_method", False):
962
# Create a new, but exactly alike, function
963
# object. Decorate it to be a new D-Bus method
964
# with the alternate D-Bus interface name. Add it
966
attr[attrname] = (dbus.service.method
968
attribute._dbus_in_signature,
969
attribute._dbus_out_signature)
971
(attribute.func_code,
972
attribute.func_globals,
974
attribute.func_defaults,
975
attribute.func_closure)))
976
# Is this a D-Bus property?
977
elif getattr(attribute, "_dbus_is_property", False):
978
# Create a new, but exactly alike, function
979
# object, and decorate it to be a new D-Bus
980
# property with the alternate D-Bus interface
981
# name. Add it to the class.
982
attr[attrname] = (dbus_service_property
984
attribute._dbus_signature,
985
attribute._dbus_access,
987
._dbus_get_args_options
990
(attribute.func_code,
991
attribute.func_globals,
993
attribute.func_defaults,
994
attribute.func_closure)))
995
return type.__new__(mcs, name, bases, attr)
740
998
class ClientDBus(Client, DBusObjectWithProperties):
741
999
"""A Client class using D-Bus
764
1023
DBusObjectWithProperties.__init__(self, self.bus,
765
1024
self.dbus_object_path)
767
def _get_approvals_pending(self):
768
return self._approvals_pending
769
def _set_approvals_pending(self, value):
770
old_value = self._approvals_pending
771
self._approvals_pending = value
773
if (hasattr(self, "dbus_object_path")
774
and bval is not bool(old_value)):
775
dbus_bool = dbus.Boolean(bval, variant_level=1)
776
self.PropertyChanged(dbus.String("ApprovalPending"),
779
approvals_pending = property(_get_approvals_pending,
780
_set_approvals_pending)
781
del _get_approvals_pending, _set_approvals_pending
784
def _datetime_to_dbus(dt, variant_level=0):
785
"""Convert a UTC datetime.datetime() to a D-Bus type."""
786
return dbus.String(dt.isoformat(),
787
variant_level=variant_level)
790
oldstate = getattr(self, "enabled", False)
791
r = Client.enable(self)
792
if oldstate != self.enabled:
794
self.PropertyChanged(dbus.String("Enabled"),
795
dbus.Boolean(True, variant_level=1))
796
self.PropertyChanged(
797
dbus.String("LastEnabled"),
798
self._datetime_to_dbus(self.last_enabled,
802
def disable(self, quiet = False):
803
oldstate = getattr(self, "enabled", False)
804
r = Client.disable(self, quiet=quiet)
805
if not quiet and oldstate != self.enabled:
807
self.PropertyChanged(dbus.String("Enabled"),
808
dbus.Boolean(False, variant_level=1))
1026
def notifychangeproperty(transform_func,
1027
dbus_name, type_func=lambda x: x,
1029
""" Modify a variable so that it's a property which announces
1030
its changes to DBus.
1032
transform_fun: Function that takes a value and a variant_level
1033
and transforms it to a D-Bus type.
1034
dbus_name: D-Bus name of the variable
1035
type_func: Function that transform the value before sending it
1036
to the D-Bus. Default: no transform
1037
variant_level: D-Bus variant level. Default: 1
1039
attrname = "_{0}".format(dbus_name)
1040
def setter(self, value):
1041
if hasattr(self, "dbus_object_path"):
1042
if (not hasattr(self, attrname) or
1043
type_func(getattr(self, attrname, None))
1044
!= type_func(value)):
1045
dbus_value = transform_func(type_func(value),
1048
self.PropertyChanged(dbus.String(dbus_name),
1050
setattr(self, attrname, value)
1052
return property(lambda self: getattr(self, attrname), setter)
1055
expires = notifychangeproperty(datetime_to_dbus, "Expires")
1056
approvals_pending = notifychangeproperty(dbus.Boolean,
1059
enabled = notifychangeproperty(dbus.Boolean, "Enabled")
1060
last_enabled = notifychangeproperty(datetime_to_dbus,
1062
checker = notifychangeproperty(dbus.Boolean, "CheckerRunning",
1063
type_func = lambda checker:
1064
checker is not None)
1065
last_checked_ok = notifychangeproperty(datetime_to_dbus,
1067
last_approval_request = notifychangeproperty(
1068
datetime_to_dbus, "LastApprovalRequest")
1069
approved_by_default = notifychangeproperty(dbus.Boolean,
1070
"ApprovedByDefault")
1071
approval_delay = notifychangeproperty(dbus.UInt16,
1074
_timedelta_to_milliseconds)
1075
approval_duration = notifychangeproperty(
1076
dbus.UInt16, "ApprovalDuration",
1077
type_func = _timedelta_to_milliseconds)
1078
host = notifychangeproperty(dbus.String, "Host")
1079
timeout = notifychangeproperty(dbus.UInt16, "Timeout",
1081
_timedelta_to_milliseconds)
1082
extended_timeout = notifychangeproperty(
1083
dbus.UInt16, "ExtendedTimeout",
1084
type_func = _timedelta_to_milliseconds)
1085
interval = notifychangeproperty(dbus.UInt16,
1088
_timedelta_to_milliseconds)
1089
checker_command = notifychangeproperty(dbus.String, "Checker")
1091
del notifychangeproperty
811
1093
def __del__(self, *args, **kwargs):
839
1118
return Client.checker_callback(self, pid, condition, command,
840
1119
*args, **kwargs)
842
def checked_ok(self, *args, **kwargs):
843
Client.checked_ok(self, *args, **kwargs)
845
self.PropertyChanged(
846
dbus.String("LastCheckedOK"),
847
(self._datetime_to_dbus(self.last_checked_ok,
850
def need_approval(self, *args, **kwargs):
851
r = Client.need_approval(self, *args, **kwargs)
853
self.PropertyChanged(
854
dbus.String("LastApprovalRequest"),
855
(self._datetime_to_dbus(self.last_approval_request,
859
1121
def start_checker(self, *args, **kwargs):
860
1122
old_checker = self.checker
861
1123
if self.checker is not None:
868
1130
and old_checker_pid != self.checker.pid):
869
1131
# Emit D-Bus signal
870
1132
self.CheckerStarted(self.current_checker_command)
871
self.PropertyChanged(
872
dbus.String("CheckerRunning"),
873
dbus.Boolean(True, variant_level=1))
876
def stop_checker(self, *args, **kwargs):
877
old_checker = getattr(self, "checker", None)
878
r = Client.stop_checker(self, *args, **kwargs)
879
if (old_checker is not None
880
and getattr(self, "checker", None) is None):
881
self.PropertyChanged(dbus.String("CheckerRunning"),
882
dbus.Boolean(False, variant_level=1))
885
1135
def _reset_approved(self):
886
1136
self._approved = None
998
1253
if value is None: # get
999
1254
return dbus.UInt64(self.approval_delay_milliseconds())
1000
1255
self.approval_delay = datetime.timedelta(0, 0, 0, value)
1002
self.PropertyChanged(dbus.String("ApprovalDelay"),
1003
dbus.UInt64(value, variant_level=1))
1005
1257
# ApprovalDuration - property
1006
1258
@dbus_service_property(_interface, signature="t",
1007
1259
access="readwrite")
1008
1260
def ApprovalDuration_dbus_property(self, value=None):
1009
1261
if value is None: # get
1010
return dbus.UInt64(self._timedelta_to_milliseconds(
1262
return dbus.UInt64(_timedelta_to_milliseconds(
1011
1263
self.approval_duration))
1012
1264
self.approval_duration = datetime.timedelta(0, 0, 0, value)
1014
self.PropertyChanged(dbus.String("ApprovalDuration"),
1015
dbus.UInt64(value, variant_level=1))
1017
1266
# Name - property
1018
1267
@dbus_service_property(_interface, signature="s", access="read")
1031
1280
if value is None: # get
1032
1281
return dbus.String(self.host)
1033
1282
self.host = value
1035
self.PropertyChanged(dbus.String("Host"),
1036
dbus.String(value, variant_level=1))
1038
1284
# Created - property
1039
1285
@dbus_service_property(_interface, signature="s", access="read")
1040
1286
def Created_dbus_property(self):
1041
return dbus.String(self._datetime_to_dbus(self.created))
1287
return datetime_to_dbus(self.created)
1043
1289
# LastEnabled - property
1044
1290
@dbus_service_property(_interface, signature="s", access="read")
1045
1291
def LastEnabled_dbus_property(self):
1046
if self.last_enabled is None:
1047
return dbus.String("")
1048
return dbus.String(self._datetime_to_dbus(self.last_enabled))
1292
return datetime_to_dbus(self.last_enabled)
1050
1294
# Enabled - property
1051
1295
@dbus_service_property(_interface, signature="b",
1086
1328
if value is None: # get
1087
1329
return dbus.UInt64(self.timeout_milliseconds())
1088
1330
self.timeout = datetime.timedelta(0, 0, 0, value)
1090
self.PropertyChanged(dbus.String("Timeout"),
1091
dbus.UInt64(value, variant_level=1))
1092
1331
if getattr(self, "disable_initiator_tag", None) is None:
1094
1333
# Reschedule timeout
1095
1334
gobject.source_remove(self.disable_initiator_tag)
1096
1335
self.disable_initiator_tag = None
1097
time_to_die = (self.
1098
_timedelta_to_milliseconds((self
1337
time_to_die = _timedelta_to_milliseconds((self
1103
1342
if time_to_die <= 0:
1104
1343
# The timeout has passed
1346
self.expires = (datetime.datetime.utcnow()
1347
+ datetime.timedelta(milliseconds =
1107
1349
self.disable_initiator_tag = (gobject.timeout_add
1108
1350
(time_to_die, self.disable))
1352
# ExtendedTimeout - property
1353
@dbus_service_property(_interface, signature="t",
1355
def ExtendedTimeout_dbus_property(self, value=None):
1356
if value is None: # get
1357
return dbus.UInt64(self.extended_timeout_milliseconds())
1358
self.extended_timeout = datetime.timedelta(0, 0, 0, value)
1110
1360
# Interval - property
1111
1361
@dbus_service_property(_interface, signature="t",
1112
1362
access="readwrite")
1114
1364
if value is None: # get
1115
1365
return dbus.UInt64(self.interval_milliseconds())
1116
1366
self.interval = datetime.timedelta(0, 0, 0, value)
1118
self.PropertyChanged(dbus.String("Interval"),
1119
dbus.UInt64(value, variant_level=1))
1120
1367
if getattr(self, "checker_initiator_tag", None) is None:
1122
# Reschedule checker run
1123
gobject.source_remove(self.checker_initiator_tag)
1124
self.checker_initiator_tag = (gobject.timeout_add
1125
(value, self.start_checker))
1126
self.start_checker() # Start one now, too
1370
# Reschedule checker run
1371
gobject.source_remove(self.checker_initiator_tag)
1372
self.checker_initiator_tag = (gobject.timeout_add
1373
(value, self.start_checker))
1374
self.start_checker() # Start one now, too
1128
1376
# Checker - property
1129
1377
@dbus_service_property(_interface, signature="s",
1130
1378
access="readwrite")
1200
1448
unicode(self.client_address))
1201
1449
logger.debug("Pipe FD: %d",
1202
1450
self.server.child_pipe.fileno())
1204
1452
session = (gnutls.connection
1205
1453
.ClientSession(self.request,
1206
1454
gnutls.connection
1207
1455
.X509Credentials()))
1209
1457
# Note: gnutls.connection.X509Credentials is really a
1210
1458
# generic GnuTLS certificate credentials object so long as
1211
1459
# no X.509 keys are added to it. Therefore, we can use it
1212
1460
# here despite using OpenPGP certificates.
1214
1462
#priority = ':'.join(("NONE", "+VERS-TLS1.1",
1215
1463
# "+AES-256-CBC", "+SHA1",
1216
1464
# "+COMP-NULL", "+CTYPE-OPENPGP",
1428
1684
This function creates a new pipe in self.pipe
1430
1686
parent_pipe, self.child_pipe = multiprocessing.Pipe()
1432
super(MultiprocessingMixInWithPipe,
1433
self).process_request(request, client_address)
1688
proc = MultiprocessingMixIn.process_request(self, request,
1434
1690
self.child_pipe.close()
1435
self.add_pipe(parent_pipe)
1437
def add_pipe(self, parent_pipe):
1691
self.add_pipe(parent_pipe, proc)
1693
def add_pipe(self, parent_pipe, proc):
1438
1694
"""Dummy function; override as necessary"""
1439
1695
raise NotImplementedError
1441
1698
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1442
1699
socketserver.TCPServer, object):
1443
1700
"""IPv6-capable TCP server. Accepts 'None' as address and/or port
1527
1784
def server_activate(self):
1528
1785
if self.enabled:
1529
1786
return socketserver.TCPServer.server_activate(self)
1530
1788
def enable(self):
1531
1789
self.enabled = True
1532
def add_pipe(self, parent_pipe):
1791
def add_pipe(self, parent_pipe, proc):
1533
1792
# Call "handle_ipc" for both data and EOF events
1534
1793
gobject.io_add_watch(parent_pipe.fileno(),
1535
1794
gobject.IO_IN | gobject.IO_HUP,
1536
1795
functools.partial(self.handle_ipc,
1537
parent_pipe = parent_pipe))
1539
1800
def handle_ipc(self, source, condition, parent_pipe=None,
1540
client_object=None):
1801
proc = None, client_object=None):
1541
1802
condition_names = {
1542
1803
gobject.IO_IN: "IN", # There is data to read.
1543
1804
gobject.IO_OUT: "OUT", # Data can be written (without
1573
1836
"dress: %s", fpr, address)
1574
1837
if self.use_dbus:
1575
1838
# Emit D-Bus signal
1576
mandos_dbus_service.ClientNotFound(fpr, address[0])
1839
mandos_dbus_service.ClientNotFound(fpr,
1577
1841
parent_pipe.send(False)
1580
1844
gobject.io_add_watch(parent_pipe.fileno(),
1581
1845
gobject.IO_IN | gobject.IO_HUP,
1582
1846
functools.partial(self.handle_ipc,
1583
parent_pipe = parent_pipe,
1584
client_object = client))
1585
1852
parent_pipe.send(True)
1586
# remove the old hook in favor of the new above hook on same fileno
1853
# remove the old hook in favor of the new above hook on
1588
1856
if command == 'funcall':
1589
1857
funcname = request[1]
1590
1858
args = request[2]
1591
1859
kwargs = request[3]
1593
parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
1861
parent_pipe.send(('data', getattr(client_object,
1595
1865
if command == 'getattr':
1596
1866
attrname = request[1]
1597
1867
if callable(client_object.__getattribute__(attrname)):
1598
1868
parent_pipe.send(('function',))
1600
parent_pipe.send(('data', client_object.__getattribute__(attrname)))
1870
parent_pipe.send(('data', client_object
1871
.__getattribute__(attrname)))
1602
1873
if command == 'setattr':
1603
1874
attrname = request[1]
1604
1875
value = request[2]
1605
1876
setattr(client_object, attrname, value)
1646
1917
return timevalue
1649
def if_nametoindex(interface):
1650
"""Call the C function if_nametoindex(), or equivalent
1652
Note: This function cannot accept a unicode string."""
1653
global if_nametoindex
1655
if_nametoindex = (ctypes.cdll.LoadLibrary
1656
(ctypes.util.find_library("c"))
1658
except (OSError, AttributeError):
1659
logger.warning("Doing if_nametoindex the hard way")
1660
def if_nametoindex(interface):
1661
"Get an interface index the hard way, i.e. using fcntl()"
1662
SIOCGIFINDEX = 0x8933 # From /usr/include/linux/sockios.h
1663
with contextlib.closing(socket.socket()) as s:
1664
ifreq = fcntl.ioctl(s, SIOCGIFINDEX,
1665
struct.pack(str("16s16x"),
1667
interface_index = struct.unpack(str("I"),
1669
return interface_index
1670
return if_nametoindex(interface)
1673
1920
def daemon(nochdir = False, noclose = False):
1674
1921
"""See daemon(3). Standard BSD Unix function.
1891
2151
# End of Avahi example code
1894
bus_name = dbus.service.BusName("se.bsnet.fukt.Mandos",
2154
bus_name = dbus.service.BusName("se.recompile.Mandos",
1895
2155
bus, do_not_queue=True)
2156
old_bus_name = (dbus.service.BusName
2157
("se.bsnet.fukt.Mandos", bus,
1896
2159
except dbus.exceptions.NameExistsException as e:
1897
2160
logger.error(unicode(e) + ", disabling D-Bus")
1898
2161
use_dbus = False
1899
2162
server_settings["use_dbus"] = False
1900
2163
tcp_server.use_dbus = False
1901
2164
protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
1902
service = AvahiService(name = server_settings["servicename"],
1903
servicetype = "_mandos._tcp",
1904
protocol = protocol, bus = bus)
2165
service = AvahiServiceToSyslog(name =
2166
server_settings["servicename"],
2167
servicetype = "_mandos._tcp",
2168
protocol = protocol, bus = bus)
1905
2169
if server_settings["interface"]:
1906
2170
service.interface = (if_nametoindex
1907
2171
(str(server_settings["interface"])))
1912
2176
client_class = Client
1914
client_class = functools.partial(ClientDBus, bus = bus)
1915
def client_config_items(config, section):
1916
special_settings = {
1917
"approved_by_default":
1918
lambda: config.getboolean(section,
1919
"approved_by_default"),
1921
for name, value in config.items(section):
2178
client_class = functools.partial(ClientDBusTransitional,
2181
special_settings = {
2182
# Some settings need to be accessd by special methods;
2183
# booleans need .getboolean(), etc. Here is a list of them:
2184
"approved_by_default":
2186
client_config.getboolean(section, "approved_by_default"),
2189
client_config.getboolean(section, "enabled"),
2191
# Construct a new dict of client settings of this form:
2192
# { client_name: {setting_name: value, ...}, ...}
2193
# with exceptions for any special settings as defined above
2194
client_settings = dict((clientname,
2197
if setting not in special_settings
2198
else special_settings[setting]
2200
for setting, value in
2201
client_config.items(clientname)))
2202
for clientname in client_config.sections())
2204
old_client_settings = {}
2207
# Get client data and settings from last running state.
2208
if server_settings["restore"]:
2210
with open(stored_state_path, "rb") as stored_state:
2211
clients_data, old_client_settings = (pickle.load
2213
os.remove(stored_state_path)
2214
except IOError as e:
2215
logger.warning("Could not load persistent state: {0}"
2217
if e.errno != errno.ENOENT:
2220
with Crypto() as crypt:
2221
for client in clients_data:
2222
client_name = client["name"]
2224
# Decide which value to use after restoring saved state.
2225
# We have three different values: Old config file,
2226
# new config file, and saved state.
2227
# New config value takes precedence if it differs from old
2228
# config value, otherwise use saved state.
2229
for name, value in client_settings[client_name].items():
2231
# For each value in new config, check if it
2232
# differs from the old config value (Except for
2233
# the "secret" attribute)
2234
if (name != "secret" and
2235
value != old_client_settings[client_name]
2237
setattr(client, name, value)
2241
# Clients who has passed its expire date can still be
2242
# enabled if its last checker was sucessful. Clients
2243
# whose checker failed before we stored its state is
2244
# assumed to have failed all checkers during downtime.
2245
if client["enabled"] and client["last_checked_ok"]:
2246
if ((datetime.datetime.utcnow()
2247
- client["last_checked_ok"])
2248
> client["interval"]):
2249
if client["last_checker_status"] != 0:
2250
client["enabled"] = False
2252
client["expires"] = (datetime.datetime
2254
+ client["timeout"])
2256
client["changedstate"] = (multiprocessing_manager
2258
(multiprocessing_manager
2261
new_client = (ClientDBusTransitional.__new__
2262
(ClientDBusTransitional))
2263
tcp_server.clients[client_name] = new_client
2264
new_client.bus = bus
2265
for name, value in client.iteritems():
2266
setattr(new_client, name, value)
2267
client_object_name = unicode(client_name).translate(
2268
{ord("."): ord("_"),
2269
ord("-"): ord("_")})
2270
new_client.dbus_object_path = (dbus.ObjectPath
2272
+ client_object_name))
2273
DBusObjectWithProperties.__init__(new_client,
2278
tcp_server.clients[client_name] = (Client.__new__
2280
for name, value in client.iteritems():
2281
setattr(tcp_server.clients[client_name],
1923
yield (name, special_settings[name]())
1927
tcp_server.clients.update(set(
1928
client_class(name = section,
1929
config= dict(client_config_items(
1930
client_config, section)))
1931
for section in client_config.sections()))
2285
tcp_server.clients[client_name].secret = (
2286
crypt.decrypt(tcp_server.clients[client_name]
2288
client_settings[client_name]
2291
# If decryption fails, we use secret from new settings
2292
tcp_server.clients[client_name].secret = (
2293
client_settings[client_name]["secret"])
2295
# Create/remove clients based on new changes made to config
2296
for clientname in set(old_client_settings) - set(client_settings):
2297
del tcp_server.clients[clientname]
2298
for clientname in set(client_settings) - set(old_client_settings):
2299
tcp_server.clients[clientname] = (client_class(name
1932
2305
if not tcp_server.clients:
1933
2306
logger.warning("No clients defined")
2007
mandos_dbus_service = MandosDBusService()
2381
class MandosDBusServiceTransitional(MandosDBusService):
2382
__metaclass__ = AlternateDBusNamesMetaclass
2383
mandos_dbus_service = MandosDBusServiceTransitional()
2010
2386
"Cleanup function; run on exit"
2011
2387
service.cleanup()
2389
multiprocessing.active_children()
2390
if not (tcp_server.clients or client_settings):
2393
# Store client before exiting. Secrets are encrypted with key
2394
# based on what config file has. If config file is
2395
# removed/edited, old secret will thus be unrecovable.
2397
with Crypto() as crypt:
2398
for client in tcp_server.clients.itervalues():
2399
key = client_settings[client.name]["secret"]
2400
client.encrypted_secret = crypt.encrypt(client.secret,
2404
# A list of attributes that will not be stored when
2406
exclude = set(("bus", "changedstate", "secret"))
2407
for name, typ in (inspect.getmembers
2408
(dbus.service.Object)):
2411
client_dict["encrypted_secret"] = (client
2413
for attr in client.client_structure:
2414
if attr not in exclude:
2415
client_dict[attr] = getattr(client, attr)
2417
clients.append(client_dict)
2418
del client_settings[client.name]["secret"]
2421
with os.fdopen(os.open(stored_state_path,
2422
os.O_CREAT|os.O_WRONLY|os.O_TRUNC,
2423
0600), "wb") as stored_state:
2424
pickle.dump((clients, client_settings), stored_state)
2425
except (IOError, OSError) as e:
2426
logger.warning("Could not save persistent state: {0}"
2428
if e.errno not in (errno.ENOENT, errno.EACCES):
2431
# Delete all clients, and settings from config
2013
2432
while tcp_server.clients:
2014
client = tcp_server.clients.pop()
2433
name, client = tcp_server.clients.popitem()
2016
2435
client.remove_from_connection()
2017
client.disable_hook = None
2018
2436
# Don't signal anything except ClientRemoved
2019
2437
client.disable(quiet=True)
2021
2439
# Emit D-Bus signal
2022
mandos_dbus_service.ClientRemoved(client.dbus_object_path,
2440
mandos_dbus_service.ClientRemoved(client
2443
client_settings.clear()
2025
2445
atexit.register(cleanup)
2027
for client in tcp_server.clients:
2447
for client in tcp_server.clients.itervalues():
2029
2449
# Emit D-Bus signal
2030
2450
mandos_dbus_service.ClientAdded(client.dbus_object_path)
2451
# Need to initiate checking of clients
2453
client.init_checker()
2033
2455
tcp_server.enable()
2034
2456
tcp_server.server_activate()