88
81
    except ImportError:
 
89
82
        SO_BINDTODEVICE = None
 
92
 
stored_state_file = "clients.pickle"
 
94
 
logger = logging.getLogger()
 
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(b"16s16x", interface))
 
108
 
        interface_index = struct.unpack("I", ifreq[16:20])[0]
 
109
 
        return interface_index
 
112
 
def initlogger(debug, level=logging.WARNING):
 
113
 
    """init logger and add loglevel"""
 
116
 
    syslogger = (logging.handlers.SysLogHandler
 
118
 
                  logging.handlers.SysLogHandler.LOG_DAEMON,
 
119
 
                  address = "/dev/log"))
 
120
 
    syslogger.setFormatter(logging.Formatter
 
121
 
                           ('Mandos [%(process)d]: %(levelname)s:'
 
123
 
    logger.addHandler(syslogger)
 
126
 
        console = logging.StreamHandler()
 
127
 
        console.setFormatter(logging.Formatter('%(asctime)s %(name)s'
 
131
 
        logger.addHandler(console)
 
132
 
    logger.setLevel(level)
 
135
 
class PGPError(Exception):
 
136
 
    """Exception if encryption/decryption fails"""
 
140
 
class PGPEngine(object):
 
141
 
    """A simple class for OpenPGP symmetric encryption & decryption"""
 
143
 
        self.tempdir = tempfile.mkdtemp(prefix="mandos-")
 
144
 
        self.gnupgargs = ['--batch',
 
145
 
                          '--home', self.tempdir,
 
153
 
    def __exit__(self, exc_type, exc_value, traceback):
 
161
 
        if self.tempdir is not None:
 
162
 
            # Delete contents of tempdir
 
163
 
            for root, dirs, files in os.walk(self.tempdir,
 
165
 
                for filename in files:
 
166
 
                    os.remove(os.path.join(root, filename))
 
168
 
                    os.rmdir(os.path.join(root, dirname))
 
170
 
            os.rmdir(self.tempdir)
 
173
 
    def password_encode(self, password):
 
174
 
        # Passphrase can not be empty and can not contain newlines or
 
175
 
        # NUL bytes.  So we prefix it and hex encode it.
 
176
 
        encoded = b"mandos" + binascii.hexlify(password)
 
177
 
        if len(encoded) > 2048:
 
178
 
            # GnuPG can't handle long passwords, so encode differently
 
179
 
            encoded = (b"mandos" + password.replace(b"\\", b"\\\\")
 
180
 
                       .replace(b"\n", b"\\n")
 
181
 
                       .replace(b"\0", b"\\x00"))
 
184
 
    def encrypt(self, data, password):
 
185
 
        passphrase = self.password_encode(password)
 
186
 
        with tempfile.NamedTemporaryFile(dir=self.tempdir
 
188
 
            passfile.write(passphrase)
 
190
 
            proc = subprocess.Popen(['gpg', '--symmetric',
 
194
 
                                    stdin = subprocess.PIPE,
 
195
 
                                    stdout = subprocess.PIPE,
 
196
 
                                    stderr = subprocess.PIPE)
 
197
 
            ciphertext, err = proc.communicate(input = data)
 
198
 
        if proc.returncode != 0:
 
202
 
    def decrypt(self, data, password):
 
203
 
        passphrase = self.password_encode(password)
 
204
 
        with tempfile.NamedTemporaryFile(dir = self.tempdir
 
206
 
            passfile.write(passphrase)
 
208
 
            proc = subprocess.Popen(['gpg', '--decrypt',
 
212
 
                                    stdin = subprocess.PIPE,
 
213
 
                                    stdout = subprocess.PIPE,
 
214
 
                                    stderr = subprocess.PIPE)
 
215
 
            decrypted_plaintext, err = proc.communicate(input
 
217
 
        if proc.returncode != 0:
 
219
 
        return decrypted_plaintext
 
 
87
#logger = logging.getLogger('mandos')
 
 
88
logger = logging.Logger('mandos')
 
 
89
syslogger = (logging.handlers.SysLogHandler
 
 
90
             (facility = logging.handlers.SysLogHandler.LOG_DAEMON,
 
 
91
              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)
 
222
103
class AvahiError(Exception):
 
223
104
    def __init__(self, value, *args, **kwargs):
 
224
105
        self.value = value
 
225
 
        return super(AvahiError, self).__init__(value, *args,
 
 
106
        super(AvahiError, self).__init__(value, *args, **kwargs)
 
 
107
    def __unicode__(self):
 
 
108
        return unicode(repr(self.value))
 
228
110
class AvahiServiceError(AvahiError):
 
 
279
159
                            " after %i retries, exiting.",
 
280
160
                            self.rename_count)
 
281
161
            raise AvahiServiceError("Too many renames")
 
282
 
        self.name = unicode(self.server
 
283
 
                            .GetAlternativeServiceName(self.name))
 
 
162
        self.name = unicode(self.server.GetAlternativeServiceName(self.name))
 
284
163
        logger.info("Changing Zeroconf service name to %r ...",
 
 
165
        syslogger.setFormatter(logging.Formatter
 
 
166
                               ('Mandos (%s) [%%(process)d]:'
 
 
167
                                ' %%(levelname)s: %%(message)s'
 
289
172
        except dbus.exceptions.DBusException as error:
 
290
 
            logger.critical("D-Bus Exception", exc_info=error)
 
 
173
            logger.critical("DBusException: %s", error)
 
293
176
        self.rename_count += 1
 
295
177
    def remove(self):
 
296
178
        """Derived from the Avahi example code"""
 
 
179
        if self.group is not None:
 
 
182
            except (dbus.exceptions.UnknownMethodException,
 
 
183
                    dbus.exceptions.DBusException) as e:
 
297
186
        if self.entry_group_state_changed_match is not None:
 
298
187
            self.entry_group_state_changed_match.remove()
 
299
188
            self.entry_group_state_changed_match = None
 
300
 
        if self.group is not None:
 
304
190
        """Derived from the Avahi example code"""
 
306
 
        if self.group is None:
 
307
 
            self.group = dbus.Interface(
 
308
 
                self.bus.get_object(avahi.DBUS_NAME,
 
309
 
                                    self.server.EntryGroupNew()),
 
310
 
                avahi.DBUS_INTERFACE_ENTRY_GROUP)
 
 
192
        self.group = dbus.Interface(
 
 
193
            self.bus.get_object(avahi.DBUS_NAME,
 
 
194
                                self.server.EntryGroupNew(),
 
 
195
                                follow_name_owner_changes=True),
 
 
196
            avahi.DBUS_INTERFACE_ENTRY_GROUP)
 
311
197
        self.entry_group_state_changed_match = (
 
312
198
            self.group.connect_to_signal(
 
313
 
                'StateChanged', self.entry_group_state_changed))
 
 
199
                'StateChanged', self .entry_group_state_changed))
 
314
200
        logger.debug("Adding Zeroconf service '%s' of type '%s' ...",
 
315
201
                     self.name, self.type)
 
316
202
        self.group.AddService(
 
 
426
283
    interval:   datetime.timedelta(); How often to start a new checker
 
427
284
    last_approval_request: datetime.datetime(); (UTC) or None
 
428
285
    last_checked_ok: datetime.datetime(); (UTC) or None
 
429
 
    last_checker_status: integer between 0 and 255 reflecting exit
 
430
 
                         status of last checker. -1 reflects crashed
 
431
 
                         checker, -2 means no checker completed yet.
 
432
 
    last_enabled: datetime.datetime(); (UTC) or None
 
 
286
    last_enabled: datetime.datetime(); (UTC)
 
433
287
    name:       string; from the config file, used in log messages and
 
434
288
                        D-Bus identifiers
 
435
289
    secret:     bytestring; sent verbatim (over TLS) to client
 
436
290
    timeout:    datetime.timedelta(); How long from last_checked_ok
 
437
291
                                      until this client is disabled
 
438
 
    extended_timeout:   extra long timeout when secret has been sent
 
439
292
    runtime_expansions: Allowed attributes for runtime expansion.
 
440
 
    expires:    datetime.datetime(); time (UTC) when a client will be
 
442
 
    server_settings: The server_settings dict from main()
 
445
295
    runtime_expansions = ("approval_delay", "approval_duration",
 
446
 
                          "created", "enabled", "expires",
 
447
 
                          "fingerprint", "host", "interval",
 
448
 
                          "last_approval_request", "last_checked_ok",
 
 
296
                          "created", "enabled", "fingerprint",
 
 
297
                          "host", "interval", "last_checked_ok",
 
449
298
                          "last_enabled", "name", "timeout")
 
450
 
    client_defaults = { "timeout": "PT5M",
 
451
 
                        "extended_timeout": "PT15M",
 
453
 
                        "checker": "fping -q -- %%(host)s",
 
455
 
                        "approval_delay": "PT0S",
 
456
 
                        "approval_duration": "PT1S",
 
457
 
                        "approved_by_default": "True",
 
462
 
    def config_parser(config):
 
463
 
        """Construct a new dict of client settings of this form:
 
464
 
        { client_name: {setting_name: value, ...}, ...}
 
465
 
        with exceptions for any special settings as defined above.
 
466
 
        NOTE: Must be a pure function. Must return the same result
 
467
 
        value given the same arguments.
 
470
 
        for client_name in config.sections():
 
471
 
            section = dict(config.items(client_name))
 
472
 
            client = settings[client_name] = {}
 
474
 
            client["host"] = section["host"]
 
475
 
            # Reformat values from string types to Python types
 
476
 
            client["approved_by_default"] = config.getboolean(
 
477
 
                client_name, "approved_by_default")
 
478
 
            client["enabled"] = config.getboolean(client_name,
 
481
 
            client["fingerprint"] = (section["fingerprint"].upper()
 
483
 
            if "secret" in section:
 
484
 
                client["secret"] = section["secret"].decode("base64")
 
485
 
            elif "secfile" in section:
 
486
 
                with open(os.path.expanduser(os.path.expandvars
 
487
 
                                             (section["secfile"])),
 
489
 
                    client["secret"] = secfile.read()
 
491
 
                raise TypeError("No secret or secfile for section {}"
 
493
 
            client["timeout"] = string_to_delta(section["timeout"])
 
494
 
            client["extended_timeout"] = string_to_delta(
 
495
 
                section["extended_timeout"])
 
496
 
            client["interval"] = string_to_delta(section["interval"])
 
497
 
            client["approval_delay"] = string_to_delta(
 
498
 
                section["approval_delay"])
 
499
 
            client["approval_duration"] = string_to_delta(
 
500
 
                section["approval_duration"])
 
501
 
            client["checker_command"] = section["checker"]
 
502
 
            client["last_approval_request"] = None
 
503
 
            client["last_checked_ok"] = None
 
504
 
            client["last_checker_status"] = -2
 
508
 
    def __init__(self, settings, name = None, server_settings=None):
 
 
301
    def _timedelta_to_milliseconds(td):
 
 
302
        "Convert a datetime.timedelta() to milliseconds"
 
 
303
        return ((td.days * 24 * 60 * 60 * 1000)
 
 
304
                + (td.seconds * 1000)
 
 
305
                + (td.microseconds // 1000))
 
 
307
    def timeout_milliseconds(self):
 
 
308
        "Return the 'timeout' attribute in milliseconds"
 
 
309
        return self._timedelta_to_milliseconds(self.timeout)
 
 
311
    def interval_milliseconds(self):
 
 
312
        "Return the 'interval' attribute in milliseconds"
 
 
313
        return self._timedelta_to_milliseconds(self.interval)
 
 
315
    def approval_delay_milliseconds(self):
 
 
316
        return self._timedelta_to_milliseconds(self.approval_delay)
 
 
318
    def __init__(self, name = None, disable_hook=None, config=None):
 
 
319
        """Note: the 'checker' key in 'config' sets the
 
 
320
        'checker_command' attribute and *not* the 'checker'
 
510
 
        if server_settings is None:
 
512
 
        self.server_settings = server_settings
 
513
 
        # adding all client settings
 
514
 
        for setting, value in settings.items():
 
515
 
            setattr(self, setting, value)
 
518
 
            if not hasattr(self, "last_enabled"):
 
519
 
                self.last_enabled = datetime.datetime.utcnow()
 
520
 
            if not hasattr(self, "expires"):
 
521
 
                self.expires = (datetime.datetime.utcnow()
 
524
 
            self.last_enabled = None
 
527
325
        logger.debug("Creating client %r", self.name)
 
528
326
        # Uppercase and remove spaces from fingerprint for later
 
529
327
        # comparison purposes with return value from the fingerprint()
 
 
329
        self.fingerprint = (config["fingerprint"].upper()
 
531
331
        logger.debug("  Fingerprint: %s", self.fingerprint)
 
532
 
        self.created = settings.get("created",
 
533
 
                                    datetime.datetime.utcnow())
 
535
 
        # attributes specific for this server instance
 
 
332
        if "secret" in config:
 
 
333
            self.secret = config["secret"].decode("base64")
 
 
334
        elif "secfile" in config:
 
 
335
            with open(os.path.expanduser(os.path.expandvars
 
 
336
                                         (config["secfile"])),
 
 
338
                self.secret = secfile.read()
 
 
340
            raise TypeError("No secret or secfile for client %s"
 
 
342
        self.host = config.get("host", "")
 
 
343
        self.created = datetime.datetime.utcnow()
 
 
345
        self.last_approval_request = None
 
 
346
        self.last_enabled = None
 
 
347
        self.last_checked_ok = None
 
 
348
        self.timeout = string_to_delta(config["timeout"])
 
 
349
        self.interval = string_to_delta(config["interval"])
 
 
350
        self.disable_hook = disable_hook
 
536
351
        self.checker = None
 
537
352
        self.checker_initiator_tag = None
 
538
353
        self.disable_initiator_tag = None
 
539
354
        self.checker_callback_tag = None
 
 
355
        self.checker_command = config["checker"]
 
540
356
        self.current_checker_command = None
 
 
357
        self.last_connect = None
 
 
358
        self._approved = None
 
 
359
        self.approved_by_default = config.get("approved_by_default",
 
542
361
        self.approvals_pending = 0
 
543
 
        self.changedstate = (multiprocessing_manager
 
544
 
                             .Condition(multiprocessing_manager
 
546
 
        self.client_structure = [attr for attr in
 
547
 
                                 self.__dict__.iterkeys()
 
548
 
                                 if not attr.startswith("_")]
 
549
 
        self.client_structure.append("client_structure")
 
551
 
        for name, t in inspect.getmembers(type(self),
 
555
 
            if not name.startswith("_"):
 
556
 
                self.client_structure.append(name)
 
 
362
        self.approval_delay = string_to_delta(
 
 
363
            config["approval_delay"])
 
 
364
        self.approval_duration = string_to_delta(
 
 
365
            config["approval_duration"])
 
 
366
        self.changedstate = multiprocessing_manager.Condition(multiprocessing_manager.Lock())
 
558
 
    # Send notice to process children that client state has changed
 
559
368
    def send_changedstate(self):
 
560
 
        with self.changedstate:
 
561
 
            self.changedstate.notify_all()
 
 
369
        self.changedstate.acquire()
 
 
370
        self.changedstate.notify_all()
 
 
371
        self.changedstate.release()
 
563
373
    def enable(self):
 
564
374
        """Start this client's checker and timeout hooks"""
 
565
375
        if getattr(self, "enabled", False):
 
566
376
            # Already enabled
 
568
 
        self.expires = datetime.datetime.utcnow() + self.timeout
 
 
378
        self.send_changedstate()
 
570
379
        self.last_enabled = datetime.datetime.utcnow()
 
572
 
        self.send_changedstate()
 
 
380
        # Schedule a new checker to be started an 'interval' from now,
 
 
381
        # and every interval from then on.
 
 
382
        self.checker_initiator_tag = (gobject.timeout_add
 
 
383
                                      (self.interval_milliseconds(),
 
 
385
        # Schedule a disable() when 'timeout' has passed
 
 
386
        self.disable_initiator_tag = (gobject.timeout_add
 
 
387
                                   (self.timeout_milliseconds(),
 
 
390
        # Also start a new checker *right now*.
 
574
393
    def disable(self, quiet=True):
 
575
394
        """Disable this client."""
 
576
395
        if not getattr(self, "enabled", False):
 
 
398
            self.send_changedstate()
 
579
400
            logger.info("Disabling client %s", self.name)
 
580
 
        if getattr(self, "disable_initiator_tag", None) is not None:
 
 
401
        if getattr(self, "disable_initiator_tag", False):
 
581
402
            gobject.source_remove(self.disable_initiator_tag)
 
582
403
            self.disable_initiator_tag = None
 
584
 
        if getattr(self, "checker_initiator_tag", None) is not None:
 
 
404
        if getattr(self, "checker_initiator_tag", False):
 
585
405
            gobject.source_remove(self.checker_initiator_tag)
 
586
406
            self.checker_initiator_tag = None
 
587
407
        self.stop_checker()
 
 
408
        if self.disable_hook:
 
 
409
            self.disable_hook(self)
 
588
410
        self.enabled = False
 
590
 
            self.send_changedstate()
 
591
411
        # Do not run this again if called by a gobject.timeout_add
 
594
414
    def __del__(self):
 
 
415
        self.disable_hook = None
 
597
 
    def init_checker(self):
 
598
 
        # Schedule a new checker to be started an 'interval' from now,
 
599
 
        # and every interval from then on.
 
600
 
        if self.checker_initiator_tag is not None:
 
601
 
            gobject.source_remove(self.checker_initiator_tag)
 
602
 
        self.checker_initiator_tag = (gobject.timeout_add
 
604
 
                                           .total_seconds() * 1000),
 
606
 
        # Schedule a disable() when 'timeout' has passed
 
607
 
        if self.disable_initiator_tag is not None:
 
608
 
            gobject.source_remove(self.disable_initiator_tag)
 
609
 
        self.disable_initiator_tag = (gobject.timeout_add
 
611
 
                                           .total_seconds() * 1000),
 
613
 
        # Also start a new checker *right now*.
 
616
418
    def checker_callback(self, pid, condition, command):
 
617
419
        """The checker has completed, so take appropriate actions."""
 
618
420
        self.checker_callback_tag = None
 
619
421
        self.checker = None
 
620
422
        if os.WIFEXITED(condition):
 
621
 
            self.last_checker_status = os.WEXITSTATUS(condition)
 
622
 
            if self.last_checker_status == 0:
 
 
423
            exitstatus = os.WEXITSTATUS(condition)
 
623
425
                logger.info("Checker for %(name)s succeeded",
 
625
427
                self.checked_ok()
 
 
845
592
class DBusObjectWithProperties(dbus.service.Object):
 
846
593
    """A D-Bus object with properties.
 
848
595
    Classes inheriting from this can use the dbus_service_property
 
849
596
    decorator to expose methods as D-Bus properties.  It exposes the
 
850
597
    standard Get(), Set(), and GetAll() methods on the D-Bus.
 
854
 
    def _is_dbus_thing(thing):
 
855
 
        """Returns a function testing if an attribute is a D-Bus thing
 
857
 
        If called like _is_dbus_thing("method") it returns a function
 
858
 
        suitable for use as predicate to inspect.getmembers().
 
860
 
        return lambda obj: getattr(obj, "_dbus_is_{}".format(thing),
 
 
601
    def _is_dbus_property(obj):
 
 
602
        return getattr(obj, "_dbus_is_property", False)
 
863
 
    def _get_all_dbus_things(self, thing):
 
 
604
    def _get_all_dbus_properties(self):
 
864
605
        """Returns a generator of (name, attribute) pairs
 
866
 
        return ((getattr(athing.__get__(self), "_dbus_name",
 
868
 
                 athing.__get__(self))
 
869
 
                for cls in self.__class__.__mro__
 
871
 
                inspect.getmembers(cls,
 
872
 
                                   self._is_dbus_thing(thing)))
 
 
607
        return ((prop._dbus_name, prop)
 
 
609
                inspect.getmembers(self, self._is_dbus_property))
 
874
611
    def _get_dbus_property(self, interface_name, property_name):
 
875
612
        """Returns a bound method if one exists which is a D-Bus
 
876
613
        property with the specified name and interface.
 
878
 
        for cls in  self.__class__.__mro__:
 
879
 
            for name, value in (inspect.getmembers
 
881
 
                                 self._is_dbus_thing("property"))):
 
882
 
                if (value._dbus_name == property_name
 
883
 
                    and value._dbus_interface == interface_name):
 
884
 
                    return value.__get__(self)
 
 
615
        for name in (property_name,
 
 
616
                     property_name + "_dbus_property"):
 
 
617
            prop = getattr(self, name, None)
 
 
619
                or not self._is_dbus_property(prop)
 
 
620
                or prop._dbus_name != property_name
 
 
621
                or (interface_name and prop._dbus_interface
 
 
622
                    and interface_name != prop._dbus_interface)):
 
886
625
        # No such property
 
887
626
        raise DBusPropertyNotFound(self.dbus_object_path + ":"
 
888
627
                                   + interface_name + "."
 
 
1022
725
        except (AttributeError, xml.dom.DOMException,
 
1023
726
                xml.parsers.expat.ExpatError) as error:
 
1024
727
            logger.error("Failed to override Introspection method",
 
1026
729
        return xmlstring
 
1029
 
def datetime_to_dbus(dt, variant_level=0):
 
1030
 
    """Convert a UTC datetime.datetime() to a D-Bus type."""
 
1032
 
        return dbus.String("", variant_level = variant_level)
 
1033
 
    return dbus.String(dt.isoformat(),
 
1034
 
                       variant_level=variant_level)
 
1037
 
def alternate_dbus_interfaces(alt_interface_names, deprecate=True):
 
1038
 
    """A class decorator; applied to a subclass of
 
1039
 
    dbus.service.Object, it will add alternate D-Bus attributes with
 
1040
 
    interface names according to the "alt_interface_names" mapping.
 
1043
 
    @alternate_dbus_interfaces({"org.example.Interface":
 
1044
 
                                    "net.example.AlternateInterface"})
 
1045
 
    class SampleDBusObject(dbus.service.Object):
 
1046
 
        @dbus.service.method("org.example.Interface")
 
1047
 
        def SampleDBusMethod():
 
1050
 
    The above "SampleDBusMethod" on "SampleDBusObject" will be
 
1051
 
    reachable via two interfaces: "org.example.Interface" and
 
1052
 
    "net.example.AlternateInterface", the latter of which will have
 
1053
 
    its D-Bus annotation "org.freedesktop.DBus.Deprecated" set to
 
1054
 
    "true", unless "deprecate" is passed with a False value.
 
1056
 
    This works for methods and signals, and also for D-Bus properties
 
1057
 
    (from DBusObjectWithProperties) and interfaces (from the
 
1058
 
    dbus_interface_annotations decorator).
 
1061
 
        for orig_interface_name, alt_interface_name in (
 
1062
 
            alt_interface_names.items()):
 
1064
 
            interface_names = set()
 
1065
 
            # Go though all attributes of the class
 
1066
 
            for attrname, attribute in inspect.getmembers(cls):
 
1067
 
                # Ignore non-D-Bus attributes, and D-Bus attributes
 
1068
 
                # with the wrong interface name
 
1069
 
                if (not hasattr(attribute, "_dbus_interface")
 
1070
 
                    or not attribute._dbus_interface
 
1071
 
                    .startswith(orig_interface_name)):
 
1073
 
                # Create an alternate D-Bus interface name based on
 
1075
 
                alt_interface = (attribute._dbus_interface
 
1076
 
                                 .replace(orig_interface_name,
 
1077
 
                                          alt_interface_name))
 
1078
 
                interface_names.add(alt_interface)
 
1079
 
                # Is this a D-Bus signal?
 
1080
 
                if getattr(attribute, "_dbus_is_signal", False):
 
1081
 
                    # Extract the original non-method undecorated
 
1082
 
                    # function by black magic
 
1083
 
                    nonmethod_func = (dict(
 
1084
 
                            zip(attribute.func_code.co_freevars,
 
1085
 
                                attribute.__closure__))["func"]
 
1087
 
                    # Create a new, but exactly alike, function
 
1088
 
                    # object, and decorate it to be a new D-Bus signal
 
1089
 
                    # with the alternate D-Bus interface name
 
1090
 
                    new_function = (dbus.service.signal
 
1092
 
                                     attribute._dbus_signature)
 
1093
 
                                    (types.FunctionType(
 
1094
 
                                nonmethod_func.func_code,
 
1095
 
                                nonmethod_func.func_globals,
 
1096
 
                                nonmethod_func.func_name,
 
1097
 
                                nonmethod_func.func_defaults,
 
1098
 
                                nonmethod_func.func_closure)))
 
1099
 
                    # Copy annotations, if any
 
1101
 
                        new_function._dbus_annotations = (
 
1102
 
                            dict(attribute._dbus_annotations))
 
1103
 
                    except AttributeError:
 
1105
 
                    # Define a creator of a function to call both the
 
1106
 
                    # original and alternate functions, so both the
 
1107
 
                    # original and alternate signals gets sent when
 
1108
 
                    # the function is called
 
1109
 
                    def fixscope(func1, func2):
 
1110
 
                        """This function is a scope container to pass
 
1111
 
                        func1 and func2 to the "call_both" function
 
1112
 
                        outside of its arguments"""
 
1113
 
                        def call_both(*args, **kwargs):
 
1114
 
                            """This function will emit two D-Bus
 
1115
 
                            signals by calling func1 and func2"""
 
1116
 
                            func1(*args, **kwargs)
 
1117
 
                            func2(*args, **kwargs)
 
1119
 
                    # Create the "call_both" function and add it to
 
1121
 
                    attr[attrname] = fixscope(attribute, new_function)
 
1122
 
                # Is this a D-Bus method?
 
1123
 
                elif getattr(attribute, "_dbus_is_method", False):
 
1124
 
                    # Create a new, but exactly alike, function
 
1125
 
                    # object.  Decorate it to be a new D-Bus method
 
1126
 
                    # with the alternate D-Bus interface name.  Add it
 
1128
 
                    attr[attrname] = (dbus.service.method
 
1130
 
                                       attribute._dbus_in_signature,
 
1131
 
                                       attribute._dbus_out_signature)
 
1133
 
                                       (attribute.func_code,
 
1134
 
                                        attribute.func_globals,
 
1135
 
                                        attribute.func_name,
 
1136
 
                                        attribute.func_defaults,
 
1137
 
                                        attribute.func_closure)))
 
1138
 
                    # Copy annotations, if any
 
1140
 
                        attr[attrname]._dbus_annotations = (
 
1141
 
                            dict(attribute._dbus_annotations))
 
1142
 
                    except AttributeError:
 
1144
 
                # Is this a D-Bus property?
 
1145
 
                elif getattr(attribute, "_dbus_is_property", False):
 
1146
 
                    # Create a new, but exactly alike, function
 
1147
 
                    # object, and decorate it to be a new D-Bus
 
1148
 
                    # property with the alternate D-Bus interface
 
1149
 
                    # name.  Add it to the class.
 
1150
 
                    attr[attrname] = (dbus_service_property
 
1152
 
                                       attribute._dbus_signature,
 
1153
 
                                       attribute._dbus_access,
 
1155
 
                                       ._dbus_get_args_options
 
1158
 
                                       (attribute.func_code,
 
1159
 
                                        attribute.func_globals,
 
1160
 
                                        attribute.func_name,
 
1161
 
                                        attribute.func_defaults,
 
1162
 
                                        attribute.func_closure)))
 
1163
 
                    # Copy annotations, if any
 
1165
 
                        attr[attrname]._dbus_annotations = (
 
1166
 
                            dict(attribute._dbus_annotations))
 
1167
 
                    except AttributeError:
 
1169
 
                # Is this a D-Bus interface?
 
1170
 
                elif getattr(attribute, "_dbus_is_interface", False):
 
1171
 
                    # Create a new, but exactly alike, function
 
1172
 
                    # object.  Decorate it to be a new D-Bus interface
 
1173
 
                    # with the alternate D-Bus interface name.  Add it
 
1175
 
                    attr[attrname] = (dbus_interface_annotations
 
1178
 
                                       (attribute.func_code,
 
1179
 
                                        attribute.func_globals,
 
1180
 
                                        attribute.func_name,
 
1181
 
                                        attribute.func_defaults,
 
1182
 
                                        attribute.func_closure)))
 
1184
 
                # Deprecate all alternate interfaces
 
1185
 
                iname="_AlternateDBusNames_interface_annotation{}"
 
1186
 
                for interface_name in interface_names:
 
1187
 
                    @dbus_interface_annotations(interface_name)
 
1189
 
                        return { "org.freedesktop.DBus.Deprecated":
 
1191
 
                    # Find an unused name
 
1192
 
                    for aname in (iname.format(i)
 
1193
 
                                  for i in itertools.count()):
 
1194
 
                        if aname not in attr:
 
1198
 
                # Replace the class with a new subclass of it with
 
1199
 
                # methods, signals, etc. as created above.
 
1200
 
                cls = type(b"{}Alternate".format(cls.__name__),
 
1206
 
@alternate_dbus_interfaces({"se.recompile.Mandos":
 
1207
 
                                "se.bsnet.fukt.Mandos"})
 
1208
732
class ClientDBus(Client, DBusObjectWithProperties):
 
1209
733
    """A Client class using D-Bus
 
 
1230
755
                                 ("/clients/" + client_object_name))
 
1231
756
        DBusObjectWithProperties.__init__(self, self.bus,
 
1232
757
                                          self.dbus_object_path)
 
1234
 
    def notifychangeproperty(transform_func,
 
1235
 
                             dbus_name, type_func=lambda x: x,
 
1237
 
        """ Modify a variable so that it's a property which announces
 
1238
 
        its changes to DBus.
 
1240
 
        transform_fun: Function that takes a value and a variant_level
 
1241
 
                       and transforms it to a D-Bus type.
 
1242
 
        dbus_name: D-Bus name of the variable
 
1243
 
        type_func: Function that transform the value before sending it
 
1244
 
                   to the D-Bus.  Default: no transform
 
1245
 
        variant_level: D-Bus variant level.  Default: 1
 
1247
 
        attrname = "_{}".format(dbus_name)
 
1248
 
        def setter(self, value):
 
1249
 
            if hasattr(self, "dbus_object_path"):
 
1250
 
                if (not hasattr(self, attrname) or
 
1251
 
                    type_func(getattr(self, attrname, None))
 
1252
 
                    != type_func(value)):
 
1253
 
                    dbus_value = transform_func(type_func(value),
 
1256
 
                    self.PropertyChanged(dbus.String(dbus_name),
 
1258
 
            setattr(self, attrname, value)
 
1260
 
        return property(lambda self: getattr(self, attrname), setter)
 
1262
 
    expires = notifychangeproperty(datetime_to_dbus, "Expires")
 
1263
 
    approvals_pending = notifychangeproperty(dbus.Boolean,
 
1266
 
    enabled = notifychangeproperty(dbus.Boolean, "Enabled")
 
1267
 
    last_enabled = notifychangeproperty(datetime_to_dbus,
 
1269
 
    checker = notifychangeproperty(dbus.Boolean, "CheckerRunning",
 
1270
 
                                   type_func = lambda checker:
 
1271
 
                                       checker is not None)
 
1272
 
    last_checked_ok = notifychangeproperty(datetime_to_dbus,
 
1274
 
    last_checker_status = notifychangeproperty(dbus.Int16,
 
1275
 
                                               "LastCheckerStatus")
 
1276
 
    last_approval_request = notifychangeproperty(
 
1277
 
        datetime_to_dbus, "LastApprovalRequest")
 
1278
 
    approved_by_default = notifychangeproperty(dbus.Boolean,
 
1279
 
                                               "ApprovedByDefault")
 
1280
 
    approval_delay = notifychangeproperty(dbus.UInt64,
 
1283
 
                                          lambda td: td.total_seconds()
 
1285
 
    approval_duration = notifychangeproperty(
 
1286
 
        dbus.UInt64, "ApprovalDuration",
 
1287
 
        type_func = lambda td: td.total_seconds() * 1000)
 
1288
 
    host = notifychangeproperty(dbus.String, "Host")
 
1289
 
    timeout = notifychangeproperty(dbus.UInt64, "Timeout",
 
1290
 
                                   type_func = lambda td:
 
1291
 
                                       td.total_seconds() * 1000)
 
1292
 
    extended_timeout = notifychangeproperty(
 
1293
 
        dbus.UInt64, "ExtendedTimeout",
 
1294
 
        type_func = lambda td: td.total_seconds() * 1000)
 
1295
 
    interval = notifychangeproperty(dbus.UInt64,
 
1298
 
                                    lambda td: td.total_seconds()
 
1300
 
    checker_command = notifychangeproperty(dbus.String, "Checker")
 
1302
 
    del notifychangeproperty
 
 
759
    def _get_approvals_pending(self):
 
 
760
        return self._approvals_pending
 
 
761
    def _set_approvals_pending(self, value):
 
 
762
        old_value = self._approvals_pending
 
 
763
        self._approvals_pending = value
 
 
765
        if (hasattr(self, "dbus_object_path")
 
 
766
            and bval is not bool(old_value)):
 
 
767
            dbus_bool = dbus.Boolean(bval, variant_level=1)
 
 
768
            self.PropertyChanged(dbus.String("ApprovalPending"),
 
 
771
    approvals_pending = property(_get_approvals_pending,
 
 
772
                                 _set_approvals_pending)
 
 
773
    del _get_approvals_pending, _set_approvals_pending
 
 
776
    def _datetime_to_dbus(dt, variant_level=0):
 
 
777
        """Convert a UTC datetime.datetime() to a D-Bus type."""
 
 
778
        return dbus.String(dt.isoformat(),
 
 
779
                           variant_level=variant_level)
 
 
782
        oldstate = getattr(self, "enabled", False)
 
 
783
        r = Client.enable(self)
 
 
784
        if oldstate != self.enabled:
 
 
786
            self.PropertyChanged(dbus.String("Enabled"),
 
 
787
                                 dbus.Boolean(True, variant_level=1))
 
 
788
            self.PropertyChanged(
 
 
789
                dbus.String("LastEnabled"),
 
 
790
                self._datetime_to_dbus(self.last_enabled,
 
 
794
    def disable(self, quiet = False):
 
 
795
        oldstate = getattr(self, "enabled", False)
 
 
796
        r = Client.disable(self, quiet=quiet)
 
 
797
        if not quiet and oldstate != self.enabled:
 
 
799
            self.PropertyChanged(dbus.String("Enabled"),
 
 
800
                                 dbus.Boolean(False, variant_level=1))
 
1304
803
    def __del__(self, *args, **kwargs):
 
 
1329
831
        return Client.checker_callback(self, pid, condition, command,
 
1330
832
                                       *args, **kwargs)
 
 
834
    def checked_ok(self, *args, **kwargs):
 
 
835
        Client.checked_ok(self, *args, **kwargs)
 
 
837
        self.PropertyChanged(
 
 
838
            dbus.String("LastCheckedOK"),
 
 
839
            (self._datetime_to_dbus(self.last_checked_ok,
 
 
842
    def need_approval(self, *args, **kwargs):
 
 
843
        r = Client.need_approval(self, *args, **kwargs)
 
 
845
        self.PropertyChanged(
 
 
846
            dbus.String("LastApprovalRequest"),
 
 
847
            (self._datetime_to_dbus(self.last_approval_request,
 
1332
851
    def start_checker(self, *args, **kwargs):
 
1333
 
        old_checker_pid = getattr(self.checker, "pid", None)
 
 
852
        old_checker = self.checker
 
 
853
        if self.checker is not None:
 
 
854
            old_checker_pid = self.checker.pid
 
 
856
            old_checker_pid = None
 
1334
857
        r = Client.start_checker(self, *args, **kwargs)
 
1335
858
        # Only if new checker process was started
 
1336
859
        if (self.checker is not None
 
1337
860
            and old_checker_pid != self.checker.pid):
 
1338
861
            # Emit D-Bus signal
 
1339
862
            self.CheckerStarted(self.current_checker_command)
 
 
863
            self.PropertyChanged(
 
 
864
                dbus.String("CheckerRunning"),
 
 
865
                dbus.Boolean(True, variant_level=1))
 
 
868
    def stop_checker(self, *args, **kwargs):
 
 
869
        old_checker = getattr(self, "checker", None)
 
 
870
        r = Client.stop_checker(self, *args, **kwargs)
 
 
871
        if (old_checker is not None
 
 
872
            and getattr(self, "checker", None) is None):
 
 
873
            self.PropertyChanged(dbus.String("CheckerRunning"),
 
 
874
                                 dbus.Boolean(False, variant_level=1))
 
1342
877
    def _reset_approved(self):
 
1343
 
        self.approved = None
 
 
878
        self._approved = None
 
1346
881
    def approve(self, value=True):
 
1347
 
        self.approved = value
 
1348
 
        gobject.timeout_add(int(self.approval_duration.total_seconds()
 
1349
 
                                * 1000), self._reset_approved)
 
1350
882
        self.send_changedstate()
 
 
883
        self._approved = value
 
 
884
        gobject.timeout_add(self._timedelta_to_milliseconds
 
 
885
                            (self.approval_duration),
 
 
886
                            self._reset_approved)
 
1352
889
    ## D-Bus methods, signals & properties
 
1353
 
    _interface = "se.recompile.Mandos.Client"
 
1357
 
    @dbus_interface_annotations(_interface)
 
1359
 
        return { "org.freedesktop.DBus.Property.EmitsChangedSignal":
 
 
890
    _interface = "se.bsnet.fukt.Mandos.Client"
 
 
1514
1057
        if value is not None:
 
1515
1058
            self.checked_ok()
 
1517
 
        return datetime_to_dbus(self.last_checked_ok)
 
1519
 
    # LastCheckerStatus - property
 
1520
 
    @dbus_service_property(_interface, signature="n",
 
1522
 
    def LastCheckerStatus_dbus_property(self):
 
1523
 
        return dbus.Int16(self.last_checker_status)
 
1525
 
    # Expires - property
 
1526
 
    @dbus_service_property(_interface, signature="s", access="read")
 
1527
 
    def Expires_dbus_property(self):
 
1528
 
        return datetime_to_dbus(self.expires)
 
 
1060
        if self.last_checked_ok is None:
 
 
1061
            return dbus.String("")
 
 
1062
        return dbus.String(self._datetime_to_dbus(self
 
1530
1065
    # LastApprovalRequest - property
 
1531
1066
    @dbus_service_property(_interface, signature="s", access="read")
 
1532
1067
    def LastApprovalRequest_dbus_property(self):
 
1533
 
        return datetime_to_dbus(self.last_approval_request)
 
 
1068
        if self.last_approval_request is None:
 
 
1069
            return dbus.String("")
 
 
1070
        return dbus.String(self.
 
 
1071
                           _datetime_to_dbus(self
 
 
1072
                                             .last_approval_request))
 
1535
1074
    # Timeout - property
 
1536
1075
    @dbus_service_property(_interface, signature="t",
 
1537
1076
                           access="readwrite")
 
1538
1077
    def Timeout_dbus_property(self, value=None):
 
1539
1078
        if value is None:       # get
 
1540
 
            return dbus.UInt64(self.timeout.total_seconds() * 1000)
 
1541
 
        old_timeout = self.timeout
 
 
1079
            return dbus.UInt64(self.timeout_milliseconds())
 
1542
1080
        self.timeout = datetime.timedelta(0, 0, 0, value)
 
1543
 
        # Reschedule disabling
 
1545
 
            now = datetime.datetime.utcnow()
 
1546
 
            self.expires += self.timeout - old_timeout
 
1547
 
            if self.expires <= now:
 
1548
 
                # The timeout has passed
 
1551
 
                if (getattr(self, "disable_initiator_tag", None)
 
1554
 
                gobject.source_remove(self.disable_initiator_tag)
 
1555
 
                self.disable_initiator_tag = (
 
1556
 
                    gobject.timeout_add(
 
1557
 
                        int((self.expires - now).total_seconds()
 
1558
 
                            * 1000), self.disable))
 
1560
 
    # ExtendedTimeout - property
 
1561
 
    @dbus_service_property(_interface, signature="t",
 
1563
 
    def ExtendedTimeout_dbus_property(self, value=None):
 
1564
 
        if value is None:       # get
 
1565
 
            return dbus.UInt64(self.extended_timeout.total_seconds()
 
1567
 
        self.extended_timeout = datetime.timedelta(0, 0, 0, value)
 
 
1082
        self.PropertyChanged(dbus.String("Timeout"),
 
 
1083
                             dbus.UInt64(value, variant_level=1))
 
 
1084
        if getattr(self, "disable_initiator_tag", None) is None:
 
 
1086
        # Reschedule timeout
 
 
1087
        gobject.source_remove(self.disable_initiator_tag)
 
 
1088
        self.disable_initiator_tag = None
 
 
1089
        time_to_die = (self.
 
 
1090
                       _timedelta_to_milliseconds((self
 
 
1095
        if time_to_die <= 0:
 
 
1096
            # The timeout has passed
 
 
1099
            self.disable_initiator_tag = (gobject.timeout_add
 
 
1100
                                          (time_to_die, self.disable))
 
1569
1102
    # Interval - property
 
1570
1103
    @dbus_service_property(_interface, signature="t",
 
1571
1104
                           access="readwrite")
 
1572
1105
    def Interval_dbus_property(self, value=None):
 
1573
1106
        if value is None:       # get
 
1574
 
            return dbus.UInt64(self.interval.total_seconds() * 1000)
 
 
1107
            return dbus.UInt64(self.interval_milliseconds())
 
1575
1108
        self.interval = datetime.timedelta(0, 0, 0, value)
 
 
1110
        self.PropertyChanged(dbus.String("Interval"),
 
 
1111
                             dbus.UInt64(value, variant_level=1))
 
1576
1112
        if getattr(self, "checker_initiator_tag", None) is None:
 
1579
 
            # Reschedule checker run
 
1580
 
            gobject.source_remove(self.checker_initiator_tag)
 
1581
 
            self.checker_initiator_tag = (gobject.timeout_add
 
1582
 
                                          (value, self.start_checker))
 
1583
 
            self.start_checker()    # Start one now, too
 
 
1114
        # Reschedule checker run
 
 
1115
        gobject.source_remove(self.checker_initiator_tag)
 
 
1116
        self.checker_initiator_tag = (gobject.timeout_add
 
 
1117
                                      (value, self.start_checker))
 
 
1118
        self.start_checker()    # Start one now, too
 
1585
1120
    # Checker - property
 
1586
1121
    @dbus_service_property(_interface, signature="s",
 
1587
1122
                           access="readwrite")
 
1588
1123
    def Checker_dbus_property(self, value=None):
 
1589
1124
        if value is None:       # get
 
1590
1125
            return dbus.String(self.checker_command)
 
1591
 
        self.checker_command = unicode(value)
 
 
1126
        self.checker_command = value
 
 
1128
        self.PropertyChanged(dbus.String("Checker"),
 
 
1129
                             dbus.String(self.checker_command,
 
1593
1132
    # CheckerRunning - property
 
1594
1133
    @dbus_service_property(_interface, signature="b",
 
 
2004
1506
    def __init__(self, server_address, RequestHandlerClass,
 
2005
1507
                 interface=None, use_ipv6=True, clients=None,
 
2006
 
                 gnutls_priority=None, use_dbus=True, socketfd=None):
 
 
1508
                 gnutls_priority=None, use_dbus=True):
 
2007
1509
        self.enabled = False
 
2008
1510
        self.clients = clients
 
2009
1511
        if self.clients is None:
 
 
1512
            self.clients = set()
 
2011
1513
        self.use_dbus = use_dbus
 
2012
1514
        self.gnutls_priority = gnutls_priority
 
2013
1515
        IPv6_TCPServer.__init__(self, server_address,
 
2014
1516
                                RequestHandlerClass,
 
2015
1517
                                interface = interface,
 
2016
 
                                use_ipv6 = use_ipv6,
 
2017
 
                                socketfd = socketfd)
 
 
1518
                                use_ipv6 = use_ipv6)
 
2018
1519
    def server_activate(self):
 
2019
1520
        if self.enabled:
 
2020
1521
            return socketserver.TCPServer.server_activate(self)
 
2022
1522
    def enable(self):
 
2023
1523
        self.enabled = True
 
2025
 
    def add_pipe(self, parent_pipe, proc):
 
 
1524
    def add_pipe(self, parent_pipe):
 
2026
1525
        # Call "handle_ipc" for both data and EOF events
 
2027
1526
        gobject.io_add_watch(parent_pipe.fileno(),
 
2028
1527
                             gobject.IO_IN | gobject.IO_HUP,
 
2029
1528
                             functools.partial(self.handle_ipc,
 
 
1529
                                               parent_pipe = parent_pipe))
 
2034
1531
    def handle_ipc(self, source, condition, parent_pipe=None,
 
2035
 
                   proc = None, client_object=None):
 
2036
 
        # error, or the other end of multiprocessing.Pipe has closed
 
2037
 
        if condition & (gobject.IO_ERR | gobject.IO_HUP):
 
2038
 
            # Wait for other process to exit
 
 
1532
                   client_object=None):
 
 
1534
            gobject.IO_IN: "IN",   # There is data to read.
 
 
1535
            gobject.IO_OUT: "OUT", # Data can be written (without
 
 
1537
            gobject.IO_PRI: "PRI", # There is urgent data to read.
 
 
1538
            gobject.IO_ERR: "ERR", # Error condition.
 
 
1539
            gobject.IO_HUP: "HUP"  # Hung up (the connection has been
 
 
1540
                                    # broken, usually for pipes and
 
 
1543
        conditions_string = ' | '.join(name
 
 
1545
                                       condition_names.iteritems()
 
 
1546
                                       if cond & condition)
 
 
1547
        # error or the other end of multiprocessing.Pipe has closed
 
 
1548
        if condition & (gobject.IO_ERR | condition & gobject.IO_HUP):
 
2042
1551
        # Read a request from the child
 
 
2047
1556
            fpr = request[1]
 
2048
1557
            address = request[2]
 
2050
 
            for c in self.clients.itervalues():
 
 
1559
            for c in self.clients:
 
2051
1560
                if c.fingerprint == fpr:
 
2055
 
                logger.info("Client not found for fingerprint: %s, ad"
 
2056
 
                            "dress: %s", fpr, address)
 
 
1564
                logger.warning("Client not found for fingerprint: %s, ad"
 
 
1565
                               "dress: %s", fpr, address)
 
2057
1566
                if self.use_dbus:
 
2058
1567
                    # Emit D-Bus signal
 
2059
 
                    mandos_dbus_service.ClientNotFound(fpr,
 
 
1568
                    mandos_dbus_service.ClientNotFound(fpr, address[0])
 
2061
1569
                parent_pipe.send(False)
 
2064
1572
            gobject.io_add_watch(parent_pipe.fileno(),
 
2065
1573
                                 gobject.IO_IN | gobject.IO_HUP,
 
2066
1574
                                 functools.partial(self.handle_ipc,
 
 
1575
                                                   parent_pipe = parent_pipe,
 
 
1576
                                                   client_object = client))
 
2072
1577
            parent_pipe.send(True)
 
2073
 
            # remove the old hook in favor of the new above hook on
 
 
1578
            # remove the old hook in favor of the new above hook on same fileno
 
2076
1580
        if command == 'funcall':
 
2077
1581
            funcname = request[1]
 
2078
1582
            args = request[2]
 
2079
1583
            kwargs = request[3]
 
2081
 
            parent_pipe.send(('data', getattr(client_object,
 
 
1585
            parent_pipe.send(('data', getattr(client_object, funcname)(*args, **kwargs)))
 
2085
1587
        if command == 'getattr':
 
2086
1588
            attrname = request[1]
 
2087
1589
            if callable(client_object.__getattribute__(attrname)):
 
2088
1590
                parent_pipe.send(('function',))
 
2090
 
                parent_pipe.send(('data', client_object
 
2091
 
                                  .__getattribute__(attrname)))
 
 
1592
                parent_pipe.send(('data', client_object.__getattribute__(attrname)))
 
2093
1594
        if command == 'setattr':
 
2094
1595
            attrname = request[1]
 
2095
1596
            value = request[2]
 
2096
1597
            setattr(client_object, attrname, value)
 
2101
 
def rfc3339_duration_to_delta(duration):
 
2102
 
    """Parse an RFC 3339 "duration" and return a datetime.timedelta
 
2104
 
    >>> rfc3339_duration_to_delta("P7D")
 
2105
 
    datetime.timedelta(7)
 
2106
 
    >>> rfc3339_duration_to_delta("PT60S")
 
2107
 
    datetime.timedelta(0, 60)
 
2108
 
    >>> rfc3339_duration_to_delta("PT60M")
 
2109
 
    datetime.timedelta(0, 3600)
 
2110
 
    >>> rfc3339_duration_to_delta("PT24H")
 
2111
 
    datetime.timedelta(1)
 
2112
 
    >>> rfc3339_duration_to_delta("P1W")
 
2113
 
    datetime.timedelta(7)
 
2114
 
    >>> rfc3339_duration_to_delta("PT5M30S")
 
2115
 
    datetime.timedelta(0, 330)
 
2116
 
    >>> rfc3339_duration_to_delta("P1DT3M20S")
 
2117
 
    datetime.timedelta(1, 200)
 
2120
 
    # Parsing an RFC 3339 duration with regular expressions is not
 
2121
 
    # possible - there would have to be multiple places for the same
 
2122
 
    # values, like seconds.  The current code, while more esoteric, is
 
2123
 
    # cleaner without depending on a parsing library.  If Python had a
 
2124
 
    # built-in library for parsing we would use it, but we'd like to
 
2125
 
    # avoid excessive use of external libraries.
 
2127
 
    # New type for defining tokens, syntax, and semantics all-in-one
 
2128
 
    Token = collections.namedtuple("Token",
 
2129
 
                                   ("regexp", # To match token; if
 
2130
 
                                              # "value" is not None,
 
2131
 
                                              # must have a "group"
 
2133
 
                                    "value",  # datetime.timedelta or
 
2135
 
                                    "followers")) # Tokens valid after
 
2137
 
    # RFC 3339 "duration" tokens, syntax, and semantics; taken from
 
2138
 
    # the "duration" ABNF definition in RFC 3339, Appendix A.
 
2139
 
    token_end = Token(re.compile(r"$"), None, frozenset())
 
2140
 
    token_second = Token(re.compile(r"(\d+)S"),
 
2141
 
                         datetime.timedelta(seconds=1),
 
2142
 
                         frozenset((token_end,)))
 
2143
 
    token_minute = Token(re.compile(r"(\d+)M"),
 
2144
 
                         datetime.timedelta(minutes=1),
 
2145
 
                         frozenset((token_second, token_end)))
 
2146
 
    token_hour = Token(re.compile(r"(\d+)H"),
 
2147
 
                       datetime.timedelta(hours=1),
 
2148
 
                       frozenset((token_minute, token_end)))
 
2149
 
    token_time = Token(re.compile(r"T"),
 
2151
 
                       frozenset((token_hour, token_minute,
 
2153
 
    token_day = Token(re.compile(r"(\d+)D"),
 
2154
 
                      datetime.timedelta(days=1),
 
2155
 
                      frozenset((token_time, token_end)))
 
2156
 
    token_month = Token(re.compile(r"(\d+)M"),
 
2157
 
                        datetime.timedelta(weeks=4),
 
2158
 
                        frozenset((token_day, token_end)))
 
2159
 
    token_year = Token(re.compile(r"(\d+)Y"),
 
2160
 
                       datetime.timedelta(weeks=52),
 
2161
 
                       frozenset((token_month, token_end)))
 
2162
 
    token_week = Token(re.compile(r"(\d+)W"),
 
2163
 
                       datetime.timedelta(weeks=1),
 
2164
 
                       frozenset((token_end,)))
 
2165
 
    token_duration = Token(re.compile(r"P"), None,
 
2166
 
                           frozenset((token_year, token_month,
 
2167
 
                                      token_day, token_time,
 
2169
 
    # Define starting values
 
2170
 
    value = datetime.timedelta() # Value so far
 
2172
 
    followers = frozenset((token_duration,)) # Following valid tokens
 
2173
 
    s = duration                # String left to parse
 
2174
 
    # Loop until end token is found
 
2175
 
    while found_token is not token_end:
 
2176
 
        # Search for any currently valid tokens
 
2177
 
        for token in followers:
 
2178
 
            match = token.regexp.match(s)
 
2179
 
            if match is not None:
 
2181
 
                if token.value is not None:
 
2182
 
                    # Value found, parse digits
 
2183
 
                    factor = int(match.group(1), 10)
 
2184
 
                    # Add to value so far
 
2185
 
                    value += factor * token.value
 
2186
 
                # Strip token from string
 
2187
 
                s = token.regexp.sub("", s, 1)
 
2190
 
                # Set valid next tokens
 
2191
 
                followers = found_token.followers
 
2194
 
            # No currently valid tokens were found
 
2195
 
            raise ValueError("Invalid RFC 3339 duration")
 
2200
1602
def string_to_delta(interval):
 
2201
1603
    """Parse a string and return a datetime.timedelta
 
 
2350
1750
    # Convert the SafeConfigParser object to a dict
 
2351
1751
    server_settings = server_config.defaults()
 
2352
1752
    # Use the appropriate methods on the non-string config options
 
2353
 
    for option in ("debug", "use_dbus", "use_ipv6", "foreground"):
 
 
1753
    for option in ("debug", "use_dbus", "use_ipv6"):
 
2354
1754
        server_settings[option] = server_config.getboolean("DEFAULT",
 
2356
1756
    if server_settings["port"]:
 
2357
1757
        server_settings["port"] = server_config.getint("DEFAULT",
 
2359
 
    if server_settings["socket"]:
 
2360
 
        server_settings["socket"] = server_config.getint("DEFAULT",
 
2362
 
        # Later, stdin will, and stdout and stderr might, be dup'ed
 
2363
 
        # over with an opened os.devnull.  But we don't want this to
 
2364
 
        # happen with a supplied network socket.
 
2365
 
        if 0 <= server_settings["socket"] <= 2:
 
2366
 
            server_settings["socket"] = os.dup(server_settings
 
2368
1759
    del server_config
 
2370
1761
    # Override the settings from the config file with command line
 
2371
1762
    # options, if set.
 
2372
1763
    for option in ("interface", "address", "port", "debug",
 
2373
1764
                   "priority", "servicename", "configdir",
 
2374
 
                   "use_dbus", "use_ipv6", "debuglevel", "restore",
 
2375
 
                   "statedir", "socket", "foreground", "zeroconf"):
 
 
1765
                   "use_dbus", "use_ipv6", "debuglevel"):
 
2376
1766
        value = getattr(options, option)
 
2377
1767
        if value is not None:
 
2378
1768
            server_settings[option] = value
 
2380
1770
    # Force all strings to be unicode
 
2381
1771
    for option in server_settings.keys():
 
2382
 
        if isinstance(server_settings[option], bytes):
 
2383
 
            server_settings[option] = (server_settings[option]
 
2385
 
    # Force all boolean options to be boolean
 
2386
 
    for option in ("debug", "use_dbus", "use_ipv6", "restore",
 
2387
 
                   "foreground", "zeroconf"):
 
2388
 
        server_settings[option] = bool(server_settings[option])
 
2389
 
    # Debug implies foreground
 
2390
 
    if server_settings["debug"]:
 
2391
 
        server_settings["foreground"] = True
 
 
1772
        if type(server_settings[option]) is str:
 
 
1773
            server_settings[option] = unicode(server_settings[option])
 
2392
1774
    # Now we have our good server settings in "server_settings"
 
2394
1776
    ##################################################################
 
2396
 
    if (not server_settings["zeroconf"] and
 
2397
 
        not (server_settings["port"]
 
2398
 
             or server_settings["socket"] != "")):
 
2399
 
            parser.error("Needs port or socket to work without"
 
2402
1778
    # For convenience
 
2403
1779
    debug = server_settings["debug"]
 
2404
1780
    debuglevel = server_settings["debuglevel"]
 
2405
1781
    use_dbus = server_settings["use_dbus"]
 
2406
1782
    use_ipv6 = server_settings["use_ipv6"]
 
2407
 
    stored_state_path = os.path.join(server_settings["statedir"],
 
2409
 
    foreground = server_settings["foreground"]
 
2410
 
    zeroconf = server_settings["zeroconf"]
 
2413
 
        initlogger(debug, logging.DEBUG)
 
2418
 
            level = getattr(logging, debuglevel.upper())
 
2419
 
            initlogger(debug, level)
 
2421
1784
    if server_settings["servicename"] != "Mandos":
 
2422
1785
        syslogger.setFormatter(logging.Formatter
 
2423
 
                               ('Mandos ({}) [%(process)d]:'
 
2424
 
                                ' %(levelname)s: %(message)s'
 
2425
 
                                .format(server_settings
 
 
1786
                               ('Mandos (%s) [%%(process)d]:'
 
 
1787
                                ' %%(levelname)s: %%(message)s'
 
 
1788
                                % server_settings["servicename"]))
 
2428
1790
    # Parse config file with clients
 
2429
 
    client_config = configparser.SafeConfigParser(Client
 
 
1791
    client_defaults = { "timeout": "1h",
 
 
1793
                        "checker": "fping -q -- %%(host)s",
 
 
1795
                        "approval_delay": "0s",
 
 
1796
                        "approval_duration": "1s",
 
 
1798
    client_config = configparser.SafeConfigParser(client_defaults)
 
2431
1799
    client_config.read(os.path.join(server_settings["configdir"],
 
2432
1800
                                    "clients.conf"))
 
2434
1802
    global mandos_dbus_service
 
2435
1803
    mandos_dbus_service = None
 
2438
 
    if server_settings["socket"] != "":
 
2439
 
        socketfd = server_settings["socket"]
 
2440
1805
    tcp_server = MandosServer((server_settings["address"],
 
2441
1806
                               server_settings["port"]),
 
 
2490
1862
         .gnutls_global_set_log_function(debug_gnutls))
 
2492
1864
        # Redirect stdin so all checkers get /dev/null
 
2493
 
        null = os.open(os.devnull, os.O_NOCTTY | os.O_RDWR)
 
 
1865
        null = os.open(os.path.devnull, os.O_NOCTTY | os.O_RDWR)
 
2494
1866
        os.dup2(null, sys.stdin.fileno())
 
 
1870
        # No console logging
 
 
1871
        logger.removeHandler(console)
 
2498
1873
    # Need to fork before connecting to D-Bus
 
2500
1875
        # Close all input and output, do double fork, etc.
 
2503
 
    # multiprocessing will use threads, so before we use gobject we
 
2504
 
    # need to inform gobject that threads will be used.
 
2505
 
    gobject.threads_init()
 
2507
1878
    global main_loop
 
2508
1879
    # From the Avahi example code
 
2509
 
    DBusGMainLoop(set_as_default=True)
 
 
1880
    DBusGMainLoop(set_as_default=True )
 
2510
1881
    main_loop = gobject.MainLoop()
 
2511
1882
    bus = dbus.SystemBus()
 
2512
1883
    # End of Avahi example code
 
2515
 
            bus_name = dbus.service.BusName("se.recompile.Mandos",
 
 
1886
            bus_name = dbus.service.BusName("se.bsnet.fukt.Mandos",
 
2516
1887
                                            bus, do_not_queue=True)
 
2517
 
            old_bus_name = (dbus.service.BusName
 
2518
 
                            ("se.bsnet.fukt.Mandos", bus,
 
2520
1888
        except dbus.exceptions.NameExistsException as e:
 
2521
 
            logger.error("Disabling D-Bus:", exc_info=e)
 
 
1889
            logger.error(unicode(e) + ", disabling D-Bus")
 
2522
1890
            use_dbus = False
 
2523
1891
            server_settings["use_dbus"] = False
 
2524
1892
            tcp_server.use_dbus = False
 
2526
 
        protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
 
2527
 
        service = AvahiServiceToSyslog(name =
 
2528
 
                                       server_settings["servicename"],
 
2529
 
                                       servicetype = "_mandos._tcp",
 
2530
 
                                       protocol = protocol, bus = bus)
 
2531
 
        if server_settings["interface"]:
 
2532
 
            service.interface = (if_nametoindex
 
2533
 
                                 (server_settings["interface"]
 
 
1893
    protocol = avahi.PROTO_INET6 if use_ipv6 else avahi.PROTO_INET
 
 
1894
    service = AvahiService(name = server_settings["servicename"],
 
 
1895
                           servicetype = "_mandos._tcp",
 
 
1896
                           protocol = protocol, bus = bus)
 
 
1897
    if server_settings["interface"]:
 
 
1898
        service.interface = (if_nametoindex
 
 
1899
                             (str(server_settings["interface"])))
 
2536
1901
    global multiprocessing_manager
 
2537
1902
    multiprocessing_manager = multiprocessing.Manager()
 
 
2539
1904
    client_class = Client
 
2541
1906
        client_class = functools.partial(ClientDBus, bus = bus)
 
2543
 
    client_settings = Client.config_parser(client_config)
 
2544
 
    old_client_settings = {}
 
2547
 
    # This is used to redirect stdout and stderr for checker processes
 
2549
 
    wnull = open(os.devnull, "w") # A writable /dev/null
 
2550
 
    # Only used if server is running in foreground but not in debug
 
2552
 
    if debug or not foreground:
 
2555
 
    # Get client data and settings from last running state.
 
2556
 
    if server_settings["restore"]:
 
2558
 
            with open(stored_state_path, "rb") as stored_state:
 
2559
 
                clients_data, old_client_settings = (pickle.load
 
2561
 
            os.remove(stored_state_path)
 
2562
 
        except IOError as e:
 
2563
 
            if e.errno == errno.ENOENT:
 
2564
 
                logger.warning("Could not load persistent state: {}"
 
2565
 
                                .format(os.strerror(e.errno)))
 
2567
 
                logger.critical("Could not load persistent state:",
 
2570
 
        except EOFError as e:
 
2571
 
            logger.warning("Could not load persistent state: "
 
2572
 
                           "EOFError:", exc_info=e)
 
2574
 
    with PGPEngine() as pgp:
 
2575
 
        for client_name, client in clients_data.items():
 
2576
 
            # Skip removed clients
 
2577
 
            if client_name not in client_settings:
 
2580
 
            # Decide which value to use after restoring saved state.
 
2581
 
            # We have three different values: Old config file,
 
2582
 
            # new config file, and saved state.
 
2583
 
            # New config value takes precedence if it differs from old
 
2584
 
            # config value, otherwise use saved state.
 
2585
 
            for name, value in client_settings[client_name].items():
 
2587
 
                    # For each value in new config, check if it
 
2588
 
                    # differs from the old config value (Except for
 
2589
 
                    # the "secret" attribute)
 
2590
 
                    if (name != "secret" and
 
2591
 
                        value != old_client_settings[client_name]
 
2593
 
                        client[name] = value
 
2597
 
            # Clients who has passed its expire date can still be
 
2598
 
            # enabled if its last checker was successful.  Clients
 
2599
 
            # whose checker succeeded before we stored its state is
 
2600
 
            # assumed to have successfully run all checkers during
 
2602
 
            if client["enabled"]:
 
2603
 
                if datetime.datetime.utcnow() >= client["expires"]:
 
2604
 
                    if not client["last_checked_ok"]:
 
2606
 
                            "disabling client {} - Client never "
 
2607
 
                            "performed a successful checker"
 
2608
 
                            .format(client_name))
 
2609
 
                        client["enabled"] = False
 
2610
 
                    elif client["last_checker_status"] != 0:
 
2612
 
                            "disabling client {} - Client last"
 
2613
 
                            " checker failed with error code {}"
 
2614
 
                            .format(client_name,
 
2615
 
                                    client["last_checker_status"]))
 
2616
 
                        client["enabled"] = False
 
2618
 
                        client["expires"] = (datetime.datetime
 
2620
 
                                             + client["timeout"])
 
2621
 
                        logger.debug("Last checker succeeded,"
 
2622
 
                                     " keeping {} enabled"
 
2623
 
                                     .format(client_name))
 
 
1907
    def client_config_items(config, section):
 
 
1908
        special_settings = {
 
 
1909
            "approved_by_default":
 
 
1910
                lambda: config.getboolean(section,
 
 
1911
                                          "approved_by_default"),
 
 
1913
        for name, value in config.items(section):
 
2625
 
                client["secret"] = (
 
2626
 
                    pgp.decrypt(client["encrypted_secret"],
 
2627
 
                                client_settings[client_name]
 
2630
 
                # If decryption fails, we use secret from new settings
 
2631
 
                logger.debug("Failed to decrypt {} old secret"
 
2632
 
                             .format(client_name))
 
2633
 
                client["secret"] = (
 
2634
 
                    client_settings[client_name]["secret"])
 
2636
 
    # Add/remove clients based on new changes made to config
 
2637
 
    for client_name in (set(old_client_settings)
 
2638
 
                        - set(client_settings)):
 
2639
 
        del clients_data[client_name]
 
2640
 
    for client_name in (set(client_settings)
 
2641
 
                        - set(old_client_settings)):
 
2642
 
        clients_data[client_name] = client_settings[client_name]
 
2644
 
    # Create all client objects
 
2645
 
    for client_name, client in clients_data.items():
 
2646
 
        tcp_server.clients[client_name] = client_class(
 
2647
 
            name = client_name, settings = client,
 
2648
 
            server_settings = server_settings)
 
 
1915
                yield (name, special_settings[name]())
 
 
1919
    tcp_server.clients.update(set(
 
 
1920
            client_class(name = section,
 
 
1921
                         config= dict(client_config_items(
 
 
1922
                        client_config, section)))
 
 
1923
            for section in client_config.sections()))
 
2650
1924
    if not tcp_server.clients:
 
2651
1925
        logger.warning("No clients defined")
 
2654
 
        if pidfile is not None:
 
2658
 
                    pidfile.write("{}\n".format(pid).encode("utf-8"))
 
2660
 
                logger.error("Could not write to file %r with PID %d",
 
 
1931
                pidfile.write(str(pid) + "\n".encode("utf-8"))
 
 
1934
            logger.error("Could not write to file %r with PID %d",
 
 
1937
            # "pidfile" was never created
 
2663
1939
        del pidfilename
 
 
1941
        signal.signal(signal.SIGINT, signal.SIG_IGN)
 
2665
1943
    signal.signal(signal.SIGHUP, lambda signum, frame: sys.exit())
 
2666
1944
    signal.signal(signal.SIGTERM, lambda signum, frame: sys.exit())
 
2669
 
        @alternate_dbus_interfaces({"se.recompile.Mandos":
 
2670
 
                                        "se.bsnet.fukt.Mandos"})
 
2671
 
        class MandosDBusService(DBusObjectWithProperties):
 
 
1947
        class MandosDBusService(dbus.service.Object):
 
2672
1948
            """A D-Bus proxy object"""
 
2673
1949
            def __init__(self):
 
2674
1950
                dbus.service.Object.__init__(self, bus, "/")
 
2675
 
            _interface = "se.recompile.Mandos"
 
2677
 
            @dbus_interface_annotations(_interface)
 
2679
 
                return { "org.freedesktop.DBus.Property"
 
2680
 
                         ".EmitsChangedSignal":
 
 
1951
            _interface = "se.bsnet.fukt.Mandos"
 
2683
1953
            @dbus.service.signal(_interface, signature="o")
 
2684
1954
            def ClientAdded(self, objpath):
 
 
2733
2002
        "Cleanup function; run on exit"
 
2737
 
        multiprocessing.active_children()
 
2739
 
        if not (tcp_server.clients or client_settings):
 
2742
 
        # Store client before exiting. Secrets are encrypted with key
 
2743
 
        # based on what config file has. If config file is
 
2744
 
        # removed/edited, old secret will thus be unrecovable.
 
2746
 
        with PGPEngine() as pgp:
 
2747
 
            for client in tcp_server.clients.itervalues():
 
2748
 
                key = client_settings[client.name]["secret"]
 
2749
 
                client.encrypted_secret = pgp.encrypt(client.secret,
 
2753
 
                # A list of attributes that can not be pickled
 
2755
 
                exclude = { "bus", "changedstate", "secret",
 
2756
 
                            "checker", "server_settings" }
 
2757
 
                for name, typ in (inspect.getmembers
 
2758
 
                                  (dbus.service.Object)):
 
2761
 
                client_dict["encrypted_secret"] = (client
 
2763
 
                for attr in client.client_structure:
 
2764
 
                    if attr not in exclude:
 
2765
 
                        client_dict[attr] = getattr(client, attr)
 
2767
 
                clients[client.name] = client_dict
 
2768
 
                del client_settings[client.name]["secret"]
 
2771
 
            with (tempfile.NamedTemporaryFile
 
2772
 
                  (mode='wb', suffix=".pickle", prefix='clients-',
 
2773
 
                   dir=os.path.dirname(stored_state_path),
 
2774
 
                   delete=False)) as stored_state:
 
2775
 
                pickle.dump((clients, client_settings), stored_state)
 
2776
 
                tempname=stored_state.name
 
2777
 
            os.rename(tempname, stored_state_path)
 
2778
 
        except (IOError, OSError) as e:
 
2784
 
            if e.errno in (errno.ENOENT, errno.EACCES, errno.EEXIST):
 
2785
 
                logger.warning("Could not save persistent state: {}"
 
2786
 
                               .format(os.strerror(e.errno)))
 
2788
 
                logger.warning("Could not save persistent state:",
 
2792
 
        # Delete all clients, and settings from config
 
2793
2005
        while tcp_server.clients:
 
2794
 
            name, client = tcp_server.clients.popitem()
 
 
2006
            client = tcp_server.clients.pop()
 
2796
2008
                client.remove_from_connection()
 
 
2009
            client.disable_hook = None
 
2797
2010
            # Don't signal anything except ClientRemoved
 
2798
2011
            client.disable(quiet=True)
 
2800
2013
                # Emit D-Bus signal
 
2801
 
                mandos_dbus_service.ClientRemoved(client
 
 
2014
                mandos_dbus_service.ClientRemoved(client.dbus_object_path,
 
2804
 
        client_settings.clear()
 
2806
2017
    atexit.register(cleanup)
 
2808
 
    for client in tcp_server.clients.itervalues():
 
 
2019
    for client in tcp_server.clients:
 
2810
2021
            # Emit D-Bus signal
 
2811
2022
            mandos_dbus_service.ClientAdded(client.dbus_object_path)
 
2812
 
        # Need to initiate checking of clients
 
2814
 
            client.init_checker()
 
2816
2025
    tcp_server.enable()
 
2817
2026
    tcp_server.server_activate()
 
2819
2028
    # Find out what port we got
 
2821
 
        service.port = tcp_server.socket.getsockname()[1]
 
 
2029
    service.port = tcp_server.socket.getsockname()[1]
 
2823
2031
        logger.info("Now listening on address %r, port %d,"
 
2824
 
                    " flowinfo %d, scope_id %d",
 
2825
 
                    *tcp_server.socket.getsockname())
 
 
2032
                    " flowinfo %d, scope_id %d"
 
 
2033
                    % tcp_server.socket.getsockname())
 
2827
 
        logger.info("Now listening on address %r, port %d",
 
2828
 
                    *tcp_server.socket.getsockname())
 
 
2035
        logger.info("Now listening on address %r, port %d"
 
 
2036
                    % tcp_server.socket.getsockname())
 
2830
2038
    #service.interface = tcp_server.socket.getsockname()[3]
 
2834
 
            # From the Avahi example code
 
2837
 
            except dbus.exceptions.DBusException as error:
 
2838
 
                logger.critical("D-Bus Exception", exc_info=error)
 
2841
 
            # End of Avahi example code
 
 
2041
        # From the Avahi example code
 
 
2044
        except dbus.exceptions.DBusException as error:
 
 
2045
            logger.critical("DBusException: %s", error)
 
 
2048
        # End of Avahi example code
 
2843
2050
        gobject.io_add_watch(tcp_server.fileno(), gobject.IO_IN,
 
2844
2051
                             lambda *args, **kwargs: