err.h revision 2484239da3af34d92452fa732661dfe0d0320b4c
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** @file
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * VirtualBox Status Codes.
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/*
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * Copyright (C) 2006-2007 innotek GmbH
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync *
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * available from http://www.virtualbox.org. This file is free software;
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * you can redistribute it and/or modify it under the terms of the GNU
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * General Public License (GPL) as published by the Free Software
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync *
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * The contents of this file may alternatively be used under the terms
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * of the Common Development and Distribution License Version 1.0
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * VirtualBox OSE distribution, in which case the provisions of the
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * CDDL are applicable instead of those of the GPL.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync *
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * You may elect to license modified versions of this file under the
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * terms and conditions of either the GPL or the CDDL or both.
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#ifndef ___VBox_err_h
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define ___VBox_err_h
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#include <VBox/cdefs.h>
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#include <iprt/err.h>
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** @defgroup grp_err Error Codes
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * @{
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/* SED-START */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** @name Misc. Status Codes
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * @{
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Failed to allocate VM memory. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_NO_VM_MEMORY (-1000)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** GC is toasted and the VMM should be terminated at once, but no need to panic about it :-) */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_DONT_PANIC (-1001)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Unsupported CPU. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_UNSUPPORTED_CPU (-1002)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Unsupported CPU mode. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_UNSUPPORTED_CPU_MODE (-1003)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Page not present. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_PAGE_NOT_PRESENT (-1004)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Invalid/Corrupted configuration file. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_CFG_INVALID_FORMAT (-1005)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** No configuration value exists. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_CFG_NO_VALUE (-1006)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Not selector not present. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_SELECTOR_NOT_PRESENT (-1007)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Not code selector. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_NOT_CODE_SELECTOR (-1008)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Not data selector. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_NOT_DATA_SELECTOR (-1009)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Out of selector bounds. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_OUT_OF_SELECTOR_BOUNDS (-1010)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Invalid selector. Usually beyond table limits. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_INVALID_SELECTOR (-1011)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Invalid requested privilegde level. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_INVALID_RPL (-1012)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** @} */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** @name Execution Monitor/Manager (EM) Status Codes
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync *
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * The order of the status codes between VINF_EM_FIRST and VINF_EM_LAST
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * are of vital importance. The lower the number the higher importance
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * as a scheduling instruction.
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * @{
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** First scheduling related status code. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_FIRST 1100
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating that the VM is being terminated and that the the execution
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * shall stop. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_TERMINATE 1100
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Hypervisor code was stepped.
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * EM will first send this to the debugger, and if the issue isn't
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * resolved there it will enter guru meditation. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_DBG_HYPER_STEPPED 1101
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Hit a breakpoint in the hypervisor code,
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * EM will first send this to the debugger, and if the issue isn't
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * resolved there it will enter guru meditation. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_DBG_HYPER_BREAKPOINT 1102
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Hit a possible assertion in the hypervisor code,
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * EM will first send this to the debugger, and if the issue isn't
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * resolved there it will enter guru meditation. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_DBG_HYPER_ASSERTION 1103
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating that the VM should be suspended for debugging because
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * the developer wants to inspect the VM state. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_DBG_STOP 1104
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating success single stepping and that EM should report that
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * event to the debugger. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_DBG_STEPPED 1105
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating that a breakpoint was hit and that EM should notify the debugger
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * and in the event there is no debugger fail fatally. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_DBG_BREAKPOINT 1106
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating that EM should single step an instruction.
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * The instruction is stepped in the current execution mode (RAW/REM). */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_DBG_STEP 1107
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating that the VM is being turned off and that the EM should
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * exit to the VM awaiting the destruction request. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_OFF 1108
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating that the VM has been reset and that scheduling goes
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * back to startup defaults. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_RESET 1109
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating that the VM has been suspended and that the the thread
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * should wait for request telling it what to do next. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_SUSPEND 1110
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating that the VM has executed a halt instruction and that
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * the emulation thread should wait for an interrupt before resuming
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * execution. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_HALT 1111
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating that the VM has been resumed and that the thread should
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * start executing. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_RESUME 1112
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Indicating that we've got an out-of-memory condition and that we need
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * to take the appropriate actions to deal with this.
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * @remarks It might seem odd at first that this has lower priority than VINF_EM_HALT,
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * VINF_EM_SUSPEND, and VINF_EM_RESUME. The reason is that these events are
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * vital to correctly operating the VM. Also, they can't normally occur together
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * with an out-of-memory condition, and even if that should happen the condition
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * will be rediscovered before executing any more code. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_EM_NO_MEMORY 1113
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The fatal variant of VINF_EM_NO_MEMORY. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_EM_NO_MEMORY (-1113)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Indicating that a rescheduling to recompiled execution.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * Typically caused by raw-mode executing code which is difficult/slow
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * to virtualize rawly.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * @remarks Important to have a higher priority (lower number) than the other rescheduling status codes. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_EM_RESCHEDULE_REM 1114
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Indicating that a rescheduling to vmx-mode execution.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * Typically caused by REM detecting that hardware-accelerated raw-mode execution is possible. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_EM_RESCHEDULE_HWACC 1115
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Indicating that a rescheduling to raw-mode execution.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * Typically caused by REM detecting that raw-mode execution is possible.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * @remarks Important to have a higher priority (lower number) than VINF_EM_RESCHEDULE. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_EM_RESCHEDULE_RAW 1116
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync/** Indicating that a rescheduling now is required. Typically caused by
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync * interrupts having changed the EIP. */
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync#define VINF_EM_RESCHEDULE 1117
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync/** Last scheduling related status code. (inclusive) */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_EM_LAST 1117
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: Guest trap which couldn't be handled in GC.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * The trap is generally forwared to the REM and executed there. */
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync#define VINF_EM_RAW_GUEST_TRAP 1120
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: Interrupted by external interrupt.
440c59bb6f5f678ce4e2569847262f6350c80fabvboxsync * The interrupt needed to be handled by the host OS. */
440c59bb6f5f678ce4e2569847262f6350c80fabvboxsync#define VINF_EM_RAW_INTERRUPT 1121
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync/** Reason for leaving GC: Interrupted by external interrupt while in hypervisor code.
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync * The interrupt needed to be handled by the host OS and hypervisor execution must be
00331fbaff118e6a5077fe96327aca51a70459dbvboxsync * resumed. VM state is not complete at this point. */
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync#define VINF_EM_RAW_INTERRUPT_HYPER 1122
440c59bb6f5f678ce4e2569847262f6350c80fabvboxsync/** Reason for leaving GC: A Ring switch was attempted.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * Normal cause of action is to execute this in REM. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_EM_RAW_RING_SWITCH 1123
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: A Ring switch was attempted using software interrupt.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * Normal cause of action is to execute this in REM. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_EM_RAW_RING_SWITCH_INT 1124
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: A privileged instruction was attempted executed.
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync * Normal cause of action is to execute this in REM. */
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync#define VINF_EM_RAW_EXCEPTION_PRIVILEGED 1125
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync/** Reason for leaving GC: Emulate instruction. */
00331fbaff118e6a5077fe96327aca51a70459dbvboxsync#define VINF_EM_RAW_EMULATE_INSTR 1126
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync/** Reason for leaving GC: Unhandled TSS write.
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync * Recompiler gets control. */
a3011b448b38c39a7222f2f1eb40c8349023f650vboxsync#define VINF_EM_RAW_EMULATE_INSTR_TSS_FAULT 1127
e6d5e53bf42a48e3363ce7075cac0cdf83f956b5vboxsync/** Reason for leaving GC: Unhandled LDT write.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * Recompiler gets control. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_EM_RAW_EMULATE_INSTR_LDT_FAULT 1128
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Reason for leaving GC: Unhandled IDT write.
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * Recompiler gets control. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_RAW_EMULATE_INSTR_IDT_FAULT 1129
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Reason for leaving GC: Unhandled GDT write.
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync * Recompiler gets control. */
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync#define VINF_EM_RAW_EMULATE_INSTR_GDT_FAULT 1130
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Reason for leaving GC: Unhandled Page Directory write.
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync * Recompiler gets control. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_RAW_EMULATE_INSTR_PD_FAULT 1131
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync/** Reason for leaving GC: jump inside generated patch jump.
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync * Fatal error. */
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync#define VERR_EM_RAW_PATCH_CONFLICT (-1132)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Reason for leaving GC: Hlt instruction.
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync * Recompiler gets control. */
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync#define VINF_EM_RAW_EMULATE_INSTR_HLT 1133
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync/** Reason for leaving GC: Ring-3 operation pending. */
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync#define VINF_EM_RAW_TO_R3 1134
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Reason for leaving GC: Timer pending. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_RAW_TIMER_PENDING 1135
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Reason for leaving GC: Interrupt pending (guest). */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_RAW_INTERRUPT_PENDING 1136
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Reason for leaving GC: Encountered a stale selector. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_RAW_STALE_SELECTOR 1137
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Reason for leaving GC: The IRET resuming guest code trapped. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VINF_EM_RAW_IRET_TRAP 1138
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync/** The interpreter was unable to deal with the instruction at hand. */
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync#define VERR_EM_INTERPRETER (-1148)
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync/** Internal EM error caused by an unknown warning or informational status code. */
b35358a47f67398b71a08eb89e6617493a847f7dvboxsync#define VERR_EM_INTERNAL_ERROR (-1149)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Pending VM request packet. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_EM_PENDING_REQUEST (-1150)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** @} */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** @name Debugging Facility (DBGF) DBGF Status Codes
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * @{
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The function called requires the caller to be attached as a
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * debugger to the VM. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_DBGF_NOT_ATTACHED (-1200)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Someone (including the caller) was already attached as
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * debugger to the VM. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_DBGF_ALREADY_ATTACHED (-1201)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Tried to hald a debugger which was already halted.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * (This is a warning and not an error.) */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VWRN_DBGF_ALREADY_HALTED 1202
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The DBGF has no more free breakpoint slots. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_DBGF_NO_MORE_BP_SLOTS (-1203)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The DBGF couldn't find the specified breakpoint. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_DBGF_BP_NOT_FOUND (-1204)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Attempted to enabled a breakpoint which was already enabled. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_DBGF_BP_ALREADY_ENABLED 1205
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Attempted to disabled a breakpoint which was already disabled. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_DBGF_BP_ALREADY_DISABLED 1206
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The breakpoint already exists. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_DBGF_BP_ALREADY_EXIST 1207
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The byte string was not found. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_DBGF_MEM_NOT_FOUND (-1208)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** @} */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** @name Patch Manager (PATM) Status Codes
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * @{
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Non fatal Patch Manager analysis phase warning */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VWRN_CONTINUE_ANALYSIS 1400
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Non fatal Patch Manager recompile phase warning (mapped to VWRN_CONTINUE_ANALYSIS). */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VWRN_CONTINUE_RECOMPILE VWRN_CONTINUE_ANALYSIS
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Continue search (mapped to VWRN_CONTINUE_ANALYSIS). */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VWRN_PATM_CONTINUE_SEARCH VWRN_CONTINUE_ANALYSIS
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Patch installation refused (patch too complex or unsupported instructions ) */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PATCHING_REFUSED (-1401)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Unable to find patch */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PATCH_NOT_FOUND (-1402)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Patch disabled */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PATCH_DISABLED (-1403)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Patch enabled */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VWRN_PATCH_ENABLED 1404
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Patch was already disabled */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PATCH_ALREADY_DISABLED (-1405)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Patch was already enabled */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PATCH_ALREADY_ENABLED (-1406)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Patch was removed. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VWRN_PATCH_REMOVED 1408
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: \#GP with EIP pointing to patch code. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_PATCH_TRAP_GP 1408
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** First leave GC code. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_LEAVEGC_FIRST VINF_PATM_PATCH_TRAP_GP
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: \#PF with EIP pointing to patch code. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_PATCH_TRAP_PF 1409
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: int3 with EIP pointing to patch code. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_PATCH_INT3 1410
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: \#PF for monitored patch page. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_CHECK_PATCH_PAGE 1411
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: duplicate instruction called at current eip. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_DUPLICATE_FUNCTION 1412
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Execute one instruction with the recompiler */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATCH_EMULATE_INSTR 1413
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: attempt to patch MMIO write. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_HC_MMIO_PATCH_WRITE 1414
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: attempt to patch MMIO read. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_HC_MMIO_PATCH_READ 1415
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: pending irq after iret that sets IF. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_PENDING_IRQ_AFTER_IRET 1416
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Last leave GC code. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_LEAVEGC_LAST VINF_PATM_PENDING_IRQ_AFTER_IRET
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** No conflicts to resolve */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PATCH_NO_CONFLICT (-1425)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Detected unsafe code for patching */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PATM_UNSAFE_CODE (-1426)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Terminate search branch */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VWRN_PATCH_END_BRANCH 1427
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Already patched */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PATM_ALREADY_PATCHED (-1428)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Spinlock detection failed. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATM_SPINLOCK_FAILED (1429)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Continue execution after patch trap. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PATCH_CONTINUE (1430)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** @} */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** @name Code Scanning and Analysis Manager (CSAM) Status Codes
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * @{
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Trap not handled */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VWRN_CSAM_TRAP_NOT_HANDLED 1500
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Patch installed */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VWRN_CSAM_INSTRUCTION_PATCHED 1501
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Page record not found */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VWRN_CSAM_PAGE_NOT_FOUND 1502
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: CSAM wants perform a task in ring-3. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_CSAM_PENDING_ACTION 1503
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** @} */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** @name Page Monitor/Manager (PGM) Status Codes
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * @{
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Attempt to create a GC mapping which conflicts with an existing mapping. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_MAPPING_CONFLICT (-1600)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The physical handler range has no corresponding RAM range.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * If this is MMIO, see todo above the return. If not MMIO, then it's
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * someone else's fault... */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_HANDLER_PHYSICAL_NO_RAM_RANGE (-1601)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Attempt to register an access handler for a virtual range of which a part
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * was already handled. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_HANDLER_VIRTUAL_CONFLICT (-1602)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Attempt to register an access handler for a physical range of which a part
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * was already handled. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_HANDLER_PHYSICAL_CONFLICT (-1603)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Invalid page directory specified to PGM. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_INVALID_PAGE_DIRECTORY (-1604)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Invalid GC physical address. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS (-1605)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Invalid GC physical range. Usually used when a specified range crosses
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * a RAM region boundrary. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_INVALID_GC_PHYSICAL_RANGE (-1606)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Specified access handler was not found. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_HANDLER_NOT_FOUND (-1607)
e6d5e53bf42a48e3363ce7075cac0cdf83f956b5vboxsync/** Attempt to register a RAM range of which parts are already
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * covered by existing RAM ranges. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_RAM_CONFLICT (-1608)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Failed to add new mappings because the current mappings are fixed
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * in guest os memory. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_MAPPINGS_FIXED (-1609)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Failed to fix mappings because of a conflict with the intermediate code. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_MAPPINGS_FIX_CONFLICT (-1610)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Failed to fix mappings because a mapping rejected the address. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_MAPPINGS_FIX_REJECTED (-1611)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Failed to fix mappings because the proposed memory area was to small. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_MAPPINGS_FIX_TOO_SMALL (-1612)
e6d5e53bf42a48e3363ce7075cac0cdf83f956b5vboxsync/** Reason for leaving GC: The urge to syncing CR3. */
e6d5e53bf42a48e3363ce7075cac0cdf83f956b5vboxsync#define VINF_PGM_SYNC_CR3 1613
2ad9f8a731c73f6ac74044d42d47bbaf6f44a566vboxsync/** Page not marked for dirty bit tracking */
2ad9f8a731c73f6ac74044d42d47bbaf6f44a566vboxsync#define VINF_PGM_NO_DIRTY_BIT_TRACKING 1614
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Page fault caused by dirty bit tracking; corrected */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PGM_HANDLED_DIRTY_BIT_FAULT 1615
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Go ahead with the default Read/Write operation.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * This is returned by a HC physical or virtual handler when it wants the PGMPhys[Read|Write]
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * routine do the reading/writing. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PGM_HANDLER_DO_DEFAULT 1616
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The paging mode of the host is not supported yet. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_UNSUPPORTED_HOST_PAGING_MODE (-1617)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The physical guest page is a reserved/mmio page and does not have any HC address. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_PHYS_PAGE_RESERVED (-1618)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** No page directory available for the hypervisor. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_NO_HYPERVISOR_ADDRESS (-1619)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The shadow page pool was flushed.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * This means that a global CR3 sync was flagged. Anyone receiving this kind of status
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * will have to get down to a SyncCR3 ASAP. See also VINF_PGM_SYNC_CR3. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_POOL_FLUSHED (-1620)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The shadow page pool was cleared.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * This is a error code internal to the shadow page pool, it will be
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * converted to a VERR_PGM_POOL_FLUSHED before leaving the pool code. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_POOL_CLEARED (-1621)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** The returned shadow page is cached. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PGM_CACHED_PAGE 1622
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Returned by handler registration, modification and deregistration
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * when the shadow PTs could be updated because the guest page
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * aliased or/and mapped by multiple PTs. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PGM_GCPHYS_ALIASED 1623
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Reason for leaving GC: Paging mode changed.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * PGMChangeMode() uses this to force a switch to HC so it can safely
440c59bb6f5f678ce4e2569847262f6350c80fabvboxsync * deal with a mode switch.
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PGM_CHANGE_MODE 1624
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** SyncPage modified the PDE.
e6d5e53bf42a48e3363ce7075cac0cdf83f956b5vboxsync * This is an internal status code used to communicate back to the \#PF handler
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * that the PDE was (probably) marked not-present and it should restart the instruction. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VINF_PGM_SYNCPAGE_MODIFIED_PDE 1625
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Physical range crosses dynamic ram chunk boundary; translation to HC ptr not safe. */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync#define VERR_PGM_GCPHYS_RANGE_CROSSES_BOUNDARY (-1626)
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** @} */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync
2ad9f8a731c73f6ac74044d42d47bbaf6f44a566vboxsync/** @name Memory Monitor (MM) Status Codes
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * @{
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync */
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync/** Attempt to register a RAM range of which parts are already
b8e7a8042499abf6f2551c545f6141b36868ab4dvboxsync * covered by existing RAM ranges. */
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync#define VERR_MM_RAM_CONFLICT (-1700)
81f46059436c6145937a4cc2c7424023a289fcd8vboxsync/** Hypervisor memory allocation failed. */
#define VERR_MM_HYPER_NO_MEMORY (-1701)
/** @} */
/** @name Save State Manager (SSM) Status Codes
* @{
*/
/** The specified data unit already exist. */
#define VERR_SSM_UNIT_EXISTS (-1800)
/** The specified data unit wasn't found. */
#define VERR_SSM_UNIT_NOT_FOUND (-1801)
/** The specified data unit wasn't owned by caller. */
#define VERR_SSM_UNIT_NOT_OWNER (-1802)
/** General saved state file integrity error. */
#define VERR_SSM_INTEGRITY (-1810)
/** The saved state file magic was not recognized. */
#define VERR_SSM_INTEGRITY_MAGIC (-1811)
/** The saved state file magic was not recognized. */
#define VERR_SSM_INTEGRITY_VERSION (-1812)
/** The saved state file magic was not recognized. */
#define VERR_SSM_INTEGRITY_SIZE (-1813)
/** The CRC of the saved state file did match. */
#define VERR_SSM_INTEGRITY_CRC (-1814)
/** The current virtual machine id didn't match the virtual machine id. */
#define VERR_SMM_INTEGRITY_MACHINE (-1815)
/** Invalid unit magic (internal data tag). */
#define VERR_SSM_INTEGRITY_UNIT_MAGIC (-1816)
/** The file contained a data unit which no-one wants. */
#define VERR_SSM_INTEGRITY_UNIT_NOT_FOUND (-1817)
/** A data unit in the saved state file was defined but didn't any
* routine for processing it. */
#define VERR_SSM_NO_LOAD_EXEC (-1818)
/** A restore routine attempted to load more data then the unit contained. */
#define VERR_SSM_LOADED_TOO_MUCH (-1819)
/** Not in the correct state for the attempted operation. */
#define VERR_SSM_INVALID_STATE (-1820)
/** Unsupported data unit version.
* A SSM user returns this if it doesn't know the u32Version. */
#define VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION (-1821)
/** The format of a data unit has changed.
* A SSM user returns this if it's not able to read the format for
* other reasons than u32Version. */
#define VERR_SSM_DATA_UNIT_FORMAT_CHANGED (-1822)
/** The CPUID instruction returns different information when loading than when saved.
* Normally caused by hardware changes on the host, but could also be caused by
* changes in the BIOS setup. */
#define VERR_SSM_LOAD_CPUID_MISMATCH (-1823)
/** The RAM size differes between the saved state and the VM config. */
#define VERR_SSM_LOAD_MEMORY_SIZE_MISMATCH (-1824)
/** The state doesn't match the VM configuration in one or another way.
* (There are certain PCI reconfiguration which the OS could potentially
* do which can cause this problem. Check this out when it happens.) */
#define VERR_SSM_LOAD_CONFIG_MISMATCH (-1825)
/** The virtual clock freqency differs too much.
* The clock source for the virtual time isn't reliable or the code have changed. */
#define VERR_SSM_VIRTUAL_CLOCK_HZ (-1826)
/** A timeout occured while waiting for async IDE operations to finish. */
#define VERR_SSM_IDE_ASYNC_TIMEOUT (-1827)
/** One of the structure magics was wrong. */
#define VERR_SSM_STRUCTURE_MAGIC (-1828)
/** The data in the saved state doesn't confirm to expectations. */
#define VERR_SSM_UNEXPECTED_DATA (-1829)
/** @} */
/** @name Virtual Machine (VM) Status Codes
* @{
*/
/** The specified at reset handler wasn't found. */
#define VERR_VM_ATRESET_NOT_FOUND (-1900)
/** Invalid VM request type.
* For the VMR3ReqAlloc() case, the caller just specified an illegal enmType. For
* all the other occurences it means indicates corruption, broken logic, or stupid
* interface user. */
#define VERR_VM_REQUEST_INVALID_TYPE (-1901)
/** Invalid VM request state.
* The state of the request packet was not the expected and accepted one(s). Either
* the interface user screwed up, or we've got corruption/broken logic. */
#define VERR_VM_REQUEST_STATE (-1902)
/** Invalid VM request packet.
* One or more of the the VM controlled packet members didn't contain the correct
* values. Some thing's broken. */
#define VERR_VM_REQUEST_INVALID_PACKAGE (-1903)
/** The status field has not been updated yet as the request is still
* pending completion. Someone queried the iStatus field before the request
* has been fully processed. */
#define VERR_VM_REQUEST_STATUS_STILL_PENDING (-1904)
/** The request has been freed, don't read the status now.
* Someone is reading the iStatus field of a freed request packet. */
#define VERR_VM_REQUEST_STATUS_FREED (-1905)
/** A VM api requiring EMT was called from another thread.
* Use the VMR3ReqCall() apis to call it! */
#define VERR_VM_THREAD_NOT_EMT (-1906)
/** The VM state was invalid for the requested operation.
* Go check the 'VM Statechart Diagram.gif'. */
#define VERR_VM_INVALID_VM_STATE (-1907)
/** The support driver is not installed.
* On linux, open returned ENOENT. */
#define VERR_VM_DRIVER_NOT_INSTALLED (-1908)
/** The support driver is not accessible.
* On linux, open returned EPERM. */
#define VERR_VM_DRIVER_NOT_ACCESSIBLE (-1909)
/** Was not able to load the support driver.
* On linux, open returned ENODEV. */
#define VERR_VM_DRIVER_LOAD_ERROR (-1910)
/** Was not able to open the support driver.
* Generic open error used when none of the other ones fit. */
#define VERR_VM_DRIVER_OPEN_ERROR (-1911)
/** The installed support driver doesn't match the version of the user. */
#define VERR_VM_DRIVER_VERSION_MISMATCH (-1912)
/** Saving the VM state is temporarily not allowed. Try again later. */
#define VERR_VM_SAVE_STATE_NOT_ALLOWED (-1913)
/** @} */
/** @name VBox Remote Desktop Protocol (VRDP) Status Codes
* @{
*/
/** Successful completion of operation (mapped to generic iprt status code). */
#define VINF_VRDP_SUCCESS VINF_SUCCESS
/** VRDP transport operation timed out (mapped to generic iprt status code). */
#define VERR_VRDP_TIMEOUT VERR_TIMEOUT
/** Unsupported ISO protocol feature */
#define VERR_VRDP_ISO_UNSUPPORTED (-2000)
/** Security (en/decryption) engine error */
#define VERR_VRDP_SEC_ENGINE_FAIL (-2001)
/** VRDP protocol violation */
#define VERR_VRDP_PROTOCOL_ERROR (-2002)
/** Unsupported VRDP protocol feature */
#define VERR_VRDP_NOT_SUPPORTED (-2003)
/** VRDP protocol violation, client sends less data than expected */
#define VERR_VRDP_INSUFFICIENT_DATA (-2004)
/** Internal error, VRDP packet is in wrong operation mode */
#define VERR_VRDP_INVALID_MODE (-2005)
/** Memory allocation failed */
#define VERR_VRDP_NO_MEMORY (-2006)
/** Client has been rejected */
#define VERR_VRDP_ACCESS_DENIED (-2007)
/** VRPD receives a packet that is not supported */
#define VWRN_VRDP_PDU_NOT_SUPPORTED 2008
/** VRDP script allowed the packet to be processed further */
#define VINF_VRDP_PROCESS_PDU 2009
/** VRDP script has completed its task */
#define VINF_VRDP_OPERATION_COMPLETED 2010
/** VRDP thread has started OK and will run */
#define VINF_VRDP_THREAD_STARTED 2011
/** Framebuffer is resized, terminate send bitmap procedure */
#define VINF_VRDP_RESIZE_REQUESTED 2012
/** Output can be enabled for the client. */
#define VINF_VRDP_OUTPUT_ENABLE 2013
/** @} */
/** @name Configuration Manager (CFGM) Status Codes
* @{
*/
/** The integer value was too big for the requested representation. */
#define VERR_CFGM_INTEGER_TOO_BIG (-2100)
/** Child node was not found. */
#define VERR_CFGM_CHILD_NOT_FOUND (-2101)
/** Path to child node was invalid (i.e. empty). */
#define VERR_CFGM_INVALID_CHILD_PATH (-2102)
/** Value not found. */
#define VERR_CFGM_VALUE_NOT_FOUND (-2103)
/** No parent node specified. */
#define VERR_CFGM_NO_PARENT (-2104)
/** No node was specified. */
#define VERR_CFGM_NO_NODE (-2105)
/** The value is not an integer. */
#define VERR_CFGM_NOT_INTEGER (-2106)
/** The value is not a zero terminated character string. */
#define VERR_CFGM_NOT_STRING (-2107)
/** The value is not a byte string. */
#define VERR_CFGM_NOT_BYTES (-2108)
/** The specified string / bytes buffer was to small. Specify a larger one and retry. */
#define VERR_CFGM_NOT_ENOUGH_SPACE (-2109)
/** The path of a new node contained slashs or was empty. */
#define VERR_CFGM_INVALID_NODE_PATH (-2160)
/** A new node couldn't be inserted because one with the same name exists. */
#define VERR_CFGM_NODE_EXISTS (-2161)
/** A new leaf couldn't be inserted because one with the same name exists. */
#define VERR_CFGM_LEAF_EXISTS (-2162)
/** @} */
/** @name Time Manager (TM) Status Codes
* @{
*/
/** The loaded timer state was incorrect. */
#define VERR_TM_LOAD_STATE (-2200)
/** The timer was not in the correct state for the request operation. */
#define VERR_TM_INVALID_STATE (-2201)
/** The timer was in a unknown state. Corruption or stupid coding error. */
#define VERR_TM_UNKNOWN_STATE (-2202)
/** The timer was stuck in an unstable state until we grew impatient and returned. */
#define VERR_TM_UNSTABLE_STATE (-2203)
/** @} */
/** @name Recompiled Execution Manager (REM) Status Codes
* @{
*/
/** Fatal error in virtual hardware. */
#define VERR_REM_VIRTUAL_HARDWARE_ERROR (-2300)
/** Fatal error in the recompiler cpu. */
#define VERR_REM_VIRTUAL_CPU_ERROR (-2301)
/** Recompiler execution was interrupted by forced action. */
#define VINF_REM_INTERRUPED_FF 2302
/** Reason for leaving GC: Must flush pending invlpg operations to REM.
* Tell REM to flush page invalidations. Will temporary go to REM context
* from REM and perform the flushes. */
#define VERR_REM_FLUSHED_PAGES_OVERFLOW (-2303)
/** Too many similar traps. This is a very useful debug only
* check (we don't do double/tripple faults in REM). */
#define VERR_REM_TOO_MANY_TRAPS (-2304)
/** The REM is out of breakpoint slots. */
#define VERR_REM_NO_MORE_BP_SLOTS (-2305)
/** The REM could not find any breakpoint on the specified address. */
#define VERR_REM_BP_NOT_FOUND (-2306)
/** @} */
/** @name Trap Manager / Monitor (TRPM) Status Codes
* @{
*/
/** No active trap. Cannot query or reset a non-existing trap. */
#define VERR_TRPM_NO_ACTIVE_TRAP (-2400)
/** Active trap. Cannot assert a new trap when when one is already active. */
#define VERR_TRPM_ACTIVE_TRAP (-2401)
/** Reason for leaving GC: Guest tried to write to our IDT - fatal.
* The VM will be terminated assuming the worst, i.e. that the
* guest has read the idtr register. */
#define VERR_TRPM_SHADOW_IDT_WRITE (-2402)
/** Reason for leaving GC: Fatal trap in hypervisor. */
#define VERR_TRPM_DONT_PANIC (-2403)
/** Reason for leaving GC: Double Fault. */
#define VERR_TRPM_PANIC (-2404)
/** The exception was dispatched for raw-mode execution. */
#define VINF_TRPM_XCPT_DISPATCHED 2405
/** @} */
/** @name Selector Manager / Monitor (SELM) Status Code
* @{
*/
/** Reason for leaving GC: Guest tried to write to our GDT - fatal.
* The VM will be terminated assuming the worst, i.e. that the
* guest has read the gdtr register. */
#define VERR_SELM_SHADOW_GDT_WRITE (-2500)
/** Reason for leaving GC: Guest tried to write to our LDT - fatal.
* The VM will be terminated assuming the worst, i.e. that the
* guest has read the ldtr register. */
#define VERR_SELM_SHADOW_LDT_WRITE (-2501)
/** Reason for leaving GC: Guest tried to write to our TSS - fatal.
* The VM will be terminated assuming the worst, i.e. that the
* guest has read the ltr register. */
#define VERR_SELM_SHADOW_TSS_WRITE (-2502)
/** Reason for leaving GC: Sync the GDT table to solve a conflict. */
#define VINF_SELM_SYNC_GDT 2503
/** No valid TSS present. */
#define VERR_SELM_NO_TSS (-2504)
/** @} */
/** @name I/O Manager / Monitor (IOM) Status Code
* @{
*/
/** The specified I/O port range was invalid.
* It was either empty or it was out of bounds. */
#define VERR_IOM_INVALID_IOPORT_RANGE (-2600)
/** The specified GC I/O port range didn't have a corresponding HC range.
* IOMIOPortRegisterHC() must be called before IOMIOPortRegisterGC(). */
#define VERR_IOM_NO_HC_IOPORT_RANGE (-2601)
/** The specified I/O port range intruded on an existing range. There is
* a I/O port conflict between two device, or a device tried to register
* the same range twice. */
#define VERR_IOM_IOPORT_RANGE_CONFLICT (-2602)
/** The I/O port range specified for removal wasn't found or it wasn't contiguous. */
#define VERR_IOM_IOPORT_RANGE_NOT_FOUND (-2603)
/** The specified I/O port range was owned by some other device(s). Both registration
* and deregistration, but in the first case only GC ranges. */
#define VERR_IOM_NOT_IOPORT_RANGE_OWNER (-2604)
/** The specified MMIO range was invalid.
* It was either empty or it was out of bounds. */
#define VERR_IOM_INVALID_MMIO_RANGE (-2605)
/** The specified GC MMIO range didn't have a corresponding HC range.
* IOMMMIORegisterHC() must be called before IOMMMIORegisterGC(). */
#define VERR_IOM_NO_HC_MMIO_RANGE (-2606)
/** The specified MMIO range was owned by some other device(s). Both registration
* and deregistration, but in the first case only GC ranges. */
#define VERR_IOM_NOT_MMIO_RANGE_OWNER (-2607)
/** The specified MMIO range intruded on an existing range. There is
* a MMIO conflict between two device, or a device tried to register
* the same range twice. */
#define VERR_IOM_MMIO_RANGE_CONFLICT (-2608)
/** The MMIO range specified for removal was not found. */
#define VERR_IOM_MMIO_RANGE_NOT_FOUND (-2609)
/** The MMIO range specified for removal was invalid. The range didn't match
* quite match a set of existing ranges. It's not possible to remove parts of
* a MMIO range, only one or more full ranges. */
#define VERR_IOM_INCOMPLETE_MMIO_RANGE (-2610)
/** An invalid I/O port size was specified for a read or write operation. */
#define VERR_IOM_INVALID_IOPORT_SIZE (-2611)
/** The MMIO handler was called for a bogus address! Internal error! */
#define VERR_IOM_MMIO_HANDLER_BOGUS_CALL (-2612)
/** The MMIO handler experienced a problem with the disassembler. */
#define VERR_IOM_MMIO_HANDLER_DISASM_ERROR (-2613)
/** The port being read was not present(/unused) and IOM shall return ~0 according to size. */
#define VERR_IOM_IOPORT_UNUSED (-2614)
/** Unused MMIO register read, fill with 00. */
#define VINF_IOM_MMIO_UNUSED_00 2615
/** Unused MMIO register read, fill with FF. */
#define VINF_IOM_MMIO_UNUSED_FF 2616
/** Reason for leaving GC: I/O port read. */
#define VINF_IOM_HC_IOPORT_READ 2620
/** Reason for leaving GC: I/O port write. */
#define VINF_IOM_HC_IOPORT_WRITE 2621
/** Reason for leaving GC: MMIO write. */
#define VINF_IOM_HC_MMIO_READ 2623
/** Reason for leaving GC: MMIO read. */
#define VINF_IOM_HC_MMIO_WRITE 2624
/** Reason for leaving GC: MMIO read/write. */
#define VINF_IOM_HC_MMIO_READ_WRITE 2625
/** @} */
/** @name Virtual Machine Monitor (VMM) Status Codes
* @{
*/
/** Reason for leaving GC: Calling host function. */
#define VINF_VMM_CALL_HOST 2700
/** @} */
/** @name Pluggable Device and Driver Manager (PDM) Status Codes
* @{
*/
/** An invalid LUN specification was given. */
#define VERR_PDM_NO_SUCH_LUN (-2800)
/** A device encountered an unknown configuration value.
* This means that the device is potentially misconfigured and the device
* construction or unit attachment failed because of this. */
#define VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES (-2801)
/** The above driver doesn't export a interface required by a driver being
* attached to it. Typical misconfiguration problem. */
#define VERR_PDM_MISSING_INTERFACE_ABOVE (-2802)
/** The below driver doesn't export a interface required by the drive
* having attached it. Typical misconfiguration problem. */
#define VERR_PDM_MISSING_INTERFACE_BELOW (-2803)
/** A device didn't find a required interface with an attached driver.
* Typical misconfiguration problem. */
#define VERR_PDM_MISSING_INTERFACE (-2804)
/** A driver encountered an unknown configuration value.
* This means that the driver is potentially misconfigured and the driver
* construction failed because of this. */
#define VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES (-2805)
/** The PCI bus assigned to a device didn't have room for it.
* Either too many devices are configured on the same PCI bus, or there are
* some internal problem where PDM/PCI doesn't free up slots when unplugging devices. */
#define VERR_PDM_TOO_PCI_MANY_DEVICES (-2806)
/** A queue is out of free items, the queueing operation failed. */
#define VERR_PDM_NO_QUEUE_ITEMS (-2807)
/** Not possible to attach further drivers to the driver.
* A driver which doesn't support attachments (below of course) will
* return this status code if it found that further drivers were configured
* to be attached to it. */
#define VERR_PDM_DRVINS_NO_ATTACH (-2808)
/** Not possible to attach drivers to the device.
* A device which doesn't support attachments (below of course) will
* return this status code if it found that drivers were configured
* to be attached to it. */
#define VERR_PDM_DEVINS_NO_ATTACH (-2809)
/** No attached driver.
* The PDMDRVHLP::pfnAttach and PDMDEVHLP::pfnDriverAttach will return
* this error when no driver was configured to be attached. */
#define VERR_PDM_NO_ATTACHED_DRIVER (-2810)
/** The media geometry hasn't been set yet, so it cannot be obtained.
* The caller should then calculate the geometry from the media size. */
#define VERR_PDM_GEOMETRY_NOT_SET (-2811)
/** The media translation hasn't been set yet, so it cannot be obtained.
* The caller should then guess the translation. */
#define VERR_PDM_TRANSLATION_NOT_SET (-2812)
/** The media is not mounted, operation requires a mounted media. */
#define VERR_PDM_MEDIA_NOT_MOUNTED (-2813)
/** Mount failed because a media was already mounted. Unmount the media
* and retry the mount. */
#define VERR_PDM_MEDIA_MOUNTED (-2814)
/** The media is locked and cannot be unmounted. */
#define VERR_PDM_MEDIA_LOCKED (-2815)
/** No 'Type' attribute in the DrvBlock configuration.
* Misconfiguration. */
#define VERR_PDM_BLOCK_NO_TYPE (-2816)
/** The 'Type' attribute in the DrvBlock configuration had an unknown value.
* Misconfiguration. */
#define VERR_PDM_BLOCK_UNKNOWN_TYPE (-2817)
/** The 'Translation' attribute in the DrvBlock configuration had an unknown value.
* Misconfiguration. */
#define VERR_PDM_BLOCK_UNKNOWN_TRANSLATION (-2818)
/** The block driver type wasn't supported.
* Misconfiguration of the kind you get when attaching a floppy to an IDE controller. */
#define VERR_PDM_UNSUPPORTED_BLOCK_TYPE (-2819)
/** A attach or prepare mount call failed because the driver already
* had a driver attached. */
#define VERR_PDM_DRIVER_ALREADY_ATTACHED (-2820)
/** An attempt on deattaching a driver without anyone actually being attached, or
* performing any other operation on an attached driver. */
#define VERR_PDM_NO_DRIVER_ATTACHED (-2821)
/** The attached driver configuration is missing the 'Driver' attribute. */
#define VERR_PDM_CFG_MISSING_DRIVER_NAME (-2822)
/** The configured driver wasn't found.
* Either the necessary driver modules wasn't loaded, the name was
* misspelled, or it was a misconfiguration. */
#define VERR_PDM_DRIVER_NOT_FOUND (-2823)
/** The Ring-3 module was already loaded. */
#define VINF_PDM_ALREADY_LOADED (2824)
/** The name of the module clashed with an existing module. */
#define VERR_PDM_MODULE_NAME_CLASH (-2825)
/** Couldn't find any export for registration of drivers/devices. */
#define VERR_PDM_NO_REGISTRATION_EXPORT (-2826)
/** A module name is too long. */
#define VERR_PDM_MODULE_NAME_TOO_LONG (-2827)
/** Driver name clash. Another driver with the same name as the
* one begin registred exists. */
#define VERR_PDM_DRIVER_NAME_CLASH (-2828)
/** The version of the driver registration structure is unknown
* to this VBox version. Either mixing incompatible versions or
* the structure isn't correctly initialized. */
#define VERR_PDM_UNKNOWN_DRVREG_VERSION (-2829)
/** Invalid entry in the driver registration structure. */
#define VERR_PDM_INVALID_DRIVER_REGISTRATION (-2830)
/** Invalid host bit mask. */
#define VERR_PDM_INVALID_DRIVER_HOST_BITS (-2831)
/** Not possible to detach a driver because the above driver/device
* doesn't support it. The above entity doesn't implement the pfnDetach call. */
#define VERR_PDM_DRIVER_DETACH_NOT_POSSIBLE (-2832)
/** No PCI Bus is available to register the device with. This is usually a
* misconfiguration or in rare cases a buggy pci device. */
#define VERR_PDM_NO_PCI_BUS (-2833)
/** The device is not a registered PCI device and thus cannot
* perform any PCI operations. The device forgot to register it self. */
#define VERR_PDM_NOT_PCI_DEVICE (-2834)
/** The version of the device registration structure is unknown
* to this VBox version. Either mixing incompatible versions or
* the structure isn't correctly initialized. */
#define VERR_PDM_UNKNOWN_DEVREG_VERSION (-2835)
/** Invalid entry in the device registration structure. */
#define VERR_PDM_INVALID_DEVICE_REGISTRATION (-2836)
/** Invalid host bit mask. */
#define VERR_PDM_INVALID_DEVICE_GUEST_BITS (-2837)
/** The guest bit mask didn't match the guest being loaded. */
#define VERR_PDM_INVALID_DEVICE_HOST_BITS (-2838)
/** Device name clash. Another device with the same name as the
* one begin registred exists. */
#define VERR_PDM_DEVICE_NAME_CLASH (-2839)
/** The device wasn't found. There was no registered device
* by that name. */
#define VERR_PDM_DEVICE_NOT_FOUND (-2840)
/** The device instance was not found. */
#define VERR_PDM_DEVICE_INSTANCE_NOT_FOUND (-2841)
/** The device instance have no base interface. */
#define VERR_PDM_DEVICE_INSTANCE_NO_IBASE (-2842)
/** The device instance have no such logical unit. */
#define VERR_PDM_DEVICE_INSTANCE_LUN_NOT_FOUND (-2843)
/** The driver instance could not be found. */
#define VERR_PDM_DRIVER_INSTANCE_NOT_FOUND (-2844)
/** Logical Unit was not found. */
#define VERR_PDM_LUN_NOT_FOUND (-2845)
/** The Logical Unit was found, but it had no driver attached to it. */
#define VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN (-2846)
/** The Logical Unit was found, but it had no driver attached to it. */
#define VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN 2846
/** No PIC device instance is registered with the current VM and thus
* the PIC operation cannot be performed. */
#define VERR_PDM_NO_PIC_INSTANCE (-2847)
/** No APIC device instance is registered with the current VM and thus
* the APIC operation cannot be performed. */
#define VERR_PDM_NO_APIC_INSTANCE (-2848)
/** No DMAC device instance is registered with the current VM and thus
* the DMA operation cannot be performed. */
#define VERR_PDM_NO_DMAC_INSTANCE (-2849)
/** No RTC device instance is registered with the current VM and thus
* the RTC or CMOS operation cannot be performed. */
#define VERR_PDM_NO_RTC_INSTANCE (-2850)
/** Unable to open the host interface due to a sharing violation . */
#define VERR_PDM_HIF_SHARING_VIOLATION (-2851)
/** Unable to open the host interface. */
#define VERR_PDM_HIF_OPEN_FAILED (-2852)
/** The device doesn't support runtime driver attaching.
* The PDMDEVREG::pfnAttach callback function is NULL. */
#define VERR_PDM_DEVICE_NO_RT_ATTACH (-2853)
/** The device doesn't support runtime driver detaching.
* The PDMDEVREG::pfnDetach callback function is NULL. */
#define VERR_PDM_DEVICE_NO_RT_DETACH (-2854)
/** Invalid host interface version. */
#define VERR_PDM_HIF_INVALID_VERSION (-2855)
/** The version of the USB device registration structure is unknown
* to this VBox version. Either mixing incompatible versions or
* the structure isn't correctly initialized. */
#define VERR_PDM_UNKNOWN_USBREG_VERSION (-2856)
/** Invalid entry in the device registration structure. */
#define VERR_PDM_INVALID_USB_REGISTRATION (-2857)
/** Driver name clash. Another driver with the same name as the
* one begin registred exists. */
#define VERR_PDM_USB_NAME_CLASH (-2858)
/** The USB hub is already registered. */
#define VERR_PDM_USB_HUB_EXISTS (-2859)
/** Couldn't find any USB hubs to attach the device to. */
#define VERR_PDM_NO_USB_HUBS (-2860)
/** Couldn't find any free USB ports to attach the device to. */
#define VERR_PDM_NO_USB_PORTS (-2861)
/** Couldn't find the USB Proxy device. Using OSE? */
#define VERR_PDM_NO_USBPROXY (-2862)
/** The async completion template is still used. */
#define VERR_PDM_ASYNC_TEMPLATE_BUSY (-2863)
/** The async completion task is already suspended. */
#define VERR_PDM_ASYNC_COMPLETION_ALREADY_SUSPENDED (-2864)
/** The async completion task is not suspended. */
#define VERR_PDM_ASYNC_COMPLETION_NOT_SUSPENDED (-2865)
/** The driver properties were invalid, and as a consequence construction
* failed. Caused my unusable media or similar problems. */
#define VERR_PDM_DRIVER_INVALID_PROPERTIES (-2866)
/** @} */
/** @name Host-Guest Communication Manager (HGCM) Status Codes
* @{
*/
/** Requested service does not exist. */
#define VERR_HGCM_SERVICE_NOT_FOUND (-2900)
/** Service rejected client connection */
#define VINF_HGCM_CLIENT_REJECTED 2901
/** Command address is invalid. */
#define VERR_HGCM_INVALID_CMD_ADDRESS (-2902)
/** Service will execute the command in background. */
#define VINF_HGCM_ASYNC_EXECUTE 2903
/** HGCM could not perform requested operation because of an internal error. */
#define VERR_HGCM_INTERNAL (-2904)
/** Invalid HGCM client id. */
#define VERR_HGCM_INVALID_CLIENT_ID (-2905)
/** The HGCM is saving state. */
#define VINF_HGCM_SAVE_STATE (2906)
/** Requested service already exists. */
#define VERR_HGCM_SERVICE_EXISTS (-2907)
/** @} */
/** @name Network Address Translation Driver (DrvNAT) Status Codes
* @{
*/
/** Failed to find the DNS configured for this machine. */
#define VINF_NAT_DNS 3000
/** Failed to convert the specified Guest IP to a binary IP address.
* Malformed input. */
#define VERR_NAT_REDIR_GUEST_IP (-3001)
/** Failed while setting up a redirector rule.
* There probably is a conflict between the rule and some existing
* service on the computer. */
#define VERR_NAT_REDIR_SETUP (-3002)
/** @} */
/** @name HostIF Driver (DrvTUN) Status Codes
* @{
*/
/** The Host Interface Networking init program failed. */
#define VERR_HOSTIF_INIT_FAILED (-3100)
/** The Host Interface Networking device name is too long. */
#define VERR_HOSTIF_DEVICE_NAME_TOO_LONG (-3101)
/** The Host Interface Networking name config IOCTL call failed. */
#define VERR_HOSTIF_IOCTL (-3102)
/** Failed to make the Host Interface Networking handle non-blocking. */
#define VERR_HOSTIF_BLOCKING (-3103)
/** If a Host Interface Networking filehandle was specified it's not allowed to
* have any init or term programs. */
#define VERR_HOSTIF_FD_AND_INIT_TERM (-3104)
/** The Host Interface Networking terminate program failed. */
#define VERR_HOSTIF_TERM_FAILED (-3105)
/** @} */
/** @name VBox HDD Container (VDI) Status Codes
* @{
*/
/** Invalid image file header. */
#define VERR_VDI_INVALID_HEADER (-3200)
/** Invalid image file header: invalid signature. */
#define VERR_VDI_INVALID_SIGNATURE (-3201)
/** Invalid image file header: invalid version. */
#define VERR_VDI_UNSUPPORTED_VERSION (-3202)
/** Invalid image type. */
#define VERR_VDI_INVALID_TYPE (-3203)
/** Invalid image flags. */
#define VERR_VDI_INVALID_FLAGS (-3204)
/** Operation can't be done in current HDD container state. */
#define VERR_VDI_INVALID_STATE (-3205)
/** Differencing image can't be used with current base image. */
#define VERR_VDI_WRONG_DIFF_IMAGE (-3206)
/** Two or more images of one HDD has different versions. */
#define VERR_VDI_IMAGES_VERSION_MISMATCH (-3207)
/** Differencing and parent images can't be used together due to UUID. */
#define VERR_VDI_IMAGES_UUID_MISMATCH (-3208)
/** No differencing images to commit. */
#define VERR_VDI_NO_DIFF_IMAGES (-3209)
/** Virtual HDD is not opened. */
#define VERR_VDI_NOT_OPENED (-3210)
/** Requested image is not opened. */
#define VERR_VDI_IMAGE_NOT_FOUND (-3211)
/** Image is read-only. */
#define VERR_VDI_IMAGE_READ_ONLY (-3212)
/** Comment string is too long. */
#define VERR_VDI_COMMENT_TOO_LONG (-3213)
/** Geometry hasn't been set. */
#define VERR_VDI_GEOMETRY_NOT_SET (-3214)
/** No data for this block in image. */
#define VINF_VDI_BLOCK_FREE 3215
/** Configuration value not found. */
#define VERR_VDI_VALUE_NOT_FOUND (-3216)
/** @} */
/** @name VBox Guest Library (VBGL) Status Codes
* @{
*/
/** Library was not initialized. */
#define VERR_VBGL_NOT_INITIALIZED (-3300)
/** Virtual address was not allocated by the library. */
#define VERR_VBGL_INVALID_ADDR (-3301)
/** IOCtl to VBoxGuest driver failed. */
#define VERR_VBGL_IOCTL_FAILED (-3302)
/** @} */
/** @name VBox USB (VUSB) Status Codes
* @{
*/
/** No available ports on the hub.
* This error is returned when a device is attempted created and/or attached
* to a hub which is out of ports. */
#define VERR_VUSB_NO_PORTS (-3400)
/** The requested operation cannot be performed on a detached USB device. */
#define VERR_VUSB_DEVICE_NOT_ATTACHED (-3401)
/** Failed to allocate memory for a URB. */
#define VERR_VUSB_NO_URB_MEMORY (-3402)
/** General failure during URB queuing.
* This will go away when the queueing gets proper status code handling. */
#define VERR_VUSB_FAILED_TO_QUEUE_URB (-3403)
/** Device creation failed because the USB device name was not found. */
#define VERR_VUSB_DEVICE_NAME_NOT_FOUND (-3404)
/** Not permitted to open the USB device.
* The user doesn't have access to the device in the usbfs, check the mount options. */
#define VERR_VUSB_USBFS_PERMISSION (-3405)
/** The requested operation cannot be performed because the device
* is currently being reset. */
#define VERR_VUSB_DEVICE_IS_RESETTING (-3406)
/** @} */
/** @name VBox VGA Status Codes
* @{
*/
/** One of the custom modes was incorrect.
* The format or bit count of the custom mode value is invalid. */
#define VERR_VGA_INVALID_CUSTOM_MODE (-3500)
/** The display connector is resizing. */
#define VINF_VGA_RESIZE_IN_PROGRESS (3501)
/** @} */
/** @name VBox VMX Status Codes
* @{
*/
/** Invalid VMCS index or write to read-only element. */
#define VERR_VMX_INVALID_VMCS_FIELD (-4000)
/** Invalid VMCS pointer. */
#define VERR_VMX_INVALID_VMCS_PTR (-4001)
/** Invalid VMXON pointer. */
#define VERR_VMX_INVALID_VMXON_PTR (-4002)
/** Generic VMX failure. */
#define VERR_VMX_GENERIC (-4003)
/** Invalid CPU mode for VMX execution. */
#define VERR_VMX_UNSUPPORTED_MODE (-4004)
/** Unable to start VM execution. */
#define VERR_VMX_UNABLE_TO_START_VM (-4005)
/** Unable to resume VM execution. */
#define VERR_VMX_UNABLE_TO_RESUME_VM (-4006)
/** Unable to switch due to invalid host state. */
#define VERR_VMX_INVALID_HOST_STATE (-4007)
/** IA32_FEATURE_CONTROL MSR not setup correcty (turn on VMX in the host system BIOS) */
#define VERR_VMX_ILLEGAL_FEATURE_CONTROL_MSR (-4008)
/** VMX CPU extension not available */
#define VERR_VMX_NO_VMX (-4009)
/** VMXON failed; possibly because it was already run before */
#define VERR_VMX_VMXON_FAILED (-4010)
/** CPU was incorrectly left in VMX root mode; incompatible with VirtualBox */
#define VERR_VMX_IN_VMX_ROOT_MODE (-4011)
/** @} */
/** @name VBox SVM Status Codes
* @{
*/
/** Unable to start VM execution. */
#define VERR_SVM_UNABLE_TO_START_VM (-4050)
/** SVM bit not set in K6_EFER MSR */
#define VERR_SVM_ILLEGAL_EFER_MSR (-4051)
/** SVM CPU extension not available. */
#define VERR_SVM_NO_SVM (-4052)
/** SVM CPU extension disabled (by BIOS). */
#define VERR_SVM_DISABLED (-4053)
/** @} */
/** @name VBox HWACCM Status Codes
* @{
*/
/** Unable to start VM execution. */
#define VERR_HWACCM_UNKNOWN_CPU (-4100)
/** No CPUID support. */
#define VERR_HWACCM_NO_CPUID (-4101)
/** @} */
/** @name VBox GMM Status Codes
* @{
*/
/** The GMM is out of pages and needs to be give another chunk of user memory that
* it can lock down and borrow pages from. */
#define VERR_GMM_SEED_ME (-4150)
/** Unable to allocate more pages from the host system. */
#define VERR_GMM_OUT_OF_MEMORY (-4151)
/** Hit the global allocation limit.
* If you know there is still sufficient memory available, try raise the limit. */
#define VERR_GMM_HIT_GLOBAL_LIMIT (-4152)
/** Hit the a VM account limit. */
#define VERR_GMM_HIT_VM_ACCOUNT_LIMIT (-4153)
/** Attempt to free more memory than what was previously allocated. */
#define VERR_GMM_ATTEMPT_TO_FREE_TOO_MUCH (-4154)
/** Attempted to report too many pages as deflated. */
#define VERR_GMM_ATTEMPT_TO_DEFLATE_TOO_MUCH (-4155)
/** The page to be freed or updated was not found. */
#define VERR_GMM_PAGE_NOT_FOUND (-4156)
/** The specified shared page was not actually private. */
#define VERR_GMM_PAGE_NOT_PRIVATE (-4157)
/** The specified shared page was not actually shared. */
#define VERR_GMM_PAGE_NOT_SHARED (-4158)
/** The page to be freed was already freed. */
#define VERR_GMM_PAGE_ALREADY_FREE (-4159)
/** The page to be updated or freed was noted owned by the caller. */
#define VERR_GMM_NOT_PAGE_OWNER (-4160)
/** The specified chunk was not found. */
#define VERR_GMM_CHUNK_NOT_FOUND (-4161)
/** The chunk has already been mapped into the process. */
#define VERR_GMM_CHUNK_ALREADY_MAPPED (-4162)
/** The chunk to be unmapped isn't actually mapped into the process. */
#define VERR_GMM_CHUNK_NOT_MAPPED (-4163)
/** The reservation or reservation update was declined - too many VMs, too
* little memory, and/or too low GMM configuration. */
#define VERR_GMM_MEMORY_RESERVATION_DECLINED (-4164)
/** @} */
/** @name VBox GVM Status Codes
* @{
*/
/** The GVM is out of VM handle space. */
#define VERR_GVM_TOO_MANY_VMS (-4200)
/** The EMT thread was not blocked at the time of the call. */
#define VINF_GVM_NOT_BLOCKED 4201
/** RTThreadYield was called during a GVMMR0ShcedPoll call. */
#define VINF_GVM_YIELDED 4202
/** @} */
/** @name VBox Disassembler Status Codes
* @{
*/
/** Invalid opcode byte(s) */
#define VERR_DIS_INVALID_OPCODE (-5000)
/** Generic failure during disassembly. */
#define VERR_DIS_GEN_FAILURE (-5001)
/** @} */
/** @name VBox Webservice Status Codes
* @{
*/
/** Authentication failed (ISessionManager::logon()) */
#define VERR_WEB_NOT_AUTHENTICATED (-6000)
/** Invalid format of managed object reference */
#define VERR_WEB_INVALID_MANAGED_OBJECT_REFERENCE (-6001)
/** Invalid session ID in managed object reference */
#define VERR_WEB_INVALID_SESSION_ID (-6002)
/** Invalid object ID in managed object reference */
#define VERR_WEB_INVALID_OBJECT_ID (-6003)
/** @} */
/* SED-END */
/** @def VBOX_SUCCESS
* Check for success.
*
* @returns true if rc indicates success.
* @returns false if rc indicates failure.
*
* @param rc The iprt status code to test.
*/
#define VBOX_SUCCESS(rc) RT_SUCCESS(rc)
/** @def VBOX_FAILURE
* Check for failure.
*
* @returns true if rc indicates failure.
* @returns false if rc indicates success.
*
* @param rc The iprt status code to test.
*/
#define VBOX_FAILURE(rc) RT_FAILURE(rc)
/** @} */
#endif