2017-12-20 22:33:39 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
#
|
|
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
|
|
#
|
|
|
|
# Copyright (C) 2012 Agnieszka Kostrzewa <agnieszka.kostrzewa@gmail.com>
|
|
|
|
# Copyright (C) 2012 Marek Marczykowski-Górecki
|
|
|
|
# <marmarek@invisiblethingslab.com>
|
|
|
|
# Copyright (C) 2017 Wojtek Porczyk <woju@invisiblethingslab.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
# with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
import subprocess
|
|
|
|
import time
|
|
|
|
from datetime import datetime, timedelta
|
|
|
|
import traceback
|
|
|
|
|
|
|
|
from qubesadmin import Qubes
|
2018-01-08 03:06:42 +01:00
|
|
|
from qubesadmin import exc
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 03:06:42 +01:00
|
|
|
from PyQt4 import QtGui # pylint: disable=import-error
|
|
|
|
from PyQt4 import QtCore # pylint: disable=import-error
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 03:06:42 +01:00
|
|
|
from . import ui_qubemanager # pylint: disable=no-name-in-module
|
2017-12-20 22:33:39 +01:00
|
|
|
from . import thread_monitor
|
|
|
|
from . import table_widgets
|
2018-01-05 17:31:15 +01:00
|
|
|
from . import settings
|
|
|
|
from . import global_settings
|
|
|
|
from . import restore
|
|
|
|
from . import backup
|
2018-01-08 02:46:41 +01:00
|
|
|
from . import log_dialog
|
2017-12-20 22:33:39 +01:00
|
|
|
import threading
|
|
|
|
|
|
|
|
from qubesmanager.about import AboutDialog
|
|
|
|
|
|
|
|
|
|
|
|
class SearchBox(QtGui.QLineEdit):
|
|
|
|
def __init__(self, parent=None):
|
|
|
|
super(SearchBox, self).__init__(parent)
|
|
|
|
self.focusing = False
|
|
|
|
|
2018-01-08 03:06:42 +01:00
|
|
|
def focusInEvent(self, e): # pylint: disable=invalid-name
|
2017-12-20 22:33:39 +01:00
|
|
|
super(SearchBox, self).focusInEvent(e)
|
|
|
|
self.selectAll()
|
|
|
|
self.focusing = True
|
|
|
|
|
2018-01-08 03:06:42 +01:00
|
|
|
def mousePressEvent(self, e): # pylint: disable=invalid-name
|
2017-12-20 22:33:39 +01:00
|
|
|
super(SearchBox, self).mousePressEvent(e)
|
|
|
|
if self.focusing:
|
|
|
|
self.selectAll()
|
|
|
|
self.focusing = False
|
|
|
|
|
|
|
|
|
|
|
|
class VmRowInTable(object):
|
2018-01-08 03:06:42 +01:00
|
|
|
# pylint: disable=too-few-public-methods
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
def __init__(self, vm, row_no, table):
|
|
|
|
self.vm = vm
|
|
|
|
self.row_no = row_no
|
2018-01-08 02:46:41 +01:00
|
|
|
# TODO: replace a various different widgets with a more generic
|
2018-01-05 17:31:15 +01:00
|
|
|
# VmFeatureWidget or VMPropertyWidget
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
table_widgets.row_height = VmManagerWindow.row_height
|
|
|
|
table.setRowHeight(row_no, VmManagerWindow.row_height)
|
|
|
|
|
|
|
|
self.type_widget = table_widgets.VmTypeWidget(vm)
|
|
|
|
table.setCellWidget(row_no, VmManagerWindow.columns_indices['Type'],
|
|
|
|
self.type_widget)
|
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices['Type'],
|
2018-01-08 03:06:42 +01:00
|
|
|
self.type_widget.table_item)
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
self.label_widget = table_widgets.VmLabelWidget(vm)
|
|
|
|
table.setCellWidget(row_no, VmManagerWindow.columns_indices['Label'],
|
|
|
|
self.label_widget)
|
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices['Label'],
|
2018-01-08 03:06:42 +01:00
|
|
|
self.label_widget.table_item)
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
self.name_widget = table_widgets.VmNameItem(vm)
|
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices['Name'],
|
|
|
|
self.name_widget)
|
|
|
|
|
|
|
|
self.info_widget = table_widgets.VmInfoWidget(vm)
|
|
|
|
table.setCellWidget(row_no, VmManagerWindow.columns_indices['State'],
|
|
|
|
self.info_widget)
|
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices['State'],
|
2018-01-08 03:06:42 +01:00
|
|
|
self.info_widget.table_item)
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
self.template_widget = table_widgets.VmTemplateItem(vm)
|
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices['Template'],
|
|
|
|
self.template_widget)
|
|
|
|
|
|
|
|
self.netvm_widget = table_widgets.VmNetvmItem(vm)
|
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices['NetVM'],
|
|
|
|
self.netvm_widget)
|
|
|
|
|
|
|
|
self.size_widget = table_widgets.VmSizeOnDiskItem(vm)
|
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices['Size'],
|
|
|
|
self.size_widget)
|
|
|
|
|
|
|
|
self.internal_widget = table_widgets.VmInternalItem(vm)
|
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices['Internal'],
|
|
|
|
self.internal_widget)
|
|
|
|
|
|
|
|
self.ip_widget = table_widgets.VmIPItem(vm)
|
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices['IP'],
|
|
|
|
self.ip_widget)
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
self.include_in_backups_widget = \
|
|
|
|
table_widgets.VmIncludeInBackupsItem(vm)
|
2017-12-20 22:33:39 +01:00
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices[
|
|
|
|
'Backups'], self.include_in_backups_widget)
|
|
|
|
|
|
|
|
self.last_backup_widget = table_widgets.VmLastBackupItem(vm)
|
|
|
|
table.setItem(row_no, VmManagerWindow.columns_indices[
|
|
|
|
'Last backup'], self.last_backup_widget)
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
def update(self, update_size_on_disk=False):
|
2017-12-20 22:33:39 +01:00
|
|
|
"""
|
|
|
|
Update info in a single VM row
|
|
|
|
:param update_size_on_disk: should disk utilization be updated? the
|
|
|
|
widget will extract the data from VM object
|
|
|
|
:return: None
|
|
|
|
"""
|
2018-01-05 17:31:15 +01:00
|
|
|
self.info_widget.update_vm_state(self.vm)
|
2017-12-20 22:33:39 +01:00
|
|
|
if update_size_on_disk:
|
|
|
|
self.size_widget.update()
|
|
|
|
|
|
|
|
|
|
|
|
vm_shutdown_timeout = 20000 # in msec
|
2018-01-05 17:31:15 +01:00
|
|
|
vm_restart_check_timeout = 1000 # in msec
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
class VmShutdownMonitor(QtCore.QObject):
|
2018-01-05 17:31:15 +01:00
|
|
|
def __init__(self, vm, shutdown_time=vm_shutdown_timeout,
|
|
|
|
check_time=vm_restart_check_timeout,
|
|
|
|
and_restart=False, caller=None):
|
2017-12-20 22:33:39 +01:00
|
|
|
QtCore.QObject.__init__(self)
|
|
|
|
self.vm = vm
|
|
|
|
self.shutdown_time = shutdown_time
|
|
|
|
self.check_time = check_time
|
|
|
|
self.and_restart = and_restart
|
|
|
|
self.shutdown_started = datetime.now()
|
|
|
|
self.caller = caller
|
|
|
|
|
|
|
|
def restart_vm_if_needed(self):
|
|
|
|
if self.and_restart and self.caller:
|
|
|
|
self.caller.start_vm(self.vm)
|
|
|
|
|
|
|
|
def check_again_later(self):
|
|
|
|
# noinspection PyTypeChecker,PyCallByClass
|
|
|
|
QtCore.QTimer.singleShot(self.check_time, self.check_if_vm_has_shutdown)
|
|
|
|
|
|
|
|
def timeout_reached(self):
|
|
|
|
actual = datetime.now() - self.shutdown_started
|
|
|
|
allowed = timedelta(milliseconds=self.shutdown_time)
|
|
|
|
|
|
|
|
return actual > allowed
|
|
|
|
|
|
|
|
def check_if_vm_has_shutdown(self):
|
|
|
|
vm = self.vm
|
|
|
|
vm_is_running = vm.is_running()
|
2018-01-10 01:54:30 +01:00
|
|
|
try:
|
|
|
|
vm_start_time = datetime.fromtimestamp(float(vm.start_time))
|
2018-02-09 22:08:07 +01:00
|
|
|
except (AttributeError, TypeError, ValueError):
|
2018-01-10 01:54:30 +01:00
|
|
|
vm_start_time = None
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
if vm_is_running and vm_start_time \
|
|
|
|
and vm_start_time < self.shutdown_started:
|
2017-12-20 22:33:39 +01:00
|
|
|
if self.timeout_reached():
|
|
|
|
reply = QtGui.QMessageBox.question(
|
2018-01-08 03:01:02 +01:00
|
|
|
None, self.tr("Qube Shutdown"),
|
2018-01-05 17:31:15 +01:00
|
|
|
self.tr(
|
2018-01-08 03:01:02 +01:00
|
|
|
"The Qube <b>'{0}'</b> hasn't shutdown within the last "
|
2018-01-05 17:31:15 +01:00
|
|
|
"{1} seconds, do you want to kill it?<br>").format(
|
2017-12-20 22:33:39 +01:00
|
|
|
vm.name, self.shutdown_time / 1000),
|
|
|
|
self.tr("Kill it!"),
|
|
|
|
self.tr("Wait another {0} seconds...").format(
|
|
|
|
self.shutdown_time / 1000))
|
|
|
|
if reply == 0:
|
|
|
|
vm.force_shutdown()
|
|
|
|
self.restart_vm_if_needed()
|
|
|
|
else:
|
|
|
|
self.shutdown_started = datetime.now()
|
|
|
|
self.check_again_later()
|
|
|
|
else:
|
|
|
|
self.check_again_later()
|
|
|
|
else:
|
|
|
|
if vm_is_running:
|
|
|
|
# Due to unknown reasons, Xen sometimes reports that a domain
|
|
|
|
# is running even though its start-up timestamp is not valid.
|
|
|
|
# Make sure that "restart_vm_if_needed" is not called until
|
|
|
|
# the domain has been completely shut down according to Xen.
|
|
|
|
self.check_again_later()
|
|
|
|
return
|
|
|
|
|
|
|
|
self.restart_vm_if_needed()
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
class VmManagerWindow(ui_qubemanager.Ui_VmManagerWindow, QtGui.QMainWindow):
|
2018-01-08 03:06:42 +01:00
|
|
|
# pylint: disable=too-many-instance-attributes
|
2017-12-20 22:33:39 +01:00
|
|
|
row_height = 30
|
|
|
|
column_width = 200
|
|
|
|
search = ""
|
|
|
|
# suppress saving settings while initializing widgets
|
|
|
|
settings_loaded = False
|
|
|
|
columns_indices = {"Type": 0,
|
|
|
|
"Label": 1,
|
|
|
|
"Name": 2,
|
|
|
|
"State": 3,
|
|
|
|
"Template": 4,
|
|
|
|
"NetVM": 5,
|
|
|
|
"Size": 6,
|
|
|
|
"Internal": 7,
|
|
|
|
"IP": 8,
|
|
|
|
"Backups": 9,
|
|
|
|
"Last backup": 10,
|
|
|
|
}
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
def __init__(self, qubes_app, qt_app, parent=None):
|
2018-01-08 03:06:42 +01:00
|
|
|
# pylint: disable=unused-argument
|
2017-12-20 22:33:39 +01:00
|
|
|
super(VmManagerWindow, self).__init__()
|
|
|
|
self.setupUi(self)
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
self.manager_settings = QtCore.QSettings(self)
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qubes_app = qubes_app
|
|
|
|
self.qt_app = qt_app
|
2018-01-05 17:31:15 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
self.searchbox = SearchBox()
|
2017-12-20 22:33:39 +01:00
|
|
|
self.searchbox.setValidator(QtGui.QRegExpValidator(
|
|
|
|
QtCore.QRegExp("[a-zA-Z0-9-]*", QtCore.Qt.CaseInsensitive), None))
|
|
|
|
self.searchContainer.addWidget(self.searchbox)
|
|
|
|
|
|
|
|
self.connect(self.table, QtCore.SIGNAL("itemSelectionChanged()"),
|
|
|
|
self.table_selection_changed)
|
|
|
|
|
|
|
|
self.table.setColumnWidth(0, self.column_width)
|
|
|
|
|
|
|
|
self.sort_by_column = "Type"
|
|
|
|
self.sort_order = QtCore.Qt.AscendingOrder
|
|
|
|
|
|
|
|
self.vms_list = []
|
|
|
|
self.vms_in_table = {}
|
|
|
|
|
|
|
|
self.frame_width = 0
|
|
|
|
self.frame_height = 0
|
|
|
|
|
|
|
|
self.move(self.x(), 0)
|
|
|
|
|
|
|
|
self.columns_actions = {
|
|
|
|
self.columns_indices["Type"]: self.action_vm_type,
|
|
|
|
self.columns_indices["Label"]: self.action_label,
|
|
|
|
self.columns_indices["Name"]: self.action_name,
|
|
|
|
self.columns_indices["State"]: self.action_state,
|
|
|
|
self.columns_indices["Template"]: self.action_template,
|
|
|
|
self.columns_indices["NetVM"]: self.action_netvm,
|
|
|
|
self.columns_indices["Size"]: self.action_size_on_disk,
|
|
|
|
self.columns_indices["Internal"]: self.action_internal,
|
|
|
|
self.columns_indices["IP"]: self
|
|
|
|
.action_ip, self.columns_indices["Backups"]: self
|
|
|
|
.action_backups, self.columns_indices["Last backup"]: self
|
|
|
|
.action_last_backup
|
|
|
|
}
|
|
|
|
|
|
|
|
self.visible_columns_count = len(self.columns_indices)
|
|
|
|
|
|
|
|
self.table.setColumnWidth(self.columns_indices["State"], 80)
|
|
|
|
self.table.setColumnWidth(self.columns_indices["Name"], 150)
|
|
|
|
self.table.setColumnWidth(self.columns_indices["Label"], 40)
|
|
|
|
self.table.setColumnWidth(self.columns_indices["Type"], 40)
|
|
|
|
self.table.setColumnWidth(self.columns_indices["Size"], 100)
|
|
|
|
self.table.setColumnWidth(self.columns_indices["Internal"], 60)
|
|
|
|
self.table.setColumnWidth(self.columns_indices["IP"], 100)
|
|
|
|
self.table.setColumnWidth(self.columns_indices["Backups"], 60)
|
|
|
|
self.table.setColumnWidth(self.columns_indices["Last backup"], 90)
|
|
|
|
|
2018-01-23 20:28:19 +01:00
|
|
|
self.table.horizontalHeader().setResizeMode(
|
|
|
|
QtGui.QHeaderView.Interactive)
|
|
|
|
self.table.horizontalHeader().setStretchLastSection(True)
|
|
|
|
|
2017-12-20 22:33:39 +01:00
|
|
|
self.table.sortItems(self.columns_indices[self.sort_by_column],
|
|
|
|
self.sort_order)
|
|
|
|
|
|
|
|
self.context_menu = QtGui.QMenu(self)
|
|
|
|
|
|
|
|
self.context_menu.addAction(self.action_settings)
|
|
|
|
self.context_menu.addAction(self.action_editfwrules)
|
|
|
|
self.context_menu.addAction(self.action_appmenus)
|
|
|
|
self.context_menu.addAction(self.action_set_keyboard_layout)
|
|
|
|
self.context_menu.addSeparator()
|
|
|
|
|
|
|
|
self.context_menu.addAction(self.action_updatevm)
|
|
|
|
self.context_menu.addAction(self.action_run_command_in_vm)
|
|
|
|
self.context_menu.addAction(self.action_resumevm)
|
|
|
|
self.context_menu.addAction(self.action_startvm_tools_install)
|
|
|
|
self.context_menu.addAction(self.action_pausevm)
|
|
|
|
self.context_menu.addAction(self.action_shutdownvm)
|
|
|
|
self.context_menu.addAction(self.action_restartvm)
|
|
|
|
self.context_menu.addAction(self.action_killvm)
|
|
|
|
self.context_menu.addSeparator()
|
|
|
|
|
|
|
|
self.context_menu.addAction(self.action_clonevm)
|
|
|
|
self.context_menu.addAction(self.action_removevm)
|
|
|
|
self.context_menu.addSeparator()
|
|
|
|
|
|
|
|
self.context_menu.addMenu(self.logs_menu)
|
|
|
|
self.context_menu.addSeparator()
|
|
|
|
|
|
|
|
self.tools_context_menu = QtGui.QMenu(self)
|
|
|
|
self.tools_context_menu.addAction(self.action_toolbar)
|
|
|
|
self.tools_context_menu.addAction(self.action_menubar)
|
|
|
|
|
|
|
|
self.connect(
|
|
|
|
self.table.horizontalHeader(),
|
|
|
|
QtCore.SIGNAL("sortIndicatorChanged(int, Qt::SortOrder)"),
|
2018-01-08 03:06:42 +01:00
|
|
|
self.sort_indicator_changed)
|
2017-12-20 22:33:39 +01:00
|
|
|
self.connect(self.table,
|
|
|
|
QtCore.SIGNAL("customContextMenuRequested(const QPoint&)"),
|
|
|
|
self.open_context_menu)
|
|
|
|
self.connect(self.menubar,
|
|
|
|
QtCore.SIGNAL("customContextMenuRequested(const QPoint&)"),
|
|
|
|
lambda pos: self.open_tools_context_menu(self.menubar,
|
|
|
|
pos))
|
2018-01-10 01:54:30 +01:00
|
|
|
self.connect(self.toolbar,
|
2017-12-20 22:33:39 +01:00
|
|
|
QtCore.SIGNAL("customContextMenuRequested(const QPoint&)"),
|
2018-01-10 01:54:30 +01:00
|
|
|
lambda pos: self.open_tools_context_menu(self.toolbar,
|
2017-12-20 22:33:39 +01:00
|
|
|
pos))
|
|
|
|
self.connect(self.logs_menu, QtCore.SIGNAL("triggered(QAction *)"),
|
|
|
|
self.show_log)
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
self.connect(self.searchbox,
|
|
|
|
QtCore.SIGNAL("textChanged(const QString&)"),
|
2017-12-20 22:33:39 +01:00
|
|
|
self.do_search)
|
|
|
|
|
|
|
|
self.table.setContentsMargins(0, 0, 0, 0)
|
|
|
|
self.centralwidget.layout().setContentsMargins(0, 0, 0, 0)
|
|
|
|
self.layout().setContentsMargins(0, 0, 0, 0)
|
|
|
|
|
|
|
|
self.connect(self.action_menubar, QtCore.SIGNAL("toggled(bool)"),
|
|
|
|
self.showhide_menubar)
|
|
|
|
self.connect(self.action_toolbar, QtCore.SIGNAL("toggled(bool)"),
|
|
|
|
self.showhide_toolbar)
|
|
|
|
|
|
|
|
self.load_manager_settings()
|
|
|
|
|
|
|
|
self.fill_table()
|
|
|
|
|
|
|
|
self.counter = 0
|
|
|
|
self.update_size_on_disk = False
|
|
|
|
self.shutdown_monitor = {}
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
def load_manager_settings(self):
|
2017-12-20 22:33:39 +01:00
|
|
|
# visible columns
|
2018-01-10 01:54:30 +01:00
|
|
|
self.visible_columns_count = 0
|
2018-01-08 03:06:42 +01:00
|
|
|
for col in self.columns_indices:
|
2018-01-05 17:31:15 +01:00
|
|
|
col_no = self.columns_indices[col]
|
|
|
|
visible = self.manager_settings.value(
|
|
|
|
'columns/%s' % col,
|
2018-01-08 03:06:42 +01:00
|
|
|
defaultValue="true")
|
2018-01-05 17:31:15 +01:00
|
|
|
self.columns_actions[col_no].setChecked(visible == "true")
|
2018-01-10 01:54:30 +01:00
|
|
|
self.visible_columns_count += 1
|
2018-01-05 17:31:15 +01:00
|
|
|
|
|
|
|
self.sort_by_column = str(
|
|
|
|
self.manager_settings.value("view/sort_column",
|
|
|
|
defaultValue=self.sort_by_column))
|
|
|
|
self.sort_order = QtCore.Qt.SortOrder(
|
|
|
|
self.manager_settings.value("view/sort_order",
|
2018-01-08 03:06:42 +01:00
|
|
|
defaultValue=self.sort_order))
|
2018-01-05 17:31:15 +01:00
|
|
|
self.table.sortItems(self.columns_indices[self.sort_by_column],
|
|
|
|
self.sort_order)
|
|
|
|
if not self.manager_settings.value("view/menubar_visible",
|
|
|
|
defaultValue=True):
|
|
|
|
self.action_menubar.setChecked(False)
|
|
|
|
if not self.manager_settings.value("view/toolbar_visible",
|
|
|
|
defaultValue=True):
|
|
|
|
self.action_toolbar.setChecked(False)
|
2017-12-20 22:33:39 +01:00
|
|
|
self.settings_loaded = True
|
|
|
|
|
|
|
|
def get_vms_list(self):
|
2018-01-08 02:46:41 +01:00
|
|
|
return [vm for vm in self.qubes_app.domains]
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-02-09 21:35:06 +01:00
|
|
|
def update_single_row(self, vm):
|
2018-02-10 23:41:36 +01:00
|
|
|
# this fuction should be used to update a row that already exists
|
|
|
|
# to add a row, one needs to use the update_table function - the
|
|
|
|
# whole table needs to be redrawn (and sorted)
|
2018-02-09 21:35:06 +01:00
|
|
|
if vm in self.qubes_app.domains:
|
|
|
|
self.vms_in_table[vm.qid].update()
|
2018-02-10 23:41:36 +01:00
|
|
|
else:
|
|
|
|
self.update_table()
|
2018-02-09 21:35:06 +01:00
|
|
|
|
2017-12-20 22:33:39 +01:00
|
|
|
def fill_table(self):
|
|
|
|
# save current selection
|
|
|
|
row_index = self.table.currentRow()
|
|
|
|
selected_qid = -1
|
|
|
|
if row_index != -1:
|
|
|
|
vm_item = self.table.item(row_index, self.columns_indices["Name"])
|
|
|
|
if vm_item:
|
|
|
|
selected_qid = vm_item.qid
|
|
|
|
|
|
|
|
self.table.setSortingEnabled(False)
|
|
|
|
self.table.clearContents()
|
|
|
|
vms_list = self.get_vms_list()
|
|
|
|
|
|
|
|
vms_in_table = {}
|
|
|
|
|
|
|
|
row_no = 0
|
|
|
|
for vm in vms_list:
|
|
|
|
vm_row = VmRowInTable(vm, row_no, self.table)
|
|
|
|
vms_in_table[vm.qid] = vm_row
|
|
|
|
|
|
|
|
row_no += 1
|
|
|
|
|
|
|
|
self.table.setRowCount(row_no)
|
|
|
|
self.vms_list = vms_list
|
|
|
|
self.vms_in_table = vms_in_table
|
|
|
|
if selected_qid in vms_in_table.keys():
|
|
|
|
self.table.setCurrentItem(
|
|
|
|
self.vms_in_table[selected_qid].name_widget)
|
|
|
|
self.table.setSortingEnabled(True)
|
|
|
|
|
|
|
|
self.showhide_vms()
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
def showhide_vms(self):
|
2018-01-05 17:31:15 +01:00
|
|
|
if not self.search:
|
2017-12-20 22:33:39 +01:00
|
|
|
for row_no in range(self.table.rowCount()):
|
|
|
|
self.table.setRowHidden(row_no, False)
|
|
|
|
else:
|
|
|
|
for row_no in range(self.table.rowCount()):
|
|
|
|
widget = self.table.cellWidget(row_no,
|
|
|
|
self.columns_indices["State"])
|
2018-01-10 01:54:30 +01:00
|
|
|
show = (self.search in widget.vm.name)
|
2017-12-20 22:33:39 +01:00
|
|
|
self.table.setRowHidden(row_no, not show)
|
|
|
|
|
|
|
|
@QtCore.pyqtSlot(str)
|
|
|
|
def do_search(self, search):
|
|
|
|
self.search = str(search)
|
|
|
|
self.showhide_vms()
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_search_triggered')
|
|
|
|
def action_search_triggered(self):
|
|
|
|
self.searchbox.setFocus()
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
def update_table(self):
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
self.fill_table()
|
|
|
|
# TODO: instead of manually refreshing the entire table, use dbus events
|
|
|
|
|
|
|
|
# reapply sorting
|
|
|
|
if self.sort_by_column:
|
|
|
|
self.table.sortByColumn(self.columns_indices[self.sort_by_column])
|
|
|
|
|
|
|
|
self.table_selection_changed()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
# noinspection PyPep8Naming
|
2018-01-08 03:06:42 +01:00
|
|
|
def sort_indicator_changed(self, column, order):
|
|
|
|
self.sort_by_column = [name for name in self.columns_indices if
|
2017-12-20 22:33:39 +01:00
|
|
|
self.columns_indices[name] == column][0]
|
|
|
|
self.sort_order = order
|
|
|
|
if self.settings_loaded:
|
|
|
|
self.manager_settings.setValue('view/sort_column',
|
|
|
|
self.sort_by_column)
|
|
|
|
self.manager_settings.setValue('view/sort_order', self.sort_order)
|
|
|
|
self.manager_settings.sync()
|
|
|
|
|
|
|
|
def table_selection_changed(self):
|
|
|
|
|
|
|
|
vm = self.get_selected_vm()
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
if vm is not None and vm in self.qubes_app.domains:
|
|
|
|
|
|
|
|
# TODO: add boot from device to menu and add windows tools there
|
2017-12-20 22:33:39 +01:00
|
|
|
# Update available actions:
|
2018-01-08 02:46:41 +01:00
|
|
|
self.action_settings.setEnabled(vm.klass != 'AdminVM')
|
|
|
|
self.action_removevm.setEnabled(
|
|
|
|
vm.klass != 'AdminVM' and not vm.is_running())
|
2018-01-05 17:31:15 +01:00
|
|
|
self.action_clonevm.setEnabled(vm.klass != 'AdminVM')
|
2018-01-08 02:46:41 +01:00
|
|
|
self.action_resumevm.setEnabled(
|
|
|
|
not vm.is_running() or vm.get_power_state() == "Paused")
|
|
|
|
self.action_pausevm.setEnabled(
|
|
|
|
vm.is_running() and vm.get_power_state() != "Paused"
|
|
|
|
and vm.klass != 'AdminVM')
|
|
|
|
self.action_shutdownvm.setEnabled(
|
|
|
|
vm.is_running() and vm.get_power_state() != "Paused"
|
|
|
|
and vm.klass != 'AdminVM')
|
|
|
|
self.action_restartvm.setEnabled(
|
|
|
|
vm.is_running() and vm.get_power_state() != "Paused"
|
2018-01-10 01:54:30 +01:00
|
|
|
and vm.klass != 'AdminVM' and vm.klass != 'DispVM')
|
2018-01-08 02:46:41 +01:00
|
|
|
self.action_killvm.setEnabled(
|
|
|
|
(vm.get_power_state() == "Paused" or vm.is_running())
|
|
|
|
and vm.klass != 'AdminVM')
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
self.action_appmenus.setEnabled(
|
2018-01-10 01:54:30 +01:00
|
|
|
vm.klass != 'AdminVM' and vm.klass != 'DispVM'
|
2018-01-05 17:31:15 +01:00
|
|
|
and not vm.features.get('internal', False))
|
2018-01-08 02:46:41 +01:00
|
|
|
self.action_editfwrules.setEnabled(vm.klass != 'AdminVM')
|
|
|
|
self.action_updatevm.setEnabled(getattr(vm, 'updateable', False)
|
|
|
|
or vm.qid == 0)
|
2018-01-05 17:31:15 +01:00
|
|
|
self.action_run_command_in_vm.setEnabled(
|
|
|
|
not vm.get_power_state() == "Paused" and vm.qid != 0)
|
|
|
|
self.action_set_keyboard_layout.setEnabled(
|
|
|
|
vm.qid != 0 and
|
2018-01-08 02:46:41 +01:00
|
|
|
vm.get_power_state() != "Paused" and vm.is_running())
|
2018-02-09 21:35:06 +01:00
|
|
|
|
|
|
|
self.update_single_row(vm)
|
2017-12-20 22:33:39 +01:00
|
|
|
else:
|
|
|
|
self.action_settings.setEnabled(False)
|
|
|
|
self.action_removevm.setEnabled(False)
|
|
|
|
self.action_clonevm.setEnabled(False)
|
|
|
|
self.action_resumevm.setEnabled(False)
|
|
|
|
self.action_pausevm.setEnabled(False)
|
|
|
|
self.action_shutdownvm.setEnabled(False)
|
|
|
|
self.action_restartvm.setEnabled(False)
|
|
|
|
self.action_killvm.setEnabled(False)
|
|
|
|
self.action_appmenus.setEnabled(False)
|
|
|
|
self.action_editfwrules.setEnabled(False)
|
|
|
|
self.action_updatevm.setEnabled(False)
|
|
|
|
self.action_run_command_in_vm.setEnabled(False)
|
|
|
|
self.action_set_keyboard_layout.setEnabled(False)
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_createvm_triggered')
|
2018-01-08 03:06:42 +01:00
|
|
|
def action_createvm_triggered(self): # pylint: disable=no-self-use
|
2018-01-05 17:31:15 +01:00
|
|
|
subprocess.check_call('qubes-vm-create')
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
def get_selected_vm(self):
|
|
|
|
# vm selection relies on the VmInfo widget's value used
|
|
|
|
# for sorting by VM name
|
|
|
|
row_index = self.table.currentRow()
|
|
|
|
if row_index != -1:
|
|
|
|
vm_item = self.table.item(row_index, self.columns_indices["Name"])
|
|
|
|
# here is possible race with update_table timer so check
|
|
|
|
# if really got the item
|
|
|
|
if vm_item is None:
|
|
|
|
return None
|
|
|
|
qid = vm_item.qid
|
|
|
|
assert self.vms_in_table[qid] is not None
|
|
|
|
vm = self.vms_in_table[qid].vm
|
|
|
|
return vm
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_removevm_triggered')
|
2018-01-08 02:46:41 +01:00
|
|
|
def action_removevm_triggered(self):
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
vm = self.get_selected_vm()
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
if vm.klass == 'TemplateVM':
|
2018-01-05 17:31:15 +01:00
|
|
|
dependent_vms = 0
|
2018-01-08 02:46:41 +01:00
|
|
|
for single_vm in self.qubes_app.domains:
|
2018-01-05 17:31:15 +01:00
|
|
|
if getattr(single_vm, 'template', None) == vm:
|
|
|
|
dependent_vms += 1
|
|
|
|
if dependent_vms > 0:
|
2017-12-20 22:33:39 +01:00
|
|
|
QtGui.QMessageBox.warning(
|
|
|
|
None, self.tr("Warning!"),
|
2018-01-08 03:01:02 +01:00
|
|
|
self.tr("This Template Qube cannot be removed, "
|
|
|
|
"because there is at least one Qube that is based "
|
2018-01-05 17:31:15 +01:00
|
|
|
"on it.<br><small>If you want to remove this "
|
2018-01-08 03:01:02 +01:00
|
|
|
"Template Qube and all the Qubes based on it, you "
|
|
|
|
"should first remove each individual Qube that "
|
2018-01-05 17:31:15 +01:00
|
|
|
"uses this template.</small>"))
|
2017-12-20 22:33:39 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
(requested_name, ok) = QtGui.QInputDialog.getText(
|
2018-01-08 03:01:02 +01:00
|
|
|
None, self.tr("Qube Removal Confirmation"),
|
|
|
|
self.tr("Are you sure you want to remove the Qube <b>'{0}'</b>"
|
|
|
|
"?<br> All data on this Qube's private storage will be "
|
|
|
|
"lost!<br><br>Type the name of the Qube (<b>{1}</b>) below "
|
|
|
|
"to confirm:").format(vm.name, vm.name))
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
if not ok:
|
|
|
|
# user clicked cancel
|
|
|
|
return
|
|
|
|
|
|
|
|
elif requested_name != vm.name:
|
|
|
|
# name did not match
|
2018-01-05 17:31:15 +01:00
|
|
|
QtGui.QMessageBox.warning(
|
|
|
|
None,
|
2018-01-08 03:01:02 +01:00
|
|
|
self.tr("Qube removal confirmation failed"),
|
2018-01-05 17:31:15 +01:00
|
|
|
self.tr(
|
|
|
|
"Entered name did not match! Not removing "
|
|
|
|
"{0}.").format(vm.name))
|
2017-12-20 22:33:39 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
else:
|
|
|
|
# remove the VM
|
|
|
|
t_monitor = thread_monitor.ThreadMonitor()
|
|
|
|
thread = threading.Thread(target=self.do_remove_vm,
|
2018-01-08 02:46:41 +01:00
|
|
|
args=(vm, self.qubes_app, t_monitor))
|
2017-12-20 22:33:39 +01:00
|
|
|
thread.daemon = True
|
|
|
|
thread.start()
|
|
|
|
|
|
|
|
progress = QtGui.QProgressDialog(
|
2018-01-08 03:01:02 +01:00
|
|
|
self.tr(
|
|
|
|
"Removing Qube: <b>{0}</b>...").format(vm.name), "", 0, 0)
|
2017-12-20 22:33:39 +01:00
|
|
|
progress.setCancelButton(None)
|
|
|
|
progress.setModal(True)
|
|
|
|
progress.show()
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
while not t_monitor.is_finished():
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qt_app.processEvents()
|
2017-12-20 22:33:39 +01:00
|
|
|
time.sleep(0.1)
|
|
|
|
|
|
|
|
progress.hide()
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
if t_monitor.success:
|
|
|
|
pass
|
2017-12-20 22:33:39 +01:00
|
|
|
else:
|
2018-01-08 03:01:02 +01:00
|
|
|
QtGui.QMessageBox.warning(None, self.tr("Error removing Qube!"),
|
2018-01-05 17:31:15 +01:00
|
|
|
self.tr("ERROR: {0}").format(
|
|
|
|
t_monitor.error_msg))
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
self.update_table()
|
|
|
|
|
2017-12-20 22:33:39 +01:00
|
|
|
@staticmethod
|
2018-01-08 02:46:41 +01:00
|
|
|
def do_remove_vm(vm, qubes_app, t_monitor):
|
2017-12-20 22:33:39 +01:00
|
|
|
try:
|
2018-01-08 02:46:41 +01:00
|
|
|
del qubes_app.domains[vm.name]
|
2018-01-08 03:06:42 +01:00
|
|
|
except exc.QubesException as ex:
|
2018-01-05 17:31:15 +01:00
|
|
|
t_monitor.set_error_msg(str(ex))
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
t_monitor.set_finished()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_clonevm_triggered')
|
2018-01-08 02:46:41 +01:00
|
|
|
def action_clonevm_triggered(self):
|
2017-12-20 22:33:39 +01:00
|
|
|
vm = self.get_selected_vm()
|
|
|
|
|
|
|
|
name_number = 1
|
|
|
|
name_format = vm.name + '-clone-%d'
|
2018-01-08 02:46:41 +01:00
|
|
|
while name_format % name_number in self.qubes_app.domains.keys():
|
2017-12-20 22:33:39 +01:00
|
|
|
name_number += 1
|
|
|
|
|
|
|
|
(clone_name, ok) = QtGui.QInputDialog.getText(
|
2018-01-08 03:01:02 +01:00
|
|
|
self, self.tr('Qubes clone Qube'),
|
|
|
|
self.tr('Enter name for Qube <b>{}</b> clone:').format(vm.name),
|
2017-12-20 22:33:39 +01:00
|
|
|
text=(name_format % name_number))
|
|
|
|
if not ok or clone_name == "":
|
|
|
|
return
|
|
|
|
|
|
|
|
t_monitor = thread_monitor.ThreadMonitor()
|
|
|
|
thread = threading.Thread(target=self.do_clone_vm,
|
2018-01-08 02:46:41 +01:00
|
|
|
args=(vm, self.qubes_app,
|
2018-01-05 17:31:15 +01:00
|
|
|
clone_name, t_monitor))
|
2017-12-20 22:33:39 +01:00
|
|
|
thread.daemon = True
|
|
|
|
thread.start()
|
|
|
|
|
|
|
|
progress = QtGui.QProgressDialog(
|
2018-01-08 03:01:02 +01:00
|
|
|
self.tr("Cloning Qube <b>{0}</b> to <b>{1}</b>...").format(
|
2018-01-05 17:31:15 +01:00
|
|
|
vm.name, clone_name), "", 0, 0)
|
2017-12-20 22:33:39 +01:00
|
|
|
progress.setCancelButton(None)
|
|
|
|
progress.setModal(True)
|
|
|
|
progress.show()
|
|
|
|
|
|
|
|
while not t_monitor.is_finished():
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qt_app.processEvents()
|
2017-12-20 22:33:39 +01:00
|
|
|
time.sleep(0.2)
|
|
|
|
|
|
|
|
progress.hide()
|
|
|
|
|
|
|
|
if not t_monitor.success:
|
2018-01-05 17:31:15 +01:00
|
|
|
QtGui.QMessageBox.warning(
|
|
|
|
None,
|
2018-01-08 03:01:02 +01:00
|
|
|
self.tr("Error while cloning Qube"),
|
2018-01-05 17:31:15 +01:00
|
|
|
self.tr("Exception while cloning:<br>{0}").format(
|
|
|
|
t_monitor.error_msg))
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
self.update_table()
|
|
|
|
|
2017-12-20 22:33:39 +01:00
|
|
|
@staticmethod
|
2018-01-08 02:46:41 +01:00
|
|
|
def do_clone_vm(src_vm, qubes_app, dst_name, t_monitor):
|
2017-12-20 22:33:39 +01:00
|
|
|
dst_vm = None
|
|
|
|
try:
|
2018-01-08 02:46:41 +01:00
|
|
|
dst_vm = qubes_app.clone_vm(src_vm, dst_name)
|
2018-01-08 03:06:42 +01:00
|
|
|
except exc.QubesException as ex:
|
2018-01-05 17:31:15 +01:00
|
|
|
t_monitor.set_error_msg(str(ex))
|
2018-01-08 02:46:41 +01:00
|
|
|
if dst_vm:
|
|
|
|
pass
|
2018-01-05 17:31:15 +01:00
|
|
|
t_monitor.set_finished()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_resumevm_triggered')
|
|
|
|
def action_resumevm_triggered(self):
|
|
|
|
vm = self.get_selected_vm()
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
if vm.get_power_state() in ["Paused", "Suspended"]:
|
|
|
|
try:
|
|
|
|
vm.unpause()
|
2018-01-08 03:06:42 +01:00
|
|
|
except exc.QubesException as ex:
|
2018-01-08 03:01:02 +01:00
|
|
|
QtGui.QMessageBox.warning(
|
|
|
|
None, self.tr("Error unpausing Qube!"),
|
|
|
|
self.tr("ERROR: {0}").format(ex))
|
2018-01-05 17:31:15 +01:00
|
|
|
return
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
self.start_vm(vm)
|
2018-02-09 21:35:06 +01:00
|
|
|
self.update_single_row(vm)
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
def start_vm(self, vm):
|
|
|
|
if vm.is_running():
|
|
|
|
return
|
2017-12-20 22:33:39 +01:00
|
|
|
t_monitor = thread_monitor.ThreadMonitor()
|
|
|
|
thread = threading.Thread(target=self.do_start_vm,
|
|
|
|
args=(vm, t_monitor))
|
|
|
|
thread.daemon = True
|
|
|
|
thread.start()
|
|
|
|
|
|
|
|
while not t_monitor.is_finished():
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qt_app.processEvents()
|
2017-12-20 22:33:39 +01:00
|
|
|
time.sleep(0.1)
|
|
|
|
|
2018-01-05 17:31:15 +01:00
|
|
|
if not t_monitor.success:
|
2018-01-08 03:06:42 +01:00
|
|
|
QtGui.QMessageBox.warning(
|
|
|
|
None,
|
|
|
|
self.tr("Error starting Qube!"),
|
|
|
|
self.tr("ERROR: {0}").format(t_monitor.error_msg))
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-02-09 21:35:06 +01:00
|
|
|
self.update_single_row(vm)
|
2018-01-08 02:46:41 +01:00
|
|
|
|
2017-12-20 22:33:39 +01:00
|
|
|
@staticmethod
|
|
|
|
def do_start_vm(vm, t_monitor):
|
|
|
|
try:
|
|
|
|
vm.start()
|
2018-01-08 03:06:42 +01:00
|
|
|
except exc.QubesException as ex:
|
2017-12-20 22:33:39 +01:00
|
|
|
t_monitor.set_error_msg(str(ex))
|
|
|
|
t_monitor.set_finished()
|
|
|
|
return
|
|
|
|
|
|
|
|
t_monitor.set_finished()
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_startvm_tools_install_triggered')
|
2018-01-05 17:31:15 +01:00
|
|
|
# TODO: replace with boot from device
|
2017-12-20 22:33:39 +01:00
|
|
|
def action_startvm_tools_install_triggered(self):
|
2018-01-08 03:06:42 +01:00
|
|
|
# pylint: disable=invalid-name
|
2018-01-08 02:46:41 +01:00
|
|
|
pass
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
@QtCore.pyqtSlot(name='on_action_pausevm_triggered')
|
|
|
|
def action_pausevm_triggered(self):
|
|
|
|
vm = self.get_selected_vm()
|
|
|
|
assert vm.is_running()
|
|
|
|
try:
|
|
|
|
vm.pause()
|
2018-02-09 21:35:06 +01:00
|
|
|
self.update_single_row(vm)
|
2018-01-08 03:06:42 +01:00
|
|
|
except exc.QubesException as ex:
|
2018-01-05 17:31:15 +01:00
|
|
|
QtGui.QMessageBox.warning(
|
|
|
|
None,
|
2018-01-08 03:01:02 +01:00
|
|
|
self.tr("Error pausing Qube!"),
|
2018-01-05 17:31:15 +01:00
|
|
|
self.tr("ERROR: {0}").format(ex))
|
2017-12-20 22:33:39 +01:00
|
|
|
return
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_shutdownvm_triggered')
|
|
|
|
def action_shutdownvm_triggered(self):
|
|
|
|
vm = self.get_selected_vm()
|
|
|
|
assert vm.is_running()
|
|
|
|
|
|
|
|
reply = QtGui.QMessageBox.question(
|
2018-01-08 03:01:02 +01:00
|
|
|
None, self.tr("Qube Shutdown Confirmation"),
|
|
|
|
self.tr("Are you sure you want to power down the Qube"
|
2018-01-05 17:31:15 +01:00
|
|
|
" <b>'{0}'</b>?<br><small>This will shutdown all the "
|
2018-01-08 03:01:02 +01:00
|
|
|
"running applications within this Qube.</small>").format(
|
2018-01-05 17:31:15 +01:00
|
|
|
vm.name), QtGui.QMessageBox.Yes | QtGui.QMessageBox.Cancel)
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qt_app.processEvents()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
if reply == QtGui.QMessageBox.Yes:
|
|
|
|
self.shutdown_vm(vm)
|
|
|
|
|
2018-02-09 21:35:06 +01:00
|
|
|
self.update_single_row(vm)
|
2018-01-08 02:46:41 +01:00
|
|
|
|
2017-12-20 22:33:39 +01:00
|
|
|
def shutdown_vm(self, vm, shutdown_time=vm_shutdown_timeout,
|
2018-01-05 17:31:15 +01:00
|
|
|
check_time=vm_restart_check_timeout, and_restart=False):
|
2017-12-20 22:33:39 +01:00
|
|
|
try:
|
|
|
|
vm.shutdown()
|
2018-01-08 03:06:42 +01:00
|
|
|
except exc.QubesException as ex:
|
2018-01-05 17:31:15 +01:00
|
|
|
QtGui.QMessageBox.warning(
|
|
|
|
None,
|
2018-01-08 03:01:02 +01:00
|
|
|
self.tr("Error shutting down Qube!"),
|
2018-01-05 17:31:15 +01:00
|
|
|
self.tr("ERROR: {0}").format(ex))
|
2017-12-20 22:33:39 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
self.shutdown_monitor[vm.qid] = VmShutdownMonitor(vm, shutdown_time,
|
2018-01-05 17:31:15 +01:00
|
|
|
check_time,
|
|
|
|
and_restart, self)
|
2017-12-20 22:33:39 +01:00
|
|
|
# noinspection PyCallByClass,PyTypeChecker
|
|
|
|
QtCore.QTimer.singleShot(check_time, self.shutdown_monitor[
|
|
|
|
vm.qid].check_if_vm_has_shutdown)
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_restartvm_triggered')
|
|
|
|
def action_restartvm_triggered(self):
|
|
|
|
vm = self.get_selected_vm()
|
|
|
|
assert vm.is_running()
|
|
|
|
|
|
|
|
reply = QtGui.QMessageBox.question(
|
2018-01-08 03:01:02 +01:00
|
|
|
None, self.tr("Qube Restart Confirmation"),
|
|
|
|
self.tr("Are you sure you want to restart the Qube <b>'{0}'</b>?"
|
|
|
|
"<br><small>This will shutdown all the running "
|
|
|
|
"applications within this Qube.</small>").format(vm.name),
|
2017-12-20 22:33:39 +01:00
|
|
|
QtGui.QMessageBox.Yes | QtGui.QMessageBox.Cancel)
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qt_app.processEvents()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
if reply == QtGui.QMessageBox.Yes:
|
|
|
|
self.shutdown_vm(vm, and_restart=True)
|
|
|
|
|
2018-02-09 21:35:06 +01:00
|
|
|
self.update_single_row(vm)
|
2018-01-08 02:46:41 +01:00
|
|
|
|
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_killvm_triggered')
|
|
|
|
def action_killvm_triggered(self):
|
|
|
|
vm = self.get_selected_vm()
|
|
|
|
assert vm.is_running() or vm.is_paused()
|
|
|
|
|
|
|
|
reply = QtGui.QMessageBox.question(
|
2018-01-08 03:01:02 +01:00
|
|
|
None, self.tr("Qube Kill Confirmation"),
|
|
|
|
self.tr("Are you sure you want to kill the Qube <b>'{0}'</b>?<br>"
|
2018-01-05 17:31:15 +01:00
|
|
|
"<small>This will end <b>(not shutdown!)</b> all the "
|
2018-01-08 03:01:02 +01:00
|
|
|
"running applications within this Qube.</small>").format(
|
2018-01-05 17:31:15 +01:00
|
|
|
vm.name),
|
2017-12-20 22:33:39 +01:00
|
|
|
QtGui.QMessageBox.Yes | QtGui.QMessageBox.Cancel,
|
|
|
|
QtGui.QMessageBox.Cancel)
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qt_app.processEvents()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
if reply == QtGui.QMessageBox.Yes:
|
|
|
|
try:
|
|
|
|
vm.force_shutdown()
|
2018-01-08 03:06:42 +01:00
|
|
|
except exc.QubesException as ex:
|
2017-12-20 22:33:39 +01:00
|
|
|
QtGui.QMessageBox.critical(
|
2018-01-08 03:01:02 +01:00
|
|
|
None, self.tr("Error while killing Qube!"),
|
2018-01-05 17:31:15 +01:00
|
|
|
self.tr(
|
|
|
|
"<b>An exception ocurred while killing {0}.</b><br>"
|
|
|
|
"ERROR: {1}").format(vm.name, ex))
|
2017-12-20 22:33:39 +01:00
|
|
|
return
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_settings_triggered')
|
|
|
|
def action_settings_triggered(self):
|
2018-01-05 17:31:15 +01:00
|
|
|
vm = self.get_selected_vm()
|
2018-01-08 02:46:41 +01:00
|
|
|
if vm:
|
|
|
|
settings_window = settings.VMSettingsWindow(
|
|
|
|
vm, self.qt_app, "basic")
|
|
|
|
settings_window.exec_()
|
2018-02-09 21:35:06 +01:00
|
|
|
self.update_single_row(vm)
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_appmenus_triggered')
|
|
|
|
def action_appmenus_triggered(self):
|
2018-01-08 02:46:41 +01:00
|
|
|
vm = self.get_selected_vm()
|
|
|
|
if vm:
|
|
|
|
settings_window = settings.VMSettingsWindow(
|
|
|
|
vm, self.qt_app, "applications")
|
|
|
|
settings_window.exec_()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
|
|
|
@QtCore.pyqtSlot(name='on_action_refresh_list_triggered')
|
|
|
|
def action_refresh_list_triggered(self):
|
2018-02-09 21:59:43 +01:00
|
|
|
self.qubes_app.domains.clear_cache()
|
2018-01-08 02:46:41 +01:00
|
|
|
self.update_table()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_updatevm_triggered')
|
|
|
|
def action_updatevm_triggered(self):
|
|
|
|
vm = self.get_selected_vm()
|
|
|
|
|
|
|
|
if not vm.is_running():
|
|
|
|
reply = QtGui.QMessageBox.question(
|
2018-01-08 03:01:02 +01:00
|
|
|
None, self.tr("Qube Update Confirmation"),
|
2018-01-08 02:46:41 +01:00
|
|
|
self.tr(
|
2018-01-08 03:01:02 +01:00
|
|
|
"<b>{0}</b><br>The Qube has to be running to be updated."
|
|
|
|
"<br>Do you want to start it?<br>").format(vm.name),
|
2017-12-20 22:33:39 +01:00
|
|
|
QtGui.QMessageBox.Yes | QtGui.QMessageBox.Cancel)
|
|
|
|
if reply != QtGui.QMessageBox.Yes:
|
|
|
|
return
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qt_app.processEvents()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
t_monitor = thread_monitor.ThreadMonitor()
|
|
|
|
thread = threading.Thread(target=self.do_update_vm,
|
|
|
|
args=(vm, t_monitor))
|
|
|
|
thread.daemon = True
|
|
|
|
thread.start()
|
|
|
|
|
|
|
|
progress = QtGui.QProgressDialog(
|
2018-01-08 02:46:41 +01:00
|
|
|
self.tr(
|
|
|
|
"<b>{0}</b><br>Please wait for the updater to "
|
|
|
|
"launch...").format(vm.name), "", 0, 0)
|
2017-12-20 22:33:39 +01:00
|
|
|
progress.setCancelButton(None)
|
|
|
|
progress.setModal(True)
|
|
|
|
progress.show()
|
|
|
|
|
|
|
|
while not t_monitor.is_finished():
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qt_app.processEvents()
|
2017-12-20 22:33:39 +01:00
|
|
|
time.sleep(0.2)
|
|
|
|
|
|
|
|
progress.hide()
|
|
|
|
|
|
|
|
if vm.qid != 0:
|
|
|
|
if not t_monitor.success:
|
2018-01-08 02:46:41 +01:00
|
|
|
QtGui.QMessageBox.warning(
|
|
|
|
None,
|
2018-01-08 03:01:02 +01:00
|
|
|
self.tr("Error on Qube update!"),
|
2018-01-08 02:46:41 +01:00
|
|
|
self.tr("ERROR: {0}").format(t_monitor.error_msg))
|
|
|
|
|
2018-02-09 21:35:06 +01:00
|
|
|
self.update_single_row(vm)
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
@staticmethod
|
2018-01-08 02:46:41 +01:00
|
|
|
def do_update_vm(vm, t_monitor):
|
2017-12-20 22:33:39 +01:00
|
|
|
try:
|
|
|
|
if vm.qid == 0:
|
|
|
|
subprocess.check_call(
|
|
|
|
["/usr/bin/qubes-dom0-update", "--clean", "--gui"])
|
|
|
|
else:
|
|
|
|
if not vm.is_running():
|
|
|
|
vm.start()
|
2018-01-08 02:46:41 +01:00
|
|
|
vm.run_service("qubes.InstallUpdatesGUI",
|
2017-12-20 22:33:39 +01:00
|
|
|
user="root", wait=False)
|
2018-01-08 03:06:42 +01:00
|
|
|
except (ChildProcessError, exc.QubesException) as ex:
|
2018-01-08 02:46:41 +01:00
|
|
|
t_monitor.set_error_msg(str(ex))
|
|
|
|
t_monitor.set_finished()
|
2017-12-20 22:33:39 +01:00
|
|
|
return
|
2018-01-08 02:46:41 +01:00
|
|
|
t_monitor.set_finished()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_run_command_in_vm_triggered')
|
|
|
|
def action_run_command_in_vm_triggered(self):
|
2018-01-08 03:06:42 +01:00
|
|
|
# pylint: disable=invalid-name
|
2017-12-20 22:33:39 +01:00
|
|
|
vm = self.get_selected_vm()
|
|
|
|
|
|
|
|
(command_to_run, ok) = QtGui.QInputDialog.getText(
|
|
|
|
self, self.tr('Qubes command entry'),
|
|
|
|
self.tr('Run command in <b>{}</b>:').format(vm.name))
|
|
|
|
if not ok or command_to_run == "":
|
|
|
|
return
|
|
|
|
t_monitor = thread_monitor.ThreadMonitor()
|
|
|
|
thread = threading.Thread(target=self.do_run_command_in_vm, args=(
|
|
|
|
vm, command_to_run, t_monitor))
|
|
|
|
thread.daemon = True
|
|
|
|
thread.start()
|
|
|
|
|
|
|
|
while not t_monitor.is_finished():
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qt_app.processEvents()
|
2017-12-20 22:33:39 +01:00
|
|
|
time.sleep(0.2)
|
|
|
|
|
|
|
|
if not t_monitor.success:
|
2018-01-08 02:46:41 +01:00
|
|
|
QtGui.QMessageBox.warning(
|
|
|
|
None, self.tr("Error while running command"),
|
2017-12-20 22:33:39 +01:00
|
|
|
self.tr("Exception while running command:<br>{0}").format(
|
|
|
|
t_monitor.error_msg))
|
|
|
|
|
|
|
|
@staticmethod
|
2018-01-05 17:31:15 +01:00
|
|
|
def do_run_command_in_vm(vm, command_to_run, t_monitor):
|
2017-12-20 22:33:39 +01:00
|
|
|
try:
|
2018-01-08 02:46:41 +01:00
|
|
|
vm.run(command_to_run)
|
2018-01-08 03:06:42 +01:00
|
|
|
except (ChildProcessError, exc.QubesException) as ex:
|
2018-01-05 17:31:15 +01:00
|
|
|
t_monitor.set_error_msg(str(ex))
|
|
|
|
t_monitor.set_finished()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_set_keyboard_layout_triggered')
|
|
|
|
def action_set_keyboard_layout_triggered(self):
|
2018-01-08 03:06:42 +01:00
|
|
|
# pylint: disable=invalid-name
|
2017-12-20 22:33:39 +01:00
|
|
|
vm = self.get_selected_vm()
|
2018-01-08 02:46:41 +01:00
|
|
|
vm.run('qubes-change-keyboard-layout')
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_editfwrules_triggered')
|
|
|
|
def action_editfwrules_triggered(self):
|
2018-01-05 17:31:15 +01:00
|
|
|
vm = self.get_selected_vm()
|
2018-01-08 02:46:41 +01:00
|
|
|
settings_window = settings.VMSettingsWindow(vm, self.qt_app, "firewall")
|
2018-01-05 17:31:15 +01:00
|
|
|
settings_window.exec_()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_global_settings_triggered')
|
2018-01-08 03:06:42 +01:00
|
|
|
def action_global_settings_triggered(self): # pylint: disable=invalid-name
|
2018-01-05 17:31:15 +01:00
|
|
|
global_settings_window = global_settings.GlobalSettingsWindow(
|
2018-01-08 02:46:41 +01:00
|
|
|
self.qt_app,
|
|
|
|
self.qubes_app)
|
2018-01-05 17:31:15 +01:00
|
|
|
global_settings_window.exec_()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_show_network_triggered')
|
|
|
|
def action_show_network_triggered(self):
|
|
|
|
pass
|
2018-01-08 02:46:41 +01:00
|
|
|
# TODO: revive for 4.1
|
2017-12-20 22:33:39 +01:00
|
|
|
# network_notes_dialog = NetworkNotesDialog()
|
|
|
|
# network_notes_dialog.exec_()
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_restore_triggered')
|
|
|
|
def action_restore_triggered(self):
|
2018-01-08 02:46:41 +01:00
|
|
|
restore_window = restore.RestoreVMsWindow(self.qt_app, self.qubes_app)
|
2018-01-05 17:31:15 +01:00
|
|
|
restore_window.exec_()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_backup_triggered')
|
|
|
|
def action_backup_triggered(self):
|
2018-01-08 02:46:41 +01:00
|
|
|
backup_window = backup.BackupVMsWindow(self.qt_app, self.qubes_app)
|
2018-01-05 17:31:15 +01:00
|
|
|
backup_window.exec_()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
def showhide_menubar(self, checked):
|
|
|
|
self.menubar.setVisible(checked)
|
|
|
|
if not checked:
|
|
|
|
self.context_menu.addAction(self.action_menubar)
|
|
|
|
else:
|
|
|
|
self.context_menu.removeAction(self.action_menubar)
|
|
|
|
if self.settings_loaded:
|
|
|
|
self.manager_settings.setValue('view/menubar_visible', checked)
|
|
|
|
self.manager_settings.sync()
|
|
|
|
|
|
|
|
def showhide_toolbar(self, checked):
|
|
|
|
self.toolbar.setVisible(checked)
|
|
|
|
if not checked:
|
|
|
|
self.context_menu.addAction(self.action_toolbar)
|
|
|
|
else:
|
|
|
|
self.context_menu.removeAction(self.action_toolbar)
|
|
|
|
if self.settings_loaded:
|
|
|
|
self.manager_settings.setValue('view/toolbar_visible', checked)
|
|
|
|
self.manager_settings.sync()
|
|
|
|
|
|
|
|
def showhide_column(self, col_num, show):
|
|
|
|
self.table.setColumnHidden(col_num, not show)
|
2018-01-05 17:31:15 +01:00
|
|
|
|
2017-12-20 22:33:39 +01:00
|
|
|
val = 1 if show else -1
|
|
|
|
self.visible_columns_count += val
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
if self.visible_columns_count == 1:
|
2017-12-20 22:33:39 +01:00
|
|
|
# disable hiding the last one
|
2018-01-08 03:06:42 +01:00
|
|
|
for col in self.columns_actions:
|
|
|
|
if self.columns_actions[col].isChecked():
|
|
|
|
self.columns_actions[col].setEnabled(False)
|
2017-12-20 22:33:39 +01:00
|
|
|
break
|
2018-01-08 02:46:41 +01:00
|
|
|
elif self.visible_columns_count == 2 and val == 1:
|
2017-12-20 22:33:39 +01:00
|
|
|
# enable hiding previously disabled column
|
2018-01-08 03:06:42 +01:00
|
|
|
for col in self.columns_actions:
|
|
|
|
if not self.columns_actions[col].isEnabled():
|
|
|
|
self.columns_actions[col].setEnabled(True)
|
2017-12-20 22:33:39 +01:00
|
|
|
break
|
|
|
|
|
|
|
|
if self.settings_loaded:
|
2018-01-08 03:06:42 +01:00
|
|
|
col_name = [name for name in self.columns_indices if
|
2017-12-20 22:33:39 +01:00
|
|
|
self.columns_indices[name] == col_num][0]
|
|
|
|
self.manager_settings.setValue('columns/%s' % col_name, show)
|
|
|
|
self.manager_settings.sync()
|
|
|
|
|
|
|
|
def on_action_vm_type_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['Type'], checked)
|
|
|
|
|
|
|
|
def on_action_label_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['Label'], checked)
|
|
|
|
|
|
|
|
def on_action_name_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['Name'], checked)
|
|
|
|
|
|
|
|
def on_action_state_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['State'], checked)
|
|
|
|
|
|
|
|
def on_action_internal_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['Internal'], checked)
|
|
|
|
|
|
|
|
def on_action_ip_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['IP'], checked)
|
|
|
|
|
|
|
|
def on_action_backups_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['Backups'], checked)
|
|
|
|
|
|
|
|
def on_action_last_backup_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['Last backup'], checked)
|
|
|
|
|
|
|
|
def on_action_template_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['Template'], checked)
|
|
|
|
|
|
|
|
def on_action_netvm_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['NetVM'], checked)
|
|
|
|
|
|
|
|
def on_action_size_on_disk_toggled(self, checked):
|
|
|
|
self.showhide_column(self.columns_indices['Size'], checked)
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
# noinspection PyArgumentList
|
2017-12-20 22:33:39 +01:00
|
|
|
@QtCore.pyqtSlot(name='on_action_about_qubes_triggered')
|
2018-01-08 03:06:42 +01:00
|
|
|
def action_about_qubes_triggered(self): # pylint: disable=no-self-use
|
2017-12-20 22:33:39 +01:00
|
|
|
about = AboutDialog()
|
|
|
|
about.exec_()
|
|
|
|
|
2018-01-08 03:06:42 +01:00
|
|
|
def createPopupMenu(self): # pylint: disable=invalid-name
|
2017-12-20 22:33:39 +01:00
|
|
|
menu = QtGui.QMenu()
|
|
|
|
menu.addAction(self.action_toolbar)
|
|
|
|
menu.addAction(self.action_menubar)
|
|
|
|
return menu
|
|
|
|
|
|
|
|
def open_tools_context_menu(self, widget, point):
|
|
|
|
self.tools_context_menu.exec_(widget.mapToGlobal(point))
|
|
|
|
|
|
|
|
@QtCore.pyqtSlot('const QPoint&')
|
|
|
|
def open_context_menu(self, point):
|
|
|
|
vm = self.get_selected_vm()
|
|
|
|
|
|
|
|
# logs menu
|
|
|
|
self.logs_menu.clear()
|
|
|
|
|
|
|
|
if vm.qid == 0:
|
|
|
|
logfiles = ["/var/log/xen/console/hypervisor.log"]
|
|
|
|
else:
|
|
|
|
logfiles = [
|
|
|
|
"/var/log/xen/console/guest-" + vm.name + ".log",
|
|
|
|
"/var/log/xen/console/guest-" + vm.name + "-dm.log",
|
|
|
|
"/var/log/qubes/guid." + vm.name + ".log",
|
|
|
|
"/var/log/qubes/qrexec." + vm.name + ".log",
|
|
|
|
]
|
|
|
|
|
|
|
|
menu_empty = True
|
|
|
|
for logfile in logfiles:
|
|
|
|
if os.path.exists(logfile):
|
2018-01-08 02:46:41 +01:00
|
|
|
action = self.logs_menu.addAction(QtGui.QIcon(":/log.png"),
|
|
|
|
logfile)
|
|
|
|
action.setData(logfile)
|
2017-12-20 22:33:39 +01:00
|
|
|
menu_empty = False
|
|
|
|
|
|
|
|
self.logs_menu.setEnabled(not menu_empty)
|
|
|
|
self.context_menu.exec_(self.table.mapToGlobal(point))
|
|
|
|
|
|
|
|
@QtCore.pyqtSlot('QAction *')
|
|
|
|
def show_log(self, action):
|
2018-01-08 02:46:41 +01:00
|
|
|
log = str(action.data())
|
|
|
|
log_dlg = log_dialog.LogDialog(self.qt_app, log)
|
|
|
|
log_dlg.exec_()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Bases on the original code by:
|
|
|
|
# Copyright (c) 2002-2007 Pascal Varet <p.varet@gmail.com>
|
|
|
|
|
|
|
|
def handle_exception(exc_type, exc_value, exc_traceback):
|
2018-01-08 02:46:41 +01:00
|
|
|
|
2017-12-20 22:33:39 +01:00
|
|
|
filename, line, dummy, dummy = traceback.extract_tb(exc_traceback).pop()
|
|
|
|
filename = os.path.basename(filename)
|
|
|
|
error = "%s: %s" % (exc_type.__name__, exc_value)
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
strace = ""
|
|
|
|
stacktrace = traceback.extract_tb(exc_traceback)
|
|
|
|
while stacktrace:
|
|
|
|
(filename, line, func, txt) = stacktrace.pop()
|
|
|
|
strace += "----\n"
|
|
|
|
strace += "line: %s\n" % txt
|
|
|
|
strace += "func: %s\n" % func
|
|
|
|
strace += "line no.: %d\n" % line
|
|
|
|
strace += "file: %s\n" % filename
|
|
|
|
|
|
|
|
msg_box = QtGui.QMessageBox()
|
|
|
|
msg_box.setDetailedText(strace)
|
|
|
|
msg_box.setIcon(QtGui.QMessageBox.Critical)
|
|
|
|
msg_box.setWindowTitle("Houston, we have a problem...")
|
|
|
|
msg_box.setText("Whoops. A critical error has occured. "
|
|
|
|
"This is most likely a bug in Qubes Manager.<br><br>"
|
|
|
|
"<b><i>%s</i></b>" % error +
|
|
|
|
"<br/>at line <b>%d</b><br/>of file %s.<br/><br/>"
|
|
|
|
% (line, filename))
|
|
|
|
|
|
|
|
msg_box.exec_()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2018-01-08 02:46:41 +01:00
|
|
|
qt_app = QtGui.QApplication(sys.argv)
|
|
|
|
qt_app.setOrganizationName("The Qubes Project")
|
|
|
|
qt_app.setOrganizationDomain("http://qubes-os.org")
|
2018-01-08 03:01:02 +01:00
|
|
|
qt_app.setApplicationName("Qube Manager")
|
2018-01-08 02:46:41 +01:00
|
|
|
qt_app.setWindowIcon(QtGui.QIcon.fromTheme("qubes-manager"))
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
sys.excepthook = handle_exception
|
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
qubes_app = Qubes()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
manager_window = VmManagerWindow(qubes_app, qt_app)
|
2017-12-20 22:33:39 +01:00
|
|
|
|
2018-01-08 02:46:41 +01:00
|
|
|
manager_window.show()
|
|
|
|
manager_window.update_table()
|
|
|
|
qt_app.exec_()
|
2017-12-20 22:33:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|