/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-monitor

  • Committer: Björn Påhlsson
  • Date: 2010-09-01 13:04:23 UTC
  • mto: (237.4.3 mandos-release)
  • mto: This revision was merged to the branch mainline in revision 421.
  • Revision ID: belorn@fukt.bsnet.se-20100901130423-bkn4j4vukasa1d27
New graphical boot supported: Plymouth

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
locale.setlocale(locale.LC_ALL, u'')
25
25
 
26
 
import logging
27
 
logging.getLogger('dbus.proxies').setLevel(logging.CRITICAL)
28
 
 
29
26
# Some useful constants
30
27
domain = 'se.bsnet.fukt'
31
28
server_interface = domain + '.Mandos'
32
29
client_interface = domain + '.Mandos.Client'
33
 
version = "1.0.15"
 
30
version = "1.0.14"
34
31
 
35
32
# Always run in monochrome mode
36
33
urwid.curses_display.curses.has_colors = lambda : False
40
37
urwid.curses_display.curses.A_UNDERLINE |= (
41
38
    urwid.curses_display.curses.A_BLINK)
42
39
 
43
 
def isoformat_to_datetime(iso):
44
 
    "Parse an ISO 8601 date string to a datetime.datetime()"
45
 
    if not iso:
46
 
        return None
47
 
    d, t = iso.split(u"T", 1)
48
 
    year, month, day = d.split(u"-", 2)
49
 
    hour, minute, second = t.split(u":", 2)
50
 
    second, fraction = divmod(float(second), 1)
51
 
    return datetime.datetime(int(year),
52
 
                             int(month),
53
 
                             int(day),
54
 
                             int(hour),
55
 
                             int(minute),
56
 
                             int(second),           # Whole seconds
57
 
                             int(fraction*1000000)) # Microseconds
58
 
 
59
40
class MandosClientPropertyCache(object):
60
41
    """This wraps a Mandos Client D-Bus proxy object, caches the
61
42
    properties and calls a hook function when any of them are
69
50
                                     self.property_changed,
70
51
                                     client_interface,
71
52
                                     byte_arrays=True)
72
 
        
 
53
 
73
54
        self.properties.update(
74
55
            self.proxy.GetAll(client_interface,
75
56
                              dbus_interface = dbus.PROPERTIES_IFACE))
76
 
 
77
 
        #XXX This break good super behaviour!
78
 
#        super(MandosClientPropertyCache, self).__init__(
79
 
#            *args, **kwargs)
 
57
        super(MandosClientPropertyCache, self).__init__(
 
58
            proxy_object=proxy_object, *args, **kwargs)
80
59
    
81
60
    def property_changed(self, property=None, value=None):
82
61
        """This is called whenever we get a PropertyChanged signal
101
80
        # Logger
102
81
        self.logger = logger
103
82
        
104
 
        self._update_timer_callback_tag = None
105
 
        self.last_checker_failed = False
106
 
        
107
83
        # The widget shown normally
108
84
        self._text_widget = urwid.Text(u"")
109
85
        # The widget shown when we have focus
125
101
                                     self.got_secret,
126
102
                                     client_interface,
127
103
                                     byte_arrays=True)
128
 
        self.proxy.connect_to_signal(u"NeedApproval",
129
 
                                     self.need_approval,
130
 
                                     client_interface,
131
 
                                     byte_arrays=True)
132
104
        self.proxy.connect_to_signal(u"Rejected",
133
105
                                     self.rejected,
134
106
                                     client_interface,
135
107
                                     byte_arrays=True)
136
 
        last_checked_ok = isoformat_to_datetime(self.properties
137
 
                                                ["last_checked_ok"])
138
 
        if last_checked_ok is None:
139
 
            self.last_checker_failed = True
140
 
        else:
141
 
            self.last_checker_failed = ((datetime.datetime.utcnow()
142
 
                                         - last_checked_ok)
143
 
                                        > datetime.timedelta
144
 
                                        (milliseconds=
145
 
                                         self.properties["interval"]))
146
 
        if self.last_checker_failed:
147
 
            self._update_timer_callback_tag = (gobject.timeout_add
148
 
                                               (1000,
149
 
                                                self.update_timer))
150
108
    
151
109
    def checker_completed(self, exitstatus, condition, command):
152
110
        if exitstatus == 0:
153
 
            if self.last_checker_failed:
154
 
                self.last_checker_failed = False
155
 
                gobject.source_remove(self._update_timer_callback_tag)
156
 
                self._update_timer_callback_tag = None
157
111
            self.logger(u'Checker for client %s (command "%s")'
158
112
                        u' was successful'
159
113
                        % (self.properties[u"name"], command))
160
 
            self.update()
161
114
            return
162
 
        # Checker failed
163
 
        if not self.last_checker_failed:
164
 
            self.last_checker_failed = True
165
 
            self._update_timer_callback_tag = (gobject.timeout_add
166
 
                                               (1000,
167
 
                                                self.update_timer))
168
115
        if os.WIFEXITED(condition):
169
116
            self.logger(u'Checker for client %s (command "%s")'
170
117
                        u' failed with exit code %s'
171
118
                        % (self.properties[u"name"], command,
172
119
                           os.WEXITSTATUS(condition)))
173
 
        elif os.WIFSIGNALED(condition):
 
120
            return
 
121
        if os.WIFSIGNALED(condition):
174
122
            self.logger(u'Checker for client %s (command "%s")'
175
123
                        u' was killed by signal %s'
176
124
                        % (self.properties[u"name"], command,
177
125
                           os.WTERMSIG(condition)))
178
 
        elif os.WCOREDUMP(condition):
 
126
            return
 
127
        if os.WCOREDUMP(condition):
179
128
            self.logger(u'Checker for client %s (command "%s")'
180
129
                        u' dumped core'
181
130
                        % (self.properties[u"name"], command))
182
 
        else:
183
 
            self.logger(u'Checker for client %s completed mysteriously')
184
 
        self.update()
 
131
        self.logger(u'Checker for client %s completed mysteriously')
185
132
    
186
133
    def checker_started(self, command):
187
 
        #self.logger(u'Client %s started checker "%s"'
188
 
        #            % (self.properties[u"name"], unicode(command)))
189
 
        pass
 
134
        self.logger(u'Client %s started checker "%s"'
 
135
                    % (self.properties[u"name"], unicode(command)))
190
136
    
191
137
    def got_secret(self):
192
 
        self.last_checker_failed = False
193
138
        self.logger(u'Client %s received its secret'
194
139
                    % self.properties[u"name"])
195
140
    
196
 
    def need_approval(self, timeout, default):
197
 
        if not default:
198
 
            message = u'Client %s needs approval within %s seconds'
199
 
        else:
200
 
            message = u'Client %s will get its secret in %s seconds'
201
 
        self.logger(message
202
 
                    % (self.properties[u"name"], timeout/1000))
203
 
    
204
 
    def rejected(self, reason):
205
 
        self.logger(u'Client %s was rejected; reason: %s'
206
 
                    % (self.properties[u"name"], reason))
 
141
    def rejected(self):
 
142
        self.logger(u'Client %s was rejected'
 
143
                    % self.properties[u"name"])
207
144
    
208
145
    def selectable(self):
209
146
        """Make this a "selectable" widget.
231
168
                          u"bold-underline-blink":
232
169
                              u"bold-underline-blink-standout",
233
170
                          }
234
 
 
 
171
        
235
172
        # Rebuild focus and non-focus widgets using current properties
236
 
 
237
 
        # Base part of a client. Name!
238
 
        base = (u'%(name)s: '
239
 
                      % {u"name": self.properties[u"name"]})
240
 
        if not self.properties[u"enabled"]:
241
 
            message = u"DISABLED"
242
 
        elif self.properties[u"approved_pending"]:
243
 
            if self.properties[u"approved_by_default"]:
244
 
                message = u"Connection established to client. (d)eny?"
245
 
            else:
246
 
                message = u"Seeks approval to send secret. (a)pprove?"
247
 
        elif self.last_checker_failed:
248
 
            timeout = datetime.timedelta(milliseconds
249
 
                                         = self.properties[u"timeout"])
250
 
            last_ok = isoformat_to_datetime(
251
 
                max((self.properties["last_checked_ok"]
252
 
                     or self.properties["created"]),
253
 
                    self.properties[u"last_enabled"]))
254
 
            timer = timeout - (datetime.datetime.utcnow() - last_ok)
255
 
            message = (u'A checker has failed! Time until client gets diabled: %s'
256
 
                           % unicode(timer).rsplit(".", 1)[0])
257
 
        else:
258
 
            message = u"enabled"
259
 
        self._text = "%s%s" % (base, message)
260
 
            
 
173
        self._text = (u'%(name)s: %(enabled)s'
 
174
                      % { u"name": self.properties[u"name"],
 
175
                          u"enabled":
 
176
                              (u"enabled"
 
177
                               if self.properties[u"enabled"]
 
178
                               else u"DISABLED")})
261
179
        if not urwid.supports_unicode():
262
180
            self._text = self._text.encode("ascii", "replace")
263
181
        textlist = [(u"normal", self._text)]
274
192
        if self.update_hook is not None:
275
193
            self.update_hook()
276
194
    
277
 
    def update_timer(self):
278
 
        "called by gobject"
279
 
        self.update()
280
 
        return True             # Keep calling this
281
 
    
282
195
    def delete(self):
283
 
        if self._update_timer_callback_tag is not None:
284
 
            gobject.source_remove(self._update_timer_callback_tag)
285
 
            self._update_timer_callback_tag = None
286
196
        if self.delete_hook is not None:
287
197
            self.delete_hook(self)
288
198
    
295
205
    def keypress(self, (maxcol,), key):
296
206
        """Handle keys.
297
207
        This overrides the method from urwid.FlowWidget"""
298
 
        if key == u"+":
299
 
            self.proxy.Enable(dbus_interface = client_interface)
300
 
        elif key == u"-":
301
 
            self.proxy.Disable(dbus_interface = client_interface)
302
 
        elif key == u"a":
303
 
            self.proxy.Approve(dbus.Boolean(True, variant_level=1),
304
 
                               dbus_interface = client_interface)
305
 
        elif key == u"d":
306
 
            self.proxy.Approve(dbus.Boolean(False, variant_level=1),
307
 
                                  dbus_interface = client_interface)
 
208
        if key == u"e" or key == u"+":
 
209
            self.proxy.Enable()
 
210
        elif key == u"d" or key == u"-":
 
211
            self.proxy.Disable()
308
212
        elif key == u"r" or key == u"_" or key == u"ctrl k":
309
213
            self.server_proxy_object.RemoveClient(self.proxy
310
214
                                                  .object_path)
311
215
        elif key == u"s":
312
 
            self.proxy.StartChecker(dbus_interface = client_interface)
 
216
            self.proxy.StartChecker()
313
217
        elif key == u"S":
314
 
            self.proxy.StopChecker(dbus_interface = client_interface)
 
218
            self.proxy.StopChecker()
315
219
        elif key == u"C":
316
 
            self.proxy.CheckedOK(dbus_interface = client_interface)
 
220
            self.proxy.CheckedOK()
317
221
        # xxx
318
222
#         elif key == u"p" or key == "=":
319
223
#             self.proxy.pause()
321
225
#             self.proxy.unpause()
322
226
#         elif key == u"RET":
323
227
#             self.open()
324
 
#        elif key == u"+":
325
 
#            self.proxy.Approve(True)
326
 
#        elif key == u"-":
327
 
#            self.proxy.Approve(False)
328
228
        else:
329
229
            return key
330
230
    
622
522
                self.log_message_raw((u"bold",
623
523
                                      u"  "
624
524
                                      .join((u"Clients:",
625
 
                                             u"+: Enable",
626
 
                                             u"-: Disable",
 
525
                                             u"e: Enable",
 
526
                                             u"d: Disable",
627
527
                                             u"r: Remove",
628
528
                                             u"s: Start new checker",
629
529
                                             u"S: Stop checker",
630
 
                                             u"C: Checker OK",
631
 
                                             u"a: Approve",
632
 
                                             u"d: Deny"))))
 
530
                                             u"C: Checker OK"))))
633
531
                self.refresh()
634
532
            elif key == u"tab":
635
533
                if self.topwidget.get_focus() is self.logbox:
663
561
ui = UserInterface()
664
562
try:
665
563
    ui.run()
666
 
except KeyboardInterrupt:
667
 
    ui.screen.stop()
668
564
except Exception, e:
669
565
    ui.log_message(unicode(e))
670
566
    ui.screen.stop()