/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
1
#!/usr/bin/python
2
# -*- mode: python; coding: utf-8 -*-
444 by Teddy Hogeborn
Update copyright year to "2010" wherever appropriate.
3
# 
4
# Mandos Monitor - Control and monitor the Mandos server
5
# 
749.1.1 by Teddy Hogeborn
mandos: Use multiprocessing module to run checkers.
6
# Copyright © 2009-2015 Teddy Hogeborn
7
# Copyright © 2009-2015 Björn Påhlsson
444 by Teddy Hogeborn
Update copyright year to "2010" wherever appropriate.
8
# 
9
# This program is free software: you can redistribute it and/or modify
10
# it under the terms of the GNU General Public License as published by
11
# the Free Software Foundation, either version 3 of the License, or
12
# (at your option) any later version.
13
#
14
#     This program is distributed in the hope that it will be useful,
15
#     but WITHOUT ANY WARRANTY; without even the implied warranty of
16
#     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
#     GNU General Public License for more details.
18
# 
19
# You should have received a copy of the GNU General Public License
572 by Teddy Hogeborn
* mandos-ctl: Break long lines.
20
# along with this program.  If not, see
21
# <http://www.gnu.org/licenses/>.
444 by Teddy Hogeborn
Update copyright year to "2010" wherever appropriate.
22
# 
505.1.2 by Teddy Hogeborn
Change "fukt.bsnet.se" to "recompile.se" throughout.
23
# Contact the authors at <mandos@recompile.se>.
444 by Teddy Hogeborn
Update copyright year to "2010" wherever appropriate.
24
# 
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
25
488 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Save match tag for
26
from __future__ import (division, absolute_import, print_function,
27
                        unicode_literals)
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
28
try:
29
    from future_builtins import *
30
except ImportError:
31
    pass
579 by Teddy Hogeborn
* mandos: Use all new builtins.
32
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
33
import sys
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
34
import os
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
35
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
36
import datetime
37
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
38
import urwid.curses_display
39
import urwid
40
41
from dbus.mainloop.glib import DBusGMainLoop
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
42
try:
43
    import gobject
44
except ImportError:
45
    from gi.repository import GObject as gobject
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
46
47
import dbus
48
411 by Teddy Hogeborn
More consistent terminology: Clients are no longer "invalid" - they
49
import locale
50
723.1.7 by Teddy Hogeborn
Use the .major attribute on sys.version_info instead of using "[0]".
51
if sys.version_info.major == 2:
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
52
    str = unicode
53
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
54
locale.setlocale(locale.LC_ALL, '')
411 by Teddy Hogeborn
More consistent terminology: Clients are no longer "invalid" - they
55
24.1.153 by Björn Påhlsson
early commit to ease todays coding
56
import logging
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
57
logging.getLogger('dbus.proxies').setLevel(logging.CRITICAL)
24.1.153 by Björn Påhlsson
early commit to ease todays coding
58
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
59
# Some useful constants
24.1.186 by Björn Påhlsson
transitional stuff actually working
60
domain = 'se.recompile'
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
61
server_interface = domain + '.Mandos'
62
client_interface = domain + '.Mandos.Client'
237.4.55 by Teddy Hogeborn
* Makefile (version): Changed to "1.6.9".
63
version = "1.6.9"
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
64
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
65
def isoformat_to_datetime(iso):
66
    "Parse an ISO 8601 date string to a datetime.datetime()"
67
    if not iso:
68
        return None
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
69
    d, t = iso.split("T", 1)
70
    year, month, day = d.split("-", 2)
71
    hour, minute, second = t.split(":", 2)
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
72
    second, fraction = divmod(float(second), 1)
73
    return datetime.datetime(int(year),
74
                             int(month),
75
                             int(day),
76
                             int(hour),
77
                             int(minute),
78
                             int(second),           # Whole seconds
79
                             int(fraction*1000000)) # Microseconds
80
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
81
class MandosClientPropertyCache(object):
82
    """This wraps a Mandos Client D-Bus proxy object, caches the
83
    properties and calls a hook function when any of them are
84
    changed.
85
    """
580 by Teddy Hogeborn
* mandos-monitor: Speedup: Use properties from D-Bus
86
    def __init__(self, proxy_object=None, properties=None, **kwargs):
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
87
        self.proxy = proxy_object # Mandos Client proxy object
580 by Teddy Hogeborn
* mandos-monitor: Speedup: Use properties from D-Bus
88
        self.properties = dict() if properties is None else properties
488 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Save match tag for
89
        self.property_changed_match = (
732 by Teddy Hogeborn
Emit D-Bus "org.freedesktop.DBus.Properties.PropertiesChanged" signal.
90
            self.proxy.connect_to_signal("PropertiesChanged",
91
                                         self.properties_changed,
92
                                         dbus.PROPERTIES_IFACE,
488 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Save match tag for
93
                                         byte_arrays=True))
24.1.153 by Björn Påhlsson
early commit to ease todays coding
94
        
580 by Teddy Hogeborn
* mandos-monitor: Speedup: Use properties from D-Bus
95
        if properties is None:
96
            self.properties.update(
97
                self.proxy.GetAll(client_interface,
98
                                  dbus_interface
99
                                  = dbus.PROPERTIES_IFACE))
100
        
101
        super(MandosClientPropertyCache, self).__init__(**kwargs)
102
    
732 by Teddy Hogeborn
Emit D-Bus "org.freedesktop.DBus.Properties.PropertiesChanged" signal.
103
    def properties_changed(self, interface, properties, invalidated):
104
        """This is called whenever we get a PropertiesChanged signal
105
        It updates the changed properties in the "properties" dict.
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
106
        """
107
        # Update properties dict with new value
732 by Teddy Hogeborn
Emit D-Bus "org.freedesktop.DBus.Properties.PropertiesChanged" signal.
108
        self.properties.update(properties)
488 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Save match tag for
109
    
580 by Teddy Hogeborn
* mandos-monitor: Speedup: Use properties from D-Bus
110
    def delete(self):
488 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Save match tag for
111
        self.property_changed_match.remove()
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
112
113
114
class MandosClientWidget(urwid.FlowWidget, MandosClientPropertyCache):
115
    """A Mandos Client which is visible on the screen.
116
    """
117
    
118
    def __init__(self, server_proxy_object=None, update_hook=None,
580 by Teddy Hogeborn
* mandos-monitor: Speedup: Use properties from D-Bus
119
                 delete_hook=None, logger=None, **kwargs):
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
120
        # Called on update
121
        self.update_hook = update_hook
122
        # Called on delete
123
        self.delete_hook = delete_hook
124
        # Mandos Server proxy object
125
        self.server_proxy_object = server_proxy_object
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
126
        # Logger
127
        self.logger = logger
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
128
        
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
129
        self._update_timer_callback_tag = None
130
        
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
131
        # The widget shown normally
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
132
        self._text_widget = urwid.Text("")
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
133
        # The widget shown when we have focus
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
134
        self._focus_text_widget = urwid.Text("")
580 by Teddy Hogeborn
* mandos-monitor: Speedup: Use properties from D-Bus
135
        super(MandosClientWidget, self).__init__(**kwargs)
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
136
        self.update()
137
        self.opened = False
442 by Teddy Hogeborn
* DBUS-API: Document new "LastApprovalRequest" client property.
138
        
488 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Save match tag for
139
        self.match_objects = (
140
            self.proxy.connect_to_signal("CheckerCompleted",
141
                                         self.checker_completed,
142
                                         client_interface,
143
                                         byte_arrays=True),
144
            self.proxy.connect_to_signal("CheckerStarted",
145
                                         self.checker_started,
146
                                         client_interface,
147
                                         byte_arrays=True),
148
            self.proxy.connect_to_signal("GotSecret",
149
                                         self.got_secret,
150
                                         client_interface,
151
                                         byte_arrays=True),
152
            self.proxy.connect_to_signal("NeedApproval",
153
                                         self.need_approval,
154
                                         client_interface,
155
                                         byte_arrays=True),
156
            self.proxy.connect_to_signal("Rejected",
157
                                         self.rejected,
158
                                         client_interface,
159
                                         byte_arrays=True))
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
160
        self.logger('Created client {}'
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
161
                    .format(self.properties["Name"]), level=0)
442 by Teddy Hogeborn
* DBUS-API: Document new "LastApprovalRequest" client property.
162
    
163
    def using_timer(self, flag):
164
        """Call this method with True or False when timer should be
165
        activated or deactivated.
166
        """
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
167
        if flag and self._update_timer_callback_tag is None:
24.1.179 by Björn Påhlsson
New feature:
168
            # Will update the shown timer value every second
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
169
            self._update_timer_callback_tag = (gobject.timeout_add
170
                                               (1000,
171
                                                self.update_timer))
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
172
        elif not (flag or self._update_timer_callback_tag is None):
442 by Teddy Hogeborn
* DBUS-API: Document new "LastApprovalRequest" client property.
173
            gobject.source_remove(self._update_timer_callback_tag)
174
            self._update_timer_callback_tag = None
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
175
    
749.1.1 by Teddy Hogeborn
mandos: Use multiprocessing module to run checkers.
176
    def checker_completed(self, exitstatus, signal, command):
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
177
        if exitstatus == 0:
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
178
            self.logger('Checker for client {} (command "{}")'
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
179
                        ' succeeded'.format(self.properties["Name"],
180
                                            command), level=0)
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
181
            self.update()
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
182
            return
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
183
        # Checker failed
749.1.1 by Teddy Hogeborn
mandos: Use multiprocessing module to run checkers.
184
        if exitstatus >= 0:
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
185
            self.logger('Checker for client {} (command "{}") failed'
186
                        ' with exit code {}'
567 by Teddy Hogeborn
* mandos-monitor: Use new string format method.
187
                        .format(self.properties["Name"], command,
749.1.1 by Teddy Hogeborn
mandos: Use multiprocessing module to run checkers.
188
                                exitstatus))
189
        elif signal != 0:
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
190
            self.logger('Checker for client {} (command "{}") was'
191
                        ' killed by signal {}'
567 by Teddy Hogeborn
* mandos-monitor: Use new string format method.
192
                        .format(self.properties["Name"], command,
749.1.1 by Teddy Hogeborn
mandos: Use multiprocessing module to run checkers.
193
                                signal))
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
194
        else:
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
195
            self.logger('Checker for client {} completed'
567 by Teddy Hogeborn
* mandos-monitor: Use new string format method.
196
                        ' mysteriously'
197
                        .format(self.properties["Name"]))
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
198
        self.update()
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
199
    
200
    def checker_started(self, command):
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
201
        """Server signals that a checker started."""
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
202
        self.logger('Client {} started checker "{}"'
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
203
                    .format(self.properties["Name"],
204
                            command), level=0)
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
205
    
206
    def got_secret(self):
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
207
        self.logger('Client {} received its secret'
567 by Teddy Hogeborn
* mandos-monitor: Use new string format method.
208
                    .format(self.properties["Name"]))
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
209
    
24.1.153 by Björn Påhlsson
early commit to ease todays coding
210
    def need_approval(self, timeout, default):
211
        if not default:
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
212
            message = 'Client {} needs approval within {} seconds'
24.1.153 by Björn Påhlsson
early commit to ease todays coding
213
        else:
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
214
            message = 'Client {} will get its secret in {} seconds'
567 by Teddy Hogeborn
* mandos-monitor: Use new string format method.
215
        self.logger(message.format(self.properties["Name"],
216
                                   timeout/1000))
24.1.153 by Björn Påhlsson
early commit to ease todays coding
217
    
218
    def rejected(self, reason):
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
219
        self.logger('Client {} was rejected; reason: {}'
567 by Teddy Hogeborn
* mandos-monitor: Use new string format method.
220
                    .format(self.properties["Name"], reason))
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
221
    
222
    def selectable(self):
223
        """Make this a "selectable" widget.
224
        This overrides the method from urwid.FlowWidget."""
225
        return True
226
    
463.1.1 by teddy at bsnet
* mandos-monitor: Use only unicode string literals.
227
    def rows(self, maxcolrow, focus=False):
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
228
        """How many rows this widget will occupy might depend on
229
        whether we have focus or not.
230
        This overrides the method from urwid.FlowWidget"""
463.1.1 by teddy at bsnet
* mandos-monitor: Use only unicode string literals.
231
        return self.current_widget(focus).rows(maxcolrow, focus=focus)
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
232
    
233
    def current_widget(self, focus=False):
234
        if focus or self.opened:
235
            return self._focus_widget
236
        return self._widget
237
    
238
    def update(self):
239
        "Called when what is visible on the screen should be updated."
240
        # How to add standout mode to a style
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
241
        with_standout = { "normal": "standout",
242
                          "bold": "bold-standout",
243
                          "underline-blink":
244
                              "underline-blink-standout",
245
                          "bold-underline-blink":
246
                              "bold-underline-blink-standout",
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
247
                          }
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
248
        
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
249
        # Rebuild focus and non-focus widgets using current properties
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
250
        
24.1.154 by Björn Påhlsson
merge
251
        # Base part of a client. Name!
567 by Teddy Hogeborn
* mandos-monitor: Use new string format method.
252
        base = '{name}: '.format(name=self.properties["Name"])
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
253
        if not self.properties["Enabled"]:
254
            message = "DISABLED"
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
255
            self.using_timer(False)
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
256
        elif self.properties["ApprovalPending"]:
442 by Teddy Hogeborn
* DBUS-API: Document new "LastApprovalRequest" client property.
257
            timeout = datetime.timedelta(milliseconds
258
                                         = self.properties
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
259
                                         ["ApprovalDelay"])
442 by Teddy Hogeborn
* DBUS-API: Document new "LastApprovalRequest" client property.
260
            last_approval_request = isoformat_to_datetime(
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
261
                self.properties["LastApprovalRequest"])
442 by Teddy Hogeborn
* DBUS-API: Document new "LastApprovalRequest" client property.
262
            if last_approval_request is not None:
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
263
                timer = max(timeout - (datetime.datetime.utcnow()
264
                                       - last_approval_request),
265
                            datetime.timedelta())
442 by Teddy Hogeborn
* DBUS-API: Document new "LastApprovalRequest" client property.
266
            else:
267
                timer = datetime.timedelta()
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
268
            if self.properties["ApprovedByDefault"]:
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
269
                message = "Approval in {}. (d)eny?"
24.1.159 by Björn Påhlsson
added approval to mandos-ctl
270
            else:
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
271
                message = "Denial in {}. (a)pprove?"
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
272
            message = message.format(str(timer).rsplit(".", 1)[0])
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
273
            self.using_timer(True)
557 by Teddy Hogeborn
Use the new Client.LastCheckerStatus property.
274
        elif self.properties["LastCheckerStatus"] != 0:
572 by Teddy Hogeborn
* mandos-ctl: Break long lines.
275
            # When checker has failed, show timer until client expires
24.1.179 by Björn Påhlsson
New feature:
276
            expires = self.properties["Expires"]
277
            if expires == "":
278
                timer = datetime.timedelta(0)
279
            else:
572 by Teddy Hogeborn
* mandos-ctl: Break long lines.
280
                expires = (datetime.datetime.strptime
281
                           (expires, '%Y-%m-%dT%H:%M:%S.%f'))
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
282
                timer = max(expires - datetime.datetime.utcnow(),
283
                            datetime.timedelta())
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
284
            message = ('A checker has failed! Time until client'
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
285
                       ' gets disabled: {}'
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
286
                       .format(str(timer).rsplit(".", 1)[0]))
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
287
            self.using_timer(True)
24.1.154 by Björn Påhlsson
merge
288
        else:
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
289
            message = "enabled"
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
290
            self.using_timer(False)
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
291
        self._text = "{}{}".format(base, message)
581 by Teddy Hogeborn
* mandos (Client.enable, Client.disable, ClientDBus.approve): Call
292
        
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
293
        if not urwid.supports_unicode():
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
294
            self._text = self._text.encode("ascii", "replace")
295
        textlist = [("normal", self._text)]
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
296
        self._text_widget.set_text(textlist)
297
        self._focus_text_widget.set_text([(with_standout[text[0]],
298
                                           text[1])
299
                                          if isinstance(text, tuple)
300
                                          else text
301
                                          for text in textlist])
302
        self._widget = self._text_widget
303
        self._focus_widget = urwid.AttrWrap(self._focus_text_widget,
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
304
                                            "standout")
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
305
        # Run update hook, if any
306
        if self.update_hook is not None:
307
            self.update_hook()
308
    
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
309
    def update_timer(self):
24.1.179 by Björn Påhlsson
New feature:
310
        """called by gobject. Will indefinitely loop until
311
        gobject.source_remove() on tag is called"""
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
312
        self.update()
313
        return True             # Keep calling this
314
    
580 by Teddy Hogeborn
* mandos-monitor: Speedup: Use properties from D-Bus
315
    def delete(self, **kwargs):
417 by Teddy Hogeborn
* mandos (AvahiService.entry_group_state_changed): Better debug log
316
        if self._update_timer_callback_tag is not None:
317
            gobject.source_remove(self._update_timer_callback_tag)
318
            self._update_timer_callback_tag = None
488 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Save match tag for
319
        for match in self.match_objects:
320
            match.remove()
321
        self.match_objects = ()
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
322
        if self.delete_hook is not None:
323
            self.delete_hook(self)
580 by Teddy Hogeborn
* mandos-monitor: Speedup: Use properties from D-Bus
324
        return super(MandosClientWidget, self).delete(**kwargs)
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
325
    
463.1.1 by teddy at bsnet
* mandos-monitor: Use only unicode string literals.
326
    def render(self, maxcolrow, focus=False):
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
327
        """Render differently if we have focus.
328
        This overrides the method from urwid.FlowWidget"""
463.1.1 by teddy at bsnet
* mandos-monitor: Use only unicode string literals.
329
        return self.current_widget(focus).render(maxcolrow,
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
330
                                                 focus=focus)
331
    
463.1.1 by teddy at bsnet
* mandos-monitor: Use only unicode string literals.
332
    def keypress(self, maxcolrow, key):
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
333
        """Handle keys.
334
        This overrides the method from urwid.FlowWidget"""
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
335
        if key == "+":
482 by Teddy Hogeborn
* mandos: Tolerate restarting Avahi servers. Also Changed to new
336
            self.proxy.Enable(dbus_interface = client_interface,
337
                              ignore_reply=True)
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
338
        elif key == "-":
482 by Teddy Hogeborn
* mandos: Tolerate restarting Avahi servers. Also Changed to new
339
            self.proxy.Disable(dbus_interface = client_interface,
340
                               ignore_reply=True)
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
341
        elif key == "a":
24.1.154 by Björn Påhlsson
merge
342
            self.proxy.Approve(dbus.Boolean(True, variant_level=1),
482 by Teddy Hogeborn
* mandos: Tolerate restarting Avahi servers. Also Changed to new
343
                               dbus_interface = client_interface,
344
                               ignore_reply=True)
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
345
        elif key == "d":
24.1.154 by Björn Påhlsson
merge
346
            self.proxy.Approve(dbus.Boolean(False, variant_level=1),
482 by Teddy Hogeborn
* mandos: Tolerate restarting Avahi servers. Also Changed to new
347
                                  dbus_interface = client_interface,
348
                               ignore_reply=True)
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
349
        elif key == "R" or key == "_" or key == "ctrl k":
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
350
            self.server_proxy_object.RemoveClient(self.proxy
482 by Teddy Hogeborn
* mandos: Tolerate restarting Avahi servers. Also Changed to new
351
                                                  .object_path,
352
                                                  ignore_reply=True)
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
353
        elif key == "s":
482 by Teddy Hogeborn
* mandos: Tolerate restarting Avahi servers. Also Changed to new
354
            self.proxy.StartChecker(dbus_interface = client_interface,
355
                                    ignore_reply=True)
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
356
        elif key == "S":
482 by Teddy Hogeborn
* mandos: Tolerate restarting Avahi servers. Also Changed to new
357
            self.proxy.StopChecker(dbus_interface = client_interface,
358
                                   ignore_reply=True)
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
359
        elif key == "C":
482 by Teddy Hogeborn
* mandos: Tolerate restarting Avahi servers. Also Changed to new
360
            self.proxy.CheckedOK(dbus_interface = client_interface,
361
                                 ignore_reply=True)
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
362
        # xxx
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
363
#         elif key == "p" or key == "=":
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
364
#             self.proxy.pause()
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
365
#         elif key == "u" or key == ":":
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
366
#             self.proxy.unpause()
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
367
#         elif key == "RET":
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
368
#             self.open()
369
        else:
370
            return key
371
    
732 by Teddy Hogeborn
Emit D-Bus "org.freedesktop.DBus.Properties.PropertiesChanged" signal.
372
    def properties_changed(self, interface, properties, invalidated):
373
        """Call self.update() if any properties changed.
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
374
        This overrides the method from MandosClientPropertyCache"""
732 by Teddy Hogeborn
Emit D-Bus "org.freedesktop.DBus.Properties.PropertiesChanged" signal.
375
        old_values = { key: self.properties.get(key)
376
                       for key in properties.keys() }
377
        super(MandosClientWidget, self).properties_changed(
378
            interface, properties, invalidated)
379
        if any(old_values[key] != self.properties.get(key)
380
               for key in old_values):
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
381
            self.update()
382
383
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
384
class ConstrainedListBox(urwid.ListBox):
385
    """Like a normal urwid.ListBox, but will consume all "up" or
386
    "down" key presses, thus not allowing any containing widgets to
387
    use them as an excuse to shift focus away from this widget.
388
    """
580 by Teddy Hogeborn
* mandos-monitor: Speedup: Use properties from D-Bus
389
    def keypress(self, *args, **kwargs):
390
        ret = super(ConstrainedListBox, self).keypress(*args, **kwargs)
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
391
        if ret in ("up", "down"):
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
392
            return
393
        return ret
394
395
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
396
class UserInterface(object):
397
    """This is the entire user interface - the whole screen
398
    with boxes, lists of client widgets, etc.
399
    """
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
400
    def __init__(self, max_log_length=1000, log_level=1):
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
401
        DBusGMainLoop(set_as_default=True)
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
402
        
403
        self.screen = urwid.curses_display.Screen()
404
        
405
        self.screen.register_palette((
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
406
                ("normal",
407
                 "default", "default", None),
408
                ("bold",
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
409
                 "bold", "default", "bold"),
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
410
                ("underline-blink",
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
411
                 "underline,blink", "default", "underline,blink"),
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
412
                ("standout",
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
413
                 "standout", "default", "standout"),
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
414
                ("bold-underline-blink",
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
415
                 "bold,underline,blink", "default", "bold,underline,blink"),
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
416
                ("bold-standout",
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
417
                 "bold,standout", "default", "bold,standout"),
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
418
                ("underline-blink-standout",
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
419
                 "underline,blink,standout", "default",
420
                 "underline,blink,standout"),
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
421
                ("bold-underline-blink-standout",
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
422
                 "bold,underline,blink,standout", "default",
423
                 "bold,underline,blink,standout"),
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
424
                ))
425
        
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
426
        if urwid.supports_unicode():
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
427
            self.divider = "─" # \u2500
428
            #self.divider = "━" # \u2501
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
429
        else:
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
430
            #self.divider = "-" # \u002d
431
            self.divider = "_" # \u005f
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
432
        
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
433
        self.screen.start()
434
        
435
        self.size = self.screen.get_cols_rows()
436
        
437
        self.clients = urwid.SimpleListWalker([])
438
        self.clients_dict = {}
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
439
        
440
        # We will add Text widgets to this list
441
        self.log = []
442
        self.max_log_length = max_log_length
443
        
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
444
        self.log_level = log_level
445
        
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
446
        # We keep a reference to the log widget so we can remove it
447
        # from the ListWalker without it getting destroyed
448
        self.logbox = ConstrainedListBox(self.log)
449
        
450
        # This keeps track of whether self.uilist currently has
451
        # self.logbox in it or not
452
        self.log_visible = True
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
453
        self.log_wrap = "any"
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
454
        
455
        self.rebuild()
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
456
        self.log_message_raw(("bold",
457
                              "Mandos Monitor version " + version))
458
        self.log_message_raw(("bold",
459
                              "q: Quit  ?: Help"))
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
460
        
461
        self.busname = domain + '.Mandos'
462
        self.main_loop = gobject.MainLoop()
463
    
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
464
    def client_not_found(self, fingerprint, address):
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
465
        self.log_message("Client with address {} and fingerprint {}"
466
                         " could not be found"
567 by Teddy Hogeborn
* mandos-monitor: Use new string format method.
467
                         .format(address, fingerprint))
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
468
    
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
469
    def rebuild(self):
470
        """This rebuilds the User Interface.
471
        Call this when the widget layout needs to change"""
472
        self.uilist = []
473
        #self.uilist.append(urwid.ListBox(self.clients))
422 by Teddy Hogeborn
Rename all D-Bus properties to conform to D-Bus naming conventions;
474
        self.uilist.append(urwid.Frame(ConstrainedListBox(self.
475
                                                          clients),
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
476
                                       #header=urwid.Divider(),
477
                                       header=None,
422 by Teddy Hogeborn
Rename all D-Bus properties to conform to D-Bus naming conventions;
478
                                       footer=
479
                                       urwid.Divider(div_char=
480
                                                     self.divider)))
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
481
        if self.log_visible:
482
            self.uilist.append(self.logbox)
483
        self.topwidget = urwid.Pile(self.uilist)
484
    
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
485
    def log_message(self, message, level=1):
612 by Björn Påhlsson
added note messages when mandos-monitor starts without running server,
486
        """Log message formatted with timestamp"""
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
487
        if level < self.log_level:
488
            return
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
489
        timestamp = datetime.datetime.now().isoformat()
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
490
        self.log_message_raw("{}: {}".format(timestamp, message),
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
491
                             level=level)
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
492
    
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
493
    def log_message_raw(self, markup, level=1):
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
494
        """Add a log message to the log buffer."""
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
495
        if level < self.log_level:
496
            return
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
497
        self.log.append(urwid.Text(markup, wrap=self.log_wrap))
498
        if (self.max_log_length
499
            and len(self.log) > self.max_log_length):
500
            del self.log[0:len(self.log)-self.max_log_length-1]
408 by Teddy Hogeborn
* debian/rules: Only set BROKEN_PIE if binutils is a specific range of
501
        self.logbox.set_focus(len(self.logbox.body.contents),
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
502
                              coming_from="above")
409 by Teddy Hogeborn
* mandos (MandosServer.handle_ipc): Better log message.
503
        self.refresh()
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
504
    
505
    def toggle_log_display(self):
506
        """Toggle visibility of the log buffer."""
507
        self.log_visible = not self.log_visible
508
        self.rebuild()
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
509
        self.log_message("Log visibility changed to: {}"
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
510
                         .format(self.log_visible), level=0)
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
511
    
512
    def change_log_display(self):
513
        """Change type of log display.
514
        Currently, this toggles wrapping of text lines."""
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
515
        if self.log_wrap == "clip":
516
            self.log_wrap = "any"
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
517
        else:
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
518
            self.log_wrap = "clip"
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
519
        for textwidget in self.log:
520
            textwidget.set_wrap_mode(self.log_wrap)
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
521
        self.log_message("Wrap mode: {}".format(self.log_wrap),
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
522
                         level=0)
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
523
    
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
524
    def find_and_remove_client(self, path, name):
488 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Save match tag for
525
        """Find a client by its object path and remove it.
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
526
        
527
        This is connected to the ClientRemoved signal from the
528
        Mandos server object."""
529
        try:
530
            client = self.clients_dict[path]
531
        except KeyError:
532
            # not found?
723.1.5 by Teddy Hogeborn
Use the new auto-numbered "{}" syntax for the .format() string method.
533
            self.log_message("Unknown client {!r} ({!r}) removed"
567 by Teddy Hogeborn
* mandos-monitor: Use new string format method.
534
                             .format(name, path))
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
535
            return
488 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Save match tag for
536
        client.delete()
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
537
    
411 by Teddy Hogeborn
More consistent terminology: Clients are no longer "invalid" - they
538
    def add_new_client(self, path):
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
539
        client_proxy_object = self.bus.get_object(self.busname, path)
540
        self.add_client(MandosClientWidget(server_proxy_object
541
                                           =self.mandos_serv,
542
                                           proxy_object
543
                                           =client_proxy_object,
544
                                           update_hook
545
                                           =self.refresh,
546
                                           delete_hook
411 by Teddy Hogeborn
More consistent terminology: Clients are no longer "invalid" - they
547
                                           =self.remove_client,
548
                                           logger
549
                                           =self.log_message),
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
550
                        path=path)
551
    
552
    def add_client(self, client, path=None):
553
        self.clients.append(client)
554
        if path is None:
555
            path = client.proxy.object_path
556
        self.clients_dict[path] = client
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
557
        self.clients.sort(key=lambda c: c.properties["Name"])
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
558
        self.refresh()
559
    
560
    def remove_client(self, client, path=None):
561
        self.clients.remove(client)
562
        if path is None:
563
            path = client.proxy.object_path
564
        del self.clients_dict[path]
565
        self.refresh()
566
    
567
    def refresh(self):
568
        """Redraw the screen"""
569
        canvas = self.topwidget.render(self.size, focus=True)
570
        self.screen.draw_screen(self.size, canvas)
571
    
572
    def run(self):
573
        """Start the main loop and exit when it's done."""
537 by Björn Påhlsson
nicer stacktrace when mandos-monitor fail during startup
574
        self.bus = dbus.SystemBus()
575
        mandos_dbus_objc = self.bus.get_object(
576
            self.busname, "/", follow_name_owner_changes=True)
577
        self.mandos_serv = dbus.Interface(mandos_dbus_objc,
578
                                          dbus_interface
579
                                          = server_interface)
580
        try:
581
            mandos_clients = (self.mandos_serv
582
                              .GetAllClientsWithProperties())
612 by Björn Påhlsson
added note messages when mandos-monitor starts without running server,
583
            if not mandos_clients:
584
                self.log_message_raw(("bold", "Note: Server has no clients."))
537 by Björn Påhlsson
nicer stacktrace when mandos-monitor fail during startup
585
        except dbus.exceptions.DBusException:
616 by Teddy Hogeborn
* mandos-ctl (string_to_delta): Try to parse RFC 3339 duration before
586
            self.log_message_raw(("bold", "Note: No Mandos server running."))
537 by Björn Påhlsson
nicer stacktrace when mandos-monitor fail during startup
587
            mandos_clients = dbus.Dictionary()
588
        
589
        (self.mandos_serv
590
         .connect_to_signal("ClientRemoved",
591
                            self.find_and_remove_client,
592
                            dbus_interface=server_interface,
593
                            byte_arrays=True))
594
        (self.mandos_serv
595
         .connect_to_signal("ClientAdded",
596
                            self.add_new_client,
597
                            dbus_interface=server_interface,
598
                            byte_arrays=True))
599
        (self.mandos_serv
600
         .connect_to_signal("ClientNotFound",
601
                            self.client_not_found,
602
                            dbus_interface=server_interface,
603
                            byte_arrays=True))
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
604
        for path, client in mandos_clients.items():
537 by Björn Påhlsson
nicer stacktrace when mandos-monitor fail during startup
605
            client_proxy_object = self.bus.get_object(self.busname,
606
                                                      path)
607
            self.add_client(MandosClientWidget(server_proxy_object
608
                                               =self.mandos_serv,
609
                                               proxy_object
610
                                               =client_proxy_object,
611
                                               properties=client,
612
                                               update_hook
613
                                               =self.refresh,
614
                                               delete_hook
615
                                               =self.remove_client,
616
                                               logger
617
                                               =self.log_message),
618
                            path=path)
580 by Teddy Hogeborn
* mandos-monitor: Speedup: Use properties from D-Bus
619
        
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
620
        self.refresh()
621
        self._input_callback_tag = (gobject.io_add_watch
622
                                    (sys.stdin.fileno(),
623
                                     gobject.IO_IN,
624
                                     self.process_input))
625
        self.main_loop.run()
626
        # Main loop has finished, we should close everything now
627
        gobject.source_remove(self._input_callback_tag)
628
        self.screen.stop()
629
    
630
    def stop(self):
631
        self.main_loop.quit()
632
    
633
    def process_input(self, source, condition):
634
        keys = self.screen.get_input()
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
635
        translations = { "ctrl n": "down",      # Emacs
636
                         "ctrl p": "up",        # Emacs
637
                         "ctrl v": "page down", # Emacs
638
                         "meta v": "page up",   # Emacs
639
                         " ": "page down",      # less
640
                         "f": "page down",      # less
641
                         "b": "page up",        # less
642
                         "j": "down",           # vi
643
                         "k": "up",             # vi
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
644
                         }
645
        for key in keys:
646
            try:
647
                key = translations[key]
648
            except KeyError:    # :-)
649
                pass
650
            
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
651
            if key == "q" or key == "Q":
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
652
                self.stop()
653
                break
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
654
            elif key == "window resize":
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
655
                self.size = self.screen.get_cols_rows()
656
                self.refresh()
722 by Teddy Hogeborn
mandos-monitor: Bug fix: Make Ctrl-L actually redraw the screen.
657
            elif key == "ctrl l":
658
                self.screen.clear()
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
659
                self.refresh()
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
660
            elif key == "l" or key == "D":
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
661
                self.toggle_log_display()
662
                self.refresh()
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
663
            elif key == "w" or key == "i":
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
664
                self.change_log_display()
665
                self.refresh()
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
666
            elif key == "?" or key == "f1" or key == "esc":
407 by Teddy Hogeborn
* mandos-monitor (MandosClientWidget): Change "StopChecker" key to "S"
667
                if not self.log_visible:
668
                    self.log_visible = True
669
                    self.rebuild()
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
670
                self.log_message_raw(("bold",
671
                                      "  ".
672
                                      join(("q: Quit",
673
                                            "?: Help",
674
                                            "l: Log window toggle",
675
                                            "TAB: Switch window",
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
676
                                            "w: Wrap (log lines)",
677
                                            "v: Toggle verbose log",
678
                                            ))))
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
679
                self.log_message_raw(("bold",
680
                                      "  "
681
                                      .join(("Clients:",
682
                                             "+: Enable",
683
                                             "-: Disable",
684
                                             "R: Remove",
685
                                             "s: Start new checker",
686
                                             "S: Stop checker",
687
                                             "C: Checker OK",
688
                                             "a: Approve",
689
                                             "d: Deny"))))
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
690
                self.refresh()
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
691
            elif key == "tab":
405 by Teddy Hogeborn
* mandos-monitor (MandosClientPropertyCache): Remove conversion of
692
                if self.topwidget.get_focus() is self.logbox:
693
                    self.topwidget.set_focus(0)
694
                else:
695
                    self.topwidget.set_focus(self.logbox)
696
                self.refresh()
713 by Teddy Hogeborn
mandos-monitor: New "verbose" mode to see less important log messages.
697
            elif key == "v":
698
                if self.log_level == 0:
699
                    self.log_level = 1
700
                    self.log_message("Verbose mode: Off")
701
                else:
702
                    self.log_level = 0
703
                    self.log_message("Verbose mode: On")
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
704
            #elif (key == "end" or key == "meta >" or key == "G"
705
            #      or key == ">"):
407 by Teddy Hogeborn
* mandos-monitor (MandosClientWidget): Change "StopChecker" key to "S"
706
            #    pass            # xxx end-of-buffer
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
707
            #elif (key == "home" or key == "meta <" or key == "g"
708
            #      or key == "<"):
407 by Teddy Hogeborn
* mandos-monitor (MandosClientWidget): Change "StopChecker" key to "S"
709
            #    pass            # xxx beginning-of-buffer
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
710
            #elif key == "ctrl e" or key == "$":
407 by Teddy Hogeborn
* mandos-monitor (MandosClientWidget): Change "StopChecker" key to "S"
711
            #    pass            # xxx move-end-of-line
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
712
            #elif key == "ctrl a" or key == "^":
407 by Teddy Hogeborn
* mandos-monitor (MandosClientWidget): Change "StopChecker" key to "S"
713
            #    pass            # xxx move-beginning-of-line
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
714
            #elif key == "ctrl b" or key == "meta (" or key == "h":
407 by Teddy Hogeborn
* mandos-monitor (MandosClientWidget): Change "StopChecker" key to "S"
715
            #    pass            # xxx left
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
716
            #elif key == "ctrl f" or key == "meta )" or key == "l":
407 by Teddy Hogeborn
* mandos-monitor (MandosClientWidget): Change "StopChecker" key to "S"
717
            #    pass            # xxx right
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
718
            #elif key == "a":
407 by Teddy Hogeborn
* mandos-monitor (MandosClientWidget): Change "StopChecker" key to "S"
719
            #    pass            # scroll up log
463.1.2 by teddy at bsnet
* mandos-monitor: Use unicode string literals. Update __future__
720
            #elif key == "z":
407 by Teddy Hogeborn
* mandos-monitor (MandosClientWidget): Change "StopChecker" key to "S"
721
            #    pass            # scroll down log
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
722
            elif self.topwidget.selectable():
723
                self.topwidget.keypress(self.size, key)
724
                self.refresh()
725
        return True
726
727
ui = UserInterface()
728
try:
729
    ui.run()
24.1.159 by Björn Påhlsson
added approval to mandos-ctl
730
except KeyboardInterrupt:
731
    ui.screen.stop()
617 by Teddy Hogeborn
* mandos: Bug fix: Don't print output from checkers when running in
732
except Exception as e:
733
    ui.log_message(str(e))
404 by Teddy Hogeborn
* mandos-monitor: New prototype version of interactive server
734
    ui.screen.stop()
735
    raise