123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- # encoding=utf-8
- #
- # The Qubes OS Project, http://www.qubes-os.org
- #
- # Copyright (C) 2010-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 Lesser General Public License as published by
- # the Free Software Foundation; either version 2.1 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 Lesser 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/>.
- ''' Manipulate VM properties.'''
- from __future__ import print_function
- import sys
- import textwrap
- import qubesadmin
- import qubesadmin.tools
- import qubesadmin.utils
- import qubesadmin.vm
- def get_parser(vmname_nargs=1):
- '''Return argument parser for generic property-related tool'''
- parser = qubesadmin.tools.QubesArgumentParser(
- vmname_nargs=vmname_nargs)
- parser.add_argument('--help-properties',
- action='store_true',
- help='list all available properties with short descriptions and exit')
- parser.add_argument('--hide-default',
- action='store_true',
- help='Do not show properties that are set to the default value.')
- parser.add_argument('--get', '-g',
- action='store_true',
- help='Ignored; for compatibility with older scripts.')
- parser.add_argument('--set', '-s',
- action='store_true',
- help='Ignored; for compatibility with older scripts.')
- parser.add_argument('property', metavar='PROPERTY',
- nargs='?',
- help='name of the property to show or change')
- parser_value = parser.add_mutually_exclusive_group()
- parser_value.add_argument('value', metavar='VALUE',
- nargs='?',
- help='new value of the property')
- parser.add_argument('--default', '-D',
- dest='delete',
- action='store_true',
- help='reset property to its default value')
- return parser
- def process_actions(parser, args, target):
- '''Handle actions for generic property-related tool
- :param parser: argument parser used to produce args
- :param args: arguments to handle
- :param target: object on which actions should be performed
- '''
- # pylint: disable=no-else-return
- if args.help_properties:
- properties = target.property_list()
- width = max(len(prop) for prop in properties)
- wrapper = textwrap.TextWrapper(width=80,
- initial_indent=' ', subsequent_indent=' ' * (width + 6))
- for prop in sorted(properties):
- help_text = target.property_help(prop)
- print(wrapper.fill('{name:{width}s} {help_text!s}'.format(
- name=prop, width=width, help_text=help_text)))
- return 0
- if args.property is None:
- # fetch all the properties with one Admin API call, instead of issuing
- # one call per property
- args.app.cache_enabled = True
- properties = target.property_list()
- width = max(len(prop) for prop in properties)
- for prop in sorted(properties):
- try:
- value = getattr(target, prop)
- except AttributeError:
- print('{name:{width}s} U'.format(
- name=prop, width=width))
- continue
- if not target.property_is_default(prop):
- print('{name:{width}s} - {value!s}'.format(
- name=prop, width=width, value=value))
- elif not args.hide_default:
- print('{name:{width}s} D {value!s}'.format(
- name=prop, width=width, value=value))
- return 0
- else:
- args.property = args.property.replace('-', '_')
- if args.value is not None:
- if str(args.value).lower() == "none":
- if args.property in ["default_dispvm", "netvm", "template",
- "guivm", "audiovm"]:
- args.value = ''
- try:
- setattr(target, args.property, args.value)
- except AttributeError:
- parser.error('no such property: {!r}'.format(args.property))
- except qubesadmin.exc.QubesException as e:
- parser.error_runtime(e)
- return 0
- if args.delete:
- try:
- delattr(target, args.property)
- except AttributeError:
- parser.error('no such property: {!r}'.format(args.property))
- except qubesadmin.exc.QubesException as e:
- parser.error_runtime(e)
- return 0
- try:
- value = getattr(target, args.property)
- if value is not None:
- print(str(value))
- except AttributeError:
- parser.error('no such property: {!r}'.format(args.property))
- except qubesadmin.exc.QubesException as e:
- parser.error_runtime(e)
- return 0
- def main(args=None, app=None): # pylint: disable=missing-docstring
- parser = get_parser(1)
- args = parser.parse_args(args, app=app)
- target = args.domains.pop()
- return process_actions(parser, args, target)
- if __name__ == '__main__':
- sys.exit(main())
|