1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
#!/usr/bin/env python3
# Login to a vm and run a command, for libreswan
#
# Copyright (C) 2015-2019 Andrew Cagney <cagney@gnu.org>
#
# 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. See <https://www.gnu.org/licenses/gpl2.txt>.
#
# 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.
import signal
import faulthandler
import sys
import argparse
import logging
import time
import os
from enum import Enum
from fab import virsh
from fab import remote
from fab import argutil
from fab import logutil
from fab import pathutil
from fab import hosts
def main():
# If SIGUSR1, backtrace all threads; hopefully this is early
# enough.
faulthandler.register(signal.SIGUSR1)
parser = argparse.ArgumentParser(description="Connect to and run a shell command on a virtual machine domain",
epilog="If no command or file is specified an interactive shell is created. SIGUSR1 will dump all thread stacks")
parser.add_argument("--timeout", type=argutil.timeout, default=None,
help=("maximum runtime for the command"
"; -1 for no timeout"
" (default: no timeout)"))
argutil.add_redirect_argument(parser, "re-direct console output from stdout to %(metavar)s",
"--output", "-o",
default=sys.stdout, metavar="FILE")
parser.add_argument("--chdir", default=None, action="store", metavar="PATH",
help=("first change directory to %(metavar)s on the remote"
" domain and update prompt-match logic to expect"
" that directory"
"; an absolute %(metavar)s is used unmodified"
"; a relative %(metavar)s, which is interpreted"
" as relative to the current local working directory"
", is converted to an absolute remote path before use"
" (default: leave directory unchanged)"))
parser.add_argument("--boot", default=False, action="store_true",
help=("force the domain to shutdown and then boot"
" (default: leave existing domain running)"))
parser.add_argument("--shutdown", default=False, action="store_true",
help=("on-completion shut down the domain"
" (default: leave the domain running)"))
parser.add_argument("--guest-name", default=None,
help="The virtual machine guest's name")
parser.add_argument("domain_name", action="store", metavar="DOMAIN",
help="virtual machine (domain) to connect to")
parser.add_argument("command", nargs=argparse.REMAINDER, metavar="COMMAND",
help="run shell command non-interactively; WARNING#1: this simply concatenates remaining arguments with spaces; WARNING#2: this does not try to escape arguments before passing them onto the domain's shell")
logutil.add_arguments(parser)
# These three calls go together
args = parser.parse_args()
logutil.config(args, sys.stderr)
logger = logutil.getLogger("kvmsh", args.domain_name)
# Get things started
domain = virsh.Domain(logger, name=args.domain_name,
guest=hosts.lookup(args.guest_name))
# Get the current console, this will be None if the machine is
# shutoff. When there's no console need to decide if the VM
# should be booted.
console = domain.console()
if not console:
if args.shutdown and not (args.command or args.boot):
# no reason to boot
logger.info("already shutdown")
sys.exit(0)
# need to boot and login
console = remote.boot_and_login(domain)
elif args.boot:
domain.shutdown(console)
console = remote.boot_and_login(domain)
else:
console = remote.login(domain, console)
if not console:
logger.error("no domain")
sys.exit(1)
status = 0
if args.chdir and os.path.isabs(args.chdir):
chdir = args.chdir
elif args.chdir:
# convert host path to guest path
chdir = pathutil.guest_path(domain, args.chdir)
else:
chdir = None
if chdir:
domain.logger.info("'cd' to %s", chdir)
console.chdir(chdir)
if args.command:
console.redirect_output(args.output)
console.run("") # so the prompt appears
status = console.run(' '.join(args.command), timeout=args.timeout)
print()
elif not (args.boot or args.shutdown):
print()
if args.debug:
logger.info("info: pexpect ignores --debug in interactive mode!")
logger.info("Escape character is ^]")
# Hack so that the prompt appears
console.redirect_output(sys.stdout)
console.run("")
console.redirect_output(None)
# Pass this terminals properties to the VM.
columns, rows = os.get_terminal_size()
console.run("unset LS_COLORS; export TERM=%s; stty sane rows %s columns %s"
% (os.getenv("TERM"), rows, columns))
# F.A.B.
console.interact()
if args.shutdown:
shutdown_status = not domain.shutdown(console)
status = status or shutdown_status
sys.exit(status)
if __name__ == "__main__":
main()
|