VirtualBox

source: vbox/trunk/include/VBox/err.h@ 854

Last change on this file since 854 was 834, checked in by vboxsync, 18 years ago

GC Phys to HC virt conversion changes for dynamic RAM allocation.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 48.1 KB
Line 
1/** @file
2 * VirtualBox Status Codes.
3 */
4
5/*
6 * Copyright (C) 2006 InnoTek Systemberatung GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef __VBox_err_h__
22#define __VBox_err_h__
23
24#include <VBox/cdefs.h>
25#include <iprt/err.h>
26
27
28/** @defgroup grp_err Error Codes
29 * @{
30 */
31
32/* SED-START */
33
34/** @name Misc. Status Codes
35 * @{
36 */
37/** Failed to allocate VM memory. */
38#define VERR_NO_VM_MEMORY (-1000)
39/** GC is toased the VMM should be terminated at once, but no need to panic about it :-) */
40#define VERR_DONT_PANIC (-1001)
41/** Unsupported CPU. */
42#define VERR_UNSUPPORTED_CPU (-1002)
43/** Unsupported CPU mode. */
44#define VERR_UNSUPPORTED_CPU_MODE (-1003)
45/** Page not present. */
46#define VERR_PAGE_NOT_PRESENT (-1004)
47/** Invalid/Corrupted configuration file. */
48#define VERR_CFG_INVALID_FORMAT (-1005)
49/** No configuration value exists. */
50#define VERR_CFG_NO_VALUE (-1006)
51/** Not selector not present. */
52#define VERR_SELECTOR_NOT_PRESENT (-1007)
53/** Not code selector. */
54#define VERR_NOT_CODE_SELECTOR (-1008)
55/** Not data selector. */
56#define VERR_NOT_DATA_SELECTOR (-1009)
57/** Out of selector bounds. */
58#define VERR_OUT_OF_SELECTOR_BOUNDS (-1010)
59/** Invalid selector. Usually beyond table limits. */
60#define VERR_INVALID_SELECTOR (-1011)
61/** Invalid requested privilegde level. */
62#define VERR_INVALID_RPL (-1012)
63/** @} */
64
65
66/** @name Execution Monitor/Manager (EM) Status Codes
67 *
68 * The order of the status codes between VINF_EM_FIRST and VINF_EM_LAST
69 * are of vital importance. The lower the number the higher importance
70 * as a scheduling instruction.
71 * @{
72 */
73/** First scheduling related status code. */
74#define VINF_EM_FIRST 1100
75/** Indicating that the VM is being terminated and that the the execution
76 * shall stop. */
77#define VINF_EM_TERMINATE 1100
78/** Hypervisor code was stepped.
79 * EM will first send this to the debugger, and if the issue isn't
80 * resolved there it will enter guru meditation. */
81#define VINF_EM_DBG_HYPER_STEPPED 1101
82/** Hit a breakpoint in the hypervisor code,
83 * EM will first send this to the debugger, and if the issue isn't
84 * resolved there it will enter guru meditation. */
85#define VINF_EM_DBG_HYPER_BREAKPOINT 1102
86/** Hit a possible assertion in the hypervisor code,
87 * EM will first send this to the debugger, and if the issue isn't
88 * resolved there it will enter guru meditation. */
89#define VINF_EM_DBG_HYPER_ASSERTION 1103
90/** Indicating that the VM should be suspended for debugging because
91 * the developer wants to inspect the VM state. */
92#define VINF_EM_DBG_STOP 1104
93/** Indicating success single stepping and that EM should report that
94 * event to the debugger. */
95#define VINF_EM_DBG_STEPPED 1105
96/** Indicating that a breakpoint was hit and that EM should notify the debugger
97 * and in the event there is no debugger fail fatally. */
98#define VINF_EM_DBG_BREAKPOINT 1106
99/** Indicating that EM should single step an instruction.
100 * The instruction is stepped in the current execution mode (RAW/REM). */
101#define VINF_EM_DBG_STEP 1107
102/** Indicating that the VM is being turned off and that the EM should
103 * exit to the VM awaiting the destruction request. */
104#define VINF_EM_OFF 1108
105/** Indicating that the VM has been reset and that scheduling goes
106 * back to startup defaults. */
107#define VINF_EM_RESET 1109
108/** Indicating that the VM has been suspended and that the the thread
109 * should wait for request telling it what to do next. */
110#define VINF_EM_SUSPEND 1110
111/** Indicating that the VM has executed a halt instruction and that
112 * the emulation thread should wait for an interrupt before resuming
113 * execution. */
114#define VINF_EM_HALT 1111
115/** Indicating that the VM has been resumed and that the thread should
116 * start executing. */
117#define VINF_EM_RESUME 1112
118/** Indicating that a rescheduling to recompiled execution.
119 * Typically caused by raw-mode executing code which is difficult/slow
120 * to virtualize rawly.
121 * @note important to have a higher priority (lower number) than VINF_EM_RESCHEDULE
122 * and VINF_EM_RESCHEDULE_RAW
123 */
124#define VINF_EM_RESCHEDULE_REM 1114
125/** Indicating that a rescheduling to vmx-mode execution.
126 * Typically caused by REM detecting that hardware-accelerated raw-mode execution is possible.
127 */
128#define VINF_EM_RESCHEDULE_HWACC 1115
129/** Indicating that a rescheduling to raw-mode execution.
130 * Typically caused by REM detecting that raw-mode execution is possible.
131 * @note important to have a higher priority (lower number) than VINF_EM_RESCHEDULE
132 * and VINF_EM_RESCHEDULE_RAW
133 */
134#define VINF_EM_RESCHEDULE_RAW 1116
135/** Indicating that a rescheduling now is required. Typically caused by
136 * interrupts having changed the EIP. */
137#define VINF_EM_RESCHEDULE 1117
138/** Last scheduling related status code. (exclusive) */
139#define VINF_EM_LAST 1118
140
141/** Reason for leaving GC: Guest trap which couldn't be handled in GC.
142 * The trap is generally forwared to the REM and executed there. */
143#define VINF_EM_RAW_GUEST_TRAP 1120
144/** Reason for leaving GC: Interrupted by external interrupt.
145 * The interrupt needed to be handled by the host OS. */
146#define VINF_EM_RAW_INTERRUPT 1121
147/** Reason for leaving GC: Interrupted by external interrupt while in hypervisor code.
148 * The interrupt needed to be handled by the host OS and hypervisor execution must be
149 * resumed. VM state is not complete at this point. */
150#define VINF_EM_RAW_INTERRUPT_HYPER 1122
151/** Reason for leaving GC: A Ring switch was attempted.
152 * Normal cause of action is to execute this in REM. */
153#define VINF_EM_RAW_RING_SWITCH 1123
154/** Reason for leaving GC: A Ring switch was attempted using software interrupt.
155 * Normal cause of action is to execute this in REM. */
156#define VINF_EM_RAW_RING_SWITCH_INT 1124
157/** Reason for leaving GC: A privileged instruction was attempted executed.
158 * Normal cause of action is to execute this in REM. */
159#define VINF_EM_RAW_EXCEPTION_PRIVILEGED 1125
160
161/** Reason for leaving GC: Emulate instruction. */
162#define VINF_EM_RAW_EMULATE_INSTR 1126
163/** Reason for leaving GC: Unhandled TSS write.
164 * Recompiler gets control. */
165#define VINF_EM_RAW_EMULATE_INSTR_TSS_FAULT 1127
166/** Reason for leaving GC: Unhandled LDT write.
167 * Recompiler gets control. */
168#define VINF_EM_RAW_EMULATE_INSTR_LDT_FAULT 1128
169/** Reason for leaving GC: Unhandled IDT write.
170 * Recompiler gets control. */
171#define VINF_EM_RAW_EMULATE_INSTR_IDT_FAULT 1129
172/** Reason for leaving GC: Unhandled GDT write.
173 * Recompiler gets control. */
174#define VINF_EM_RAW_EMULATE_INSTR_GDT_FAULT 1130
175/** Reason for leaving GC: Unhandled Page Directory write.
176 * Recompiler gets control. */
177#define VINF_EM_RAW_EMULATE_INSTR_PD_FAULT 1131
178/** Reason for leaving GC: jump inside generated patch jump.
179 * Fatal error. */
180#define VERR_EM_RAW_PATCH_CONFLICT (-1132)
181/** Reason for leaving GC: Hlt instruction.
182 * Recompiler gets control. */
183#define VINF_EM_RAW_EMULATE_INSTR_HLT 1133
184/** Reason for leaving GC: Ring-3 operation pending. */
185#define VINF_EM_RAW_TO_R3 1134
186/** Reason for leaving GC: Timer pending. */
187#define VINF_EM_RAW_TIMER_PENDING 1135
188/** Reason for leaving GC: Interrupt pending (guest). */
189#define VINF_EM_RAW_INTERRUPT_PENDING 1136
190/** Reason for leaving GC: Encountered a stale selector. */
191#define VINF_EM_RAW_STALE_SELECTOR 1137
192/** Reason for leaving GC: The IRET resuming guest code trapped. */
193#define VINF_EM_RAW_IRET_TRAP 1138
194/** The interpreter was unable to deal with the instruction at hand. */
195#define VERR_EM_INTERPRETER (-1148)
196/** Internal EM error caused by an unknown warning or informational status code. */
197#define VERR_EM_INTERNAL_ERROR (-1149)
198/** Pending VM request packet. */
199#define VINF_EM_PENDING_REQUEST (-1150)
200/** @} */
201
202
203/** @name Debugging Facility (DBGF) DBGF Status Codes
204 * @{
205 */
206/** The function called requires the caller to be attached as a
207 * debugger to the VM. */
208#define VERR_DBGF_NOT_ATTACHED (-1200)
209/** Someone (including the caller) was already attached as
210 * debugger to the VM. */
211#define VERR_DBGF_ALREADY_ATTACHED (-1201)
212/** Tried to hald a debugger which was already halted.
213 * (This is a warning and not an error.) */
214#define VWRN_DBGF_ALREADY_HALTED 1202
215/** The DBGF has no more free breakpoint slots. */
216#define VERR_DBGF_NO_MORE_BP_SLOTS (-1203)
217/** The DBGF couldn't find the specified breakpoint. */
218#define VERR_DBGF_BP_NOT_FOUND (-1204)
219/** Attempted to enabled a breakpoint which was already enabled. */
220#define VINF_DBGF_BP_ALREADY_ENABLED 1205
221/** Attempted to disabled a breakpoint which was already disabled. */
222#define VINF_DBGF_BP_ALREADY_DISABLED 1206
223/** The breakpoint already exists. */
224#define VINF_DBGF_BP_ALREADY_EXIST 1207
225/** @} */
226
227
228/** @name Patch Manager (PATM) Status Codes
229 * @{
230 */
231/** Non fatal Patch Manager analysis phase warning */
232#define VWRN_CONTINUE_ANALYSIS 1400
233/** Non fatal Patch Manager recompile phase warning (mapped to VWRN_CONTINUE_ANALYSIS). */
234#define VWRN_CONTINUE_RECOMPILE VWRN_CONTINUE_ANALYSIS
235/** Continue search (mapped to VWRN_CONTINUE_ANALYSIS). */
236#define VWRN_PATM_CONTINUE_SEARCH VWRN_CONTINUE_ANALYSIS
237/** Patch installation refused (patch too complex or unsupported instructions ) */
238#define VERR_PATCHING_REFUSED (-1401)
239/** Unable to find patch */
240#define VERR_PATCH_NOT_FOUND (-1402)
241/** Patch disabled */
242#define VERR_PATCH_DISABLED (-1403)
243/** Patch enabled */
244#define VWRN_PATCH_ENABLED 1404
245/** Patch was already disabled */
246#define VERR_PATCH_ALREADY_DISABLED (-1405)
247/** Patch was already enabled */
248#define VERR_PATCH_ALREADY_ENABLED (-1406)
249/** Patch was removed. */
250#define VWRN_PATCH_REMOVED 1408
251
252/** Reason for leaving GC: \#GP with EIP pointing to patch code. */
253#define VINF_PATM_PATCH_TRAP_GP 1408
254/** First leave GC code. */
255#define VINF_PATM_LEAVEGC_FIRST VINF_PATM_PATCH_TRAP_GP
256/** Reason for leaving GC: \#PF with EIP pointing to patch code. */
257#define VINF_PATM_PATCH_TRAP_PF 1409
258/** Reason for leaving GC: int3 with EIP pointing to patch code. */
259#define VINF_PATM_PATCH_INT3 1410
260/** Reason for leaving GC: \#PF for monitored patch page. */
261#define VINF_PATM_CHECK_PATCH_PAGE 1411
262/** Reason for leaving GC: duplicate instruction called at current eip. */
263#define VINF_PATM_DUPLICATE_FUNCTION 1412
264/** Execute one instruction with the recompiler */
265#define VINF_PATCH_EMULATE_INSTR 1413
266/** Reason for leaving GC: attempt to patch MMIO write. */
267#define VINF_PATM_HC_MMIO_PATCH_WRITE 1414
268/** Reason for leaving GC: attempt to patch MMIO read. */
269#define VINF_PATM_HC_MMIO_PATCH_READ 1415
270/** Reason for leaving GC: pending irq after iret that sets IF. */
271#define VINF_PATM_PENDING_IRQ_AFTER_IRET 1416
272/** Last leave GC code. */
273#define VINF_PATM_LEAVEGC_LAST VINF_PATM_PENDING_IRQ_AFTER_IRET
274
275/** No conflicts to resolve */
276#define VERR_PATCH_NO_CONFLICT (-1425)
277/** Detected unsafe code for patching */
278#define VERR_PATM_UNSAFE_CODE (-1426)
279/** Terminate search branch */
280#define VWRN_PATCH_END_BRANCH 1427
281/** Already patched */
282#define VERR_PATM_ALREADY_PATCHED (-1428)
283/** Spinlock detection failed. */
284#define VINF_PATM_SPINLOCK_FAILED (1429)
285/** Continue execution after patch trap. */
286#define VINF_PATCH_CONTINUE (1430)
287
288/** @} */
289
290
291/** @name Code Scanning and Analysis Manager (CSAM) Status Codes
292 * @{
293 */
294/** Trap not handled */
295#define VWRN_CSAM_TRAP_NOT_HANDLED 1500
296/** Patch installed */
297#define VWRN_CSAM_INSTRUCTION_PATCHED 1501
298/** Page record not found */
299#define VWRN_CSAM_PAGE_NOT_FOUND 1502
300/** Reason for leaving GC: CSAM wants perform a task in ring-3. */
301#define VINF_CSAM_PENDING_ACTION 1503
302/** @} */
303
304
305/** @name Page Monitor/Manager (PGM) Status Codes
306 * @{
307 */
308/** Attempt to create a GC mapping which conflicts with an existing mapping. */
309#define VERR_PGM_MAPPING_CONFLICT (-1600)
310/** The physical handler range has no corresponding RAM range.
311 * If this is MMIO, see todo above the return. If not MMIO, then it's
312 * someone else's fault... */
313#define VERR_PGM_HANDLER_PHYSICAL_NO_RAM_RANGE (-1601)
314/** Attempt to register an access handler for a virtual range of which a part
315 * was already handled. */
316#define VERR_PGM_HANDLER_VIRTUAL_CONFLICT (-1602)
317/** Attempt to register an access handler for a physical range of which a part
318 * was already handled. */
319#define VERR_PGM_HANDLER_PHYSICAL_CONFLICT (-1603)
320/** Invalid page directory specified to PGM. */
321#define VERR_PGM_INVALID_PAGE_DIRECTORY (-1604)
322/** Invalid GC physical address. */
323#define VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS (-1605)
324/** Invalid GC physical range. Usually used when a specified range crosses
325 * a RAM region boundrary. */
326#define VERR_PGM_INVALID_GC_PHYSICAL_RANGE (-1606)
327/** Specified access handler was not found. */
328#define VERR_PGM_HANDLER_NOT_FOUND (-1607)
329/** Attempt to register a RAM range of which parts are already
330 * covered by existing RAM ranges. */
331#define VERR_PGM_RAM_CONFLICT (-1608)
332/** Failed to add new mappings because the current mappings are fixed
333 * in guest os memory. */
334#define VERR_PGM_MAPPINGS_FIXED (-1609)
335/** Failed to fix mappings because of a conflict with the intermediate code. */
336#define VERR_PGM_MAPPINGS_FIX_CONFLICT (-1610)
337/** Failed to fix mappings because a mapping rejected the address. */
338#define VERR_PGM_MAPPINGS_FIX_REJECTED (-1611)
339/** Failed to fix mappings because the proposed memory area was to small. */
340#define VERR_PGM_MAPPINGS_FIX_TOO_SMALL (-1612)
341/** Reason for leaving GC: The urge to syncing CR3. */
342#define VINF_PGM_SYNC_CR3 1613
343/** Page not marked for dirty bit tracking */
344#define VINF_PGM_NO_DIRTY_BIT_TRACKING 1614
345/** Page fault caused by dirty bit tracking; corrected */
346#define VINF_PGM_HANDLED_DIRTY_BIT_FAULT 1615
347/** Go ahead with the default Read/Write operation.
348 * This is returned by a HC physical or virtual handler when it wants the PGMPhys[Read|Write]
349 * routine do the reading/writing. */
350#define VINF_PGM_HANDLER_DO_DEFAULT 1616
351/** The paging mode of the host is not supported yet. */
352#define VERR_PGM_UNSUPPORTED_HOST_PAGING_MODE (-1617)
353/** The physical guest page is a reserved/mmio page and does not have any HC address. */
354#define VERR_PGM_PHYS_PAGE_RESERVED (-1618)
355/** No page directory available for the hypervisor. */
356#define VERR_PGM_NO_HYPERVISOR_ADDRESS (-1619)
357/** The shadow page pool was flushed.
358 * This means that a global CR3 sync was flagged. Anyone receiving this kind of status
359 * will have to get down to a SyncCR3 ASAP. See also VINF_PGM_SYNC_CR3. */
360#define VERR_PGM_POOL_FLUSHED (-1620)
361/** The shadow page pool was cleared.
362 * This is a error code internal to the shadow page pool, it will be
363 * converted to a VERR_PGM_POOL_FLUSHED before leaving the pool code. */
364#define VERR_PGM_POOL_CLEARED (-1621)
365/** The returned shadow page is cached. */
366#define VINF_PGM_CACHED_PAGE 1622
367/** Returned by handler registration, modification and deregistration
368 * when the shadow PTs could be updated because the guest page
369 * aliased or/and mapped by multiple PTs. */
370#define VINF_PGM_GCPHYS_ALIASED 1623
371/** Reason for leaving GC: Paging mode changed.
372 * PGMChangeMode() uses this to force a switch to HC so it can safely
373 * deal with a mode switch.
374 */
375#define VINF_PGM_CHANGE_MODE 1624
376/** SyncPage modified the PDE.
377 * This is an internal status code used to communicate back to the \#PF handler
378 * that the PDE was (probably) marked not-present and it should restart the instruction. */
379#define VINF_PGM_SYNCPAGE_MODIFIED_PDE 1625
380/** Physical range crosses dynamic ram chunk boundary; translation to HC ptr not safe. */
381#define VERR_PGM_GCPHYS_RANGE_CROSSES_BOUNDARY (-1626)
382/** @} */
383
384
385/** @name Memory Monitor (MM) Status Codes
386 * @{
387 */
388/** Attempt to register a RAM range of which parts are already
389 * covered by existing RAM ranges. */
390#define VERR_MM_RAM_CONFLICT (-1700)
391/** Hypervisor memory allocation failed. */
392#define VERR_MM_HYPER_NO_MEMORY (-1701)
393
394/** @} */
395
396
397/** @name Save State Manager (SSM) Status Codes
398 * @{
399 */
400/** The specified data unit already exist. */
401#define VERR_SSM_UNIT_EXISTS (-1800)
402/** The specified data unit wasn't found. */
403#define VERR_SSM_UNIT_NOT_FOUND (-1801)
404/** The specified data unit wasn't owned by caller. */
405#define VERR_SSM_UNIT_NOT_OWNER (-1802)
406/** General saved state file integrity error. */
407#define VERR_SSM_INTEGRITY (-1810)
408/** The saved state file magic was not recognized. */
409#define VERR_SSM_INTEGRITY_MAGIC (-1811)
410/** The saved state file magic was not recognized. */
411#define VERR_SSM_INTEGRITY_VERSION (-1812)
412/** The saved state file magic was not recognized. */
413#define VERR_SSM_INTEGRITY_SIZE (-1813)
414/** The CRC of the saved state file did match. */
415#define VERR_SSM_INTEGRITY_CRC (-1814)
416/** The current virtual machine id didn't match the virtual machine id. */
417#define VERR_SMM_INTEGRITY_MACHINE (-1815)
418/** Invalid unit magic (internal data tag). */
419#define VERR_SSM_INTEGRITY_UNIT_MAGIC (-1816)
420/** The file contained a data unit which no-one wants. */
421#define VERR_SSM_INTEGRITY_UNIT_NOT_FOUND (-1817)
422/** A data unit in the saved state file was defined but didn't any
423 * routine for processing it. */
424#define VERR_SSM_NO_LOAD_EXEC (-1818)
425/** A restore routine attempted to load more data then the unit contained. */
426#define VERR_SSM_LOADED_TOO_MUCH (-1819)
427/** Not in the correct state for the attempted operation. */
428#define VERR_SSM_INVALID_STATE (-1820)
429
430/** Unsupported data unit version.
431 * A SSM user returns this if it doesn't know the u32Version. */
432#define VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION (-1821)
433/** The format of a data unit has changed.
434 * A SSM user returns this if it's not able to read the format for
435 * other reasons than u32Version. */
436#define VERR_SSM_DATA_UNIT_FORMAT_CHANGED (-1822)
437/** The CPUID instruction returns different information when loading than when saved.
438 * Normally caused by hardware changes on the host, but could also be caused by
439 * changes in the BIOS setup. */
440#define VERR_SSM_LOAD_CPUID_MISMATCH (-1823)
441/** The RAM size differes between the saved state and the VM config. */
442#define VERR_SSM_LOAD_MEMORY_SIZE_MISMATCH (-1824)
443/** The state doesn't match the VM configuration in one or another way.
444 * (There are certain PCI reconfiguration which the OS could potentially
445 * do which can cause this problem. Check this out when it happens.) */
446#define VERR_SSM_LOAD_CONFIG_MISMATCH (-1825)
447/** The virtual clock freqency differs too much.
448 * The clock source for the virtual time isn't reliable or the code have changed. */
449#define VERR_SSM_VIRTUAL_CLOCK_HZ (-1826)
450/** A timeout occured while waiting for async IDE operations to finish. */
451#define VERR_SSM_IDE_ASYNC_TIMEOUT (-1827)
452/** One of the structure magics was wrong. */
453#define VERR_SSM_STRUCTURE_MAGIC (-1828)
454/** @} */
455
456
457/** @name Virtual Machine (VM) Status Codes
458 * @{
459 */
460/** The specified at reset handler wasn't found. */
461#define VERR_VM_ATRESET_NOT_FOUND (-1900)
462/** Invalid VM request type.
463 * For the VMR3ReqAlloc() case, the caller just specified an illegal enmType. For
464 * all the other occurences it means indicates corruption, broken logic, or stupid
465 * interface user. */
466#define VERR_VM_REQUEST_INVALID_TYPE (-1901)
467/** Invalid VM request state.
468 * The state of the request packet was not the expected and accepted one(s). Either
469 * the interface user screwed up, or we've got corruption/broken logic. */
470#define VERR_VM_REQUEST_STATE (-1902)
471/** Invalid VM request packet.
472 * One or more of the the VM controlled packet members didn't contain the correct
473 * values. Some thing's broken. */
474#define VERR_VM_REQUEST_INVALID_PACKAGE (-1903)
475/** The status field has not been updated yet as the request is still
476 * pending completion. Someone queried the iStatus field before the request
477 * has been fully processed. */
478#define VERR_VM_REQUEST_STATUS_STILL_PENDING (-1904)
479/** The request has been freed, don't read the status now.
480 * Someone is reading the iStatus field of a freed request packet. */
481#define VERR_VM_REQUEST_STATUS_FREED (-1905)
482/** A VM api requiring EMT was called from another thread.
483 * Use the VMR3ReqCall() apis to call it! */
484#define VERR_VM_THREAD_NOT_EMT (-1906)
485/** The VM state was invalid for the requested operation.
486 * Go check the 'VM Statechart Diagram.gif'. */
487#define VERR_VM_INVALID_VM_STATE (-1907)
488/** The support driver is not installed.
489 * On linux, open returned ENOENT. */
490#define VERR_VM_DRIVER_NOT_INSTALLED (-1908)
491/** The support driver is not accessible.
492 * On linux, open returned EPERM. */
493#define VERR_VM_DRIVER_NOT_ACCESSIBLE (-1909)
494/** Was not able to load the support driver.
495 * On linux, open returned ENODEV. */
496#define VERR_VM_DRIVER_LOAD_ERROR (-1910)
497/** Was not able to open the support driver.
498 * Generic open error used when none of the other ones fit. */
499#define VERR_VM_DRIVER_OPEN_ERROR (-1911)
500/** The installed support driver doesn't match the version of the user. */
501#define VERR_VM_DRIVER_VERSION_MISMATCH (-1912)
502/** @} */
503
504
505/** @name VBox Remote Desktop Protocol (VRDP) Status Codes
506 * @{
507 */
508/** Successful completion of operation (mapped to generic iprt status code). */
509#define VINF_VRDP_SUCCESS VINF_SUCCESS
510/** VRDP transport operation timed out (mapped to generic iprt status code). */
511#define VERR_VRDP_TIMEOUT VERR_TIMEOUT
512
513/** Unsupported ISO protocol feature */
514#define VERR_VRDP_ISO_UNSUPPORTED (-2000)
515/** Security (en/decryption) engine error */
516#define VERR_VRDP_SEC_ENGINE_FAIL (-2001)
517/** VRDP protocol violation */
518#define VERR_VRDP_PROTOCOL_ERROR (-2002)
519/** Unsupported VRDP protocol feature */
520#define VERR_VRDP_NOT_SUPPORTED (-2003)
521/** VRDP protocol violation, client sends less data than expected */
522#define VERR_VRDP_INSUFFICIENT_DATA (-2004)
523/** Internal error, VRDP packet is in wrong operation mode */
524#define VERR_VRDP_INVALID_MODE (-2005)
525/** Memory allocation failed */
526#define VERR_VRDP_NO_MEMORY (-2006)
527/** Client has been rejected */
528#define VERR_VRDP_ACCESS_DENIED (-2007)
529/** VRPD receives a packet that is not supported */
530#define VWRN_VRDP_PDU_NOT_SUPPORTED 2008
531/** VRDP script allowed the packet to be processed further */
532#define VINF_VRDP_PROCESS_PDU 2009
533/** VRDP script has completed its task */
534#define VINF_VRDP_OPERATION_COMPLETED 2010
535/** VRDP thread has started OK and will run */
536#define VINF_VRDP_THREAD_STARTED 2011
537/** Framebuffer is resized, terminate send bitmap procedure */
538#define VINF_VRDP_RESIZE_REQUESTED 2012
539/** Output can be enabled for the client. */
540#define VINF_VRDP_OUTPUT_ENABLE 2013
541/** @} */
542
543
544/** @name Configuration Manager (CFGM) Status Codes
545 * @{
546 */
547/** The integer value was too big for the requested representation. */
548#define VERR_CFGM_INTEGER_TOO_BIG (-2100)
549/** Child node was not found. */
550#define VERR_CFGM_CHILD_NOT_FOUND (-2101)
551/** Path to child node was invalid (i.e. empty). */
552#define VERR_CFGM_INVALID_CHILD_PATH (-2102)
553/** Value not found. */
554#define VERR_CFGM_VALUE_NOT_FOUND (-2103)
555/** No parent node specified. */
556#define VERR_CFGM_NO_PARENT (-2104)
557/** No node was specified. */
558#define VERR_CFGM_NO_NODE (-2105)
559/** The value is not an integer. */
560#define VERR_CFGM_NOT_INTEGER (-2106)
561/** The value is not a zero terminated character string. */
562#define VERR_CFGM_NOT_STRING (-2107)
563/** The value is not a byte string. */
564#define VERR_CFGM_NOT_BYTES (-2108)
565/** The specified string / bytes buffer was to small. Specify a larger one and retry. */
566#define VERR_CFGM_NOT_ENOUGH_SPACE (-2109)
567/** The path of a new node contained slashs or was empty. */
568#define VERR_CFGM_INVALID_NODE_PATH (-2160)
569/** A new node couldn't be inserted because one with the same name exists. */
570#define VERR_CFGM_NODE_EXISTS (-2161)
571/** A new leaf couldn't be inserted because one with the same name exists. */
572#define VERR_CFGM_LEAF_EXISTS (-2162)
573/** @} */
574
575
576/** @name Time Manager (TM) Status Codes
577 * @{
578 */
579/** The loaded timer state was incorrect. */
580#define VERR_TM_LOAD_STATE (-2200)
581/** The timer was not in the correct state for the request operation. */
582#define VERR_TM_INVALID_STATE (-2201)
583/** The timer was in a unknown state. Corruption or stupid coding error. */
584#define VERR_TM_UNKNOWN_STATE (-2202)
585/** The timer was stuck in an unstable state until we grew impatient and returned. */
586#define VERR_TM_UNSTABLE_STATE (-2203)
587/** @} */
588
589
590/** @name Recompiled Execution Manager (REM) Status Codes
591 * @{
592 */
593/** Fatal error in virtual hardware. */
594#define VERR_REM_VIRTUAL_HARDWARE_ERROR (-2300)
595/** Fatal error in the recompiler cpu. */
596#define VERR_REM_VIRTUAL_CPU_ERROR (-2301)
597/** Recompiler execution was interrupted by forced action. */
598#define VINF_REM_INTERRUPED_FF 2302
599/** Reason for leaving GC: Must flush pending invlpg operations to REM.
600 * Tell REM to flush page invalidations. Will temporary go to REM context
601 * from REM and perform the flushes. */
602#define VERR_REM_FLUSHED_PAGES_OVERFLOW (-2303)
603/** Too many similar traps. This is a very useful debug only
604 * check (we don't do double/tripple faults in REM). */
605#define VERR_REM_TOO_MANY_TRAPS (-2304)
606/** The REM is out of breakpoint slots. */
607#define VERR_REM_NO_MORE_BP_SLOTS (-2305)
608/** The REM could not find any breakpoint on the specified address. */
609#define VERR_REM_BP_NOT_FOUND (-2306)
610/** @} */
611
612
613/** @name Trap Manager / Monitor (TRPM) Status Codes
614 * @{
615 */
616/** No active trap. Cannot query or reset a non-existing trap. */
617#define VERR_TRPM_NO_ACTIVE_TRAP (-2400)
618/** Active trap. Cannot assert a new trap when when one is already active. */
619#define VERR_TRPM_ACTIVE_TRAP (-2401)
620/** Reason for leaving GC: Guest tried to write to our IDT - fatal.
621 * The VM will be terminated assuming the worst, i.e. that the
622 * guest has read the idtr register. */
623#define VERR_TRPM_SHADOW_IDT_WRITE (-2402)
624/** Reason for leaving GC: Fatal trap in hypervisor. */
625#define VERR_TRPM_DONT_PANIC (-2403)
626/** Reason for leaving GC: Double Fault. */
627#define VERR_TRPM_PANIC (-2404)
628/** The exception was dispatched for raw-mode execution. */
629#define VINF_TRPM_XCPT_DISPATCHED 2405
630/** @} */
631
632
633/** @name Selector Manager / Monitor (SELM) Status Code
634 * @{
635 */
636/** Reason for leaving GC: Guest tried to write to our GDT - fatal.
637 * The VM will be terminated assuming the worst, i.e. that the
638 * guest has read the gdtr register. */
639#define VERR_SELM_SHADOW_GDT_WRITE (-2500)
640/** Reason for leaving GC: Guest tried to write to our LDT - fatal.
641 * The VM will be terminated assuming the worst, i.e. that the
642 * guest has read the ldtr register. */
643#define VERR_SELM_SHADOW_LDT_WRITE (-2501)
644/** Reason for leaving GC: Guest tried to write to our TSS - fatal.
645 * The VM will be terminated assuming the worst, i.e. that the
646 * guest has read the ltr register. */
647#define VERR_SELM_SHADOW_TSS_WRITE (-2502)
648/** Reason for leaving GC: Sync the GDT table to solve a conflict. */
649#define VINF_SELM_SYNC_GDT 2503
650/** No valid TSS present. */
651#define VERR_SELM_NO_TSS (-2504)
652/** @} */
653
654
655/** @name I/O Manager / Monitor (IOM) Status Code
656 * @{
657 */
658/** The specified I/O port range was invalid.
659 * It was either empty or it was out of bounds. */
660#define VERR_IOM_INVALID_IOPORT_RANGE (-2600)
661/** The specified GC I/O port range didn't have a corresponding HC range.
662 * IOMIOPortRegisterHC() must be called before IOMIOPortRegisterGC(). */
663#define VERR_IOM_NO_HC_IOPORT_RANGE (-2601)
664/** The specified I/O port range intruded on an existing range. There is
665 * a I/O port conflict between two device, or a device tried to register
666 * the same range twice. */
667#define VERR_IOM_IOPORT_RANGE_CONFLICT (-2602)
668/** The I/O port range specified for removal wasn't found or it wasn't contiguous. */
669#define VERR_IOM_IOPORT_RANGE_NOT_FOUND (-2603)
670/** The specified I/O port range was owned by some other device(s). Both registration
671 * and deregistration, but in the first case only GC ranges. */
672#define VERR_IOM_NOT_IOPORT_RANGE_OWNER (-2604)
673
674/** The specified MMIO range was invalid.
675 * It was either empty or it was out of bounds. */
676#define VERR_IOM_INVALID_MMIO_RANGE (-2605)
677/** The specified GC MMIO range didn't have a corresponding HC range.
678 * IOMMMIORegisterHC() must be called before IOMMMIORegisterGC(). */
679#define VERR_IOM_NO_HC_MMIO_RANGE (-2606)
680/** The specified MMIO range was owned by some other device(s). Both registration
681 * and deregistration, but in the first case only GC ranges. */
682#define VERR_IOM_NOT_MMIO_RANGE_OWNER (-2607)
683/** The specified MMIO range intruded on an existing range. There is
684 * a MMIO conflict between two device, or a device tried to register
685 * the same range twice. */
686#define VERR_IOM_MMIO_RANGE_CONFLICT (-2608)
687/** The MMIO range specified for removal was not found. */
688#define VERR_IOM_MMIO_RANGE_NOT_FOUND (-2609)
689/** The MMIO range specified for removal was invalid. The range didn't match
690 * quite match a set of existing ranges. It's not possible to remove parts of
691 * a MMIO range, only one or more full ranges. */
692#define VERR_IOM_INCOMPLETE_MMIO_RANGE (-2610)
693/** An invalid I/O port size was specified for a read or write operation. */
694#define VERR_IOM_INVALID_IOPORT_SIZE (-2611)
695/** The MMIO handler was called for a bogus address! Internal error! */
696#define VERR_IOM_MMIO_HANDLER_BOGUS_CALL (-2612)
697/** The MMIO handler experienced a problem with the disassembler. */
698#define VERR_IOM_MMIO_HANDLER_DISASM_ERROR (-2613)
699/** The port being read was not present(/unused) and IOM shall return ~0 according to size. */
700#define VERR_IOM_IOPORT_UNUSED (-2614)
701/** Unused MMIO register read, fill with 00. */
702#define VINF_IOM_MMIO_UNUSED_00 2615
703/** Unused MMIO register read, fill with FF. */
704#define VINF_IOM_MMIO_UNUSED_FF 2616
705
706/** Reason for leaving GC: I/O port read. */
707#define VINF_IOM_HC_IOPORT_READ 2620
708/** Reason for leaving GC: I/O port write. */
709#define VINF_IOM_HC_IOPORT_WRITE 2621
710/** Reason for leaving GC: I/O read/write. */
711#define VINF_IOM_HC_IOPORT_READWRITE 2622
712/** Reason for leaving GC: MMIO write. */
713#define VINF_IOM_HC_MMIO_READ 2623
714/** Reason for leaving GC: MMIO read. */
715#define VINF_IOM_HC_MMIO_WRITE 2624
716/** Reason for leaving GC: MMIO read/write. */
717#define VINF_IOM_HC_MMIO_READ_WRITE 2625
718/** @} */
719
720
721/** @name Virtual Machine Monitor (VMM) Status Codes
722 * @{
723 */
724/** Reason for leaving GC: Calling host function. */
725#define VINF_VMM_CALL_HOST 2700
726/** @} */
727
728
729/** @name Pluggable Device and Driver Manager (PDM) Status Codes
730 * @{
731 */
732/** An invalid LUN specification was given. */
733#define VERR_PDM_NO_SUCH_LUN (-2800)
734/** A device encountered an unknown configuration value.
735 * This means that the device is potentially misconfigured and the device
736 * construction or unit attachment failed because of this. */
737#define VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES (-2801)
738/** The above driver doesn't export a interface required by a driver being
739 * attached to it. Typical misconfiguration problem. */
740#define VERR_PDM_MISSING_INTERFACE_ABOVE (-2802)
741/** The below driver doesn't export a interface required by the drive
742 * having attached it. Typical misconfiguration problem. */
743#define VERR_PDM_MISSING_INTERFACE_BELOW (-2803)
744/** A device didn't find a required interface with an attached driver.
745 * Typical misconfiguration problem. */
746#define VERR_PDM_MISSING_INTERFACE (-2804)
747/** A driver encountered an unknown configuration value.
748 * This means that the driver is potentially misconfigured and the driver
749 * construction. */
750#define VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES (-2805)
751/** The PCI bus assigned to a device didn't have room for it.
752 * Either too many devices are configured on the same PCI bus, or there are
753 * some internal problem where PDM/PCI doesn't free up slots when unplugging devices. */
754#define VERR_PDM_TOO_PCI_MANY_DEVICES (-2806)
755/** A queue is out of free items, the queueing operation failed. */
756#define VERR_PDM_NO_QUEUE_ITEMS (-2807)
757/** Not possible to attach further drivers to the driver.
758 * A driver which doesn't support attachments (below of course) will
759 * return this status code if it found that further drivers were configured
760 * to be attached to it. */
761#define VERR_PDM_DRVINS_NO_ATTACH (-2808)
762/** Not possible to attach drivers to the device.
763 * A device which doesn't support attachments (below of course) will
764 * return this status code if it found that drivers were configured
765 * to be attached to it. */
766#define VERR_PDM_DEVINS_NO_ATTACH (-2809)
767/** No attached driver.
768 * The PDMDRVHLP::pfnAttach and PDMDEVHLP::pfnDriverAttach will return
769 * this error when no driver was configured to be attached. */
770#define VERR_PDM_NO_ATTACHED_DRIVER (-2810)
771/** The media geometry hasn't been set yet, so it cannot be obtained.
772 * The caller should then calculate the geometry from the media size. */
773#define VERR_PDM_GEOMETRY_NOT_SET (-2811)
774/** The media translation hasn't been set yet, so it cannot be obtained.
775 * The caller should then guess the translation. */
776#define VERR_PDM_TRANSLATION_NOT_SET (-2812)
777/** The media is not mounted, operation requires a mounted media. */
778#define VERR_PDM_MEDIA_NOT_MOUNTED (-2813)
779/** Mount failed because a media was already mounted. Unmount the media
780 * and retry the mount. */
781#define VERR_PDM_MEDIA_MOUNTED (-2814)
782/** The media is locked and cannot be unmounted. */
783#define VERR_PDM_MEDIA_LOCKED (-2815)
784/** No 'Type' attribute in the DrvBlock configuration.
785 * Misconfiguration. */
786#define VERR_PDM_BLOCK_NO_TYPE (-2816)
787/** The 'Type' attribute in the DrvBlock configuration had an unknown value.
788 * Misconfiguration. */
789#define VERR_PDM_BLOCK_UNKNOWN_TYPE (-2817)
790/** The 'Translation' attribute in the DrvBlock configuration had an unknown value.
791 * Misconfiguration. */
792#define VERR_PDM_BLOCK_UNKNOWN_TRANSLATION (-2818)
793/** The block driver type wasn't supported.
794 * Misconfiguration of the kind you get when attaching a floppy to an IDE controller. */
795#define VERR_PDM_UNSUPPORTED_BLOCK_TYPE (-2819)
796/** A attach or prepare mount call failed because the driver already
797 * had a driver attached. */
798#define VERR_PDM_DRIVER_ALREADY_ATTACHED (-2820)
799/** An attempt on deattaching a driver without anyone actually being attached, or
800 * performing any other operation on an attached driver. */
801#define VERR_PDM_NO_DRIVER_ATTACHED (-2821)
802/** The attached driver configuration is missing the 'Driver' attribute. */
803#define VERR_PDM_CFG_MISSING_DRIVER_NAME (-2822)
804/** The configured driver wasn't found.
805 * Either the necessary driver modules wasn't loaded, the name was
806 * misspelled, or it was a misconfiguration. */
807#define VERR_PDM_DRIVER_NOT_FOUND (-2823)
808/** The Ring-3 module was already loaded. */
809#define VINF_PDM_ALREADY_LOADED (2824)
810/** The name of the module clashed with an existing module. */
811#define VERR_PDM_MODULE_NAME_CLASH (-2825)
812/** Couldn't find any export for registration of drivers/devices. */
813#define VERR_PDM_NO_REGISTRATION_EXPORT (-2826)
814/** A module name is too long. */
815#define VERR_PDM_MODULE_NAME_TOO_LONG (-2827)
816/** Driver name clash. Another driver with the same name as the
817 * one begin registred exists. */
818#define VERR_PDM_DRIVER_NAME_CLASH (-2828)
819/** The version of the driver registration structure is unknown
820 * to this VBox version. Either mixing incompatible versions or
821 * the structure isn't correctly initialized. */
822#define VERR_PDM_UNKNOWN_DRVREG_VERSION (-2829)
823/** Invalid entry in the driver registration structure. */
824#define VERR_PDM_INVALID_DRIVER_REGISTRATION (-2830)
825/** Invalid host bit mask. */
826#define VERR_PDM_INVALID_DRIVER_HOST_BITS (-2831)
827/** Not possible to detach a driver because the above driver/device
828 * doesn't support it. The above entity doesn't implement the pfnDetach call. */
829#define VERR_PDM_DRIVER_DETACH_NOT_POSSIBLE (-2832)
830/** No PCI Bus is available to register the device with. This is usually a
831 * misconfiguration or in rare cases a buggy pci device. */
832#define VERR_PDM_NO_PCI_BUS (-2833)
833/** The device is not a registered PCI device and thus cannot
834 * perform any PCI operations. The device forgot to register it self. */
835#define VERR_PDM_NOT_PCI_DEVICE (-2834)
836
837/** The version of the device registration structure is unknown
838 * to this VBox version. Either mixing incompatible versions or
839 * the structure isn't correctly initialized. */
840#define VERR_PDM_UNKNOWN_DEVREG_VERSION (-2835)
841/** Invalid entry in the device registration structure. */
842#define VERR_PDM_INVALID_DEVICE_REGISTRATION (-2836)
843/** Invalid host bit mask. */
844#define VERR_PDM_INVALID_DEVICE_GUEST_BITS (-2837)
845/** The guest bit mask didn't match the guest being loaded. */
846#define VERR_PDM_INVALID_DEVICE_HOST_BITS (-2838)
847/** Device name clash. Another device with the same name as the
848 * one begin registred exists. */
849#define VERR_PDM_DEVICE_NAME_CLASH (-2839)
850/** The device wasn't found. There was no registered device
851 * by that name. */
852#define VERR_PDM_DEVICE_NOT_FOUND (-2840)
853/** The device instance was not found. */
854#define VERR_PDM_DEVICE_INSTANCE_NOT_FOUND (-2841)
855/** The device instance have no base interface. */
856#define VERR_PDM_DEVICE_INSTANCE_NO_IBASE (-2842)
857/** The device instance have no such logical unit. */
858#define VERR_PDM_DEVICE_INSTANCE_LUN_NOT_FOUND (-2843)
859/** The driver instance could not be found. */
860#define VERR_PDM_DRIVER_INSTANCE_NOT_FOUND (-2844)
861/** Logical Unit was not found. */
862#define VERR_PDM_LUN_NOT_FOUND (-2845)
863/** The Logical Unit was found, but it had no driver attached to it. */
864#define VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN (-2846)
865/** The Logical Unit was found, but it had no driver attached to it. */
866#define VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN 2846
867/** No PIC device instance is registered with the current VM and thus
868 * the PIC operation cannot be performed. */
869#define VERR_PDM_NO_PIC_INSTANCE (-2847)
870/** No APIC device instance is registered with the current VM and thus
871 * the APIC operation cannot be performed. */
872#define VERR_PDM_NO_APIC_INSTANCE (-2848)
873/** No DMAC device instance is registered with the current VM and thus
874 * the DMA operation cannot be performed. */
875#define VERR_PDM_NO_DMAC_INSTANCE (-2849)
876/** No RTC device instance is registered with the current VM and thus
877 * the RTC or CMOS operation cannot be performed. */
878#define VERR_PDM_NO_RTC_INSTANCE (-2850)
879/** Unable to open the host interface due to a sharing violation . */
880#define VERR_PDM_HIF_SHARING_VIOLATION (-2851)
881/** Unable to open the host interface. */
882#define VERR_PDM_HIF_OPEN_FAILED (-2852)
883/** The device doesn't support runtime driver attaching.
884 * The PDMDEVREG::pfnAttach callback function is NULL. */
885#define VERR_PDM_DEVICE_NO_RT_ATTACH (-2853)
886/** The device doesn't support runtime driver detaching.
887 * The PDMDEVREG::pfnDetach callback function is NULL. */
888#define VERR_PDM_DEVICE_NO_RT_DETACH (-2854)
889/** Invalid host interface version. */
890#define VERR_PDM_HIF_INVALID_VERSION (-2855)
891
892/** @} */
893
894
895/** @name Host-Guest Communication Manager (HGCM) Status Codes
896 * @{
897 */
898/** Requested service does not exist. */
899#define VERR_HGCM_SERVICE_NOT_FOUND (-2900)
900/** Service rejected client connection */
901#define VINF_HGCM_CLIENT_REJECTED 2901
902/** Command address is invalid. */
903#define VERR_HGCM_INVALID_CMD_ADDRESS (-2902)
904/** Service will execute the command in background. */
905#define VINF_HGCM_ASYNC_EXECUTE 2903
906/** HGCM could not perform requested operation because of an internal error. */
907#define VERR_HGCM_INTERNAL (-2904)
908/** @} */
909
910
911/** @name Network Address Translation Driver (DrvNAT) Status Codes
912 * @{
913 */
914/** Failed to find the DNS configured for this machine. */
915#define VERR_NAT_DNS (-3000)
916/** Failed to convert the specified Guest IP to a binary IP address.
917 * Malformed input. */
918#define VERR_NAT_REDIR_GUEST_IP (-3001)
919/** Failed while setting up a redirector rule.
920 * There probably is a conflict between the rule and some existing
921 * service on the computer. */
922#define VERR_NAT_REDIR_SETUP (-3002)
923/** @} */
924
925
926/** @name HostIF Driver (DrvTUN) Status Codes
927 * @{
928 */
929/** The Host Interface Networking init program failed. */
930#define VERR_HOSTIF_INIT_FAILED (-3100)
931/** The Host Interface Networking device name is too long. */
932#define VERR_HOSTIF_DEVICE_NAME_TOO_LONG (-3101)
933/** The Host Interface Networking name config IOCTL call failed. */
934#define VERR_HOSTIF_IOCTL (-3102)
935/** Failed to make the Host Interface Networking handle non-blocking. */
936#define VERR_HOSTIF_BLOCKING (-3103)
937/** If a Host Interface Networking filehandle was specified it's not allowed to
938 * have any init or term programs. */
939#define VERR_HOSTIF_FD_AND_INIT_TERM (-3104)
940/** @} */
941
942
943/** @name VBox HDD Container (VDI) Status Codes
944 * @{
945 */
946/** Invalid image file header. */
947#define VERR_VDI_INVALID_HEADER (-3200)
948/** Invalid image file header: invalid signature. */
949#define VERR_VDI_INVALID_SIGNATURE (-3201)
950/** Invalid image file header: invalid version. */
951#define VERR_VDI_UNSUPPORTED_VERSION (-3202)
952/** Invalid image type. */
953#define VERR_VDI_INVALID_TYPE (-3203)
954/** Invalid image flags. */
955#define VERR_VDI_INVALID_FLAGS (-3204)
956/** Operation can't be done in current HDD container state. */
957#define VERR_VDI_INVALID_STATE (-3205)
958/** Differencing image can't be used with current base image. */
959#define VERR_VDI_WRONG_DIFF_IMAGE (-3206)
960/** Two or more images of one HDD has different versions. */
961#define VERR_VDI_IMAGES_VERSION_MISMATCH (-3207)
962/** Differencing and parent images can't be used together due to UUID. */
963#define VERR_VDI_IMAGES_UUID_MISMATCH (-3208)
964/** No differencing images to commit. */
965#define VERR_VDI_NO_DIFF_IMAGES (-3209)
966/** Virtual HDD is not opened. */
967#define VERR_VDI_NOT_OPENED (-3210)
968/** Requested image is not opened. */
969#define VERR_VDI_IMAGE_NOT_FOUND (-3211)
970/** Image is read-only. */
971#define VERR_VDI_IMAGE_READ_ONLY (-3212)
972/** Comment string is too long. */
973#define VERR_VDI_COMMENT_TOO_LONG (-3213)
974/** Geometry hasn't been set. */
975#define VERR_VDI_GEOMETRY_NOT_SET (-3214)
976/** @} */
977
978
979/** @name VBox Guest Library (VBGL) Status Codes
980 * @{
981 */
982/** Library was not initialized. */
983#define VERR_VBGL_NOT_INITIALIZED (-3300)
984/** Virtual address was not allocated by the library. */
985#define VERR_VBGL_INVALID_ADDR (-3301)
986/** IOCtl to VBoxGuest driver failed. */
987#define VERR_VBGL_IOCTL_FAILED (-3302)
988/** @} */
989
990
991/** @name VBox USB (VUSB) Status Codes
992 * @{
993 */
994/** No available ports on the hub.
995 * This error is returned when a device is attempted created and/or attached
996 * to a hub which is out of ports. */
997#define VERR_VUSB_NO_PORTS (-3400)
998/** The requested operation cannot be performed on a detached USB device. */
999#define VERR_VUSB_DEVICE_NOT_ATTACHED (-3401)
1000/** Failed to allocate memory for a URB. */
1001#define VERR_VUSB_NO_URB_MEMORY (-3402)
1002/** General failure during URB queuing.
1003 * This will go away when the queueing gets proper status code handling. */
1004#define VERR_VUSB_FAILED_TO_QUEUE_URB (-3403)
1005/** Device creation failed because the USB device name was not found. */
1006#define VERR_VUSB_DEVICE_NAME_NOT_FOUND (-3404)
1007/** Not permitted to open the USB device.
1008 * The user doesn't have access to the device in the usbfs, check the mount options. */
1009#define VERR_VUSB_USBFS_PERMISSION (-3405)
1010/** The requested operation cannot be performed because the device
1011 * is currently being reset. */
1012#define VERR_VUSB_DEVICE_IS_RESETTING (-3406)
1013/** @} */
1014
1015
1016/** @name VBox VGA Status Codes
1017 * @{
1018 */
1019/** One of the custom modes was incorrect.
1020 * The format or bit count of the custom mode value is invalid. */
1021#define VERR_VGA_INVALID_CUSTOM_MODE (-3500)
1022/** @} */
1023
1024
1025/** @name VBox VMX Status Codes
1026 * @{
1027 */
1028/** Invalid VMCS index or write to read-only element. */
1029#define VERR_VMX_INVALID_VMCS_FIELD (-4000)
1030/** Invalid VMCS pointer. */
1031#define VERR_VMX_INVALID_VMCS_PTR (-4001)
1032/** Invalid VMXON pointer. */
1033#define VERR_VMX_INVALID_VMXON_PTR (-4002)
1034/** Generic VMX failure. */
1035#define VERR_VMX_GENERIC (-4003)
1036/** Invalid CPU mode for VMX execution. */
1037#define VERR_VMX_UNSUPPORTED_MODE (-4004)
1038/** Unable to start VM execution. */
1039#define VERR_VMX_UNABLE_TO_START_VM (-4005)
1040/** Unable to resume VM execution. */
1041#define VERR_VMX_UNABLE_TO_RESUME_VM (-4006)
1042/** Unable to switch due to invalid host state. */
1043#define VERR_VMX_INVALID_HOST_STATE (-4007)
1044/** @} */
1045
1046/** @name VBox SVM Status Codes
1047 * @{
1048 */
1049/** Unable to start VM execution. */
1050#define VERR_SVM_UNABLE_TO_START_VM (-4050)
1051/** @} */
1052
1053/* SED-END */
1054
1055
1056/** @def VBOX_SUCCESS
1057 * Check for success.
1058 *
1059 * @returns true if rc indicates success.
1060 * @returns false if rc indicates failure.
1061 *
1062 * @param rc The iprt status code to test.
1063 */
1064#define VBOX_SUCCESS(rc) RT_SUCCESS(rc)
1065
1066/** @def VBOX_FAILURE
1067 * Check for failure.
1068 *
1069 * @returns true if rc indicates failure.
1070 * @returns false if rc indicates success.
1071 *
1072 * @param rc The iprt status code to test.
1073 */
1074#define VBOX_FAILURE(rc) RT_FAILURE(rc)
1075
1076/** @} */
1077
1078
1079#endif
1080
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette