4
4
# Mandos Monitor - Control and monitor the Mandos server
 
6
 
# Copyright © 2009-2014 Teddy Hogeborn
 
7
 
# Copyright © 2009-2014 Björn Påhlsson
 
 
6
# Copyright © 2009-2012 Teddy Hogeborn
 
 
7
# Copyright © 2009-2012 Björn Påhlsson
 
9
9
# This program is free software: you can redistribute it and/or modify
 
10
10
# it under the terms of the GNU General Public License as published by
 
 
60
55
domain = 'se.recompile'
 
61
56
server_interface = domain + '.Mandos'
 
62
57
client_interface = domain + '.Mandos.Client'
 
 
60
# Always run in monochrome mode
 
 
61
urwid.curses_display.curses.has_colors = lambda : False
 
 
63
# Urwid doesn't support blinking, but we want it.  Since we have no
 
 
64
# use for underline on its own, we make underline also always blink.
 
 
65
urwid.curses_display.curses.A_UNDERLINE |= (
 
 
66
    urwid.curses_display.curses.A_BLINK)
 
65
68
def isoformat_to_datetime(iso):
 
66
69
    "Parse an ISO 8601 date string to a datetime.datetime()"
 
 
162
165
                                         client_interface,
 
163
166
                                         byte_arrays=True))
 
164
 
        self.logger('Created client {}'
 
165
 
                    .format(self.properties["Name"]), level=0)
 
 
167
        #self.logger('Created client {0}'
 
 
168
        #            .format(self.properties["Name"]))
 
167
170
    def using_timer(self, flag):
 
168
171
        """Call this method with True or False when timer should be
 
 
180
183
    def checker_completed(self, exitstatus, condition, command):
 
181
184
        if exitstatus == 0:
 
182
 
            self.logger('Checker for client {} (command "{}")'
 
183
 
                        ' succeeded'.format(self.properties["Name"],
 
188
188
        if os.WIFEXITED(condition):
 
189
 
            self.logger('Checker for client {} (command "{}") failed'
 
 
189
            self.logger('Checker for client {0} (command "{1}")'
 
 
190
                        ' failed with exit code {2}'
 
191
191
                        .format(self.properties["Name"], command,
 
192
192
                                os.WEXITSTATUS(condition)))
 
193
193
        elif os.WIFSIGNALED(condition):
 
194
 
            self.logger('Checker for client {} (command "{}") was'
 
195
 
                        ' killed by signal {}'
 
 
194
            self.logger('Checker for client {0} (command "{1}") was'
 
 
195
                        ' killed by signal {2}'
 
196
196
                        .format(self.properties["Name"], command,
 
197
197
                                os.WTERMSIG(condition)))
 
198
198
        elif os.WCOREDUMP(condition):
 
199
 
            self.logger('Checker for client {} (command "{}") dumped'
 
200
 
                        ' core'.format(self.properties["Name"],
 
 
199
            self.logger('Checker for client {0} (command "{1}")'
 
 
201
                        .format(self.properties["Name"], command))
 
203
 
            self.logger('Checker for client {} completed'
 
 
203
            self.logger('Checker for client {0} completed'
 
205
205
                        .format(self.properties["Name"]))
 
208
208
    def checker_started(self, command):
 
209
 
        """Server signals that a checker started."""
 
210
 
        self.logger('Client {} started checker "{}"'
 
211
 
                    .format(self.properties["Name"],
 
 
209
        """Server signals that a checker started. This could be useful
 
 
210
           to log in the future. """
 
 
211
        #self.logger('Client {0} started checker "{1}"'
 
 
212
        #            .format(self.properties["Name"],
 
214
216
    def got_secret(self):
 
215
 
        self.logger('Client {} received its secret'
 
 
217
        self.logger('Client {0} received its secret'
 
216
218
                    .format(self.properties["Name"]))
 
218
220
    def need_approval(self, timeout, default):
 
220
 
            message = 'Client {} needs approval within {} seconds'
 
 
222
            message = 'Client {0} needs approval within {1} seconds'
 
222
 
            message = 'Client {} will get its secret in {} seconds'
 
 
224
            message = 'Client {0} will get its secret in {1} seconds'
 
223
225
        self.logger(message.format(self.properties["Name"],
 
226
228
    def rejected(self, reason):
 
227
 
        self.logger('Client {} was rejected; reason: {}'
 
 
229
        self.logger('Client {0} was rejected; reason: {1}'
 
228
230
                    .format(self.properties["Name"], reason))
 
230
232
    def selectable(self):
 
 
275
277
                timer = datetime.timedelta()
 
276
278
            if self.properties["ApprovedByDefault"]:
 
277
 
                message = "Approval in {}. (d)eny?"
 
 
279
                message = "Approval in {0}. (d)eny?"
 
279
 
                message = "Denial in {}. (a)pprove?"
 
280
 
            message = message.format(str(timer).rsplit(".", 1)[0])
 
 
281
                message = "Denial in {0}. (a)pprove?"
 
 
282
            message = message.format(unicode(timer).rsplit(".", 1)[0])
 
281
283
            self.using_timer(True)
 
282
284
        elif self.properties["LastCheckerStatus"] != 0:
 
283
285
            # When checker has failed, show timer until client expires
 
 
290
292
                timer = max(expires - datetime.datetime.utcnow(),
 
291
293
                            datetime.timedelta())
 
292
294
            message = ('A checker has failed! Time until client'
 
294
 
                       .format(str(timer).rsplit(".", 1)[0]))
 
 
295
                       ' gets disabled: {0}'
 
 
296
                       .format(unicode(timer).rsplit(".", 1)[0]))
 
295
297
            self.using_timer(True)
 
297
299
            message = "enabled"
 
298
300
            self.using_timer(False)
 
299
 
        self._text = "{}{}".format(base, message)
 
 
301
        self._text = "{0}{1}".format(base, message)
 
301
303
        if not urwid.supports_unicode():
 
302
304
            self._text = self._text.encode("ascii", "replace")
 
 
380
382
    def property_changed(self, property=None, **kwargs):
 
381
383
        """Call self.update() if old value is not new value.
 
382
384
        This overrides the method from MandosClientPropertyCache"""
 
383
 
        property_name = str(property)
 
 
385
        property_name = unicode(property)
 
384
386
        old_value = self.properties.get(property_name)
 
385
387
        super(MandosClientWidget, self).property_changed(
 
386
388
            property=property, **kwargs)
 
 
404
406
    """This is the entire user interface - the whole screen
 
405
407
    with boxes, lists of client widgets, etc.
 
407
 
    def __init__(self, max_log_length=1000, log_level=1):
 
 
409
    def __init__(self, max_log_length=1000):
 
408
410
        DBusGMainLoop(set_as_default=True)
 
410
412
        self.screen = urwid.curses_display.Screen()
 
 
414
416
                 "default", "default", None),
 
416
 
                 "bold", "default", "bold"),
 
 
418
                 "default", "default", "bold"),
 
417
419
                ("underline-blink",
 
418
 
                 "underline,blink", "default", "underline,blink"),
 
 
420
                 "default", "default", "underline"),
 
420
 
                 "standout", "default", "standout"),
 
 
422
                 "default", "default", "standout"),
 
421
423
                ("bold-underline-blink",
 
422
 
                 "bold,underline,blink", "default", "bold,underline,blink"),
 
 
424
                 "default", "default", ("bold", "underline")),
 
423
425
                ("bold-standout",
 
424
 
                 "bold,standout", "default", "bold,standout"),
 
 
426
                 "default", "default", ("bold", "standout")),
 
425
427
                ("underline-blink-standout",
 
426
 
                 "underline,blink,standout", "default",
 
427
 
                 "underline,blink,standout"),
 
 
428
                 "default", "default", ("underline", "standout")),
 
428
429
                ("bold-underline-blink-standout",
 
429
 
                 "bold,underline,blink,standout", "default",
 
430
 
                 "bold,underline,blink,standout"),
 
 
430
                 "default", "default", ("bold", "underline",
 
433
434
        if urwid.supports_unicode():
 
 
469
468
        self.main_loop = gobject.MainLoop()
 
471
470
    def client_not_found(self, fingerprint, address):
 
472
 
        self.log_message("Client with address {} and fingerprint {}"
 
473
 
                         " could not be found"
 
 
471
        self.log_message("Client with address {0} and fingerprint"
 
 
472
                         " {1} could not be found"
 
474
473
                         .format(address, fingerprint))
 
476
475
    def rebuild(self):
 
 
489
488
            self.uilist.append(self.logbox)
 
490
489
        self.topwidget = urwid.Pile(self.uilist)
 
492
 
    def log_message(self, message, level=1):
 
 
491
    def log_message(self, message):
 
493
492
        """Log message formatted with timestamp"""
 
494
 
        if level < self.log_level:
 
496
493
        timestamp = datetime.datetime.now().isoformat()
 
497
 
        self.log_message_raw("{}: {}".format(timestamp, message),
 
 
494
        self.log_message_raw(timestamp + ": " + message)
 
500
 
    def log_message_raw(self, markup, level=1):
 
 
496
    def log_message_raw(self, markup):
 
501
497
        """Add a log message to the log buffer."""
 
502
 
        if level < self.log_level:
 
504
498
        self.log.append(urwid.Text(markup, wrap=self.log_wrap))
 
505
499
        if (self.max_log_length
 
506
500
            and len(self.log) > self.max_log_length):
 
 
513
507
        """Toggle visibility of the log buffer."""
 
514
508
        self.log_visible = not self.log_visible
 
516
 
        self.log_message("Log visibility changed to: {}"
 
517
 
                         .format(self.log_visible), level=0)
 
 
510
        #self.log_message("Log visibility changed to: "
 
 
511
        #                 + unicode(self.log_visible))
 
519
513
    def change_log_display(self):
 
520
514
        """Change type of log display.
 
 
525
519
            self.log_wrap = "clip"
 
526
520
        for textwidget in self.log:
 
527
521
            textwidget.set_wrap_mode(self.log_wrap)
 
528
 
        self.log_message("Wrap mode: {}".format(self.log_wrap),
 
 
522
        #self.log_message("Wrap mode: " + self.log_wrap)
 
531
524
    def find_and_remove_client(self, path, name):
 
532
525
        """Find a client by its object path and remove it.
 
 
608
606
                            self.client_not_found,
 
609
607
                            dbus_interface=server_interface,
 
610
608
                            byte_arrays=True))
 
611
 
        for path, client in mandos_clients.items():
 
 
609
        for path, client in mandos_clients.iteritems():
 
612
610
            client_proxy_object = self.bus.get_object(self.busname,
 
614
612
            self.add_client(MandosClientWidget(server_proxy_object