VBoxManageControlVM.cpp revision ae017640afff8b6cc50453182a4edf2eb0903a12
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync/* $Id$ */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync/** @file
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * VBoxManage - VirtualBox's command-line interface.
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync/*
e64031e20c39650a7bc902a3e1aba613b9415deevboxsync * Copyright (C) 2006-2009 Oracle Corporation
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync *
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * available from http://www.virtualbox.org. This file is free software;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * you can redistribute it and/or modify it under the terms of the GNU
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * General Public License (GPL) as published by the Free Software
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync/*******************************************************************************
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync* Header Files *
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync*******************************************************************************/
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <VBox/com/com.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <VBox/com/string.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <VBox/com/Guid.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <VBox/com/array.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <VBox/com/ErrorInfo.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <VBox/com/errorprint.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <VBox/com/EventQueue.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <VBox/com/VirtualBox.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <iprt/ctype.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <VBox/err.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <iprt/getopt.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <iprt/stream.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <iprt/string.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <iprt/uuid.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include <VBox/log.h>
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#include "VBoxManage.h"
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync/**
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * Parses a number.
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync *
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * @returns Valid number on success.
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * @returns 0 if invalid number. All necesary bitching has been done.
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * @param psz Pointer to the nic number.
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsyncstatic unsigned parseNum(const char *psz, unsigned cMaxNum, const char *name)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync{
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uint32_t u32;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync char *pszNext;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync int rc = RTStrToUInt32Ex(psz, &pszNext, 10, &u32);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if ( RT_SUCCESS(rc)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync && *pszNext == '\0'
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync && u32 >= 1
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync && u32 <= cMaxNum)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync return (unsigned)u32;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Invalid %s number '%s'", name, psz);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync return 0;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync}
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsyncint handleControlVM(HandlerArg *a)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync{
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync using namespace com;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync HRESULT rc;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc < 2)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync return errorSyntax(USAGE_CONTROLVM, "Not enough parameters");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* try to find the given machine */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr <IMachine> machine;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync Bstr machineuuid (a->argv[0]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!Guid(machineuuid).isEmpty())
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR(a->virtualBox, GetMachine(machineuuid, machine.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR(a->virtualBox, FindMachine(machineuuid, machine.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (SUCCEEDED (rc))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync machine->COMGETTER(Id)(machineuuid.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (FAILED (rc))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync return 1;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* open a session for the VM */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(a->virtualBox, OpenExistingSession(a->session, machineuuid), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync do
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* get the associated console */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IConsole> console;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(a->session, COMGETTER(Console)(console.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* ... and session machine */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IMachine> sessionMachine;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(a->session, COMGETTER(Machine)(sessionMachine.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* which command? */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!strcmp(a->argv[1], "pause"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, Pause());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "resume"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, Resume());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "reset"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, Reset());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync else if (!strcmp(a->argv[1], "unplugcpu"))
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync {
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync if (a->argc <= 1 + 1)
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync {
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync errorArgument("Missing argument to '%s'. Expected CPU number.", a->argv[1]);
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync rc = E_FAIL;
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync break;
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync }
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync unsigned n = parseNum(a->argv[2], 32, "CPU");
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync CHECK_ERROR_BREAK(sessionMachine, HotUnplugCPU(n));
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync }
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync else if (!strcmp(a->argv[1], "plugcpu"))
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync {
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync if (a->argc <= 1 + 1)
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync {
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync errorArgument("Missing argument to '%s'. Expected CPU number.", a->argv[1]);
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync rc = E_FAIL;
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync break;
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync }
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync unsigned n = parseNum(a->argv[2], 32, "CPU");
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync CHECK_ERROR_BREAK(sessionMachine, HotPlugCPU(n));
6e12ccc60ac657fb87e27b7a2b26e0a63bebe024vboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "poweroff"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IProgress> progress;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, PowerDown(progress.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = showProgress(progress);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (FAILED(rc))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync com::ProgressErrorInfo info(progress);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (info.isBasicAvailable())
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("Error: failed to power off machine. Error message: %lS\n", info.getText().raw());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("Error: failed to power off machine. No error message available!\n");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "savestate"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
ae017640afff8b6cc50453182a4edf2eb0903a12vboxsync /* first pause so we don't trigger a live save which needs more time/resources */
ae017640afff8b6cc50453182a4edf2eb0903a12vboxsync CHECK_ERROR_BREAK(console, Pause());
ae017640afff8b6cc50453182a4edf2eb0903a12vboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IProgress> progress;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, SaveState(progress.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = showProgress(progress);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (FAILED(rc))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync com::ProgressErrorInfo info(progress);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (info.isBasicAvailable())
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("Error: failed to save machine state. Error message: %lS\n", info.getText().raw());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("Error: failed to save machine state. No error message available!\n");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "acpipowerbutton"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, PowerButton());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "acpisleepbutton"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, SleepButton());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "injectnmi"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* get the machine debugger. */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr <IMachineDebugger> debugger;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, COMGETTER(Debugger)(debugger.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(debugger, InjectNMI());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "keyboardputscancode"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IKeyboard> keyboard;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, COMGETTER(Keyboard)(keyboard.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc <= 1 + 1)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Missing argument to '%s'. Expected IBM PC AT set 2 keyboard scancode(s) as hex byte(s).", a->argv[1]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* Arbitrary restrict the length of a sequence of scancodes to 1024. */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync LONG alScancodes[1024];
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync int cScancodes = 0;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* Process the command line. */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync int i;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync for (i = 1 + 1; i < a->argc && cScancodes < (int)RT_ELEMENTS(alScancodes); i++, cScancodes++)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if ( RT_C_IS_XDIGIT (a->argv[i][0])
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync && RT_C_IS_XDIGIT (a->argv[i][1])
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync && a->argv[i][2] == 0)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uint8_t u8Scancode;
42aef05f4b27fb393967e581be04be455064c80avboxsync int irc = RTStrToUInt8Ex(a->argv[i], NULL, 16, &u8Scancode);
42aef05f4b27fb393967e581be04be455064c80avboxsync if (RT_FAILURE (irc))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("Error: converting '%s' returned %Rrc!\n", a->argv[i], rc);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync alScancodes[cScancodes] = u8Scancode;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("Error: '%s' is not a hex byte!\n", a->argv[i]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (FAILED(rc))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if ( cScancodes == RT_ELEMENTS(alScancodes)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync && i < a->argc)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("Error: too many scancodes, maximum %d allowed!\n", RT_ELEMENTS(alScancodes));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* Send scancodes to the VM.
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * Note: 'PutScancodes' did not work here. Only the first scancode was transmitted.
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync for (i = 0; i < cScancodes; i++)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(keyboard, PutScancode(alScancodes[i]));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("Scancode[%d]: 0x%02X\n", i, alScancodes[i]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strncmp(a->argv[1], "setlinkstate", 12))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* Get the number of network adapters */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ULONG NetworkAdapterCount = 0;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr <ISystemProperties> info;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(a->virtualBox, COMGETTER(SystemProperties)(info.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(info, COMGETTER(NetworkAdapterCount)(&NetworkAdapterCount));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync unsigned n = parseNum(&a->argv[1][12], NetworkAdapterCount, "NIC");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!n)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc <= 1 + 1)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Missing argument to '%s'", a->argv[1]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* get the corresponding network adapter */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<INetworkAdapter> adapter;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(sessionMachine, GetNetworkAdapter(n - 1, adapter.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (adapter)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!strcmp(a->argv[2], "on"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(adapter, COMSETTER(CableConnected)(TRUE));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[2], "off"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(adapter, COMSETTER(CableConnected)(FALSE));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Invalid link state '%s'", Utf8Str(a->argv[2]).raw());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#ifdef VBOX_DYNAMIC_NET_ATTACH
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* here the order in which strncmp is called is important
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * cause nictracefile can be very well compared with
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * nictrace and nic and thus everything will always fail
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * if the order is changed
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strncmp(a->argv[1], "nictracefile", 12))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* Get the number of network adapters */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ULONG NetworkAdapterCount = 0;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr <ISystemProperties> info;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(a->virtualBox, COMGETTER(SystemProperties)(info.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(info, COMGETTER(NetworkAdapterCount)(&NetworkAdapterCount));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync unsigned n = parseNum(&a->argv[1][12], NetworkAdapterCount, "NIC");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!n)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc <= 2)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Missing argument to '%s'", a->argv[1]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* get the corresponding network adapter */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<INetworkAdapter> adapter;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(sessionMachine, GetNetworkAdapter(n - 1, adapter.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (adapter)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync BOOL fEnabled;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync adapter->COMGETTER(Enabled)(&fEnabled);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (fEnabled)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argv[2])
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(TraceFile)(Bstr(a->argv[2])), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Invalid filename or filename not specified for NIC %lu", n);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("The NIC %d is currently disabled and thus can't change its tracefile\n", n);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strncmp(a->argv[1], "nictrace", 8))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* Get the number of network adapters */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ULONG NetworkAdapterCount = 0;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr <ISystemProperties> info;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(a->virtualBox, COMGETTER(SystemProperties)(info.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(info, COMGETTER(NetworkAdapterCount)(&NetworkAdapterCount));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync unsigned n = parseNum(&a->argv[1][8], NetworkAdapterCount, "NIC");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!n)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc <= 2)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Missing argument to '%s'", a->argv[1]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* get the corresponding network adapter */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<INetworkAdapter> adapter;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(sessionMachine, GetNetworkAdapter(n - 1, adapter.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (adapter)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync BOOL fEnabled;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync adapter->COMGETTER(Enabled)(&fEnabled);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (fEnabled)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!strcmp(a->argv[2], "on"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(TraceEnabled)(TRUE), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[2], "off"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(TraceEnabled)(FALSE), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Invalid nictrace%lu argument '%s'", n, Utf8Str(a->argv[2]).raw());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("The NIC %d is currently disabled and thus can't change its tracefile\n", n);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strncmp(a->argv[1], "nic", 3))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* Get the number of network adapters */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ULONG NetworkAdapterCount = 0;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr <ISystemProperties> info;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(a->virtualBox, COMGETTER(SystemProperties)(info.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(info, COMGETTER(NetworkAdapterCount)(&NetworkAdapterCount));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync unsigned n = parseNum(&a->argv[1][3], NetworkAdapterCount, "NIC");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!n)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc <= 2)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Missing argument to '%s'", a->argv[1]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* get the corresponding network adapter */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<INetworkAdapter> adapter;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(sessionMachine, GetNetworkAdapter(n - 1, adapter.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (adapter)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync BOOL fEnabled;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync adapter->COMGETTER(Enabled)(&fEnabled);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (fEnabled)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!strcmp(a->argv[2], "null"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(Enabled)(TRUE), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, Detach(), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[2], "nat"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(Enabled)(TRUE), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc == 4)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(NATNetwork)(Bstr(a->argv[3])), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, AttachToNAT(), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if ( !strcmp(a->argv[2], "bridged")
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync || !strcmp(a->argv[2], "hostif")) /* backward compatibility */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc <= 3)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Missing argument to '%s'", a->argv[2]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(Enabled)(TRUE), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(HostInterface)(Bstr(a->argv[3])), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, AttachToBridgedInterface(), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[2], "intnet"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc <= 3)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Missing argument to '%s'", a->argv[2]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(Enabled)(TRUE), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(InternalNetwork)(Bstr(a->argv[3])), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, AttachToInternalNetwork(), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#if defined(VBOX_WITH_NETFLT)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[2], "hostonly"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc <= 3)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Missing argument to '%s'", a->argv[2]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(Enabled)(TRUE), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, COMSETTER(HostInterface)(Bstr(a->argv[3])), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_RET(adapter, AttachToHostOnlyInterface(), 1);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#endif
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Invalid type '%s' specfied for NIC %lu", Utf8Str(a->argv[2]).raw(), n);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("The NIC %d is currently disabled and thus can't change its attachment type\n", n);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#endif /* VBOX_DYNAMIC_NET_ATTACH */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#ifdef VBOX_WITH_VRDP
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "vrdp"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc <= 1 + 1)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Missing argument to '%s'", a->argv[1]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* get the corresponding VRDP server */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IVRDPServer> vrdpServer;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync sessionMachine->COMGETTER(VRDPServer)(vrdpServer.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ASSERT(vrdpServer);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (vrdpServer)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!strcmp(a->argv[2], "on"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(vrdpServer, COMSETTER(Enabled)(TRUE));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[2], "off"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(vrdpServer, COMSETTER(Enabled)(FALSE));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Invalid vrdp server state '%s'", Utf8Str(a->argv[2]).raw());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "vrdpport"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc <= 1 + 1)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Missing argument to '%s'", a->argv[1]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* get the corresponding VRDP server */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IVRDPServer> vrdpServer;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync sessionMachine->COMGETTER(VRDPServer)(vrdpServer.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ASSERT(vrdpServer);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (vrdpServer)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync Bstr vrdpports;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!strcmp(a->argv[2], "default"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync vrdpports = "0";
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync vrdpports = a->argv [2];
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(vrdpServer, COMSETTER(Ports)(vrdpports));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync else if (!strcmp(a->argv[1], "vrdpvideochannelquality"))
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync {
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync if (a->argc <= 1 + 1)
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync {
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync errorArgument("Missing argument to '%s'", a->argv[1]);
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync rc = E_FAIL;
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync break;
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync }
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync /* get the corresponding VRDP server */
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync ComPtr<IVRDPServer> vrdpServer;
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync sessionMachine->COMGETTER(VRDPServer)(vrdpServer.asOutParam());
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync ASSERT(vrdpServer);
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync if (vrdpServer)
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync {
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync unsigned n = parseNum(a->argv[2], 100, "VRDP video channel quality in percent");
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync CHECK_ERROR(vrdpServer, COMSETTER(VideoChannelQuality)(n));
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync }
70ca8d009d026a301bf7fa08cd18c6494c45fdeevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync#endif /* VBOX_WITH_VRDP */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if ( !strcmp(a->argv[1], "usbattach")
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync || !strcmp(a->argv[1], "usbdetach"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc < 3)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorSyntax(USAGE_CONTROLVM, "Not enough parameters");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync bool attach = !strcmp(a->argv[1], "usbattach");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync Bstr usbId = a->argv [2];
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (Guid(usbId).isEmpty())
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync // assume address
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (attach)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr <IHost> host;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(a->virtualBox, COMGETTER(Host)(host.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync SafeIfaceArray <IHostUSBDevice> coll;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(host, COMGETTER(USBDevices)(ComSafeArrayAsOutParam(coll)));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr <IHostUSBDevice> dev;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(host, FindUSBDeviceByAddress(Bstr(a->argv [2]), dev.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(dev, COMGETTER(Id)(usbId.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync SafeIfaceArray <IUSBDevice> coll;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, COMGETTER(USBDevices)(ComSafeArrayAsOutParam(coll)));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr <IUSBDevice> dev;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, FindUSBDeviceByAddress(Bstr(a->argv [2]),
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync dev.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(dev, COMGETTER(Id)(usbId.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (attach)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, AttachUSBDevice(usbId));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr <IUSBDevice> dev;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, DetachUSBDevice(usbId, dev.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "setvideomodehint"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc != 5 && a->argc != 6)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorSyntax(USAGE_CONTROLVM, "Incorrect number of parameters");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uint32_t xres = RTStrToUInt32(a->argv[2]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uint32_t yres = RTStrToUInt32(a->argv[3]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uint32_t bpp = RTStrToUInt32(a->argv[4]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uint32_t displayIdx = 0;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc == 6)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync displayIdx = RTStrToUInt32(a->argv[5]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IDisplay> display;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, COMGETTER(Display)(display.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(display, SetVideoModeHint(xres, yres, bpp, displayIdx));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "setcredentials"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync bool fAllowLocalLogon = true;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc == 7)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if ( strcmp(a->argv[5], "--allowlocallogon")
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync && strcmp(a->argv[5], "-allowlocallogon"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Invalid parameter '%s'", a->argv[5]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!strcmp(a->argv[6], "no"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync fAllowLocalLogon = false;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (a->argc != 5)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorSyntax(USAGE_CONTROLVM, "Incorrect number of parameters");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IGuest> guest;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, COMGETTER(Guest)(guest.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(guest, SetCredentials(Bstr(a->argv[2]), Bstr(a->argv[3]), Bstr(a->argv[4]), fAllowLocalLogon));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
c9e3f6ad81ea9a279ffb537720699e552882c40avboxsync#if 0 /* TODO: review & remove */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "dvdattach"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync Bstr uuid;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc != 3)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorSyntax(USAGE_CONTROLVM, "Incorrect number of parameters");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IMedium> dvdMedium;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* unmount? */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!strcmp(a->argv[2], "none"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* nothing to do, NULL object will cause unmount */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* host drive? */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strncmp(a->argv[2], "host:", 5))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IHost> host;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR(a->virtualBox, COMGETTER(Host)(host.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = host->FindHostDVDDrive(Bstr(a->argv[2] + 5), dvdMedium.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!dvdMedium)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Invalid host DVD drive name \"%s\"",
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync a->argv[2] + 5);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* first assume it's a UUID */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uuid = a->argv[2];
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = a->virtualBox->GetDVDImage(uuid, dvdMedium.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (FAILED(rc) || !dvdMedium)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* must be a filename, check if it's in the collection */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = a->virtualBox->FindDVDImage(Bstr(a->argv[2]), dvdMedium.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* not registered, do that on the fly */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!dvdMedium)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync Bstr emptyUUID;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR(a->virtualBox, OpenDVDImage(Bstr(a->argv[2]), emptyUUID, dvdMedium.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!dvdMedium)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /** @todo generalize this, allow arbitrary number of DVD drives
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * and as a consequence multiple attachments and different
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync * storage controllers. */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (dvdMedium)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync dvdMedium->COMGETTER(Id)(uuid.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uuid = Guid().toString();
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR(machine, MountMedium(Bstr("IDE Controller"), 1, 0, uuid, FALSE /* aForce */));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "floppyattach"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync Bstr uuid;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc != 3)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorSyntax(USAGE_CONTROLVM, "Incorrect number of parameters");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IMedium> floppyMedium;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* unmount? */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!strcmp(a->argv[2], "none"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* nothing to do, NULL object will cause unmount */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* host drive? */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strncmp(a->argv[2], "host:", 5))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IHost> host;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR(a->virtualBox, COMGETTER(Host)(host.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync host->FindHostFloppyDrive(Bstr(a->argv[2] + 5), floppyMedium.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!floppyMedium)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Invalid host floppy drive name \"%s\"",
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync a->argv[2] + 5);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* first assume it's a UUID */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uuid = a->argv[2];
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = a->virtualBox->GetFloppyImage(uuid, floppyMedium.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (FAILED(rc) || !floppyMedium)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* must be a filename, check if it's in the collection */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = a->virtualBox->FindFloppyImage(Bstr(a->argv[2]), floppyMedium.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync /* not registered, do that on the fly */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!floppyMedium)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync Bstr emptyUUID;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR(a->virtualBox, OpenFloppyImage(Bstr(a->argv[2]), emptyUUID, floppyMedium.asOutParam()));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (!floppyMedium)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync floppyMedium->COMGETTER(Id)(uuid.asOutParam());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR(machine, MountMedium(Bstr("Floppy Controller"), 0, 0, uuid, FALSE /* aForce */));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
c9e3f6ad81ea9a279ffb537720699e552882c40avboxsync#endif /* obsolete dvdattach/floppyattach */
21ed14a0d745501ffc9a68be81c0abadc777b628vboxsync else if (!strcmp(a->argv[1], "guestmemoryballoon"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (a->argc != 3)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorSyntax(USAGE_CONTROLVM, "Incorrect number of parameters");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uint32_t uVal;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync int vrc;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync vrc = RTStrToUInt32Ex(a->argv[2], NULL, 0, &uVal);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (vrc != VINF_SUCCESS)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorArgument("Error parsing guest memory balloon size '%s'", a->argv[2]);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
629169500a4e1696f37dd3118a791d68278f71davboxsync /* guest is running; update IGuest */
629169500a4e1696f37dd3118a791d68278f71davboxsync ComPtr <IGuest> guest;
629169500a4e1696f37dd3118a791d68278f71davboxsync rc = console->COMGETTER(Guest)(guest.asOutParam());
629169500a4e1696f37dd3118a791d68278f71davboxsync if (SUCCEEDED(rc))
629169500a4e1696f37dd3118a791d68278f71davboxsync CHECK_ERROR(guest, COMSETTER(MemoryBalloonSize)(uVal));
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else if (!strcmp(a->argv[1], "teleport"))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync Bstr bstrHostname;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uint32_t uMaxDowntime = 250 /*ms*/;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync uint32_t uPort = UINT32_MAX;
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync uint32_t cMsTimeout = 0;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync Bstr bstrPassword("");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync static const RTGETOPTDEF s_aTeleportOptions[] =
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync { "--host", 'h', RTGETOPT_REQ_STRING }, /** @todo RTGETOPT_FLAG_MANDATORY */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync { "--hostname", 'h', RTGETOPT_REQ_STRING }, /** @todo remove this */
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync { "--maxdowntime", 'd', RTGETOPT_REQ_UINT32 },
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync { "--port", 'p', RTGETOPT_REQ_UINT32 }, /** @todo RTGETOPT_FLAG_MANDATORY */
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync { "--password", 'P', RTGETOPT_REQ_STRING },
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync { "--timeout", 't', RTGETOPT_REQ_UINT32 }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync };
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTGETOPTSTATE GetOptState;
fb1975a6972d89de9e515bed0248db93f04ec9d8vboxsync RTGetOptInit(&GetOptState, a->argc, a->argv, s_aTeleportOptions, RT_ELEMENTS(s_aTeleportOptions), 2, RTGETOPTINIT_FLAGS_NO_STD_OPTS);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync int ch;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTGETOPTUNION Value;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync while ( SUCCEEDED(rc)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync && (ch = RTGetOpt(&GetOptState, &Value)))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync switch (ch)
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync case 'h': bstrHostname = Value.psz; break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync case 'd': uMaxDowntime = Value.u32; break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync case 'p': uPort = Value.u32; break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync case 'P': bstrPassword = Value.psz; break;
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync case 't': cMsTimeout = Value.u32; break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync default:
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorGetOpt(USAGE_CONTROLVM, ch, &Value);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (FAILED(rc))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync break;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync ComPtr<IProgress> progress;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync CHECK_ERROR_BREAK(console, Teleport(bstrHostname, uPort, bstrPassword, uMaxDowntime, progress.asOutParam()));
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync if (cMsTimeout)
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync {
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync rc = progress->COMSETTER(Timeout)(cMsTimeout);
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync if (FAILED(rc) && rc != VBOX_E_INVALID_OBJECT_STATE)
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync CHECK_ERROR_BREAK(progress, COMSETTER(Timeout)(cMsTimeout)); /* lazyness */
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync }
b2c92fb03e119c7de54f86a32fae9c1d59bc479evboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = showProgress(progress);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (FAILED(rc))
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync com::ProgressErrorInfo info(progress);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync if (info.isBasicAvailable())
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("Error: teleportation failed. Error message: %lS\n", info.getText().raw());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync RTPrintf("Error: teleportation failed. No error message available!\n");
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync else
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync {
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync errorSyntax(USAGE_CONTROLVM, "Invalid parameter '%s'", Utf8Str(a->argv[1]).raw());
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync rc = E_FAIL;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync }
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync } while (0);
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync a->session->Close();
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync return SUCCEEDED(rc) ? 0 : 1;
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync}
4328e87247f4a96449677e199c7e99ef516fc1cevboxsync