183
176
client_interface,
184
177
byte_arrays=True))
185
#self.logger('Created client %s' % (self.properties["Name"]))
178
#self.logger('Created client {0}'
179
# .format(self.properties["Name"]))
187
181
def property_changed(self, property=None, value=None):
188
182
super(self, MandosClientWidget).property_changed(property,
190
184
if property == "ApprovalPending":
191
185
using_timer(bool(value))
186
if property == "LastCheckerStatus":
187
using_timer(value != 0)
188
#self.logger('Checker for client {0} (command "{1}") was '
189
# ' successful'.format(self.properties["Name"],
193
192
def using_timer(self, flag):
194
193
"""Call this method with True or False when timer should be
195
194
activated or deactivated.
211
210
def checker_completed(self, exitstatus, condition, command):
212
211
if exitstatus == 0:
213
if self.last_checker_failed:
214
self.last_checker_failed = False
215
self.using_timer(False)
216
#self.logger('Checker for client %s (command "%s")'
218
# % (self.properties["Name"], command))
222
if not self.last_checker_failed:
223
self.last_checker_failed = True
224
self.using_timer(True)
225
215
if os.WIFEXITED(condition):
226
self.logger('Checker for client %s (command "%s")'
227
' failed with exit code %s'
228
% (self.properties["Name"], command,
229
os.WEXITSTATUS(condition)))
216
self.logger('Checker for client {0} (command "{1}")'
217
' failed with exit code {2}'
218
.format(self.properties["Name"], command,
219
os.WEXITSTATUS(condition)))
230
220
elif os.WIFSIGNALED(condition):
231
self.logger('Checker for client %s (command "%s")'
232
' was killed by signal %s'
233
% (self.properties["Name"], command,
234
os.WTERMSIG(condition)))
221
self.logger('Checker for client {0} (command "{1}") was'
222
' killed by signal {2}'
223
.format(self.properties["Name"], command,
224
os.WTERMSIG(condition)))
235
225
elif os.WCOREDUMP(condition):
236
self.logger('Checker for client %s (command "%s")'
226
self.logger('Checker for client {0} (command "{1}")'
238
% (self.properties["Name"], command))
228
.format(self.properties["Name"], command))
240
self.logger('Checker for client %s completed'
230
self.logger('Checker for client {0} completed'
232
.format(self.properties["Name"]))
244
235
def checker_started(self, command):
245
#self.logger('Client %s started checker "%s"'
246
# % (self.properties["Name"], unicode(command)))
236
"""Server signals that a checker started. This could be useful
237
to log in the future. """
238
#self.logger('Client {0} started checker "{1}"'
239
# .format(self.properties["Name"],
249
243
def got_secret(self):
250
self.last_checker_failed = False
251
self.logger('Client %s received its secret'
252
% self.properties["Name"])
244
self.logger('Client {0} received its secret'
245
.format(self.properties["Name"]))
254
247
def need_approval(self, timeout, default):
256
message = 'Client %s needs approval within %s seconds'
249
message = 'Client {0} needs approval within {1} seconds'
258
message = 'Client %s will get its secret in %s seconds'
260
% (self.properties["Name"], timeout/1000))
251
message = 'Client {0} will get its secret in {1} seconds'
252
self.logger(message.format(self.properties["Name"],
261
254
self.using_timer(True)
263
256
def rejected(self, reason):
264
self.logger('Client %s was rejected; reason: %s'
265
% (self.properties["Name"], reason))
257
self.logger('Client {0} was rejected; reason: {1}'
258
.format(self.properties["Name"], reason))
267
260
def selectable(self):
268
261
"""Make this a "selectable" widget.
311
303
timer = datetime.timedelta()
312
304
if self.properties["ApprovedByDefault"]:
313
message = "Approval in %s. (d)eny?"
305
message = "Approval in {0}. (d)eny?"
315
message = "Denial in %s. (a)pprove?"
316
message = message % unicode(timer).rsplit(".", 1)[0]
317
elif self.last_checker_failed:
318
# When checker has failed, print a timer until client expires
307
message = "Denial in {0}. (a)pprove?"
308
message = message.format(unicode(timer).rsplit(".", 1)[0])
309
elif self.properties["LastCheckerStatus"] != 0:
310
# When checker has failed, show timer until client expires
319
311
expires = self.properties["Expires"]
320
312
if expires == "":
321
313
timer = datetime.timedelta(0)
323
expires = datetime.datetime.strptime(expires,
324
'%Y-%m-%dT%H:%M:%S.%f')
315
expires = (datetime.datetime.strptime
316
(expires, '%Y-%m-%dT%H:%M:%S.%f'))
325
317
timer = expires - datetime.datetime.utcnow()
326
318
message = ('A checker has failed! Time until client'
328
% unicode(timer).rsplit(".", 1)[0])
319
' gets disabled: {0}'
320
.format(unicode(timer).rsplit(".", 1)[0]))
330
322
message = "enabled"
331
self._text = "%s%s" % (base, message)
323
self._text = "{0}{1}".format(base, message)
333
325
if not urwid.supports_unicode():
334
326
self._text = self._text.encode("ascii", "replace")
498
490
self.busname = domain + '.Mandos'
499
491
self.main_loop = gobject.MainLoop()
500
self.bus = dbus.SystemBus()
501
mandos_dbus_objc = self.bus.get_object(
502
self.busname, "/", follow_name_owner_changes=True)
503
self.mandos_serv = dbus.Interface(mandos_dbus_objc,
507
mandos_clients = (self.mandos_serv
508
.GetAllClientsWithProperties())
509
except dbus.exceptions.DBusException:
510
mandos_clients = dbus.Dictionary()
513
.connect_to_signal("ClientRemoved",
514
self.find_and_remove_client,
515
dbus_interface=server_interface,
518
.connect_to_signal("ClientAdded",
520
dbus_interface=server_interface,
523
.connect_to_signal("ClientNotFound",
524
self.client_not_found,
525
dbus_interface=server_interface,
527
for path, client in mandos_clients.iteritems():
528
client_proxy_object = self.bus.get_object(self.busname,
530
self.add_client(MandosClientWidget(server_proxy_object
533
=client_proxy_object,
543
493
def client_not_found(self, fingerprint, address):
544
self.log_message(("Client with address %s and fingerprint %s"
545
" could not be found" % (address,
494
self.log_message("Client with address {0} and fingerprint"
495
" {1} could not be found"
496
.format(address, fingerprint))
548
498
def rebuild(self):
549
499
"""This rebuilds the User Interface.
651
600
"""Start the main loop and exit when it's done."""
601
self.bus = dbus.SystemBus()
602
mandos_dbus_objc = self.bus.get_object(
603
self.busname, "/", follow_name_owner_changes=True)
604
self.mandos_serv = dbus.Interface(mandos_dbus_objc,
608
mandos_clients = (self.mandos_serv
609
.GetAllClientsWithProperties())
610
except dbus.exceptions.DBusException:
611
mandos_clients = dbus.Dictionary()
614
.connect_to_signal("ClientRemoved",
615
self.find_and_remove_client,
616
dbus_interface=server_interface,
619
.connect_to_signal("ClientAdded",
621
dbus_interface=server_interface,
624
.connect_to_signal("ClientNotFound",
625
self.client_not_found,
626
dbus_interface=server_interface,
628
for path, client in mandos_clients.iteritems():
629
client_proxy_object = self.bus.get_object(self.busname,
631
self.add_client(MandosClientWidget(server_proxy_object
634
=client_proxy_object,
653
645
self._input_callback_tag = (gobject.io_add_watch
654
646
(sys.stdin.fileno(),