1 | /** @file
|
---|
2 | * VirtualBox Status Codes.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | *
|
---|
25 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
26 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
27 | * additional information or have any questions.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef ___VBox_err_h
|
---|
31 | #define ___VBox_err_h
|
---|
32 |
|
---|
33 | #include <VBox/cdefs.h>
|
---|
34 | #include <iprt/err.h>
|
---|
35 |
|
---|
36 |
|
---|
37 | /** @defgroup grp_err Error Codes
|
---|
38 | * @{
|
---|
39 | */
|
---|
40 |
|
---|
41 | /* SED-START */
|
---|
42 |
|
---|
43 | /** @name Misc. Status Codes
|
---|
44 | * @{
|
---|
45 | */
|
---|
46 | /** Failed to allocate VM memory. */
|
---|
47 | #define VERR_NO_VM_MEMORY (-1000)
|
---|
48 | /** GC is toasted and the VMM should be terminated at once, but no need to panic about it :-) */
|
---|
49 | #define VERR_DONT_PANIC (-1001)
|
---|
50 | /** Unsupported CPU. */
|
---|
51 | #define VERR_UNSUPPORTED_CPU (-1002)
|
---|
52 | /** Unsupported CPU mode. */
|
---|
53 | #define VERR_UNSUPPORTED_CPU_MODE (-1003)
|
---|
54 | /** Page not present. */
|
---|
55 | #define VERR_PAGE_NOT_PRESENT (-1004)
|
---|
56 | /** Invalid/Corrupted configuration file. */
|
---|
57 | #define VERR_CFG_INVALID_FORMAT (-1005)
|
---|
58 | /** No configuration value exists. */
|
---|
59 | #define VERR_CFG_NO_VALUE (-1006)
|
---|
60 | /** Not selector not present. */
|
---|
61 | #define VERR_SELECTOR_NOT_PRESENT (-1007)
|
---|
62 | /** Not code selector. */
|
---|
63 | #define VERR_NOT_CODE_SELECTOR (-1008)
|
---|
64 | /** Not data selector. */
|
---|
65 | #define VERR_NOT_DATA_SELECTOR (-1009)
|
---|
66 | /** Out of selector bounds. */
|
---|
67 | #define VERR_OUT_OF_SELECTOR_BOUNDS (-1010)
|
---|
68 | /** Invalid selector. Usually beyond table limits. */
|
---|
69 | #define VERR_INVALID_SELECTOR (-1011)
|
---|
70 | /** Invalid requested privilegde level. */
|
---|
71 | #define VERR_INVALID_RPL (-1012)
|
---|
72 | /** PML4 entry not present. */
|
---|
73 | #define VERR_PAGE_MAP_LEVEL4_NOT_PRESENT (-1013)
|
---|
74 | /** Page directory pointer not present. */
|
---|
75 | #define VERR_PAGE_DIRECTORY_PTR_NOT_PRESENT (-1014)
|
---|
76 | /** @} */
|
---|
77 |
|
---|
78 |
|
---|
79 | /** @name Execution Monitor/Manager (EM) Status Codes
|
---|
80 | *
|
---|
81 | * The order of the status codes between VINF_EM_FIRST and VINF_EM_LAST
|
---|
82 | * are of vital importance. The lower the number the higher importance
|
---|
83 | * as a scheduling instruction.
|
---|
84 | * @{
|
---|
85 | */
|
---|
86 | /** First scheduling related status code. */
|
---|
87 | #define VINF_EM_FIRST 1100
|
---|
88 | /** Indicating that the VM is being terminated and that the the execution
|
---|
89 | * shall stop. */
|
---|
90 | #define VINF_EM_TERMINATE 1100
|
---|
91 | /** Hypervisor code was stepped.
|
---|
92 | * EM will first send this to the debugger, and if the issue isn't
|
---|
93 | * resolved there it will enter guru meditation. */
|
---|
94 | #define VINF_EM_DBG_HYPER_STEPPED 1101
|
---|
95 | /** Hit a breakpoint in the hypervisor code,
|
---|
96 | * EM will first send this to the debugger, and if the issue isn't
|
---|
97 | * resolved there it will enter guru meditation. */
|
---|
98 | #define VINF_EM_DBG_HYPER_BREAKPOINT 1102
|
---|
99 | /** Hit a possible assertion in the hypervisor code,
|
---|
100 | * EM will first send this to the debugger, and if the issue isn't
|
---|
101 | * resolved there it will enter guru meditation. */
|
---|
102 | #define VINF_EM_DBG_HYPER_ASSERTION 1103
|
---|
103 | /** Indicating that the VM should be suspended for debugging because
|
---|
104 | * the developer wants to inspect the VM state. */
|
---|
105 | #define VINF_EM_DBG_STOP 1105
|
---|
106 | /** Indicating success single stepping and that EM should report that
|
---|
107 | * event to the debugger. */
|
---|
108 | #define VINF_EM_DBG_STEPPED 1106
|
---|
109 | /** Indicating that a breakpoint was hit and that EM should notify the debugger
|
---|
110 | * and in the event there is no debugger fail fatally. */
|
---|
111 | #define VINF_EM_DBG_BREAKPOINT 1107
|
---|
112 | /** Indicating that EM should single step an instruction.
|
---|
113 | * The instruction is stepped in the current execution mode (RAW/REM). */
|
---|
114 | #define VINF_EM_DBG_STEP 1108
|
---|
115 | /** Indicating that the VM is being turned off and that the EM should
|
---|
116 | * exit to the VM awaiting the destruction request. */
|
---|
117 | #define VINF_EM_OFF 1109
|
---|
118 | /** Indicating that the VM has been reset and that scheduling goes
|
---|
119 | * back to startup defaults. */
|
---|
120 | #define VINF_EM_RESET 1110
|
---|
121 | /** Indicating that the VM has been suspended and that the the thread
|
---|
122 | * should wait for request telling it what to do next. */
|
---|
123 | #define VINF_EM_SUSPEND 1111
|
---|
124 | /** Indicating that the VM has executed a halt instruction and that
|
---|
125 | * the emulation thread should wait for an interrupt before resuming
|
---|
126 | * execution. */
|
---|
127 | #define VINF_EM_HALT 1112
|
---|
128 | /** Indicating that the VM has been resumed and that the thread should
|
---|
129 | * start executing. */
|
---|
130 | #define VINF_EM_RESUME 1113
|
---|
131 | /** Indicating that we've got an out-of-memory condition and that we need
|
---|
132 | * to take the appropriate actions to deal with this.
|
---|
133 | * @remarks It might seem odd at first that this has lower priority than VINF_EM_HALT,
|
---|
134 | * VINF_EM_SUSPEND, and VINF_EM_RESUME. The reason is that these events are
|
---|
135 | * vital to correctly operating the VM. Also, they can't normally occur together
|
---|
136 | * with an out-of-memory condition, and even if that should happen the condition
|
---|
137 | * will be rediscovered before executing any more code. */
|
---|
138 | #define VINF_EM_NO_MEMORY 1114
|
---|
139 | /** The fatal variant of VINF_EM_NO_MEMORY. */
|
---|
140 | #define VERR_EM_NO_MEMORY (-1114)
|
---|
141 | /** Indicating that a rescheduling to recompiled execution.
|
---|
142 | * Typically caused by raw-mode executing code which is difficult/slow
|
---|
143 | * to virtualize rawly.
|
---|
144 | * @remarks Important to have a higher priority (lower number) than the other rescheduling status codes. */
|
---|
145 | #define VINF_EM_RESCHEDULE_REM 1115
|
---|
146 | /** Indicating that a rescheduling to vmx-mode execution.
|
---|
147 | * Typically caused by REM detecting that hardware-accelerated raw-mode execution is possible. */
|
---|
148 | #define VINF_EM_RESCHEDULE_HWACC 1116
|
---|
149 | /** Indicating that a rescheduling to raw-mode execution.
|
---|
150 | * Typically caused by REM detecting that raw-mode execution is possible.
|
---|
151 | * @remarks Important to have a higher priority (lower number) than VINF_EM_RESCHEDULE. */
|
---|
152 | #define VINF_EM_RESCHEDULE_RAW 1117
|
---|
153 | /** Indicating that a rescheduling now is required. Typically caused by
|
---|
154 | * interrupts having changed the EIP. */
|
---|
155 | #define VINF_EM_RESCHEDULE 1118
|
---|
156 | /** PARAV call */
|
---|
157 | #define VINF_EM_RESCHEDULE_PARAV 1119
|
---|
158 | /** Last scheduling related status code. (inclusive) */
|
---|
159 | #define VINF_EM_LAST 1119
|
---|
160 |
|
---|
161 | /** Reason for leaving GC: Guest trap which couldn't be handled in GC.
|
---|
162 | * The trap is generally forwared to the REM and executed there. */
|
---|
163 | #define VINF_EM_RAW_GUEST_TRAP 1121
|
---|
164 | /** Reason for leaving GC: Interrupted by external interrupt.
|
---|
165 | * The interrupt needed to be handled by the host OS. */
|
---|
166 | #define VINF_EM_RAW_INTERRUPT 1122
|
---|
167 | /** Reason for leaving GC: Interrupted by external interrupt while in hypervisor code.
|
---|
168 | * The interrupt needed to be handled by the host OS and hypervisor execution must be
|
---|
169 | * resumed. VM state is not complete at this point. */
|
---|
170 | #define VINF_EM_RAW_INTERRUPT_HYPER 1123
|
---|
171 | /** Reason for leaving GC: A Ring switch was attempted.
|
---|
172 | * Normal cause of action is to execute this in REM. */
|
---|
173 | #define VINF_EM_RAW_RING_SWITCH 1124
|
---|
174 | /** Reason for leaving GC: A Ring switch was attempted using software interrupt.
|
---|
175 | * Normal cause of action is to execute this in REM. */
|
---|
176 | #define VINF_EM_RAW_RING_SWITCH_INT 1125
|
---|
177 | /** Reason for leaving GC: A privileged instruction was attempted executed.
|
---|
178 | * Normal cause of action is to execute this in REM. */
|
---|
179 | #define VINF_EM_RAW_EXCEPTION_PRIVILEGED 1126
|
---|
180 |
|
---|
181 | /** Reason for leaving GC: Emulate instruction. */
|
---|
182 | #define VINF_EM_RAW_EMULATE_INSTR 1127
|
---|
183 | /** Reason for leaving GC: Unhandled TSS write.
|
---|
184 | * Recompiler gets control. */
|
---|
185 | #define VINF_EM_RAW_EMULATE_INSTR_TSS_FAULT 1128
|
---|
186 | /** Reason for leaving GC: Unhandled LDT write.
|
---|
187 | * Recompiler gets control. */
|
---|
188 | #define VINF_EM_RAW_EMULATE_INSTR_LDT_FAULT 1129
|
---|
189 | /** Reason for leaving GC: Unhandled IDT write.
|
---|
190 | * Recompiler gets control. */
|
---|
191 | #define VINF_EM_RAW_EMULATE_INSTR_IDT_FAULT 1130
|
---|
192 | /** Reason for leaving GC: Unhandled GDT write.
|
---|
193 | * Recompiler gets control. */
|
---|
194 | #define VINF_EM_RAW_EMULATE_INSTR_GDT_FAULT 1131
|
---|
195 | /** Reason for leaving GC: Unhandled Page Directory write.
|
---|
196 | * Recompiler gets control. */
|
---|
197 | #define VINF_EM_RAW_EMULATE_INSTR_PD_FAULT 1132
|
---|
198 | /** Reason for leaving GC: jump inside generated patch jump.
|
---|
199 | * Fatal error. */
|
---|
200 | #define VERR_EM_RAW_PATCH_CONFLICT (-1133)
|
---|
201 | /** Reason for leaving GC: Hlt instruction.
|
---|
202 | * Recompiler gets control. */
|
---|
203 | #define VINF_EM_RAW_EMULATE_INSTR_HLT 1134
|
---|
204 | /** Reason for leaving GC: Ring-3 operation pending. */
|
---|
205 | #define VINF_EM_RAW_TO_R3 1135
|
---|
206 | /** Reason for leaving GC: Timer pending. */
|
---|
207 | #define VINF_EM_RAW_TIMER_PENDING 1136
|
---|
208 | /** Reason for leaving GC: Interrupt pending (guest). */
|
---|
209 | #define VINF_EM_RAW_INTERRUPT_PENDING 1137
|
---|
210 | /** Reason for leaving GC: Encountered a stale selector. */
|
---|
211 | #define VINF_EM_RAW_STALE_SELECTOR 1138
|
---|
212 | /** Reason for leaving GC: The IRET resuming guest code trapped. */
|
---|
213 | #define VINF_EM_RAW_IRET_TRAP 1139
|
---|
214 | /** The interpreter was unable to deal with the instruction at hand. */
|
---|
215 | #define VERR_EM_INTERPRETER (-1148)
|
---|
216 | /** Internal EM error caused by an unknown warning or informational status code. */
|
---|
217 | #define VERR_EM_INTERNAL_ERROR (-1149)
|
---|
218 | /** Pending VM request packet. */
|
---|
219 | #define VINF_EM_PENDING_REQUEST (-1150)
|
---|
220 | /** @} */
|
---|
221 |
|
---|
222 |
|
---|
223 | /** @name Debugging Facility (DBGF) DBGF Status Codes
|
---|
224 | * @{
|
---|
225 | */
|
---|
226 | /** The function called requires the caller to be attached as a
|
---|
227 | * debugger to the VM. */
|
---|
228 | #define VERR_DBGF_NOT_ATTACHED (-1200)
|
---|
229 | /** Someone (including the caller) was already attached as
|
---|
230 | * debugger to the VM. */
|
---|
231 | #define VERR_DBGF_ALREADY_ATTACHED (-1201)
|
---|
232 | /** Tried to hald a debugger which was already halted.
|
---|
233 | * (This is a warning and not an error.) */
|
---|
234 | #define VWRN_DBGF_ALREADY_HALTED 1202
|
---|
235 | /** The DBGF has no more free breakpoint slots. */
|
---|
236 | #define VERR_DBGF_NO_MORE_BP_SLOTS (-1203)
|
---|
237 | /** The DBGF couldn't find the specified breakpoint. */
|
---|
238 | #define VERR_DBGF_BP_NOT_FOUND (-1204)
|
---|
239 | /** Attempted to enabled a breakpoint which was already enabled. */
|
---|
240 | #define VINF_DBGF_BP_ALREADY_ENABLED 1205
|
---|
241 | /** Attempted to disabled a breakpoint which was already disabled. */
|
---|
242 | #define VINF_DBGF_BP_ALREADY_DISABLED 1206
|
---|
243 | /** The breakpoint already exists. */
|
---|
244 | #define VINF_DBGF_BP_ALREADY_EXIST 1207
|
---|
245 | /** The byte string was not found. */
|
---|
246 | #define VERR_DBGF_MEM_NOT_FOUND (-1208)
|
---|
247 | /** The OS was not detected. */
|
---|
248 | #define VERR_DBGF_OS_NOT_DETCTED (-1209)
|
---|
249 | /** The OS was not detected. */
|
---|
250 | #define VINF_DBGF_OS_NOT_DETCTED 1209
|
---|
251 | /** @} */
|
---|
252 |
|
---|
253 |
|
---|
254 | /** @name Patch Manager (PATM) Status Codes
|
---|
255 | * @{
|
---|
256 | */
|
---|
257 | /** Non fatal Patch Manager analysis phase warning */
|
---|
258 | #define VWRN_CONTINUE_ANALYSIS 1400
|
---|
259 | /** Non fatal Patch Manager recompile phase warning (mapped to VWRN_CONTINUE_ANALYSIS). */
|
---|
260 | #define VWRN_CONTINUE_RECOMPILE VWRN_CONTINUE_ANALYSIS
|
---|
261 | /** Continue search (mapped to VWRN_CONTINUE_ANALYSIS). */
|
---|
262 | #define VWRN_PATM_CONTINUE_SEARCH VWRN_CONTINUE_ANALYSIS
|
---|
263 | /** Patch installation refused (patch too complex or unsupported instructions ) */
|
---|
264 | #define VERR_PATCHING_REFUSED (-1401)
|
---|
265 | /** Unable to find patch */
|
---|
266 | #define VERR_PATCH_NOT_FOUND (-1402)
|
---|
267 | /** Patch disabled */
|
---|
268 | #define VERR_PATCH_DISABLED (-1403)
|
---|
269 | /** Patch enabled */
|
---|
270 | #define VWRN_PATCH_ENABLED 1404
|
---|
271 | /** Patch was already disabled */
|
---|
272 | #define VERR_PATCH_ALREADY_DISABLED (-1405)
|
---|
273 | /** Patch was already enabled */
|
---|
274 | #define VERR_PATCH_ALREADY_ENABLED (-1406)
|
---|
275 | /** Patch was removed. */
|
---|
276 | #define VWRN_PATCH_REMOVED 1408
|
---|
277 |
|
---|
278 | /** Reason for leaving GC: \#GP with EIP pointing to patch code. */
|
---|
279 | #define VINF_PATM_PATCH_TRAP_GP 1408
|
---|
280 | /** First leave GC code. */
|
---|
281 | #define VINF_PATM_LEAVEGC_FIRST VINF_PATM_PATCH_TRAP_GP
|
---|
282 | /** Reason for leaving GC: \#PF with EIP pointing to patch code. */
|
---|
283 | #define VINF_PATM_PATCH_TRAP_PF 1409
|
---|
284 | /** Reason for leaving GC: int3 with EIP pointing to patch code. */
|
---|
285 | #define VINF_PATM_PATCH_INT3 1410
|
---|
286 | /** Reason for leaving GC: \#PF for monitored patch page. */
|
---|
287 | #define VINF_PATM_CHECK_PATCH_PAGE 1411
|
---|
288 | /** Reason for leaving GC: duplicate instruction called at current eip. */
|
---|
289 | #define VINF_PATM_DUPLICATE_FUNCTION 1412
|
---|
290 | /** Execute one instruction with the recompiler */
|
---|
291 | #define VINF_PATCH_EMULATE_INSTR 1413
|
---|
292 | /** Reason for leaving GC: attempt to patch MMIO write. */
|
---|
293 | #define VINF_PATM_HC_MMIO_PATCH_WRITE 1414
|
---|
294 | /** Reason for leaving GC: attempt to patch MMIO read. */
|
---|
295 | #define VINF_PATM_HC_MMIO_PATCH_READ 1415
|
---|
296 | /** Reason for leaving GC: pending irq after iret that sets IF. */
|
---|
297 | #define VINF_PATM_PENDING_IRQ_AFTER_IRET 1416
|
---|
298 | /** Last leave GC code. */
|
---|
299 | #define VINF_PATM_LEAVEGC_LAST VINF_PATM_PENDING_IRQ_AFTER_IRET
|
---|
300 |
|
---|
301 | /** No conflicts to resolve */
|
---|
302 | #define VERR_PATCH_NO_CONFLICT (-1425)
|
---|
303 | /** Detected unsafe code for patching */
|
---|
304 | #define VERR_PATM_UNSAFE_CODE (-1426)
|
---|
305 | /** Terminate search branch */
|
---|
306 | #define VWRN_PATCH_END_BRANCH 1427
|
---|
307 | /** Already patched */
|
---|
308 | #define VERR_PATM_ALREADY_PATCHED (-1428)
|
---|
309 | /** Spinlock detection failed. */
|
---|
310 | #define VINF_PATM_SPINLOCK_FAILED (1429)
|
---|
311 | /** Continue execution after patch trap. */
|
---|
312 | #define VINF_PATCH_CONTINUE (1430)
|
---|
313 |
|
---|
314 | /** @} */
|
---|
315 |
|
---|
316 |
|
---|
317 | /** @name Code Scanning and Analysis Manager (CSAM) Status Codes
|
---|
318 | * @{
|
---|
319 | */
|
---|
320 | /** Trap not handled */
|
---|
321 | #define VWRN_CSAM_TRAP_NOT_HANDLED 1500
|
---|
322 | /** Patch installed */
|
---|
323 | #define VWRN_CSAM_INSTRUCTION_PATCHED 1501
|
---|
324 | /** Page record not found */
|
---|
325 | #define VWRN_CSAM_PAGE_NOT_FOUND 1502
|
---|
326 | /** Reason for leaving GC: CSAM wants perform a task in ring-3. */
|
---|
327 | #define VINF_CSAM_PENDING_ACTION 1503
|
---|
328 | /** @} */
|
---|
329 |
|
---|
330 |
|
---|
331 | /** @name Page Monitor/Manager (PGM) Status Codes
|
---|
332 | * @{
|
---|
333 | */
|
---|
334 | /** Attempt to create a GC mapping which conflicts with an existing mapping. */
|
---|
335 | #define VERR_PGM_MAPPING_CONFLICT (-1600)
|
---|
336 | /** The physical handler range has no corresponding RAM range.
|
---|
337 | * If this is MMIO, see todo above the return. If not MMIO, then it's
|
---|
338 | * someone else's fault... */
|
---|
339 | #define VERR_PGM_HANDLER_PHYSICAL_NO_RAM_RANGE (-1601)
|
---|
340 | /** Attempt to register an access handler for a virtual range of which a part
|
---|
341 | * was already handled. */
|
---|
342 | #define VERR_PGM_HANDLER_VIRTUAL_CONFLICT (-1602)
|
---|
343 | /** Attempt to register an access handler for a physical range of which a part
|
---|
344 | * was already handled. */
|
---|
345 | #define VERR_PGM_HANDLER_PHYSICAL_CONFLICT (-1603)
|
---|
346 | /** Invalid page directory specified to PGM. */
|
---|
347 | #define VERR_PGM_INVALID_PAGE_DIRECTORY (-1604)
|
---|
348 | /** Invalid GC physical address. */
|
---|
349 | #define VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS (-1605)
|
---|
350 | /** Invalid GC physical range. Usually used when a specified range crosses
|
---|
351 | * a RAM region boundrary. */
|
---|
352 | #define VERR_PGM_INVALID_GC_PHYSICAL_RANGE (-1606)
|
---|
353 | /** Specified access handler was not found. */
|
---|
354 | #define VERR_PGM_HANDLER_NOT_FOUND (-1607)
|
---|
355 | /** Attempt to register a RAM range of which parts are already
|
---|
356 | * covered by existing RAM ranges. */
|
---|
357 | #define VERR_PGM_RAM_CONFLICT (-1608)
|
---|
358 | /** Failed to add new mappings because the current mappings are fixed
|
---|
359 | * in guest os memory. */
|
---|
360 | #define VERR_PGM_MAPPINGS_FIXED (-1609)
|
---|
361 | /** Failed to fix mappings because of a conflict with the intermediate code. */
|
---|
362 | #define VERR_PGM_MAPPINGS_FIX_CONFLICT (-1610)
|
---|
363 | /** Failed to fix mappings because a mapping rejected the address. */
|
---|
364 | #define VERR_PGM_MAPPINGS_FIX_REJECTED (-1611)
|
---|
365 | /** Failed to fix mappings because the proposed memory area was to small. */
|
---|
366 | #define VERR_PGM_MAPPINGS_FIX_TOO_SMALL (-1612)
|
---|
367 | /** Reason for leaving GC: The urge to syncing CR3. */
|
---|
368 | #define VINF_PGM_SYNC_CR3 1613
|
---|
369 | /** Page not marked for dirty bit tracking */
|
---|
370 | #define VINF_PGM_NO_DIRTY_BIT_TRACKING 1614
|
---|
371 | /** Page fault caused by dirty bit tracking; corrected */
|
---|
372 | #define VINF_PGM_HANDLED_DIRTY_BIT_FAULT 1615
|
---|
373 | /** Go ahead with the default Read/Write operation.
|
---|
374 | * This is returned by a HC physical or virtual handler when it wants the PGMPhys[Read|Write]
|
---|
375 | * routine do the reading/writing. */
|
---|
376 | #define VINF_PGM_HANDLER_DO_DEFAULT 1616
|
---|
377 | /** The paging mode of the host is not supported yet. */
|
---|
378 | #define VERR_PGM_UNSUPPORTED_HOST_PAGING_MODE (-1617)
|
---|
379 | /** The physical guest page is a reserved/mmio page and does not have any HC address. */
|
---|
380 | #define VERR_PGM_PHYS_PAGE_RESERVED (-1618)
|
---|
381 | /** No page directory available for the hypervisor. */
|
---|
382 | #define VERR_PGM_NO_HYPERVISOR_ADDRESS (-1619)
|
---|
383 | /** The shadow page pool was flushed.
|
---|
384 | * This means that a global CR3 sync was flagged. Anyone receiving this kind of status
|
---|
385 | * will have to get down to a SyncCR3 ASAP. See also VINF_PGM_SYNC_CR3. */
|
---|
386 | #define VERR_PGM_POOL_FLUSHED (-1620)
|
---|
387 | /** The shadow page pool was cleared.
|
---|
388 | * This is a error code internal to the shadow page pool, it will be
|
---|
389 | * converted to a VERR_PGM_POOL_FLUSHED before leaving the pool code. */
|
---|
390 | #define VERR_PGM_POOL_CLEARED (-1621)
|
---|
391 | /** The returned shadow page is cached. */
|
---|
392 | #define VINF_PGM_CACHED_PAGE 1622
|
---|
393 | /** Returned by handler registration, modification and deregistration
|
---|
394 | * when the shadow PTs could be updated because the guest page
|
---|
395 | * aliased or/and mapped by multiple PTs. */
|
---|
396 | #define VINF_PGM_GCPHYS_ALIASED 1623
|
---|
397 | /** Reason for leaving GC: Paging mode changed.
|
---|
398 | * PGMChangeMode() uses this to force a switch to HC so it can safely
|
---|
399 | * deal with a mode switch.
|
---|
400 | */
|
---|
401 | #define VINF_PGM_CHANGE_MODE 1624
|
---|
402 | /** SyncPage modified the PDE.
|
---|
403 | * This is an internal status code used to communicate back to the \#PF handler
|
---|
404 | * that the PDE was (probably) marked not-present and it should restart the instruction. */
|
---|
405 | #define VINF_PGM_SYNCPAGE_MODIFIED_PDE 1625
|
---|
406 | /** Physical range crosses dynamic ram chunk boundary; translation to HC ptr not safe. */
|
---|
407 | #define VERR_PGM_GCPHYS_RANGE_CROSSES_BOUNDARY (-1626)
|
---|
408 | /** Conflict between the core memory and the intermediate paging context, try again.
|
---|
409 | * There are some very special conditions applying to the intermediate paging context
|
---|
410 | * (used during the world switches), and some times we continuously run into these
|
---|
411 | * when asking the host kernel for memory during VM init. Let us know if you run into
|
---|
412 | * this and we'll adjust the code so it tries harder to avoid it.
|
---|
413 | */
|
---|
414 | #define VERR_PGM_INTERMEDIATE_PAGING_CONFLICT (-1627)
|
---|
415 | /** The shadow paging mode is not supported yet. */
|
---|
416 | #define VERR_PGM_UNSUPPORTED_SHADOW_PAGING_MODE (-1628)
|
---|
417 | /** The dynamic mapping cache for physical memory failed. */
|
---|
418 | #define VERR_PGM_DYNMAP_FAILED (-1629)
|
---|
419 | /** The auto usage cache for the dynamic mapping set is full. */
|
---|
420 | #define VERR_PGM_DYNMAP_FULL_SET (-1630)
|
---|
421 | /** The initialization of the dynamic mapping cache failed. */
|
---|
422 | #define VERR_PGM_DYNMAP_SETUP_ERROR (-1631)
|
---|
423 | /** The expanding of the dynamic mapping cache failed. */
|
---|
424 | #define VERR_PGM_DYNMAP_EXPAND_ERROR (-1632)
|
---|
425 | /** The page is unassigned (akin to VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS). */
|
---|
426 | #define VERR_PGM_PHYS_TLB_UNASSIGNED (-1633)
|
---|
427 | /** Catch any access and route it thru PGM. */
|
---|
428 | #define VERR_PGM_PHYS_TLB_CATCH_ALL (-1634)
|
---|
429 | /** Catch write access and route it thru PGM. */
|
---|
430 | #define VINF_PGM_PHYS_TLB_CATCH_WRITE 1635
|
---|
431 |
|
---|
432 | /** @} */
|
---|
433 |
|
---|
434 |
|
---|
435 | /** @name Memory Monitor (MM) Status Codes
|
---|
436 | * @{
|
---|
437 | */
|
---|
438 | /** Attempt to register a RAM range of which parts are already
|
---|
439 | * covered by existing RAM ranges. */
|
---|
440 | #define VERR_MM_RAM_CONFLICT (-1700)
|
---|
441 | /** Hypervisor memory allocation failed. */
|
---|
442 | #define VERR_MM_HYPER_NO_MEMORY (-1701)
|
---|
443 |
|
---|
444 | /** @} */
|
---|
445 |
|
---|
446 |
|
---|
447 | /** @name Save State Manager (SSM) Status Codes
|
---|
448 | * @{
|
---|
449 | */
|
---|
450 | /** The specified data unit already exist. */
|
---|
451 | #define VERR_SSM_UNIT_EXISTS (-1800)
|
---|
452 | /** The specified data unit wasn't found. */
|
---|
453 | #define VERR_SSM_UNIT_NOT_FOUND (-1801)
|
---|
454 | /** The specified data unit wasn't owned by caller. */
|
---|
455 | #define VERR_SSM_UNIT_NOT_OWNER (-1802)
|
---|
456 | /** General saved state file integrity error. */
|
---|
457 | #define VERR_SSM_INTEGRITY (-1810)
|
---|
458 | /** The saved state file magic was not recognized. */
|
---|
459 | #define VERR_SSM_INTEGRITY_MAGIC (-1811)
|
---|
460 | /** The saved state file version is not supported. */
|
---|
461 | #define VERR_SSM_INTEGRITY_VERSION (-1812)
|
---|
462 | /** The saved state file size didn't match the one in the header. */
|
---|
463 | #define VERR_SSM_INTEGRITY_SIZE (-1813)
|
---|
464 | /** The CRC of the saved state file did match. */
|
---|
465 | #define VERR_SSM_INTEGRITY_CRC (-1814)
|
---|
466 | /** The current virtual machine id didn't match the virtual machine id. */
|
---|
467 | #define VERR_SMM_INTEGRITY_MACHINE (-1815)
|
---|
468 | /** Invalid unit magic (internal data tag). */
|
---|
469 | #define VERR_SSM_INTEGRITY_UNIT_MAGIC (-1816)
|
---|
470 | /** The file contained a data unit which no-one wants. */
|
---|
471 | #define VERR_SSM_INTEGRITY_UNIT_NOT_FOUND (-1817)
|
---|
472 | /** Incorrect type sizes in the header. */
|
---|
473 | #define VERR_SSM_INTEGRITY_SIZES (-1818)
|
---|
474 | /** Incorrect version numbers in the header. */
|
---|
475 | #define VERR_SSM_INTEGRITY_VBOX_VERSION (-1819)
|
---|
476 | /** A data unit in the saved state file was defined but didn't any
|
---|
477 | * routine for processing it. */
|
---|
478 | #define VERR_SSM_NO_LOAD_EXEC (-1820)
|
---|
479 | /** A restore routine attempted to load more data then the unit contained. */
|
---|
480 | #define VERR_SSM_LOADED_TOO_MUCH (-1821)
|
---|
481 | /** Not in the correct state for the attempted operation. */
|
---|
482 | #define VERR_SSM_INVALID_STATE (-1822)
|
---|
483 |
|
---|
484 | /** Unsupported data unit version.
|
---|
485 | * A SSM user returns this if it doesn't know the u32Version. */
|
---|
486 | #define VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION (-1823)
|
---|
487 | /** The format of a data unit has changed.
|
---|
488 | * A SSM user returns this if it's not able to read the format for
|
---|
489 | * other reasons than u32Version. */
|
---|
490 | #define VERR_SSM_DATA_UNIT_FORMAT_CHANGED (-1824)
|
---|
491 | /** The CPUID instruction returns different information when loading than when saved.
|
---|
492 | * Normally caused by hardware changes on the host, but could also be caused by
|
---|
493 | * changes in the BIOS setup. */
|
---|
494 | #define VERR_SSM_LOAD_CPUID_MISMATCH (-1825)
|
---|
495 | /** The RAM size differes between the saved state and the VM config. */
|
---|
496 | #define VERR_SSM_LOAD_MEMORY_SIZE_MISMATCH (-1826)
|
---|
497 | /** The state doesn't match the VM configuration in one or another way.
|
---|
498 | * (There are certain PCI reconfiguration which the OS could potentially
|
---|
499 | * do which can cause this problem. Check this out when it happens.) */
|
---|
500 | #define VERR_SSM_LOAD_CONFIG_MISMATCH (-1827)
|
---|
501 | /** The virtual clock freqency differs too much.
|
---|
502 | * The clock source for the virtual time isn't reliable or the code have changed. */
|
---|
503 | #define VERR_SSM_VIRTUAL_CLOCK_HZ (-1828)
|
---|
504 | /** A timeout occured while waiting for async IDE operations to finish. */
|
---|
505 | #define VERR_SSM_IDE_ASYNC_TIMEOUT (-1829)
|
---|
506 | /** One of the structure magics was wrong. */
|
---|
507 | #define VERR_SSM_STRUCTURE_MAGIC (-1830)
|
---|
508 | /** The data in the saved state doesn't confirm to expectations. */
|
---|
509 | #define VERR_SSM_UNEXPECTED_DATA (-1831)
|
---|
510 | /** Trying to read a 64-bit guest physical address into a 32-bit variable. */
|
---|
511 | #define VERR_SSM_GCPHYS_OVERFLOW (-1832)
|
---|
512 | /** Trying to read a 64-bit guest virtual address into a 32-bit variable. */
|
---|
513 | #define VERR_SSM_GCPTR_OVERFLOW (-1833)
|
---|
514 | /** @} */
|
---|
515 |
|
---|
516 |
|
---|
517 | /** @name Virtual Machine (VM) Status Codes
|
---|
518 | * @{
|
---|
519 | */
|
---|
520 | /** The specified at reset handler wasn't found. */
|
---|
521 | #define VERR_VM_ATRESET_NOT_FOUND (-1900)
|
---|
522 | /** Invalid VM request type.
|
---|
523 | * For the VMR3ReqAlloc() case, the caller just specified an illegal enmType. For
|
---|
524 | * all the other occurences it means indicates corruption, broken logic, or stupid
|
---|
525 | * interface user. */
|
---|
526 | #define VERR_VM_REQUEST_INVALID_TYPE (-1901)
|
---|
527 | /** Invalid VM request state.
|
---|
528 | * The state of the request packet was not the expected and accepted one(s). Either
|
---|
529 | * the interface user screwed up, or we've got corruption/broken logic. */
|
---|
530 | #define VERR_VM_REQUEST_STATE (-1902)
|
---|
531 | /** Invalid VM request packet.
|
---|
532 | * One or more of the the VM controlled packet members didn't contain the correct
|
---|
533 | * values. Some thing's broken. */
|
---|
534 | #define VERR_VM_REQUEST_INVALID_PACKAGE (-1903)
|
---|
535 | /** The status field has not been updated yet as the request is still
|
---|
536 | * pending completion. Someone queried the iStatus field before the request
|
---|
537 | * has been fully processed. */
|
---|
538 | #define VERR_VM_REQUEST_STATUS_STILL_PENDING (-1904)
|
---|
539 | /** The request has been freed, don't read the status now.
|
---|
540 | * Someone is reading the iStatus field of a freed request packet. */
|
---|
541 | #define VERR_VM_REQUEST_STATUS_FREED (-1905)
|
---|
542 | /** A VM api requiring EMT was called from another thread.
|
---|
543 | * Use the VMR3ReqCall() apis to call it! */
|
---|
544 | #define VERR_VM_THREAD_NOT_EMT (-1906)
|
---|
545 | /** The VM state was invalid for the requested operation.
|
---|
546 | * Go check the 'VM Statechart Diagram.gif'. */
|
---|
547 | #define VERR_VM_INVALID_VM_STATE (-1907)
|
---|
548 | /** The support driver is not installed.
|
---|
549 | * On linux, open returned ENOENT. */
|
---|
550 | #define VERR_VM_DRIVER_NOT_INSTALLED (-1908)
|
---|
551 | /** The support driver is not accessible.
|
---|
552 | * On linux, open returned EPERM. */
|
---|
553 | #define VERR_VM_DRIVER_NOT_ACCESSIBLE (-1909)
|
---|
554 | /** Was not able to load the support driver.
|
---|
555 | * On linux, open returned ENODEV. */
|
---|
556 | #define VERR_VM_DRIVER_LOAD_ERROR (-1910)
|
---|
557 | /** Was not able to open the support driver.
|
---|
558 | * Generic open error used when none of the other ones fit. */
|
---|
559 | #define VERR_VM_DRIVER_OPEN_ERROR (-1911)
|
---|
560 | /** The installed support driver doesn't match the version of the user. */
|
---|
561 | #define VERR_VM_DRIVER_VERSION_MISMATCH (-1912)
|
---|
562 | /** Saving the VM state is temporarily not allowed. Try again later. */
|
---|
563 | #define VERR_VM_SAVE_STATE_NOT_ALLOWED (-1913)
|
---|
564 | /** @} */
|
---|
565 |
|
---|
566 |
|
---|
567 | /** @name VBox Remote Desktop Protocol (VRDP) Status Codes
|
---|
568 | * @{
|
---|
569 | */
|
---|
570 | /** Successful completion of operation (mapped to generic iprt status code). */
|
---|
571 | #define VINF_VRDP_SUCCESS VINF_SUCCESS
|
---|
572 | /** VRDP transport operation timed out (mapped to generic iprt status code). */
|
---|
573 | #define VERR_VRDP_TIMEOUT VERR_TIMEOUT
|
---|
574 |
|
---|
575 | /** Unsupported ISO protocol feature */
|
---|
576 | #define VERR_VRDP_ISO_UNSUPPORTED (-2000)
|
---|
577 | /** Security (en/decryption) engine error */
|
---|
578 | #define VERR_VRDP_SEC_ENGINE_FAIL (-2001)
|
---|
579 | /** VRDP protocol violation */
|
---|
580 | #define VERR_VRDP_PROTOCOL_ERROR (-2002)
|
---|
581 | /** Unsupported VRDP protocol feature */
|
---|
582 | #define VERR_VRDP_NOT_SUPPORTED (-2003)
|
---|
583 | /** VRDP protocol violation, client sends less data than expected */
|
---|
584 | #define VERR_VRDP_INSUFFICIENT_DATA (-2004)
|
---|
585 | /** Internal error, VRDP packet is in wrong operation mode */
|
---|
586 | #define VERR_VRDP_INVALID_MODE (-2005)
|
---|
587 | /** Memory allocation failed */
|
---|
588 | #define VERR_VRDP_NO_MEMORY (-2006)
|
---|
589 | /** Client has been rejected */
|
---|
590 | #define VERR_VRDP_ACCESS_DENIED (-2007)
|
---|
591 | /** VRPD receives a packet that is not supported */
|
---|
592 | #define VWRN_VRDP_PDU_NOT_SUPPORTED 2008
|
---|
593 | /** VRDP script allowed the packet to be processed further */
|
---|
594 | #define VINF_VRDP_PROCESS_PDU 2009
|
---|
595 | /** VRDP script has completed its task */
|
---|
596 | #define VINF_VRDP_OPERATION_COMPLETED 2010
|
---|
597 | /** VRDP thread has started OK and will run */
|
---|
598 | #define VINF_VRDP_THREAD_STARTED 2011
|
---|
599 | /** Framebuffer is resized, terminate send bitmap procedure */
|
---|
600 | #define VINF_VRDP_RESIZE_REQUESTED 2012
|
---|
601 | /** Output can be enabled for the client. */
|
---|
602 | #define VINF_VRDP_OUTPUT_ENABLE 2013
|
---|
603 | /** @} */
|
---|
604 |
|
---|
605 |
|
---|
606 | /** @name Configuration Manager (CFGM) Status Codes
|
---|
607 | * @{
|
---|
608 | */
|
---|
609 | /** The integer value was too big for the requested representation. */
|
---|
610 | #define VERR_CFGM_INTEGER_TOO_BIG (-2100)
|
---|
611 | /** Child node was not found. */
|
---|
612 | #define VERR_CFGM_CHILD_NOT_FOUND (-2101)
|
---|
613 | /** Path to child node was invalid (i.e. empty). */
|
---|
614 | #define VERR_CFGM_INVALID_CHILD_PATH (-2102)
|
---|
615 | /** Value not found. */
|
---|
616 | #define VERR_CFGM_VALUE_NOT_FOUND (-2103)
|
---|
617 | /** No parent node specified. */
|
---|
618 | #define VERR_CFGM_NO_PARENT (-2104)
|
---|
619 | /** No node was specified. */
|
---|
620 | #define VERR_CFGM_NO_NODE (-2105)
|
---|
621 | /** The value is not an integer. */
|
---|
622 | #define VERR_CFGM_NOT_INTEGER (-2106)
|
---|
623 | /** The value is not a zero terminated character string. */
|
---|
624 | #define VERR_CFGM_NOT_STRING (-2107)
|
---|
625 | /** The value is not a byte string. */
|
---|
626 | #define VERR_CFGM_NOT_BYTES (-2108)
|
---|
627 | /** The specified string / bytes buffer was to small. Specify a larger one and retry. */
|
---|
628 | #define VERR_CFGM_NOT_ENOUGH_SPACE (-2109)
|
---|
629 | /** The path of a new node contained slashs or was empty. */
|
---|
630 | #define VERR_CFGM_INVALID_NODE_PATH (-2160)
|
---|
631 | /** A new node couldn't be inserted because one with the same name exists. */
|
---|
632 | #define VERR_CFGM_NODE_EXISTS (-2161)
|
---|
633 | /** A new leaf couldn't be inserted because one with the same name exists. */
|
---|
634 | #define VERR_CFGM_LEAF_EXISTS (-2162)
|
---|
635 | /** @} */
|
---|
636 |
|
---|
637 |
|
---|
638 | /** @name Time Manager (TM) Status Codes
|
---|
639 | * @{
|
---|
640 | */
|
---|
641 | /** The loaded timer state was incorrect. */
|
---|
642 | #define VERR_TM_LOAD_STATE (-2200)
|
---|
643 | /** The timer was not in the correct state for the request operation. */
|
---|
644 | #define VERR_TM_INVALID_STATE (-2201)
|
---|
645 | /** The timer was in a unknown state. Corruption or stupid coding error. */
|
---|
646 | #define VERR_TM_UNKNOWN_STATE (-2202)
|
---|
647 | /** The timer was stuck in an unstable state until we grew impatient and returned. */
|
---|
648 | #define VERR_TM_UNSTABLE_STATE (-2203)
|
---|
649 | /** @} */
|
---|
650 |
|
---|
651 |
|
---|
652 | /** @name Recompiled Execution Manager (REM) Status Codes
|
---|
653 | * @{
|
---|
654 | */
|
---|
655 | /** Fatal error in virtual hardware. */
|
---|
656 | #define VERR_REM_VIRTUAL_HARDWARE_ERROR (-2300)
|
---|
657 | /** Fatal error in the recompiler cpu. */
|
---|
658 | #define VERR_REM_VIRTUAL_CPU_ERROR (-2301)
|
---|
659 | /** Recompiler execution was interrupted by forced action. */
|
---|
660 | #define VINF_REM_INTERRUPED_FF 2302
|
---|
661 | /** Reason for leaving GC: Must flush pending invlpg operations to REM.
|
---|
662 | * Tell REM to flush page invalidations. Will temporary go to REM context
|
---|
663 | * from REM and perform the flushes. */
|
---|
664 | #define VERR_REM_FLUSHED_PAGES_OVERFLOW (-2303)
|
---|
665 | /** Too many similar traps. This is a very useful debug only
|
---|
666 | * check (we don't do double/tripple faults in REM). */
|
---|
667 | #define VERR_REM_TOO_MANY_TRAPS (-2304)
|
---|
668 | /** The REM is out of breakpoint slots. */
|
---|
669 | #define VERR_REM_NO_MORE_BP_SLOTS (-2305)
|
---|
670 | /** The REM could not find any breakpoint on the specified address. */
|
---|
671 | #define VERR_REM_BP_NOT_FOUND (-2306)
|
---|
672 | /** @} */
|
---|
673 |
|
---|
674 |
|
---|
675 | /** @name Trap Manager / Monitor (TRPM) Status Codes
|
---|
676 | * @{
|
---|
677 | */
|
---|
678 | /** No active trap. Cannot query or reset a non-existing trap. */
|
---|
679 | #define VERR_TRPM_NO_ACTIVE_TRAP (-2400)
|
---|
680 | /** Active trap. Cannot assert a new trap when when one is already active. */
|
---|
681 | #define VERR_TRPM_ACTIVE_TRAP (-2401)
|
---|
682 | /** Reason for leaving GC: Guest tried to write to our IDT - fatal.
|
---|
683 | * The VM will be terminated assuming the worst, i.e. that the
|
---|
684 | * guest has read the idtr register. */
|
---|
685 | #define VERR_TRPM_SHADOW_IDT_WRITE (-2402)
|
---|
686 | /** Reason for leaving GC: Fatal trap in hypervisor. */
|
---|
687 | #define VERR_TRPM_DONT_PANIC (-2403)
|
---|
688 | /** Reason for leaving GC: Double Fault. */
|
---|
689 | #define VERR_TRPM_PANIC (-2404)
|
---|
690 | /** The exception was dispatched for raw-mode execution. */
|
---|
691 | #define VINF_TRPM_XCPT_DISPATCHED 2405
|
---|
692 | /** @} */
|
---|
693 |
|
---|
694 |
|
---|
695 | /** @name Selector Manager / Monitor (SELM) Status Code
|
---|
696 | * @{
|
---|
697 | */
|
---|
698 | /** Reason for leaving GC: Guest tried to write to our GDT - fatal.
|
---|
699 | * The VM will be terminated assuming the worst, i.e. that the
|
---|
700 | * guest has read the gdtr register. */
|
---|
701 | #define VERR_SELM_SHADOW_GDT_WRITE (-2500)
|
---|
702 | /** Reason for leaving GC: Guest tried to write to our LDT - fatal.
|
---|
703 | * The VM will be terminated assuming the worst, i.e. that the
|
---|
704 | * guest has read the ldtr register. */
|
---|
705 | #define VERR_SELM_SHADOW_LDT_WRITE (-2501)
|
---|
706 | /** Reason for leaving GC: Guest tried to write to our TSS - fatal.
|
---|
707 | * The VM will be terminated assuming the worst, i.e. that the
|
---|
708 | * guest has read the ltr register. */
|
---|
709 | #define VERR_SELM_SHADOW_TSS_WRITE (-2502)
|
---|
710 | /** Reason for leaving GC: Sync the GDT table to solve a conflict. */
|
---|
711 | #define VINF_SELM_SYNC_GDT 2503
|
---|
712 | /** No valid TSS present. */
|
---|
713 | #define VERR_SELM_NO_TSS (-2504)
|
---|
714 | /** @} */
|
---|
715 |
|
---|
716 |
|
---|
717 | /** @name I/O Manager / Monitor (IOM) Status Code
|
---|
718 | * @{
|
---|
719 | */
|
---|
720 | /** The specified I/O port range was invalid.
|
---|
721 | * It was either empty or it was out of bounds. */
|
---|
722 | #define VERR_IOM_INVALID_IOPORT_RANGE (-2600)
|
---|
723 | /** The specified GC I/O port range didn't have a corresponding HC range.
|
---|
724 | * IOMIOPortRegisterHC() must be called before IOMIOPortRegisterGC(). */
|
---|
725 | #define VERR_IOM_NO_HC_IOPORT_RANGE (-2601)
|
---|
726 | /** The specified I/O port range intruded on an existing range. There is
|
---|
727 | * a I/O port conflict between two device, or a device tried to register
|
---|
728 | * the same range twice. */
|
---|
729 | #define VERR_IOM_IOPORT_RANGE_CONFLICT (-2602)
|
---|
730 | /** The I/O port range specified for removal wasn't found or it wasn't contiguous. */
|
---|
731 | #define VERR_IOM_IOPORT_RANGE_NOT_FOUND (-2603)
|
---|
732 | /** The specified I/O port range was owned by some other device(s). Both registration
|
---|
733 | * and deregistration, but in the first case only GC ranges. */
|
---|
734 | #define VERR_IOM_NOT_IOPORT_RANGE_OWNER (-2604)
|
---|
735 |
|
---|
736 | /** The specified MMIO range was invalid.
|
---|
737 | * It was either empty or it was out of bounds. */
|
---|
738 | #define VERR_IOM_INVALID_MMIO_RANGE (-2605)
|
---|
739 | /** The specified GC MMIO range didn't have a corresponding HC range.
|
---|
740 | * IOMMMIORegisterHC() must be called before IOMMMIORegisterGC(). */
|
---|
741 | #define VERR_IOM_NO_HC_MMIO_RANGE (-2606)
|
---|
742 | /** The specified MMIO range was owned by some other device(s). Both registration
|
---|
743 | * and deregistration, but in the first case only GC ranges. */
|
---|
744 | #define VERR_IOM_NOT_MMIO_RANGE_OWNER (-2607)
|
---|
745 | /** The specified MMIO range intruded on an existing range. There is
|
---|
746 | * a MMIO conflict between two device, or a device tried to register
|
---|
747 | * the same range twice. */
|
---|
748 | #define VERR_IOM_MMIO_RANGE_CONFLICT (-2608)
|
---|
749 | /** The MMIO range specified for removal was not found. */
|
---|
750 | #define VERR_IOM_MMIO_RANGE_NOT_FOUND (-2609)
|
---|
751 | /** The MMIO range specified for removal was invalid. The range didn't match
|
---|
752 | * quite match a set of existing ranges. It's not possible to remove parts of
|
---|
753 | * a MMIO range, only one or more full ranges. */
|
---|
754 | #define VERR_IOM_INCOMPLETE_MMIO_RANGE (-2610)
|
---|
755 | /** An invalid I/O port size was specified for a read or write operation. */
|
---|
756 | #define VERR_IOM_INVALID_IOPORT_SIZE (-2611)
|
---|
757 | /** The MMIO handler was called for a bogus address! Internal error! */
|
---|
758 | #define VERR_IOM_MMIO_HANDLER_BOGUS_CALL (-2612)
|
---|
759 | /** The MMIO handler experienced a problem with the disassembler. */
|
---|
760 | #define VERR_IOM_MMIO_HANDLER_DISASM_ERROR (-2613)
|
---|
761 | /** The port being read was not present(/unused) and IOM shall return ~0 according to size. */
|
---|
762 | #define VERR_IOM_IOPORT_UNUSED (-2614)
|
---|
763 | /** Unused MMIO register read, fill with 00. */
|
---|
764 | #define VINF_IOM_MMIO_UNUSED_00 2615
|
---|
765 | /** Unused MMIO register read, fill with FF. */
|
---|
766 | #define VINF_IOM_MMIO_UNUSED_FF 2616
|
---|
767 |
|
---|
768 | /** Reason for leaving GC: I/O port read. */
|
---|
769 | #define VINF_IOM_HC_IOPORT_READ 2620
|
---|
770 | /** Reason for leaving GC: I/O port write. */
|
---|
771 | #define VINF_IOM_HC_IOPORT_WRITE 2621
|
---|
772 | /** Reason for leaving GC: MMIO write. */
|
---|
773 | #define VINF_IOM_HC_MMIO_READ 2623
|
---|
774 | /** Reason for leaving GC: MMIO read. */
|
---|
775 | #define VINF_IOM_HC_MMIO_WRITE 2624
|
---|
776 | /** Reason for leaving GC: MMIO read/write. */
|
---|
777 | #define VINF_IOM_HC_MMIO_READ_WRITE 2625
|
---|
778 | /** @} */
|
---|
779 |
|
---|
780 |
|
---|
781 | /** @name Virtual Machine Monitor (VMM) Status Codes
|
---|
782 | * @{
|
---|
783 | */
|
---|
784 | /** Reason for leaving GC: Calling host function. */
|
---|
785 | #define VINF_VMM_CALL_HOST 2700
|
---|
786 | /** Reason for leaving R0: Hit a ring-0 assertion on EMT. */
|
---|
787 | #define VERR_VMM_RING0_ASSERTION (-2701)
|
---|
788 | /** @} */
|
---|
789 |
|
---|
790 |
|
---|
791 | /** @name Pluggable Device and Driver Manager (PDM) Status Codes
|
---|
792 | * @{
|
---|
793 | */
|
---|
794 | /** An invalid LUN specification was given. */
|
---|
795 | #define VERR_PDM_NO_SUCH_LUN (-2800)
|
---|
796 | /** A device encountered an unknown configuration value.
|
---|
797 | * This means that the device is potentially misconfigured and the device
|
---|
798 | * construction or unit attachment failed because of this. */
|
---|
799 | #define VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES (-2801)
|
---|
800 | /** The above driver doesn't export a interface required by a driver being
|
---|
801 | * attached to it. Typical misconfiguration problem. */
|
---|
802 | #define VERR_PDM_MISSING_INTERFACE_ABOVE (-2802)
|
---|
803 | /** The below driver doesn't export a interface required by the drive
|
---|
804 | * having attached it. Typical misconfiguration problem. */
|
---|
805 | #define VERR_PDM_MISSING_INTERFACE_BELOW (-2803)
|
---|
806 | /** A device didn't find a required interface with an attached driver.
|
---|
807 | * Typical misconfiguration problem. */
|
---|
808 | #define VERR_PDM_MISSING_INTERFACE (-2804)
|
---|
809 | /** A driver encountered an unknown configuration value.
|
---|
810 | * This means that the driver is potentially misconfigured and the driver
|
---|
811 | * construction failed because of this. */
|
---|
812 | #define VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES (-2805)
|
---|
813 | /** The PCI bus assigned to a device didn't have room for it.
|
---|
814 | * Either too many devices are configured on the same PCI bus, or there are
|
---|
815 | * some internal problem where PDM/PCI doesn't free up slots when unplugging devices. */
|
---|
816 | #define VERR_PDM_TOO_PCI_MANY_DEVICES (-2806)
|
---|
817 | /** A queue is out of free items, the queueing operation failed. */
|
---|
818 | #define VERR_PDM_NO_QUEUE_ITEMS (-2807)
|
---|
819 | /** Not possible to attach further drivers to the driver.
|
---|
820 | * A driver which doesn't support attachments (below of course) will
|
---|
821 | * return this status code if it found that further drivers were configured
|
---|
822 | * to be attached to it. */
|
---|
823 | #define VERR_PDM_DRVINS_NO_ATTACH (-2808)
|
---|
824 | /** Not possible to attach drivers to the device.
|
---|
825 | * A device which doesn't support attachments (below of course) will
|
---|
826 | * return this status code if it found that drivers were configured
|
---|
827 | * to be attached to it. */
|
---|
828 | #define VERR_PDM_DEVINS_NO_ATTACH (-2809)
|
---|
829 | /** No attached driver.
|
---|
830 | * The PDMDRVHLP::pfnAttach and PDMDEVHLP::pfnDriverAttach will return
|
---|
831 | * this error when no driver was configured to be attached. */
|
---|
832 | #define VERR_PDM_NO_ATTACHED_DRIVER (-2810)
|
---|
833 | /** The media geometry hasn't been set yet, so it cannot be obtained.
|
---|
834 | * The caller should then calculate the geometry from the media size. */
|
---|
835 | #define VERR_PDM_GEOMETRY_NOT_SET (-2811)
|
---|
836 | /** The media translation hasn't been set yet, so it cannot be obtained.
|
---|
837 | * The caller should then guess the translation. */
|
---|
838 | #define VERR_PDM_TRANSLATION_NOT_SET (-2812)
|
---|
839 | /** The media is not mounted, operation requires a mounted media. */
|
---|
840 | #define VERR_PDM_MEDIA_NOT_MOUNTED (-2813)
|
---|
841 | /** Mount failed because a media was already mounted. Unmount the media
|
---|
842 | * and retry the mount. */
|
---|
843 | #define VERR_PDM_MEDIA_MOUNTED (-2814)
|
---|
844 | /** The media is locked and cannot be unmounted. */
|
---|
845 | #define VERR_PDM_MEDIA_LOCKED (-2815)
|
---|
846 | /** No 'Type' attribute in the DrvBlock configuration.
|
---|
847 | * Misconfiguration. */
|
---|
848 | #define VERR_PDM_BLOCK_NO_TYPE (-2816)
|
---|
849 | /** The 'Type' attribute in the DrvBlock configuration had an unknown value.
|
---|
850 | * Misconfiguration. */
|
---|
851 | #define VERR_PDM_BLOCK_UNKNOWN_TYPE (-2817)
|
---|
852 | /** The 'Translation' attribute in the DrvBlock configuration had an unknown value.
|
---|
853 | * Misconfiguration. */
|
---|
854 | #define VERR_PDM_BLOCK_UNKNOWN_TRANSLATION (-2818)
|
---|
855 | /** The block driver type wasn't supported.
|
---|
856 | * Misconfiguration of the kind you get when attaching a floppy to an IDE controller. */
|
---|
857 | #define VERR_PDM_UNSUPPORTED_BLOCK_TYPE (-2819)
|
---|
858 | /** A attach or prepare mount call failed because the driver already
|
---|
859 | * had a driver attached. */
|
---|
860 | #define VERR_PDM_DRIVER_ALREADY_ATTACHED (-2820)
|
---|
861 | /** An attempt on deattaching a driver without anyone actually being attached, or
|
---|
862 | * performing any other operation on an attached driver. */
|
---|
863 | #define VERR_PDM_NO_DRIVER_ATTACHED (-2821)
|
---|
864 | /** The attached driver configuration is missing the 'Driver' attribute. */
|
---|
865 | #define VERR_PDM_CFG_MISSING_DRIVER_NAME (-2822)
|
---|
866 | /** The configured driver wasn't found.
|
---|
867 | * Either the necessary driver modules wasn't loaded, the name was
|
---|
868 | * misspelled, or it was a misconfiguration. */
|
---|
869 | #define VERR_PDM_DRIVER_NOT_FOUND (-2823)
|
---|
870 | /** The Ring-3 module was already loaded. */
|
---|
871 | #define VINF_PDM_ALREADY_LOADED (2824)
|
---|
872 | /** The name of the module clashed with an existing module. */
|
---|
873 | #define VERR_PDM_MODULE_NAME_CLASH (-2825)
|
---|
874 | /** Couldn't find any export for registration of drivers/devices. */
|
---|
875 | #define VERR_PDM_NO_REGISTRATION_EXPORT (-2826)
|
---|
876 | /** A module name is too long. */
|
---|
877 | #define VERR_PDM_MODULE_NAME_TOO_LONG (-2827)
|
---|
878 | /** Driver name clash. Another driver with the same name as the
|
---|
879 | * one begin registred exists. */
|
---|
880 | #define VERR_PDM_DRIVER_NAME_CLASH (-2828)
|
---|
881 | /** The version of the driver registration structure is unknown
|
---|
882 | * to this VBox version. Either mixing incompatible versions or
|
---|
883 | * the structure isn't correctly initialized. */
|
---|
884 | #define VERR_PDM_UNKNOWN_DRVREG_VERSION (-2829)
|
---|
885 | /** Invalid entry in the driver registration structure. */
|
---|
886 | #define VERR_PDM_INVALID_DRIVER_REGISTRATION (-2830)
|
---|
887 | /** Invalid host bit mask. */
|
---|
888 | #define VERR_PDM_INVALID_DRIVER_HOST_BITS (-2831)
|
---|
889 | /** Not possible to detach a driver because the above driver/device
|
---|
890 | * doesn't support it. The above entity doesn't implement the pfnDetach call. */
|
---|
891 | #define VERR_PDM_DRIVER_DETACH_NOT_POSSIBLE (-2832)
|
---|
892 | /** No PCI Bus is available to register the device with. This is usually a
|
---|
893 | * misconfiguration or in rare cases a buggy pci device. */
|
---|
894 | #define VERR_PDM_NO_PCI_BUS (-2833)
|
---|
895 | /** The device is not a registered PCI device and thus cannot
|
---|
896 | * perform any PCI operations. The device forgot to register it self. */
|
---|
897 | #define VERR_PDM_NOT_PCI_DEVICE (-2834)
|
---|
898 |
|
---|
899 | /** The version of the device registration structure is unknown
|
---|
900 | * to this VBox version. Either mixing incompatible versions or
|
---|
901 | * the structure isn't correctly initialized. */
|
---|
902 | #define VERR_PDM_UNKNOWN_DEVREG_VERSION (-2835)
|
---|
903 | /** Invalid entry in the device registration structure. */
|
---|
904 | #define VERR_PDM_INVALID_DEVICE_REGISTRATION (-2836)
|
---|
905 | /** Invalid host bit mask. */
|
---|
906 | #define VERR_PDM_INVALID_DEVICE_GUEST_BITS (-2837)
|
---|
907 | /** The guest bit mask didn't match the guest being loaded. */
|
---|
908 | #define VERR_PDM_INVALID_DEVICE_HOST_BITS (-2838)
|
---|
909 | /** Device name clash. Another device with the same name as the
|
---|
910 | * one begin registred exists. */
|
---|
911 | #define VERR_PDM_DEVICE_NAME_CLASH (-2839)
|
---|
912 | /** The device wasn't found. There was no registered device
|
---|
913 | * by that name. */
|
---|
914 | #define VERR_PDM_DEVICE_NOT_FOUND (-2840)
|
---|
915 | /** The device instance was not found. */
|
---|
916 | #define VERR_PDM_DEVICE_INSTANCE_NOT_FOUND (-2841)
|
---|
917 | /** The device instance have no base interface. */
|
---|
918 | #define VERR_PDM_DEVICE_INSTANCE_NO_IBASE (-2842)
|
---|
919 | /** The device instance have no such logical unit. */
|
---|
920 | #define VERR_PDM_DEVICE_INSTANCE_LUN_NOT_FOUND (-2843)
|
---|
921 | /** The driver instance could not be found. */
|
---|
922 | #define VERR_PDM_DRIVER_INSTANCE_NOT_FOUND (-2844)
|
---|
923 | /** Logical Unit was not found. */
|
---|
924 | #define VERR_PDM_LUN_NOT_FOUND (-2845)
|
---|
925 | /** The Logical Unit was found, but it had no driver attached to it. */
|
---|
926 | #define VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN (-2846)
|
---|
927 | /** The Logical Unit was found, but it had no driver attached to it. */
|
---|
928 | #define VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN 2846
|
---|
929 | /** No PIC device instance is registered with the current VM and thus
|
---|
930 | * the PIC operation cannot be performed. */
|
---|
931 | #define VERR_PDM_NO_PIC_INSTANCE (-2847)
|
---|
932 | /** No APIC device instance is registered with the current VM and thus
|
---|
933 | * the APIC operation cannot be performed. */
|
---|
934 | #define VERR_PDM_NO_APIC_INSTANCE (-2848)
|
---|
935 | /** No DMAC device instance is registered with the current VM and thus
|
---|
936 | * the DMA operation cannot be performed. */
|
---|
937 | #define VERR_PDM_NO_DMAC_INSTANCE (-2849)
|
---|
938 | /** No RTC device instance is registered with the current VM and thus
|
---|
939 | * the RTC or CMOS operation cannot be performed. */
|
---|
940 | #define VERR_PDM_NO_RTC_INSTANCE (-2850)
|
---|
941 | /** Unable to open the host interface due to a sharing violation . */
|
---|
942 | #define VERR_PDM_HIF_SHARING_VIOLATION (-2851)
|
---|
943 | /** Unable to open the host interface. */
|
---|
944 | #define VERR_PDM_HIF_OPEN_FAILED (-2852)
|
---|
945 | /** The device doesn't support runtime driver attaching.
|
---|
946 | * The PDMDEVREG::pfnAttach callback function is NULL. */
|
---|
947 | #define VERR_PDM_DEVICE_NO_RT_ATTACH (-2853)
|
---|
948 | /** The device doesn't support runtime driver detaching.
|
---|
949 | * The PDMDEVREG::pfnDetach callback function is NULL. */
|
---|
950 | #define VERR_PDM_DEVICE_NO_RT_DETACH (-2854)
|
---|
951 | /** Invalid host interface version. */
|
---|
952 | #define VERR_PDM_HIF_INVALID_VERSION (-2855)
|
---|
953 |
|
---|
954 | /** The version of the USB device registration structure is unknown
|
---|
955 | * to this VBox version. Either mixing incompatible versions or
|
---|
956 | * the structure isn't correctly initialized. */
|
---|
957 | #define VERR_PDM_UNKNOWN_USBREG_VERSION (-2856)
|
---|
958 | /** Invalid entry in the device registration structure. */
|
---|
959 | #define VERR_PDM_INVALID_USB_REGISTRATION (-2857)
|
---|
960 | /** Driver name clash. Another driver with the same name as the
|
---|
961 | * one begin registred exists. */
|
---|
962 | #define VERR_PDM_USB_NAME_CLASH (-2858)
|
---|
963 | /** The USB hub is already registered. */
|
---|
964 | #define VERR_PDM_USB_HUB_EXISTS (-2859)
|
---|
965 | /** Couldn't find any USB hubs to attach the device to. */
|
---|
966 | #define VERR_PDM_NO_USB_HUBS (-2860)
|
---|
967 | /** Couldn't find any free USB ports to attach the device to. */
|
---|
968 | #define VERR_PDM_NO_USB_PORTS (-2861)
|
---|
969 | /** Couldn't find the USB Proxy device. Using OSE? */
|
---|
970 | #define VERR_PDM_NO_USBPROXY (-2862)
|
---|
971 | /** The async completion template is still used. */
|
---|
972 | #define VERR_PDM_ASYNC_TEMPLATE_BUSY (-2863)
|
---|
973 | /** The async completion task is already suspended. */
|
---|
974 | #define VERR_PDM_ASYNC_COMPLETION_ALREADY_SUSPENDED (-2864)
|
---|
975 | /** The async completion task is not suspended. */
|
---|
976 | #define VERR_PDM_ASYNC_COMPLETION_NOT_SUSPENDED (-2865)
|
---|
977 | /** The driver properties were invalid, and as a consequence construction
|
---|
978 | * failed. Caused my unusable media or similar problems. */
|
---|
979 | #define VERR_PDM_DRIVER_INVALID_PROPERTIES (-2866)
|
---|
980 | /** @} */
|
---|
981 |
|
---|
982 |
|
---|
983 | /** @name Host-Guest Communication Manager (HGCM) Status Codes
|
---|
984 | * @{
|
---|
985 | */
|
---|
986 | /** Requested service does not exist. */
|
---|
987 | #define VERR_HGCM_SERVICE_NOT_FOUND (-2900)
|
---|
988 | /** Service rejected client connection */
|
---|
989 | #define VINF_HGCM_CLIENT_REJECTED 2901
|
---|
990 | /** Command address is invalid. */
|
---|
991 | #define VERR_HGCM_INVALID_CMD_ADDRESS (-2902)
|
---|
992 | /** Service will execute the command in background. */
|
---|
993 | #define VINF_HGCM_ASYNC_EXECUTE 2903
|
---|
994 | /** HGCM could not perform requested operation because of an internal error. */
|
---|
995 | #define VERR_HGCM_INTERNAL (-2904)
|
---|
996 | /** Invalid HGCM client id. */
|
---|
997 | #define VERR_HGCM_INVALID_CLIENT_ID (-2905)
|
---|
998 | /** The HGCM is saving state. */
|
---|
999 | #define VINF_HGCM_SAVE_STATE (2906)
|
---|
1000 | /** Requested service already exists. */
|
---|
1001 | #define VERR_HGCM_SERVICE_EXISTS (-2907)
|
---|
1002 |
|
---|
1003 | /** @} */
|
---|
1004 |
|
---|
1005 |
|
---|
1006 | /** @name Network Address Translation Driver (DrvNAT) Status Codes
|
---|
1007 | * @{
|
---|
1008 | */
|
---|
1009 | /** Failed to find the DNS configured for this machine. */
|
---|
1010 | #define VINF_NAT_DNS 3000
|
---|
1011 | /** Failed to convert the specified Guest IP to a binary IP address.
|
---|
1012 | * Malformed input. */
|
---|
1013 | #define VERR_NAT_REDIR_GUEST_IP (-3001)
|
---|
1014 | /** Failed while setting up a redirector rule.
|
---|
1015 | * There probably is a conflict between the rule and some existing
|
---|
1016 | * service on the computer. */
|
---|
1017 | #define VERR_NAT_REDIR_SETUP (-3002)
|
---|
1018 | /** @} */
|
---|
1019 |
|
---|
1020 |
|
---|
1021 | /** @name HostIF Driver (DrvTUN) Status Codes
|
---|
1022 | * @{
|
---|
1023 | */
|
---|
1024 | /** The Host Interface Networking init program failed. */
|
---|
1025 | #define VERR_HOSTIF_INIT_FAILED (-3100)
|
---|
1026 | /** The Host Interface Networking device name is too long. */
|
---|
1027 | #define VERR_HOSTIF_DEVICE_NAME_TOO_LONG (-3101)
|
---|
1028 | /** The Host Interface Networking name config IOCTL call failed. */
|
---|
1029 | #define VERR_HOSTIF_IOCTL (-3102)
|
---|
1030 | /** Failed to make the Host Interface Networking handle non-blocking. */
|
---|
1031 | #define VERR_HOSTIF_BLOCKING (-3103)
|
---|
1032 | /** If a Host Interface Networking filehandle was specified it's not allowed to
|
---|
1033 | * have any init or term programs. */
|
---|
1034 | #define VERR_HOSTIF_FD_AND_INIT_TERM (-3104)
|
---|
1035 | /** The Host Interface Networking terminate program failed. */
|
---|
1036 | #define VERR_HOSTIF_TERM_FAILED (-3105)
|
---|
1037 | /** @} */
|
---|
1038 |
|
---|
1039 |
|
---|
1040 | /** @name VBox HDD Container (VD) Status Codes
|
---|
1041 | * @{
|
---|
1042 | */
|
---|
1043 | /** Invalid image type. */
|
---|
1044 | #define VERR_VD_INVALID_TYPE (-3200)
|
---|
1045 | /** Operation can't be done in current HDD container state. */
|
---|
1046 | #define VERR_VD_INVALID_STATE (-3201)
|
---|
1047 | /** Configuration value not found. */
|
---|
1048 | #define VERR_VD_VALUE_NOT_FOUND (-3202)
|
---|
1049 | /** Virtual HDD is not opened. */
|
---|
1050 | #define VERR_VD_NOT_OPENED (-3203)
|
---|
1051 | /** Requested image is not opened. */
|
---|
1052 | #define VERR_VD_IMAGE_NOT_FOUND (-3204)
|
---|
1053 | /** Image is read-only. */
|
---|
1054 | #define VERR_VD_IMAGE_READ_ONLY (-3205)
|
---|
1055 | /** Geometry hasn't been set. */
|
---|
1056 | #define VERR_VD_GEOMETRY_NOT_SET (-3206)
|
---|
1057 | /** No data for this block in image. */
|
---|
1058 | #define VERR_VD_BLOCK_FREE (-3207)
|
---|
1059 | /** Differencing and parent images can't be used together due to UUID. */
|
---|
1060 | #define VERR_VD_UUID_MISMATCH (-3208)
|
---|
1061 | /** Asynchronous I/O request finished. */
|
---|
1062 | #define VINF_VD_ASYNC_IO_FINISHED 3209
|
---|
1063 | /** Asynchronous I/O is not finished yet. */
|
---|
1064 | #define VERR_VD_ASYNC_IO_IN_PROGRESS (-3210)
|
---|
1065 | /** Generic: Invalid image file header. Use this for plugins. */
|
---|
1066 | #define VERR_VD_GEN_INVALID_HEADER (-3220)
|
---|
1067 | /** VDI: Invalid image file header. */
|
---|
1068 | #define VERR_VD_VDI_INVALID_HEADER (-3230)
|
---|
1069 | /** VDI: Invalid image file header: invalid signature. */
|
---|
1070 | #define VERR_VD_VDI_INVALID_SIGNATURE (-3231)
|
---|
1071 | /** VDI: Invalid image file header: invalid version. */
|
---|
1072 | #define VERR_VD_VDI_UNSUPPORTED_VERSION (-3232)
|
---|
1073 | /** Comment string is too long. */
|
---|
1074 | #define VERR_VD_VDI_COMMENT_TOO_LONG (-3233)
|
---|
1075 | /** VMDK: Invalid image file header. */
|
---|
1076 | #define VERR_VD_VMDK_INVALID_HEADER (-3240)
|
---|
1077 | /** VMDK: Invalid image file header: invalid version. */
|
---|
1078 | #define VERR_VD_VMDK_UNSUPPORTED_VERSION (-3241)
|
---|
1079 | /** VMDK: Image property not found. */
|
---|
1080 | #define VERR_VD_VMDK_VALUE_NOT_FOUND (-3242)
|
---|
1081 | /** VMDK: Operation can't be done in current image state. */
|
---|
1082 | #define VERR_VD_VMDK_INVALID_STATE (-3243)
|
---|
1083 | /** iSCSI: Invalid header, i.e. dummy for validity check. */
|
---|
1084 | #define VERR_VD_ISCSI_INVALID_HEADER (-3250)
|
---|
1085 | /** iSCSI: Configuration value is unknown. This indicates misconfiguration. */
|
---|
1086 | #define VERR_VD_ISCSI_UNKNOWN_CFG_VALUES (-3251)
|
---|
1087 | /** iSCSI: Interface is unknown. This indicates misconfiguration. */
|
---|
1088 | #define VERR_VD_ISCSI_UNKNOWN_INTERFACE (-3252)
|
---|
1089 | /** iSCSI: Operation can't be done in current image state. */
|
---|
1090 | #define VERR_VD_ISCSI_INVALID_STATE (-3253)
|
---|
1091 | /** iSCSI: Invalid device type (not a disk). */
|
---|
1092 | #define VERR_VD_ISCSI_INVALID_TYPE (-3254)
|
---|
1093 | /** VHD: Invalid image file header. */
|
---|
1094 | #define VERR_VD_VHD_INVALID_HEADER (-3260)
|
---|
1095 | /** Raw: Invalid image file header. */
|
---|
1096 | #define VERR_VD_RAW_INVALID_HEADER (-3270)
|
---|
1097 | /** Raw: Invalid image file type. */
|
---|
1098 | #define VERR_VD_RAW_INVALID_TYPE (-3271)
|
---|
1099 | /** @} */
|
---|
1100 |
|
---|
1101 |
|
---|
1102 | /** @name VBox Guest Library (VBGL) Status Codes
|
---|
1103 | * @{
|
---|
1104 | */
|
---|
1105 | /** Library was not initialized. */
|
---|
1106 | #define VERR_VBGL_NOT_INITIALIZED (-3300)
|
---|
1107 | /** Virtual address was not allocated by the library. */
|
---|
1108 | #define VERR_VBGL_INVALID_ADDR (-3301)
|
---|
1109 | /** IOCtl to VBoxGuest driver failed. */
|
---|
1110 | #define VERR_VBGL_IOCTL_FAILED (-3302)
|
---|
1111 | /** @} */
|
---|
1112 |
|
---|
1113 |
|
---|
1114 | /** @name VBox USB (VUSB) Status Codes
|
---|
1115 | * @{
|
---|
1116 | */
|
---|
1117 | /** No available ports on the hub.
|
---|
1118 | * This error is returned when a device is attempted created and/or attached
|
---|
1119 | * to a hub which is out of ports. */
|
---|
1120 | #define VERR_VUSB_NO_PORTS (-3400)
|
---|
1121 | /** The requested operation cannot be performed on a detached USB device. */
|
---|
1122 | #define VERR_VUSB_DEVICE_NOT_ATTACHED (-3401)
|
---|
1123 | /** Failed to allocate memory for a URB. */
|
---|
1124 | #define VERR_VUSB_NO_URB_MEMORY (-3402)
|
---|
1125 | /** General failure during URB queuing.
|
---|
1126 | * This will go away when the queueing gets proper status code handling. */
|
---|
1127 | #define VERR_VUSB_FAILED_TO_QUEUE_URB (-3403)
|
---|
1128 | /** Device creation failed because the USB device name was not found. */
|
---|
1129 | #define VERR_VUSB_DEVICE_NAME_NOT_FOUND (-3404)
|
---|
1130 | /** Not permitted to open the USB device.
|
---|
1131 | * The user doesn't have access to the device in the usbfs, check the mount options. */
|
---|
1132 | #define VERR_VUSB_USBFS_PERMISSION (-3405)
|
---|
1133 | /** The requested operation cannot be performed because the device
|
---|
1134 | * is currently being reset. */
|
---|
1135 | #define VERR_VUSB_DEVICE_IS_RESETTING (-3406)
|
---|
1136 | /** @} */
|
---|
1137 |
|
---|
1138 |
|
---|
1139 | /** @name VBox VGA Status Codes
|
---|
1140 | * @{
|
---|
1141 | */
|
---|
1142 | /** One of the custom modes was incorrect.
|
---|
1143 | * The format or bit count of the custom mode value is invalid. */
|
---|
1144 | #define VERR_VGA_INVALID_CUSTOM_MODE (-3500)
|
---|
1145 | /** The display connector is resizing. */
|
---|
1146 | #define VINF_VGA_RESIZE_IN_PROGRESS (3501)
|
---|
1147 | /** @} */
|
---|
1148 |
|
---|
1149 |
|
---|
1150 | /** @name Internal Networking Status Codes
|
---|
1151 | * @{
|
---|
1152 | */
|
---|
1153 | /** The networking interface to filter was not found. */
|
---|
1154 | #define VERR_INTNET_FLT_IF_NOT_FOUND (-3600)
|
---|
1155 | /** The networking interface to filter was busy (used by someone). */
|
---|
1156 | #define VERR_INTNET_FLT_IF_BUSY (-3601)
|
---|
1157 | /** Failed to create or connect to a networking interface filter. */
|
---|
1158 | #define VERR_INTNET_FLT_IF_FAILED (-3602)
|
---|
1159 | /** The network already exists with a different trunk configuration. */
|
---|
1160 | #define VERR_INTNET_INCOMPATIBLE_TRUNK (-3603)
|
---|
1161 | /** The network already exists with a different security profile (restricted / public). */
|
---|
1162 | #define VERR_INTNET_INCOMPATIBLE_FLAGS (-3604)
|
---|
1163 | /** @} */
|
---|
1164 |
|
---|
1165 |
|
---|
1166 | /** @name Support Driver Status Codes
|
---|
1167 | * @{
|
---|
1168 | */
|
---|
1169 | /** The component factory was not found. */
|
---|
1170 | #define VERR_SUPDRV_COMPONENT_NOT_FOUND (-3700)
|
---|
1171 | /** The component factories do not support the requested interface. */
|
---|
1172 | #define VERR_SUPDRV_INTERFACE_NOT_SUPPORTED (-3701)
|
---|
1173 | /** The service module was not found. */
|
---|
1174 | #define VERR_SUPDRV_SERVICE_NOT_FOUND (-3702)
|
---|
1175 | /** @} */
|
---|
1176 |
|
---|
1177 |
|
---|
1178 | /** @name VBox GMM Status Codes
|
---|
1179 | * @{
|
---|
1180 | */
|
---|
1181 | /** The GMM is out of pages and needs to be give another chunk of user memory that
|
---|
1182 | * it can lock down and borrow pages from. */
|
---|
1183 | #define VERR_GMM_SEED_ME (-3800)
|
---|
1184 | /** Unable to allocate more pages from the host system. */
|
---|
1185 | #define VERR_GMM_OUT_OF_MEMORY (-3801)
|
---|
1186 | /** Hit the global allocation limit.
|
---|
1187 | * If you know there is still sufficient memory available, try raise the limit. */
|
---|
1188 | #define VERR_GMM_HIT_GLOBAL_LIMIT (-3802)
|
---|
1189 | /** Hit the a VM account limit. */
|
---|
1190 | #define VERR_GMM_HIT_VM_ACCOUNT_LIMIT (-3803)
|
---|
1191 | /** Attempt to free more memory than what was previously allocated. */
|
---|
1192 | #define VERR_GMM_ATTEMPT_TO_FREE_TOO_MUCH (-3804)
|
---|
1193 | /** Attempted to report too many pages as deflated. */
|
---|
1194 | #define VERR_GMM_ATTEMPT_TO_DEFLATE_TOO_MUCH (-3805)
|
---|
1195 | /** The page to be freed or updated was not found. */
|
---|
1196 | #define VERR_GMM_PAGE_NOT_FOUND (-3806)
|
---|
1197 | /** The specified shared page was not actually private. */
|
---|
1198 | #define VERR_GMM_PAGE_NOT_PRIVATE (-3807)
|
---|
1199 | /** The specified shared page was not actually shared. */
|
---|
1200 | #define VERR_GMM_PAGE_NOT_SHARED (-3808)
|
---|
1201 | /** The page to be freed was already freed. */
|
---|
1202 | #define VERR_GMM_PAGE_ALREADY_FREE (-3809)
|
---|
1203 | /** The page to be updated or freed was noted owned by the caller. */
|
---|
1204 | #define VERR_GMM_NOT_PAGE_OWNER (-3810)
|
---|
1205 | /** The specified chunk was not found. */
|
---|
1206 | #define VERR_GMM_CHUNK_NOT_FOUND (-3811)
|
---|
1207 | /** The chunk has already been mapped into the process. */
|
---|
1208 | #define VERR_GMM_CHUNK_ALREADY_MAPPED (-3812)
|
---|
1209 | /** The chunk to be unmapped isn't actually mapped into the process. */
|
---|
1210 | #define VERR_GMM_CHUNK_NOT_MAPPED (-3813)
|
---|
1211 | /** The reservation or reservation update was declined - too many VMs, too
|
---|
1212 | * little memory, and/or too low GMM configuration. */
|
---|
1213 | #define VERR_GMM_MEMORY_RESERVATION_DECLINED (-3814)
|
---|
1214 | /** @} */
|
---|
1215 |
|
---|
1216 |
|
---|
1217 | /** @name VBox GVM Status Codes
|
---|
1218 | * @{
|
---|
1219 | */
|
---|
1220 | /** The GVM is out of VM handle space. */
|
---|
1221 | #define VERR_GVM_TOO_MANY_VMS (-3900)
|
---|
1222 | /** The EMT thread was not blocked at the time of the call. */
|
---|
1223 | #define VINF_GVM_NOT_BLOCKED 3901
|
---|
1224 | /** RTThreadYield was called during a GVMMR0ShcedPoll call. */
|
---|
1225 | #define VINF_GVM_YIELDED 3902
|
---|
1226 | /** @} */
|
---|
1227 |
|
---|
1228 |
|
---|
1229 | /** @name VBox VMX Status Codes
|
---|
1230 | * @{
|
---|
1231 | */
|
---|
1232 | /** Invalid VMCS index or write to read-only element. */
|
---|
1233 | #define VERR_VMX_INVALID_VMCS_FIELD (-4000)
|
---|
1234 | /** Invalid VMCS pointer. */
|
---|
1235 | #define VERR_VMX_INVALID_VMCS_PTR (-4001)
|
---|
1236 | /** Invalid VMXON pointer. */
|
---|
1237 | #define VERR_VMX_INVALID_VMXON_PTR (-4002)
|
---|
1238 | /** Generic VMX failure. */
|
---|
1239 | #define VERR_VMX_GENERIC (-4003)
|
---|
1240 | /** Invalid CPU mode for VMX execution. */
|
---|
1241 | #define VERR_VMX_UNSUPPORTED_MODE (-4004)
|
---|
1242 | /** Unable to start VM execution. */
|
---|
1243 | #define VERR_VMX_UNABLE_TO_START_VM (-4005)
|
---|
1244 | /** Unable to resume VM execution. */
|
---|
1245 | #define VERR_VMX_UNABLE_TO_RESUME_VM (-4006)
|
---|
1246 | /** Unable to switch due to invalid host state. */
|
---|
1247 | #define VERR_VMX_INVALID_HOST_STATE (-4007)
|
---|
1248 | /** IA32_FEATURE_CONTROL MSR not setup correcty (turn on VMX in the host system BIOS) */
|
---|
1249 | #define VERR_VMX_ILLEGAL_FEATURE_CONTROL_MSR (-4008)
|
---|
1250 | /** VMX CPU extension not available */
|
---|
1251 | #define VERR_VMX_NO_VMX (-4009)
|
---|
1252 | /** VMXON failed; possibly because it was already run before */
|
---|
1253 | #define VERR_VMX_VMXON_FAILED (-4010)
|
---|
1254 | /** CPU was incorrectly left in VMX root mode; incompatible with VirtualBox */
|
---|
1255 | #define VERR_VMX_IN_VMX_ROOT_MODE (-4011)
|
---|
1256 | /** Somebody cleared X86_CR4_VMXE in the CR4 register. */
|
---|
1257 | #define VERR_VMX_X86_CR4_VMXE_CLEARED (-4012)
|
---|
1258 | /** VT-x features locked or unavailable in MSR. */
|
---|
1259 | #define VERR_VMX_MSR_LOCKED_OR_DISABLED (-4013)
|
---|
1260 | /** Unable to switch due to invalid guest state. */
|
---|
1261 | #define VERR_VMX_INVALID_GUEST_STATE (-4014)
|
---|
1262 | /** Unexpected VM exit code. */
|
---|
1263 | #define VERR_VMX_UNEXPECTED_EXIT_CODE (-4015)
|
---|
1264 | /** Unexpected VM exception code. */
|
---|
1265 | #define VERR_VMX_UNEXPECTED_EXCEPTION (-4016)
|
---|
1266 | /** Unexpected interruption exit code. */
|
---|
1267 | #define VERR_VMX_UNEXPECTED_INTERRUPTION_EXIT_CODE (-4017)
|
---|
1268 | /** @} */
|
---|
1269 |
|
---|
1270 |
|
---|
1271 | /** @name VBox SVM Status Codes
|
---|
1272 | * @{
|
---|
1273 | */
|
---|
1274 | /** Unable to start VM execution. */
|
---|
1275 | #define VERR_SVM_UNABLE_TO_START_VM (-4050)
|
---|
1276 | /** SVM bit not set in K6_EFER MSR */
|
---|
1277 | #define VERR_SVM_ILLEGAL_EFER_MSR (-4051)
|
---|
1278 | /** SVM CPU extension not available. */
|
---|
1279 | #define VERR_SVM_NO_SVM (-4052)
|
---|
1280 | /** SVM CPU extension disabled (by BIOS). */
|
---|
1281 | #define VERR_SVM_DISABLED (-4053)
|
---|
1282 | /** @} */
|
---|
1283 |
|
---|
1284 |
|
---|
1285 | /** @name VBox HWACCM Status Codes
|
---|
1286 | * @{
|
---|
1287 | */
|
---|
1288 | /** Unable to start VM execution. */
|
---|
1289 | #define VERR_HWACCM_UNKNOWN_CPU (-4100)
|
---|
1290 | /** No CPUID support. */
|
---|
1291 | #define VERR_HWACCM_NO_CPUID (-4101)
|
---|
1292 | /** Host is about to go into suspend mode. */
|
---|
1293 | #define VERR_HWACCM_SUSPEND_PENDING (-4102)
|
---|
1294 | /** Conflicting CFGM values. */
|
---|
1295 | #define VERR_HWACCM_CONFIG_MISMATCH (-4103)
|
---|
1296 | /** @} */
|
---|
1297 |
|
---|
1298 |
|
---|
1299 | /** @name VBox Disassembler Status Codes
|
---|
1300 | * @{
|
---|
1301 | */
|
---|
1302 | /** Invalid opcode byte(s) */
|
---|
1303 | #define VERR_DIS_INVALID_OPCODE (-4200)
|
---|
1304 | /** Generic failure during disassembly. */
|
---|
1305 | #define VERR_DIS_GEN_FAILURE (-4201)
|
---|
1306 | /** @} */
|
---|
1307 |
|
---|
1308 |
|
---|
1309 | /** @name VBox Webservice Status Codes
|
---|
1310 | * @{
|
---|
1311 | */
|
---|
1312 | /** Authentication failed (ISessionManager::logon()) */
|
---|
1313 | #define VERR_WEB_NOT_AUTHENTICATED (-4300)
|
---|
1314 | /** Invalid format of managed object reference */
|
---|
1315 | #define VERR_WEB_INVALID_MANAGED_OBJECT_REFERENCE (-4301)
|
---|
1316 | /** Invalid session ID in managed object reference */
|
---|
1317 | #define VERR_WEB_INVALID_SESSION_ID (-4302)
|
---|
1318 | /** Invalid object ID in managed object reference */
|
---|
1319 | #define VERR_WEB_INVALID_OBJECT_ID (-4303)
|
---|
1320 | /** Unsupported interface for managed object reference */
|
---|
1321 | #define VERR_WEB_UNSUPPORTED_INTERFACE (-4304)
|
---|
1322 | /** @} */
|
---|
1323 |
|
---|
1324 |
|
---|
1325 | /** @name VBox PARAV Status Codes
|
---|
1326 | * @{
|
---|
1327 | */
|
---|
1328 | /** Switch back to host */
|
---|
1329 | #define VINF_PARAV_SWITCH_TO_HOST 4400
|
---|
1330 |
|
---|
1331 | /** @} */
|
---|
1332 |
|
---|
1333 | /* SED-END */
|
---|
1334 |
|
---|
1335 |
|
---|
1336 | /** @def VBOX_SUCCESS
|
---|
1337 | * Check for success.
|
---|
1338 | *
|
---|
1339 | * @returns true if rc indicates success.
|
---|
1340 | * @returns false if rc indicates failure.
|
---|
1341 | *
|
---|
1342 | * @param rc The iprt status code to test.
|
---|
1343 | */
|
---|
1344 | #define VBOX_SUCCESS(rc) RT_SUCCESS(rc)
|
---|
1345 |
|
---|
1346 | /** @def VBOX_FAILURE
|
---|
1347 | * Check for failure.
|
---|
1348 | *
|
---|
1349 | * @returns true if rc indicates failure.
|
---|
1350 | * @returns false if rc indicates success.
|
---|
1351 | *
|
---|
1352 | * @param rc The iprt status code to test.
|
---|
1353 | */
|
---|
1354 | #define VBOX_FAILURE(rc) RT_FAILURE(rc)
|
---|
1355 |
|
---|
1356 | /** @} */
|
---|
1357 |
|
---|
1358 |
|
---|
1359 | #endif
|
---|
1360 |
|
---|