qubes/tools: rewrite qvm-kill

Also new function, `error_runtime` for common parser.

fixes QubesOS/qubes-issues#1222
This commit is contained in:
Wojtek Porczyk 2015-10-05 18:06:02 +02:00
parent 015b01fe46
commit 15713cbf46
6 changed files with 87 additions and 67 deletions

View File

@ -1,23 +1,35 @@
.. program:: qvm-kill .. program:: qvm-kill
============================================ :program:`qvm-kill` -- forceful shutdown of a domain
:program:`qvm-kill` -- Kill the specified VM ====================================================
============================================
Synopsis Synopsis
======== --------
:command:`qvm-kill` [*options*] <*vm-name*>
:command:`qvm-kill` skel-manpage.py [-h] [--verbose] [--quiet] *VMNAME*
Options Options
======= -------
.. option:: --help, -h .. option:: --help, -h
Show this help message and exit show this help message and exit
.. option:: --verbose, -v
increase verbosity
.. option:: --quiet, -q
decrease verbosity
Authors Authors
======= -------
| Joanna Rutkowska <joanna at invisiblethingslab dot com> | Joanna Rutkowska <joanna at invisiblethingslab dot com>
| Rafal Wojtczuk <rafal at invisiblethingslab dot com> | Rafal Wojtczuk <rafal at invisiblethingslab dot com>
| Marek Marczykowski <marmarek at invisiblethingslab dot com> | Marek Marczykowski <marmarek at invisiblethingslab dot com>
| Wojtek Porczyk <woju at invisiblethingslab dot com>
.. vim: ts=3 sw=3 et tw=80

View File

@ -161,6 +161,14 @@ class QubesArgumentParser(argparse.ArgumentParser):
return namespace return namespace
def error_runtime(self, message):
'''Runtime error, without showing usage.
:param str message: message to show
'''
self.exit(1, '{}: error: {}\n'.format(self.prog, message))
def dont_run_as_root(self, namespace): def dont_run_as_root(self, namespace):
'''Prevent running as root. '''Prevent running as root.
@ -173,7 +181,8 @@ class QubesArgumentParser(argparse.ArgumentParser):
return return
if euid == 0 and not namespace.force_root: if euid == 0 and not namespace.force_root:
self.error('refusing to run as root; add --force-root to override') self.error_runtime(
'refusing to run as root; add --force-root to override')
@staticmethod @staticmethod

53
qubes/tools/qvm_kill.py Normal file
View File

@ -0,0 +1,53 @@
#!/usr/bin/python2 -O
# vim: fileencoding=utf-8
#
# The Qubes OS Project, https://www.qubes-os.org/
#
# Copyright (C) 2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
# Copyright (C) 2015 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 General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
'''qvm-kill - forceful shutdown'''
import qubes.tools
parser = qubes.tools.QubesArgumentParser(
description='forceful shutdown of a domain',
want_vm=True)
def main(args=None):
'''Main routine of :program:`qvm-kill`.
:param list args: Optional arguments to override those delivered from \
command line.
'''
args = parser.parse_args(args)
try:
args.vm.force_shutdown()
except (IOError, OSError, QubesException) as e:
parser.error_runtime(str(e))
return True
if __name__ == '__main__':
sys.exit(not main())

View File

@ -132,9 +132,10 @@ def main(args=None):
# notify_function= # notify_function=
except MemoryError: except MemoryError:
# TODO tray # TODO tray
parser.error('not enough memory to start domain {!r}'.format(vm.name)) parser.error_runtime(
'not enough memory to start domain {!r}'.format(vm.name))
except qubes.QubesException as e: except qubes.QubesException as e:
parser.error('Qubes error: {!r}'.format(e)) parser.error_runtime('Qubes error: {!r}'.format(e))
return True return True

View File

@ -1,56 +0,0 @@
#!/usr/bin/python2
# -*- encoding: utf8 -*-
#
# The Qubes OS Project, http://www.qubes-os.org
#
# Copyright (C) 2010 Joanna Rutkowska <joanna@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 General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
#
from qubes.qubes import QubesVmCollection,QubesException
from optparse import OptionParser
import subprocess
import sys
qubes_guid_path = "/usr/bin/qubes_guid"
def main():
usage = "usage: %prog [options] <vm-name>"
parser = OptionParser (usage)
(options, args) = parser.parse_args ()
if (len (args) != 1):
parser.error ("You must specify VM name!")
vmname = args[0]
qvm_collection = QubesVmCollection()
qvm_collection.lock_db_for_reading()
qvm_collection.load()
qvm_collection.unlock_db()
vm = qvm_collection.get_vm_by_name(vmname)
if vm is None:
print >> sys.stderr, "A VM with the name '{0}' does not exist in the system.".format(vmname)
exit(1)
try:
vm.force_shutdown()
except (IOError, OSError, QubesException) as err:
print >> sys.stderr, "ERROR: {0}".format(err)
exit (1)
main()

View File

@ -225,6 +225,7 @@ fi
%{python_sitelib}/qubes/tools/qmemmand.py* %{python_sitelib}/qubes/tools/qmemmand.py*
%{python_sitelib}/qubes/tools/qubes_create.py* %{python_sitelib}/qubes/tools/qubes_create.py*
%{python_sitelib}/qubes/tools/qvm_create.py* %{python_sitelib}/qubes/tools/qvm_create.py*
%{python_sitelib}/qubes/tools/qvm_kill.py*
%{python_sitelib}/qubes/tools/qvm_ls.py* %{python_sitelib}/qubes/tools/qvm_ls.py*
%{python_sitelib}/qubes/tools/qvm_prefs.py* %{python_sitelib}/qubes/tools/qvm_prefs.py*
%{python_sitelib}/qubes/tools/qvm_start.py* %{python_sitelib}/qubes/tools/qvm_start.py*