qvm-run-vm 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/bin/sh
  2. #
  3. # The Qubes OS Project, http://www.qubes-os.org
  4. #
  5. # Copyright (C) 2010 Rafal Wojtczuk <rafal@invisiblethingslab.com>
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  20. #
  21. #
  22. print_usage() {
  23. cat >&2 <<USAGE
  24. Usage: $0 vmname command arguments
  25. Executes a command in another VM using the qubes.VMShell RPC service. The
  26. arguments are joined with spaces and passed to "bash -c".
  27. Standard input, output, and error are connected to the command. Unlike qvm-run
  28. in Dom0, this tool does not propagate exit codes, nor does it offer protection
  29. against the remote VM messing with your terminal if standard output is your
  30. terminal.
  31. You can use @dispvm or \$dispvm or --dispvm instead of vmname to start a new
  32. DisposableVM.
  33. USAGE
  34. }
  35. if [ $# -lt 2 ] ; then
  36. print_usage
  37. exit 1
  38. fi
  39. VMNAME="$1"
  40. shift
  41. if [ "$VMNAME" = "--dispvm" ] ; then
  42. VMNAME="@dispvm"
  43. elif [ "$VMNAME" = "" ] ; then
  44. print_usage
  45. exit 1
  46. fi
  47. service="qubes.VMShell"
  48. case "$VMNAME" in [@$]dispvm|[@$]dispvm:*)
  49. service="$service+WaitForSession"
  50. esac
  51. exec /usr/lib/qubes/qrexec-client-vm "$VMNAME" "$service" "/usr/lib/qubes/qrun-in-vm" "$@"