source: trunk/packages/invirt-remote/host/usr/sbin/invirt-vmcontrol @ 2093

Last change on this file since 2093 was 2093, checked in by broder, 16 years ago

Don't pass untrusted arguments to xm info.

  • Property svn:executable set to *
File size: 1.3 KB
RevLine 
[1097]1#!/bin/bash
[1239]2# invirt-vmcontrol MACHINE ACTION
[121]3#
4# remctl should have already verified that the user is authorized to
5# control the machine.  So, we just need to execute the action requested.
6#
7# $0 and $1 come from the trusted remctl source.
8#
[1759]9# $2 and so on are user-provided, and thus sketchy.
[121]10
[146]11ORIGMACHINE="$1"
[196]12ACTION="$2"
[146]13MACHINE="d_$ORIGMACHINE"
[121]14
[2093]15xm () {
16    command xm "$@" || exit 35
17}
18
[121]19case "$ACTION" in
[386]20    list|vcpu-list|uptime)
[121]21        xm "$ACTION" "$MACHINE"
22        ;;
[1723]23    destroy|shutdown|reboot)
[386]24        xm "$ACTION" "$MACHINE"
[1239]25        /usr/sbin/invirt-update-conserver </dev/null >/dev/null 2>&1 &
[386]26        ;;
[1723]27    install|create)
[1089]28        shift; shift;
[1723]29        xm list "$MACHINE" >/dev/null 2>/dev/null && echo "$MACHINE already exists" && exit 1
[223]30        if [ "$ACTION" = "install" ]; then
[1268]31            xm create invirt-database machine_name="$ORIGMACHINE" installer_options="$(printf '%q ' "$@")"
[1128]32        elif [ -n "$1" ]; then
[1268]33            xm create invirt-database machine_name="$ORIGMACHINE" cdrom_image="$1"
[127]34        else
[1268]35            xm create invirt-database machine_name="$ORIGMACHINE"
[127]36        fi
[1239]37        (sleep 4; /usr/sbin/invirt-update-conserver) </dev/null >/dev/null 2>&1 &
[127]38        ;;
[121]39    list-long)
40        xm list --long "$MACHINE"
41        ;;
[1390]42    vnctoken)
43        invirt-vnc-authtoken "$ORIGMACHINE"
[1397]44        ;;
[121]45    *)
46        echo "ERROR: Invalid Command"
[1167]47        exit 34
[121]48        ;;
49esac
Note: See TracBrowser for help on using the repository browser.