2015-12-28 18:14:37 +01:00
|
|
|
#!/usr/bin/python2
|
|
|
|
# -*- encoding: utf8 -*-
|
|
|
|
#
|
|
|
|
# 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 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 __future__ import print_function
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import qubes
|
|
|
|
import qubes.exc
|
|
|
|
import qubes.tools
|
|
|
|
|
|
|
|
|
|
|
|
parser = qubes.tools.QubesArgumentParser(
|
|
|
|
want_vm=True,
|
|
|
|
want_vm_all=True)
|
|
|
|
|
|
|
|
parser.add_argument('--user', '-u', metavar='USER',
|
|
|
|
help='run command in a qube as USER')
|
|
|
|
|
|
|
|
parser.add_argument('--autostart', '--auto', '-a',
|
|
|
|
action='store_true', default=False,
|
|
|
|
help='start the qube if it is not running')
|
|
|
|
|
|
|
|
parser.add_argument('--pass-io', '-p',
|
|
|
|
action='store_true', dest='passio', default=False,
|
|
|
|
help='pass stdio from remote program')
|
|
|
|
|
|
|
|
parser.add_argument('--localcmd', metavar='COMMAND',
|
|
|
|
help='with --pass-io, pass stdio to the given program')
|
|
|
|
|
|
|
|
parser.add_argument('--gui',
|
|
|
|
action='store_true', default=True,
|
|
|
|
help='run the command with GUI (default on)')
|
|
|
|
|
|
|
|
parser.add_argument('--no-gui', '--nogui',
|
|
|
|
action='store_false', dest='gui',
|
|
|
|
help='run the command without GUI')
|
|
|
|
|
|
|
|
parser.add_argument('--colour-output', '--color-output', metavar='COLOUR',
|
|
|
|
action='store', dest='color_output', default=None,
|
|
|
|
help='mark the qube output with given ANSI colour (ie. "31" for red)')
|
|
|
|
|
|
|
|
parser.add_argument('--no-colour-output', '--no-color-output',
|
|
|
|
action='store_false', dest='color_output',
|
|
|
|
help='disable colouring the stdio')
|
|
|
|
|
|
|
|
parser.add_argument('--filter-escape-chars',
|
|
|
|
action='store_true', dest='filter_esc',
|
|
|
|
default=os.isatty(sys.stdout.fileno()),
|
|
|
|
help='filter terminal escape sequences (default if output is terminal)')
|
|
|
|
|
|
|
|
parser.add_argument('--no-filter-escape-chars',
|
|
|
|
action='store_false', dest='filter_esc',
|
|
|
|
help='do not filter terminal escape sequences; DANGEROUS when output is a'
|
|
|
|
' terminal emulator')
|
|
|
|
|
|
|
|
parser.add_argument('cmd', metavar='COMMAND',
|
|
|
|
help='command to run')
|
|
|
|
|
|
|
|
|
|
|
|
def main(args=None):
|
|
|
|
args = parser.parse_args(args)
|
|
|
|
if args.color_output is None and args.filter_esc:
|
|
|
|
args.color_output = '31'
|
|
|
|
|
2016-04-18 22:54:55 +02:00
|
|
|
if len(args.vm) > 1 and args.passio:
|
|
|
|
parser.error('--passio cannot be used when more than 1 qube is chosen')
|
2016-05-05 16:58:43 +02:00
|
|
|
if args.localcmd and not args.passio:
|
2016-04-11 13:03:12 +02:00
|
|
|
parser.error('--localcmd have no effect without --pass-io')
|
2015-12-28 18:14:37 +01:00
|
|
|
if args.color_output and not args.filter_esc:
|
|
|
|
parser.error('--color-output must be used with --filter-escape-chars')
|
|
|
|
|
|
|
|
retcode = 0
|
|
|
|
for vm in args.vm:
|
2015-12-29 14:47:37 +01:00
|
|
|
if args.autostart and not vm.is_running():
|
|
|
|
vm.start()
|
|
|
|
|
2015-12-28 18:14:37 +01:00
|
|
|
if args.color_output:
|
|
|
|
sys.stdout.write('\033[0;{}m'.format(args.color_output))
|
|
|
|
sys.stdout.flush()
|
2015-12-29 14:47:37 +01:00
|
|
|
|
2015-12-28 18:14:37 +01:00
|
|
|
try:
|
|
|
|
retcode = max(retcode, vm.run(args.cmd,
|
|
|
|
user=args.user,
|
|
|
|
passio=args.passio,
|
|
|
|
localcmd=args.localcmd,
|
|
|
|
gui=args.gui,
|
|
|
|
filter_esc=args.filter_esc))
|
|
|
|
|
|
|
|
except qubes.exc.QubesException as e:
|
|
|
|
if args.color_output:
|
|
|
|
sys.stdout.write('\033[0m')
|
|
|
|
sys.stdout.flush()
|
|
|
|
vm.log.error(str(e))
|
|
|
|
return -1
|
|
|
|
|
|
|
|
finally:
|
|
|
|
if args.color_output:
|
|
|
|
sys.stdout.write('\033[0m')
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
return retcode
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|