VirtualBox

source: vbox/trunk/include/iprt/err.h@ 74690

Last change on this file since 74690 was 74656, checked in by vboxsync, 6 years ago

IPRT/ldr: Working on parsing Mach-O code signing structures... bugref:9232

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 150.7 KB
Line 
1/** @file
2 * IPRT - Status Codes.
3 */
4
5/*
6 * Copyright (C) 2006-2017 Oracle Corporation
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
26#ifndef ___iprt_err_h
27#define ___iprt_err_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/stdarg.h>
32
33
34/** @defgroup grp_rt_err RTErr - Status Codes
35 * @ingroup grp_rt
36 *
37 * The IPRT status codes are in two ranges: {0..999} and {22000..32766}. The
38 * IPRT users are free to use the range {1000..21999}. See RTERR_RANGE1_FIRST,
39 * RTERR_RANGE1_LAST, RTERR_RANGE2_FIRST, RTERR_RANGE2_LAST, RTERR_USER_FIRST
40 * and RTERR_USER_LAST.
41 *
42 * @{
43 */
44
45/** @defgroup grp_rt_err_hlp Status Code Helpers
46 * @{
47 */
48
49#ifdef __cplusplus
50/**
51 * Strict type validation class.
52 *
53 * This is only really useful for type checking the arguments to RT_SUCCESS,
54 * RT_SUCCESS_NP, RT_FAILURE and RT_FAILURE_NP. The RTErrStrictType2
55 * constructor is for integration with external status code strictness regimes.
56 */
57class RTErrStrictType
58{
59protected:
60 int32_t m_rc;
61
62public:
63 /**
64 * Constructor for interaction with external status code strictness regimes.
65 *
66 * This is a special constructor for helping external return code validator
67 * classes interact cleanly with RT_SUCCESS, RT_SUCCESS_NP, RT_FAILURE and
68 * RT_FAILURE_NP while barring automatic cast to integer.
69 *
70 * @param rcObj IPRT status code object from an automatic cast.
71 */
72 RTErrStrictType(RTErrStrictType2 const rcObj)
73 : m_rc(rcObj.getValue())
74 {
75 }
76
77 /**
78 * Integer constructor used by RT_SUCCESS_NP.
79 *
80 * @param rc IPRT style status code.
81 */
82 RTErrStrictType(int32_t rc)
83 : m_rc(rc)
84 {
85 }
86
87#if 0 /** @todo figure where int32_t is long instead of int. */
88 /**
89 * Integer constructor used by RT_SUCCESS_NP.
90 *
91 * @param rc IPRT style status code.
92 */
93 RTErrStrictType(signed int rc)
94 : m_rc(rc)
95 {
96 }
97#endif
98
99 /**
100 * Test for success.
101 */
102 bool success() const
103 {
104 return m_rc >= 0;
105 }
106
107private:
108 /** @name Try ban a number of wrong types.
109 * @{ */
110 RTErrStrictType(uint8_t rc) : m_rc(-999) { NOREF(rc); }
111 RTErrStrictType(uint16_t rc) : m_rc(-999) { NOREF(rc); }
112 RTErrStrictType(uint32_t rc) : m_rc(-999) { NOREF(rc); }
113 RTErrStrictType(uint64_t rc) : m_rc(-999) { NOREF(rc); }
114 RTErrStrictType(int8_t rc) : m_rc(-999) { NOREF(rc); }
115 RTErrStrictType(int16_t rc) : m_rc(-999) { NOREF(rc); }
116 RTErrStrictType(int64_t rc) : m_rc(-999) { NOREF(rc); }
117 /** @todo fight long here - clashes with int32_t/int64_t on some platforms. */
118 /** @} */
119};
120#endif /* __cplusplus */
121
122
123/** @def RTERR_STRICT_RC
124 * Indicates that RT_SUCCESS_NP, RT_SUCCESS, RT_FAILURE_NP and RT_FAILURE should
125 * make type enforcing at compile time.
126 *
127 * @remarks Only define this for C++ code.
128 */
129#if defined(__cplusplus) \
130 && !defined(RTERR_STRICT_RC) \
131 && ( defined(DOXYGEN_RUNNING) \
132 || defined(DEBUG) \
133 || defined(RT_STRICT) )
134# define RTERR_STRICT_RC 1
135#endif
136
137
138/** @def RT_SUCCESS
139 * Check for success. We expect success in normal cases, that is the code path depending on
140 * this check is normally taken. To prevent any prediction use RT_SUCCESS_NP instead.
141 *
142 * @returns true if rc indicates success.
143 * @returns false if rc indicates failure.
144 *
145 * @param rc The iprt status code to test.
146 */
147#define RT_SUCCESS(rc) ( RT_LIKELY(RT_SUCCESS_NP(rc)) )
148
149/** @def RT_SUCCESS_NP
150 * Check for success. Don't predict the result.
151 *
152 * @returns true if rc indicates success.
153 * @returns false if rc indicates failure.
154 *
155 * @param rc The iprt status code to test.
156 */
157#ifdef RTERR_STRICT_RC
158# define RT_SUCCESS_NP(rc) ( RTErrStrictType(rc).success() )
159#else
160# define RT_SUCCESS_NP(rc) ( (int)(rc) >= VINF_SUCCESS )
161#endif
162
163/** @def RT_FAILURE
164 * Check for failure, predicting unlikely.
165 *
166 * We don't expect in normal cases, that is the code path depending on this
167 * check is normally NOT taken. To prevent any prediction use RT_FAILURE_NP
168 * instead.
169 *
170 * @returns true if rc indicates failure.
171 * @returns false if rc indicates success.
172 *
173 * @param rc The iprt status code to test.
174 *
175 * @remarks Please structure your code to use the RT_SUCCESS() macro instead of
176 * RT_FAILURE() where possible, as that gives us a better shot at good
177 * code with the windows compilers.
178 */
179#define RT_FAILURE(rc) ( RT_UNLIKELY(!RT_SUCCESS_NP(rc)) )
180
181/** @def RT_FAILURE_NP
182 * Check for failure, no prediction.
183 *
184 * @returns true if rc indicates failure.
185 * @returns false if rc indicates success.
186 *
187 * @param rc The iprt status code to test.
188 */
189#define RT_FAILURE_NP(rc) ( !RT_SUCCESS_NP(rc) )
190
191RT_C_DECLS_BEGIN
192
193/**
194 * Converts a Darwin HRESULT error to an iprt status code.
195 *
196 * @returns iprt status code.
197 * @param iNativeCode HRESULT error code.
198 * @remark Darwin ring-3 only.
199 */
200RTDECL(int) RTErrConvertFromDarwinCOM(int32_t iNativeCode);
201
202/**
203 * Converts a Darwin IOReturn error to an iprt status code.
204 *
205 * @returns iprt status code.
206 * @param iNativeCode IOReturn error code.
207 * @remark Darwin only.
208 */
209RTDECL(int) RTErrConvertFromDarwinIO(int iNativeCode);
210
211/**
212 * Converts a Darwin kern_return_t error to an iprt status code.
213 *
214 * @returns iprt status code.
215 * @param iNativeCode kern_return_t error code.
216 * @remark Darwin only.
217 */
218RTDECL(int) RTErrConvertFromDarwinKern(int iNativeCode);
219
220/**
221 * Converts a Darwin error to an iprt status code.
222 *
223 * This will consult RTErrConvertFromDarwinKern, RTErrConvertFromDarwinIO
224 * and RTErrConvertFromDarwinCOM in this order. The latter is ring-3 only as it
225 * doesn't apply elsewhere.
226 *
227 * @returns iprt status code.
228 * @param iNativeCode Darwin error code.
229 * @remarks Darwin only.
230 * @remarks This is recommended over RTErrConvertFromDarwinKern and RTErrConvertFromDarwinIO
231 * since these are really just subsets of the same error space.
232 */
233RTDECL(int) RTErrConvertFromDarwin(int iNativeCode);
234
235/**
236 * Converts errno to iprt status code.
237 *
238 * @returns iprt status code.
239 * @param uNativeCode errno code.
240 */
241RTDECL(int) RTErrConvertFromErrno(unsigned uNativeCode);
242
243/**
244 * Converts a L4 errno to a iprt status code.
245 *
246 * @returns iprt status code.
247 * @param uNativeCode l4 errno.
248 * @remark L4 only.
249 */
250RTDECL(int) RTErrConvertFromL4Errno(unsigned uNativeCode);
251
252/**
253 * Converts NT status code to iprt status code.
254 *
255 * Needless to say, this is only available on NT and winXX targets.
256 *
257 * @returns iprt status code.
258 * @param lNativeCode NT status code.
259 * @remark Windows only.
260 */
261RTDECL(int) RTErrConvertFromNtStatus(long lNativeCode);
262
263/**
264 * Converts OS/2 error code to iprt status code.
265 *
266 * @returns iprt status code.
267 * @param uNativeCode OS/2 error code.
268 * @remark OS/2 only.
269 */
270RTDECL(int) RTErrConvertFromOS2(unsigned uNativeCode);
271
272/**
273 * Converts Win32 error code to iprt status code.
274 *
275 * @returns iprt status code.
276 * @param uNativeCode Win32 error code.
277 * @remark Windows only.
278 */
279RTDECL(int) RTErrConvertFromWin32(unsigned uNativeCode);
280
281/**
282 * Converts an iprt status code to a errno status code.
283 *
284 * @returns errno status code.
285 * @param iErr iprt status code.
286 */
287RTDECL(int) RTErrConvertToErrno(int iErr);
288
289#ifdef IN_RING3
290
291/**
292 * iprt status code message.
293 */
294typedef struct RTSTATUSMSG
295{
296 /** Pointer to the short message string. */
297 const char *pszMsgShort;
298 /** Pointer to the full message string. */
299 const char *pszMsgFull;
300 /** Pointer to the define string. */
301 const char *pszDefine;
302 /** Status code number. */
303 int iCode;
304} RTSTATUSMSG;
305/** Pointer to iprt status code message. */
306typedef RTSTATUSMSG *PRTSTATUSMSG;
307/** Pointer to const iprt status code message. */
308typedef const RTSTATUSMSG *PCRTSTATUSMSG;
309
310/**
311 * Get the message structure corresponding to a given iprt status code.
312 *
313 * @returns Pointer to read-only message description.
314 * @param rc The status code.
315 */
316RTDECL(PCRTSTATUSMSG) RTErrGet(int rc);
317
318/**
319 * Get the define corresponding to a given iprt status code.
320 *
321 * @returns Pointer to read-only string with the \#define identifier.
322 * @param rc The status code.
323 */
324#define RTErrGetDefine(rc) (RTErrGet(rc)->pszDefine)
325
326/**
327 * Get the short description corresponding to a given iprt status code.
328 *
329 * @returns Pointer to read-only string with the description.
330 * @param rc The status code.
331 */
332#define RTErrGetShort(rc) (RTErrGet(rc)->pszMsgShort)
333
334/**
335 * Get the full description corresponding to a given iprt status code.
336 *
337 * @returns Pointer to read-only string with the description.
338 * @param rc The status code.
339 */
340#define RTErrGetFull(rc) (RTErrGet(rc)->pszMsgFull)
341
342#ifdef RT_OS_WINDOWS
343/**
344 * Windows error code message.
345 */
346typedef struct RTWINERRMSG
347{
348 /** Pointer to the full message string. */
349 const char *pszMsgFull;
350 /** Pointer to the define string. */
351 const char *pszDefine;
352 /** Error code number. */
353 long iCode;
354} RTWINERRMSG;
355/** Pointer to Windows error code message. */
356typedef RTWINERRMSG *PRTWINERRMSG;
357/** Pointer to const Windows error code message. */
358typedef const RTWINERRMSG *PCRTWINERRMSG;
359
360/**
361 * Get the message structure corresponding to a given Windows error code.
362 *
363 * @returns Pointer to read-only message description.
364 * @param rc The status code.
365 */
366RTDECL(PCRTWINERRMSG) RTErrWinGet(long rc);
367
368/** On windows COM errors are part of the Windows error database. */
369typedef RTWINERRMSG RTCOMERRMSG;
370
371#else /* !RT_OS_WINDOWS */
372
373/**
374 * COM/XPCOM error code message.
375 */
376typedef struct RTCOMERRMSG
377{
378 /** Pointer to the full message string. */
379 const char *pszMsgFull;
380 /** Pointer to the define string. */
381 const char *pszDefine;
382 /** Error code number. */
383 uint32_t iCode;
384} RTCOMERRMSG;
385#endif /* !RT_OS_WINDOWS */
386/** Pointer to a XPCOM/COM error code message. */
387typedef RTCOMERRMSG *PRTCOMERRMSG;
388/** Pointer to const a XPCOM/COM error code message. */
389typedef const RTCOMERRMSG *PCRTCOMERRMSG;
390
391/**
392 * Get the message structure corresponding to a given COM/XPCOM error code.
393 *
394 * @returns Pointer to read-only message description.
395 * @param rc The status code.
396 */
397RTDECL(PCRTCOMERRMSG) RTErrCOMGet(uint32_t rc);
398
399#endif /* IN_RING3 */
400
401/** @defgroup RTERRINFO_FLAGS_XXX RTERRINFO::fFlags
402 * @{ */
403/** Custom structure (the default). */
404#define RTERRINFO_FLAGS_T_CUSTOM UINT32_C(0)
405/** Static structure (RTERRINFOSTATIC). */
406#define RTERRINFO_FLAGS_T_STATIC UINT32_C(1)
407/** Allocated structure (RTErrInfoAlloc). */
408#define RTERRINFO_FLAGS_T_ALLOC UINT32_C(2)
409/** Reserved type. */
410#define RTERRINFO_FLAGS_T_RESERVED UINT32_C(3)
411/** Type mask. */
412#define RTERRINFO_FLAGS_T_MASK UINT32_C(3)
413/** Error info is set. */
414#define RTERRINFO_FLAGS_SET RT_BIT_32(2)
415/** Fixed flags (magic). */
416#define RTERRINFO_FLAGS_MAGIC UINT32_C(0xbabe0000)
417/** The bit mask for the magic value. */
418#define RTERRINFO_FLAGS_MAGIC_MASK UINT32_C(0xffff0000)
419/** @} */
420
421/**
422 * Initializes an error info structure.
423 *
424 * @returns @a pErrInfo.
425 * @param pErrInfo The error info structure to init.
426 * @param pszMsg The message buffer. Must be at least one byte.
427 * @param cbMsg The size of the message buffer.
428 */
429DECLINLINE(PRTERRINFO) RTErrInfoInit(PRTERRINFO pErrInfo, char *pszMsg, size_t cbMsg)
430{
431 *pszMsg = '\0';
432
433 pErrInfo->fFlags = RTERRINFO_FLAGS_T_CUSTOM | RTERRINFO_FLAGS_MAGIC;
434 pErrInfo->rc = /*VINF_SUCCESS*/ 0;
435 pErrInfo->pszMsg = pszMsg;
436 pErrInfo->cbMsg = cbMsg;
437 pErrInfo->apvReserved[0] = NULL;
438 pErrInfo->apvReserved[1] = NULL;
439
440 return pErrInfo;
441}
442
443/**
444 * Initialize a static error info structure.
445 *
446 * @returns Pointer to the core error info structure.
447 * @param pStaticErrInfo The static error info structure to init.
448 */
449DECLINLINE(PRTERRINFO) RTErrInfoInitStatic(PRTERRINFOSTATIC pStaticErrInfo)
450{
451 RTErrInfoInit(&pStaticErrInfo->Core, pStaticErrInfo->szMsg, sizeof(pStaticErrInfo->szMsg));
452 pStaticErrInfo->Core.fFlags = RTERRINFO_FLAGS_T_STATIC | RTERRINFO_FLAGS_MAGIC;
453 return &pStaticErrInfo->Core;
454}
455
456/**
457 * Allocates a error info structure with a buffer at least the given size.
458 *
459 * @returns Pointer to an error info structure on success, NULL on failure.
460 *
461 * @param cbMsg The minimum message buffer size. Use 0 to get
462 * the default buffer size.
463 */
464RTDECL(PRTERRINFO) RTErrInfoAlloc(size_t cbMsg);
465
466/**
467 * Same as RTErrInfoAlloc, except that an IPRT status code is returned.
468 *
469 * @returns IPRT status code.
470 *
471 * @param cbMsg The minimum message buffer size. Use 0 to get
472 * the default buffer size.
473 * @param ppErrInfo Where to store the pointer to the allocated
474 * error info structure on success. This is
475 * always set to NULL.
476 */
477RTDECL(int) RTErrInfoAllocEx(size_t cbMsg, PRTERRINFO *ppErrInfo);
478
479/**
480 * Frees an error info structure allocated by RTErrInfoAlloc or
481 * RTErrInfoAllocEx.
482 *
483 * @param pErrInfo The error info structure.
484 */
485RTDECL(void) RTErrInfoFree(PRTERRINFO pErrInfo);
486
487/**
488 * Fills in the error info details.
489 *
490 * @returns @a rc.
491 *
492 * @param pErrInfo The error info structure to fill in.
493 * @param rc The status code to return.
494 * @param pszMsg The error message string.
495 */
496RTDECL(int) RTErrInfoSet(PRTERRINFO pErrInfo, int rc, const char *pszMsg);
497
498/**
499 * Fills in the error info details, with a sprintf style message.
500 *
501 * @returns @a rc.
502 *
503 * @param pErrInfo The error info structure to fill in.
504 * @param rc The status code to return.
505 * @param pszFormat The format string.
506 * @param ... The format arguments.
507 */
508RTDECL(int) RTErrInfoSetF(PRTERRINFO pErrInfo, int rc, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
509
510/**
511 * Fills in the error info details, with a vsprintf style message.
512 *
513 * @returns @a rc.
514 *
515 * @param pErrInfo The error info structure to fill in.
516 * @param rc The status code to return.
517 * @param pszFormat The format string.
518 * @param va The format arguments.
519 */
520RTDECL(int) RTErrInfoSetV(PRTERRINFO pErrInfo, int rc, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0);
521
522/**
523 * Adds more error info details.
524 *
525 * @returns @a rc.
526 *
527 * @param pErrInfo The error info structure to fill in.
528 * @param rc The status code to return.
529 * @param pszMsg The error message string to add.
530 */
531RTDECL(int) RTErrInfoAdd(PRTERRINFO pErrInfo, int rc, const char *pszMsg);
532
533/**
534 * Adds more error info details, with a sprintf style message.
535 *
536 * @returns @a rc.
537 *
538 * @param pErrInfo The error info structure to fill in.
539 * @param rc The status code to return.
540 * @param pszFormat The format string to add.
541 * @param ... The format arguments.
542 */
543RTDECL(int) RTErrInfoAddF(PRTERRINFO pErrInfo, int rc, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
544
545/**
546 * Adds more error info details, with a vsprintf style message.
547 *
548 * @returns @a rc.
549 *
550 * @param pErrInfo The error info structure to fill in.
551 * @param rc The status code to return.
552 * @param pszFormat The format string to add.
553 * @param va The format arguments.
554 */
555RTDECL(int) RTErrInfoAddV(PRTERRINFO pErrInfo, int rc, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0);
556
557/** @name RTERRINFO_LOG_F_XXX
558 * @{ */
559/** Both debug and release log. */
560#define RTERRINFO_LOG_F_RELEASE RT_BIT_32(0)
561/** @} */
562
563/**
564 * Fills in the error info details.
565 *
566 * @returns @a rc.
567 *
568 * @param pErrInfo The error info structure to fill in.
569 * @param rc The status code to return.
570 * @param iLogGroup The logging group.
571 * @param fFlags RTERRINFO_LOG_F_XXX.
572 * @param pszMsg The error message string.
573 */
574RTDECL(int) RTErrInfoLogAndSet(PRTERRINFO pErrInfo, int rc, uint32_t iLogGroup, uint32_t fFlags, const char *pszMsg);
575
576/**
577 * Fills in the error info details, with a sprintf style message.
578 *
579 * @returns @a rc.
580 *
581 * @param pErrInfo The error info structure to fill in.
582 * @param rc The status code to return.
583 * @param iLogGroup The logging group.
584 * @param fFlags RTERRINFO_LOG_F_XXX.
585 * @param pszFormat The format string.
586 * @param ... The format arguments.
587 */
588RTDECL(int) RTErrInfoLogAndSetF(PRTERRINFO pErrInfo, int rc, uint32_t iLogGroup, uint32_t fFlags, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(5, 6);
589
590/**
591 * Fills in the error info details, with a vsprintf style message.
592 *
593 * @returns @a rc.
594 *
595 * @param pErrInfo The error info structure to fill in.
596 * @param rc The status code to return.
597 * @param iLogGroup The logging group.
598 * @param fFlags RTERRINFO_LOG_F_XXX.
599 * @param pszFormat The format string.
600 * @param va The format arguments.
601 */
602RTDECL(int) RTErrInfoLogAndSetV(PRTERRINFO pErrInfo, int rc, uint32_t iLogGroup, uint32_t fFlags, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(5, 0);
603
604/**
605 * Adds more error info details.
606 *
607 * @returns @a rc.
608 *
609 * @param pErrInfo The error info structure to fill in.
610 * @param rc The status code to return.
611 * @param iLogGroup The logging group.
612 * @param fFlags RTERRINFO_LOG_F_XXX.
613 * @param pszMsg The error message string to add.
614 */
615RTDECL(int) RTErrInfoLogAndAdd(PRTERRINFO pErrInfo, int rc, uint32_t iLogGroup, uint32_t fFlags, const char *pszMsg);
616
617/**
618 * Adds more error info details, with a sprintf style message.
619 *
620 * @returns @a rc.
621 *
622 * @param pErrInfo The error info structure to fill in.
623 * @param rc The status code to return.
624 * @param iLogGroup The logging group.
625 * @param fFlags RTERRINFO_LOG_F_XXX.
626 * @param pszFormat The format string to add.
627 * @param ... The format arguments.
628 */
629RTDECL(int) RTErrInfoLogAndAddF(PRTERRINFO pErrInfo, int rc, uint32_t iLogGroup, uint32_t fFlags, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(5, 6);
630
631/**
632 * Adds more error info details, with a vsprintf style message.
633 *
634 * @returns @a rc.
635 *
636 * @param pErrInfo The error info structure to fill in.
637 * @param rc The status code to return.
638 * @param iLogGroup The logging group.
639 * @param fFlags RTERRINFO_LOG_F_XXX.
640 * @param pszFormat The format string to add.
641 * @param va The format arguments.
642 */
643RTDECL(int) RTErrInfoLogAndAddV(PRTERRINFO pErrInfo, int rc, uint32_t iLogGroup, uint32_t fFlags, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(5, 0);
644
645/** @name Macros wrapping the RTErrInfoLog* functions.
646 * @{ */
647#ifndef LOG_DISABLED
648# define RTERRINFO_LOG_SET( a_pErrInfo, a_rc, a_pszMsg) RTErrInfoLogAndSet( a_pErrInfo, a_rc, LOG_GROUP, 0, a_pszMsg)
649# define RTERRINFO_LOG_SET_V(a_pErrInfo, a_rc, a_pszMsg, a_va) RTErrInfoLogAndSetV(a_pErrInfo, a_rc, LOG_GROUP, 0, a_pszMsg, a_va)
650# define RTERRINFO_LOG_ADD( a_pErrInfo, a_rc, a_pszMsg) RTErrInfoLogAndAdd( a_pErrInfo, a_rc, LOG_GROUP, 0, a_pszMsg)
651# define RTERRINFO_LOG_ADD_V(a_pErrInfo, a_rc, a_pszMsg, a_va) RTErrInfoLogAndAddV(a_pErrInfo, a_rc, LOG_GROUP, 0, a_pszMsg, a_va)
652# ifdef RT_COMPILER_SUPPORTS_VA_ARGS
653# define RTERRINFO_LOG_ADD_F(a_pErrInfo, a_rc, ...) RTErrInfoLogAndAddF(a_pErrInfo, a_rc, LOG_GROUP, 0, __VA_ARGS__)
654# define RTERRINFO_LOG_SET_F(a_pErrInfo, a_rc, ...) RTErrInfoLogAndSetF(a_pErrInfo, a_rc, LOG_GROUP, 0, __VA_ARGS__)
655# else
656# define RTERRINFO_LOG_ADD_F RTErrInfoSetF
657# define RTERRINFO_LOG_SET_F RTErrInfoAddF
658# endif
659#else
660# define RTERRINFO_LOG_SET( a_pErrInfo, a_rc, a_pszMsg) RTErrInfoSet( a_pErrInfo, a_rc, a_pszMsg)
661# define RTERRINFO_LOG_SET_V(a_pErrInfo, a_rc, a_pszMsg, a_va) RTErrInfoSetV(a_pErrInfo, a_rc, a_pszMsg, a_va)
662# define RTERRINFO_LOG_ADD( a_pErrInfo, a_rc, a_pszMsg) RTErrInfoAdd( a_pErrInfo, a_rc, a_pszMsg)
663# define RTERRINFO_LOG_ADD_V(a_pErrInfo, a_rc, a_pszMsg, a_va) RTErrInfoAddV(a_pErrInfo, a_rc, a_pszMsg, a_va)
664# define RTERRINFO_LOG_ADD_F RTErrInfoSetF
665# define RTERRINFO_LOG_SET_F RTErrInfoAddF
666#endif
667
668#define RTERRINFO_LOG_REL_SET( a_pErrInfo, a_rc, a_pszMsg) RTErrInfoLogAndSet( a_pErrInfo, a_rc, LOG_GROUP, RTERRINFO_LOG_F_RELEASE, a_pszMsg)
669#define RTERRINFO_LOG_REL_SET_V(a_pErrInfo, a_rc, a_pszMsg, a_va) RTErrInfoLogAndSetV(a_pErrInfo, a_rc, LOG_GROUP, RTERRINFO_LOG_F_RELEASE, a_pszMsg, a_va)
670#define RTERRINFO_LOG_REL_ADD( a_pErrInfo, a_rc, a_pszMsg) RTErrInfoLogAndAdd( a_pErrInfo, a_rc, LOG_GROUP, RTERRINFO_LOG_F_RELEASE, a_pszMsg)
671#define RTERRINFO_LOG_REL_ADD_V(a_pErrInfo, a_rc, a_pszMsg, a_va) RTErrInfoLogAndAddV(a_pErrInfo, a_rc, LOG_GROUP, RTERRINFO_LOG_F_RELEASE, a_pszMsg, a_va)
672#ifdef RT_COMPILER_SUPPORTS_VA_ARGS
673# define RTERRINFO_LOG_REL_ADD_F(a_pErrInfo, a_rc, ...) RTErrInfoLogAndAddF(a_pErrInfo, a_rc, LOG_GROUP, RTERRINFO_LOG_F_RELEASE, __VA_ARGS__)
674# define RTERRINFO_LOG_REL_SET_F(a_pErrInfo, a_rc, ...) RTErrInfoLogAndSetF(a_pErrInfo, a_rc, LOG_GROUP, RTERRINFO_LOG_F_RELEASE, __VA_ARGS__)
675#else
676# define RTERRINFO_LOG_REL_ADD_F RTErrInfoSetF
677# define RTERRINFO_LOG_REL_SET_F RTErrInfoAddF
678#endif
679/** @} */
680
681
682/**
683 * Checks if the error info is set.
684 *
685 * @returns true if set, false if not.
686 * @param pErrInfo The error info structure. NULL is OK.
687 */
688DECLINLINE(bool) RTErrInfoIsSet(PCRTERRINFO pErrInfo)
689{
690 if (!pErrInfo)
691 return false;
692 return (pErrInfo->fFlags & (RTERRINFO_FLAGS_MAGIC_MASK | RTERRINFO_FLAGS_SET))
693 == (RTERRINFO_FLAGS_MAGIC | RTERRINFO_FLAGS_SET);
694}
695
696/**
697 * Clears the error info structure.
698 *
699 * @param pErrInfo The error info structure. NULL is OK.
700 */
701DECLINLINE(void) RTErrInfoClear(PRTERRINFO pErrInfo)
702{
703 if (pErrInfo)
704 {
705 pErrInfo->fFlags &= ~RTERRINFO_FLAGS_SET;
706 pErrInfo->rc = /*VINF_SUCCESS*/0;
707 *pErrInfo->pszMsg = '\0';
708 }
709}
710
711/**
712 * Storage for error variables.
713 *
714 * @remarks Do NOT touch the members! They are platform specific and what's
715 * where may change at any time!
716 */
717typedef union RTERRVARS
718{
719 int8_t ai8Vars[32];
720 int16_t ai16Vars[16];
721 int32_t ai32Vars[8];
722 int64_t ai64Vars[4];
723} RTERRVARS;
724/** Pointer to an error variable storage union. */
725typedef RTERRVARS *PRTERRVARS;
726/** Pointer to a const error variable storage union. */
727typedef RTERRVARS const *PCRTERRVARS;
728
729/**
730 * Saves the error variables.
731 *
732 * @returns @a pVars.
733 * @param pVars The variable storage union.
734 */
735RTDECL(PRTERRVARS) RTErrVarsSave(PRTERRVARS pVars);
736
737/**
738 * Restores the error variables.
739 *
740 * @param pVars The variable storage union.
741 */
742RTDECL(void) RTErrVarsRestore(PCRTERRVARS pVars);
743
744/**
745 * Checks if the first variable set equals the second.
746 *
747 * @returns true if they are equal, false if not.
748 * @param pVars1 The first variable storage union.
749 * @param pVars2 The second variable storage union.
750 */
751RTDECL(bool) RTErrVarsAreEqual(PCRTERRVARS pVars1, PCRTERRVARS pVars2);
752
753/**
754 * Checks if the (live) error variables have changed since we saved them.
755 *
756 * @returns @c true if they have changed, @c false if not.
757 * @param pVars The saved variables to compare the current state
758 * against.
759 */
760RTDECL(bool) RTErrVarsHaveChanged(PCRTERRVARS pVars);
761
762RT_C_DECLS_END
763
764/** @} */
765
766/** @name Status Code Ranges
767 * @{ */
768/** The first status code in the primary IPRT range. */
769#define RTERR_RANGE1_FIRST 0
770/** The last status code in the primary IPRT range. */
771#define RTERR_RANGE1_LAST 999
772
773/** The first status code in the secondary IPRT range. */
774#define RTERR_RANGE2_FIRST 22000
775/** The last status code in the secondary IPRT range. */
776#define RTERR_RANGE2_LAST 32766
777
778/** The first status code in the user range. */
779#define RTERR_USER_FIRST 1000
780/** The last status code in the user range. */
781#define RTERR_USER_LAST 21999
782/** @} */
783
784
785/* SED-START */
786
787/** @name Misc. Status Codes
788 * @{
789 */
790/** Success. */
791#define VINF_SUCCESS 0
792
793/** General failure - DON'T USE THIS!!! */
794#define VERR_GENERAL_FAILURE (-1)
795/** Invalid parameter. */
796#define VERR_INVALID_PARAMETER (-2)
797/** Invalid parameter. */
798#define VWRN_INVALID_PARAMETER 2
799/** Invalid magic or cookie. */
800#define VERR_INVALID_MAGIC (-3)
801/** Invalid magic or cookie. */
802#define VWRN_INVALID_MAGIC 3
803/** Invalid loader handle. */
804#define VERR_INVALID_HANDLE (-4)
805/** Invalid loader handle. */
806#define VWRN_INVALID_HANDLE 4
807/** Failed to lock the address range. */
808#define VERR_LOCK_FAILED (-5)
809/** Invalid memory pointer. */
810#define VERR_INVALID_POINTER (-6)
811/** Failed to patch the IDT. */
812#define VERR_IDT_FAILED (-7)
813/** Memory allocation failed. */
814#define VERR_NO_MEMORY (-8)
815/** Already loaded. */
816#define VERR_ALREADY_LOADED (-9)
817/** Permission denied. */
818#define VERR_PERMISSION_DENIED (-10)
819/** Permission denied. */
820#define VINF_PERMISSION_DENIED 10
821/** Version mismatch. */
822#define VERR_VERSION_MISMATCH (-11)
823/** The request function is not implemented. */
824#define VERR_NOT_IMPLEMENTED (-12)
825/** Invalid flags was given. */
826#define VERR_INVALID_FLAGS (-13)
827
828/** Not equal. */
829#define VERR_NOT_EQUAL (-18)
830/** The specified path does not point at a symbolic link. */
831#define VERR_NOT_SYMLINK (-19)
832/** Failed to allocate temporary memory. */
833#define VERR_NO_TMP_MEMORY (-20)
834/** Invalid file mode mask (RTFMODE). */
835#define VERR_INVALID_FMODE (-21)
836/** Incorrect call order. */
837#define VERR_WRONG_ORDER (-22)
838/** There is no TLS (thread local storage) available for storing the current thread. */
839#define VERR_NO_TLS_FOR_SELF (-23)
840/** Failed to set the TLS (thread local storage) entry which points to our thread structure. */
841#define VERR_FAILED_TO_SET_SELF_TLS (-24)
842/** Not able to allocate contiguous memory. */
843#define VERR_NO_CONT_MEMORY (-26)
844/** No memory available for page table or page directory. */
845#define VERR_NO_PAGE_MEMORY (-27)
846/** Already initialized. */
847#define VINF_ALREADY_INITIALIZED 28
848/** The specified thread is dead. */
849#define VERR_THREAD_IS_DEAD (-29)
850/** The specified thread is not waitable. */
851#define VERR_THREAD_NOT_WAITABLE (-30)
852/** Pagetable not present. */
853#define VERR_PAGE_TABLE_NOT_PRESENT (-31)
854/** Invalid context.
855 * Typically an API was used by the wrong thread. */
856#define VERR_INVALID_CONTEXT (-32)
857/** The per process timer is busy. */
858#define VERR_TIMER_BUSY (-33)
859/** Address conflict. */
860#define VERR_ADDRESS_CONFLICT (-34)
861/** Unresolved (unknown) host platform error. */
862#define VERR_UNRESOLVED_ERROR (-35)
863/** Invalid function. */
864#define VERR_INVALID_FUNCTION (-36)
865/** Not supported. */
866#define VERR_NOT_SUPPORTED (-37)
867/** Not supported. */
868#define VINF_NOT_SUPPORTED 37
869/** Access denied. */
870#define VERR_ACCESS_DENIED (-38)
871/** Call interrupted. */
872#define VERR_INTERRUPTED (-39)
873/** Call interrupted. */
874#define VINF_INTERRUPTED 39
875/** Timeout. */
876#define VERR_TIMEOUT (-40)
877/** Timeout. */
878#define VINF_TIMEOUT 40
879/** Buffer too small to save result. */
880#define VERR_BUFFER_OVERFLOW (-41)
881/** Buffer too small to save result. */
882#define VINF_BUFFER_OVERFLOW 41
883/** Data size overflow. */
884#define VERR_TOO_MUCH_DATA (-42)
885/** Max threads number reached. */
886#define VERR_MAX_THRDS_REACHED (-43)
887/** Max process number reached. */
888#define VERR_MAX_PROCS_REACHED (-44)
889/** The recipient process has refused the signal. */
890#define VERR_SIGNAL_REFUSED (-45)
891/** A signal is already pending. */
892#define VERR_SIGNAL_PENDING (-46)
893/** The signal being posted is not correct. */
894#define VERR_SIGNAL_INVALID (-47)
895/** The state changed.
896 * This is a generic error message and needs a context to make sense. */
897#define VERR_STATE_CHANGED (-48)
898/** Warning, the state changed.
899 * This is a generic error message and needs a context to make sense. */
900#define VWRN_STATE_CHANGED 48
901/** Error while parsing UUID string */
902#define VERR_INVALID_UUID_FORMAT (-49)
903/** The specified process was not found. */
904#define VERR_PROCESS_NOT_FOUND (-50)
905/** The process specified to a non-block wait had not exited. */
906#define VERR_PROCESS_RUNNING (-51)
907/** Retry the operation. */
908#define VERR_TRY_AGAIN (-52)
909/** Retry the operation. */
910#define VINF_TRY_AGAIN 52
911/** Generic parse error. */
912#define VERR_PARSE_ERROR (-53)
913/** Value out of range. */
914#define VERR_OUT_OF_RANGE (-54)
915/** A numeric conversion encountered a value which was too big for the target. */
916#define VERR_NUMBER_TOO_BIG (-55)
917/** A numeric conversion encountered a value which was too big for the target. */
918#define VWRN_NUMBER_TOO_BIG 55
919/** The number begin converted (string) contained no digits. */
920#define VERR_NO_DIGITS (-56)
921/** The number begin converted (string) contained no digits. */
922#define VWRN_NO_DIGITS 56
923/** Encountered a '-' during conversion to an unsigned value. */
924#define VERR_NEGATIVE_UNSIGNED (-57)
925/** Encountered a '-' during conversion to an unsigned value. */
926#define VWRN_NEGATIVE_UNSIGNED 57
927/** Error while characters translation (unicode and so). */
928#define VERR_NO_TRANSLATION (-58)
929/** Error while characters translation (unicode and so). */
930#define VWRN_NO_TRANSLATION 58
931/** Encountered unicode code point which is reserved for use as endian indicator (0xffff or 0xfffe). */
932#define VERR_CODE_POINT_ENDIAN_INDICATOR (-59)
933/** Encountered unicode code point in the surrogate range (0xd800 to 0xdfff). */
934#define VERR_CODE_POINT_SURROGATE (-60)
935/** A string claiming to be UTF-8 is incorrectly encoded. */
936#define VERR_INVALID_UTF8_ENCODING (-61)
937/** A string claiming to be in UTF-16 is incorrectly encoded. */
938#define VERR_INVALID_UTF16_ENCODING (-62)
939/** Encountered a unicode code point which cannot be represented as UTF-16. */
940#define VERR_CANT_RECODE_AS_UTF16 (-63)
941/** Got an out of memory condition trying to allocate a string. */
942#define VERR_NO_STR_MEMORY (-64)
943/** Got an out of memory condition trying to allocate a UTF-16 (/UCS-2) string. */
944#define VERR_NO_UTF16_MEMORY (-65)
945/** Get an out of memory condition trying to allocate a code point array. */
946#define VERR_NO_CODE_POINT_MEMORY (-66)
947/** Can't free the memory because it's used in mapping. */
948#define VERR_MEMORY_BUSY (-67)
949/** The timer can't be started because it's already active. */
950#define VERR_TIMER_ACTIVE (-68)
951/** The timer can't be stopped because it's already suspended. */
952#define VERR_TIMER_SUSPENDED (-69)
953/** The operation was cancelled by the user (copy) or another thread (local ipc). */
954#define VERR_CANCELLED (-70)
955/** Failed to initialize a memory object.
956 * Exactly what this means is OS specific. */
957#define VERR_MEMOBJ_INIT_FAILED (-71)
958/** Out of memory condition when allocating memory with low physical backing. */
959#define VERR_NO_LOW_MEMORY (-72)
960/** Out of memory condition when allocating physical memory (without mapping). */
961#define VERR_NO_PHYS_MEMORY (-73)
962/** The address (virtual or physical) is too big. */
963#define VERR_ADDRESS_TOO_BIG (-74)
964/** Failed to map a memory object. */
965#define VERR_MAP_FAILED (-75)
966/** Trailing characters. */
967#define VERR_TRAILING_CHARS (-76)
968/** Trailing characters. */
969#define VWRN_TRAILING_CHARS 76
970/** Trailing spaces. */
971#define VERR_TRAILING_SPACES (-77)
972/** Trailing spaces. */
973#define VWRN_TRAILING_SPACES 77
974/** Generic not found error. */
975#define VERR_NOT_FOUND (-78)
976/** Generic not found warning. */
977#define VWRN_NOT_FOUND 78
978/** Generic invalid state error. */
979#define VERR_INVALID_STATE (-79)
980/** Generic invalid state warning. */
981#define VWRN_INVALID_STATE 79
982/** Generic out of resources error. */
983#define VERR_OUT_OF_RESOURCES (-80)
984/** Generic out of resources warning. */
985#define VWRN_OUT_OF_RESOURCES 80
986/** No more handles available, too many open handles. */
987#define VERR_NO_MORE_HANDLES (-81)
988/** Preemption is disabled.
989 * The requested operation can only be performed when preemption is enabled. */
990#define VERR_PREEMPT_DISABLED (-82)
991/** End of string. */
992#define VERR_END_OF_STRING (-83)
993/** End of string. */
994#define VINF_END_OF_STRING 83
995/** A page count is out of range. */
996#define VERR_PAGE_COUNT_OUT_OF_RANGE (-84)
997/** Generic object destroyed status. */
998#define VERR_OBJECT_DESTROYED (-85)
999/** Generic object was destroyed by the call status. */
1000#define VINF_OBJECT_DESTROYED 85
1001/** Generic dangling objects status. */
1002#define VERR_DANGLING_OBJECTS (-86)
1003/** Generic dangling objects status. */
1004#define VWRN_DANGLING_OBJECTS 86
1005/** Invalid Base64 encoding. */
1006#define VERR_INVALID_BASE64_ENCODING (-87)
1007/** Return instigated by a callback or similar. */
1008#define VERR_CALLBACK_RETURN (-88)
1009/** Return instigated by a callback or similar. */
1010#define VINF_CALLBACK_RETURN 88
1011/** Authentication failure. */
1012#define VERR_AUTHENTICATION_FAILURE (-89)
1013/** Not a power of two. */
1014#define VERR_NOT_POWER_OF_TWO (-90)
1015/** Status code, typically given as a parameter, that isn't supposed to be used. */
1016#define VERR_IGNORED (-91)
1017/** Concurrent access to the object is not allowed. */
1018#define VERR_CONCURRENT_ACCESS (-92)
1019/** The caller does not have a reference to the object.
1020 * This status is used when two threads is caught sharing the same object
1021 * reference. */
1022#define VERR_CALLER_NO_REFERENCE (-93)
1023/** Generic no change error. */
1024#define VERR_NO_CHANGE (-95)
1025/** Generic no change info. */
1026#define VINF_NO_CHANGE 95
1027/** Out of memory condition when allocating executable memory. */
1028#define VERR_NO_EXEC_MEMORY (-96)
1029/** The alignment is not supported. */
1030#define VERR_UNSUPPORTED_ALIGNMENT (-97)
1031/** The alignment is not really supported, however we got lucky with this
1032 * allocation. */
1033#define VINF_UNSUPPORTED_ALIGNMENT 97
1034/** Duplicate something. */
1035#define VERR_DUPLICATE (-98)
1036/** Something is missing. */
1037#define VERR_MISSING (-99)
1038/** An unexpected (/unknown) exception was caught. */
1039#define VERR_UNEXPECTED_EXCEPTION (-22400)
1040/** Buffer underflow. */
1041#define VERR_BUFFER_UNDERFLOW (-22401)
1042/** Buffer underflow. */
1043#define VINF_BUFFER_UNDERFLOW 22401
1044/** Uneven input. */
1045#define VERR_UNEVEN_INPUT (-22402)
1046/** Something is not available or not working properly. */
1047#define VERR_NOT_AVAILABLE (-22403)
1048/** The RTPROC_FLAGS_DETACHED flag isn't supported. */
1049#define VERR_PROC_DETACH_NOT_SUPPORTED (-22404)
1050/** An account is restricted in a certain way. */
1051#define VERR_ACCOUNT_RESTRICTED (-22405)
1052/** An account is restricted in a certain way. */
1053#define VINF_ACCOUNT_RESTRICTED 22405
1054/** Not able satisfy all the requirements of the request. */
1055#define VERR_UNABLE_TO_SATISFY_REQUIREMENTS (-22406)
1056/** Not able satisfy all the requirements of the request. */
1057#define VWRN_UNABLE_TO_SATISFY_REQUIREMENTS 22406
1058/** The requested allocation is too big. */
1059#define VERR_ALLOCATION_TOO_BIG (-22407)
1060/** Mismatch. */
1061#define VERR_MISMATCH (-22408)
1062/** Wrong type. */
1063#define VERR_WRONG_TYPE (-22409)
1064/** Wrong type. */
1065#define VWRN_WRONG_TYPE (22409)
1066/** This indicates that the process does not have sufficient privileges to
1067 * perform the operation. */
1068#define VERR_PRIVILEGE_NOT_HELD (-22410)
1069/** Process does not have the trusted code base (TCB) privilege needed for user
1070 * authentication or/and process creation as a given user. TCB is also called
1071 * 'Act as part of the operating system'. */
1072#define VERR_PROC_TCB_PRIV_NOT_HELD (-22411)
1073/** Process does not have the assign primary token (APT) privilege needed
1074 * for creating process as a given user. APT is also called 'Replace a process
1075 * level token'. */
1076#define VERR_PROC_APT_PRIV_NOT_HELD (-22412)
1077/** Process does not have the increase quota (IQ) privilege needed for
1078 * creating a process as a given user. IQ is also called 'Increase quotas'. */
1079#define VERR_PROC_IQ_PRIV_NOT_HELD (-22413)
1080/** The system has too many CPUs. */
1081#define VERR_MP_TOO_MANY_CPUS (-22414)
1082/** @} */
1083
1084
1085/** @name Common File/Disk/Pipe/etc Status Codes
1086 * @{
1087 */
1088/** Unresolved (unknown) file i/o error. */
1089#define VERR_FILE_IO_ERROR (-100)
1090/** File/Device open failed. */
1091#define VERR_OPEN_FAILED (-101)
1092/** File not found. */
1093#define VERR_FILE_NOT_FOUND (-102)
1094/** Path not found. */
1095#define VERR_PATH_NOT_FOUND (-103)
1096/** Invalid (malformed) file/path name. */
1097#define VERR_INVALID_NAME (-104)
1098/** The object in question already exists. */
1099#define VERR_ALREADY_EXISTS (-105)
1100/** The object in question already exists. */
1101#define VWRN_ALREADY_EXISTS 105
1102/** Too many open files. */
1103#define VERR_TOO_MANY_OPEN_FILES (-106)
1104/** Seek error. */
1105#define VERR_SEEK (-107)
1106/** Seek below file start. */
1107#define VERR_NEGATIVE_SEEK (-108)
1108/** Trying to seek on device. */
1109#define VERR_SEEK_ON_DEVICE (-109)
1110/** Reached the end of the file. */
1111#define VERR_EOF (-110)
1112/** Reached the end of the file. */
1113#define VINF_EOF 110
1114/** Generic file read error. */
1115#define VERR_READ_ERROR (-111)
1116/** Generic file write error. */
1117#define VERR_WRITE_ERROR (-112)
1118/** Write protect error. */
1119#define VERR_WRITE_PROTECT (-113)
1120/** Sharing violation, file is being used by another process. */
1121#define VERR_SHARING_VIOLATION (-114)
1122/** Unable to lock a region of a file. */
1123#define VERR_FILE_LOCK_FAILED (-115)
1124/** File access error, another process has locked a portion of the file. */
1125#define VERR_FILE_LOCK_VIOLATION (-116)
1126/** File or directory can't be created. */
1127#define VERR_CANT_CREATE (-117)
1128/** Directory can't be deleted. */
1129#define VERR_CANT_DELETE_DIRECTORY (-118)
1130/** Can't move file to another disk. */
1131#define VERR_NOT_SAME_DEVICE (-119)
1132/** The filename or extension is too long. */
1133#define VERR_FILENAME_TOO_LONG (-120)
1134/** Media not present in drive. */
1135#define VERR_MEDIA_NOT_PRESENT (-121)
1136/** The type of media was not recognized. Not formatted? */
1137#define VERR_MEDIA_NOT_RECOGNIZED (-122)
1138/** Can't unlock - region was not locked. */
1139#define VERR_FILE_NOT_LOCKED (-123)
1140/** Unrecoverable error: lock was lost. */
1141#define VERR_FILE_LOCK_LOST (-124)
1142/** Can't delete directory with files. */
1143#define VERR_DIR_NOT_EMPTY (-125)
1144/** A directory operation was attempted on a non-directory object. */
1145#define VERR_NOT_A_DIRECTORY (-126)
1146/** A non-directory operation was attempted on a directory object. */
1147#define VERR_IS_A_DIRECTORY (-127)
1148/** Tried to grow a file beyond the limit imposed by the process or the filesystem. */
1149#define VERR_FILE_TOO_BIG (-128)
1150/** No pending request the aio context has to wait for completion. */
1151#define VERR_FILE_AIO_NO_REQUEST (-129)
1152/** The request could not be canceled or prepared for another transfer
1153 * because it is still in progress. */
1154#define VERR_FILE_AIO_IN_PROGRESS (-130)
1155/** The request could not be canceled because it already completed. */
1156#define VERR_FILE_AIO_COMPLETED (-131)
1157/** The I/O context couldn't be destroyed because there are still pending requests. */
1158#define VERR_FILE_AIO_BUSY (-132)
1159/** The requests couldn't be submitted because that would exceed the capacity of the context. */
1160#define VERR_FILE_AIO_LIMIT_EXCEEDED (-133)
1161/** The request was canceled. */
1162#define VERR_FILE_AIO_CANCELED (-134)
1163/** The request wasn't submitted so it can't be canceled. */
1164#define VERR_FILE_AIO_NOT_SUBMITTED (-135)
1165/** A request was not prepared and thus could not be submitted. */
1166#define VERR_FILE_AIO_NOT_PREPARED (-136)
1167/** Not all requests could be submitted due to resource shortage. */
1168#define VERR_FILE_AIO_INSUFFICIENT_RESSOURCES (-137)
1169/** Device or resource is busy. */
1170#define VERR_RESOURCE_BUSY (-138)
1171/** A file operation was attempted on a non-file object. */
1172#define VERR_NOT_A_FILE (-139)
1173/** A non-file operation was attempted on a file object. */
1174#define VERR_IS_A_FILE (-140)
1175/** Unexpected filesystem object type. */
1176#define VERR_UNEXPECTED_FS_OBJ_TYPE (-141)
1177/** A path does not start with a root specification. */
1178#define VERR_PATH_DOES_NOT_START_WITH_ROOT (-142)
1179/** A path is relative, expected an absolute path. */
1180#define VERR_PATH_IS_RELATIVE (-143)
1181/** A path is not relative (start with root), expected an relative path. */
1182#define VERR_PATH_IS_NOT_RELATIVE (-144)
1183/** Zero length path. */
1184#define VERR_PATH_ZERO_LENGTH (-145)
1185/** There are not enough events available on the host to create the I/O context.
1186 * This exact meaning is host platform dependent. */
1187#define VERR_FILE_AIO_INSUFFICIENT_EVENTS (-146)
1188/** @} */
1189
1190
1191/** @name Generic Filesystem I/O Status Codes
1192 * @{
1193 */
1194/** Unresolved (unknown) disk i/o error. */
1195#define VERR_DISK_IO_ERROR (-150)
1196/** Invalid drive number. */
1197#define VERR_INVALID_DRIVE (-151)
1198/** Disk is full. */
1199#define VERR_DISK_FULL (-152)
1200/** Disk was changed. */
1201#define VERR_DISK_CHANGE (-153)
1202/** Drive is locked. */
1203#define VERR_DRIVE_LOCKED (-154)
1204/** The specified disk or diskette cannot be accessed. */
1205#define VERR_DISK_INVALID_FORMAT (-155)
1206/** Too many symbolic links. */
1207#define VERR_TOO_MANY_SYMLINKS (-156)
1208/** The OS does not support setting the time stamps on a symbolic link. */
1209#define VERR_NS_SYMLINK_SET_TIME (-157)
1210/** The OS does not support changing the owner of a symbolic link. */
1211#define VERR_NS_SYMLINK_CHANGE_OWNER (-158)
1212/** Symbolic link not allowed. */
1213#define VERR_SYMLINK_NOT_ALLOWED (-159)
1214/** Is a symbolic link. */
1215#define VERR_IS_A_SYMLINK (-160)
1216/** Is a FIFO. */
1217#define VERR_IS_A_FIFO (-161)
1218/** Is a socket. */
1219#define VERR_IS_A_SOCKET (-162)
1220/** Is a block device. */
1221#define VERR_IS_A_BLOCK_DEVICE (-163)
1222/** Is a character device. */
1223#define VERR_IS_A_CHAR_DEVICE (-164)
1224/** @} */
1225
1226
1227/** @name Generic Directory Enumeration Status Codes
1228 * @{
1229 */
1230/** Unresolved (unknown) search error. */
1231#define VERR_SEARCH_ERROR (-200)
1232/** No more files found. */
1233#define VERR_NO_MORE_FILES (-201)
1234/** No more search handles available. */
1235#define VERR_NO_MORE_SEARCH_HANDLES (-202)
1236/** RTDirReadEx() failed to retrieve the extra data which was requested. */
1237#define VWRN_NO_DIRENT_INFO 203
1238/** @} */
1239
1240
1241/** @name Internal Processing Errors
1242 * @{
1243 */
1244/** Internal error - this should never happen. */
1245#define VERR_INTERNAL_ERROR (-225)
1246/** Internal error no. 2. */
1247#define VERR_INTERNAL_ERROR_2 (-226)
1248/** Internal error no. 3. */
1249#define VERR_INTERNAL_ERROR_3 (-227)
1250/** Internal error no. 4. */
1251#define VERR_INTERNAL_ERROR_4 (-228)
1252/** Internal error no. 5. */
1253#define VERR_INTERNAL_ERROR_5 (-229)
1254/** Internal error: Unexpected status code. */
1255#define VERR_IPE_UNEXPECTED_STATUS (-230)
1256/** Internal error: Unexpected status code. */
1257#define VERR_IPE_UNEXPECTED_INFO_STATUS (-231)
1258/** Internal error: Unexpected status code. */
1259#define VERR_IPE_UNEXPECTED_ERROR_STATUS (-232)
1260/** Internal error: Uninitialized status code.
1261 * @remarks This is used by value elsewhere. */
1262#define VERR_IPE_UNINITIALIZED_STATUS (-233)
1263/** Internal error: Supposedly unreachable default case in a switch. */
1264#define VERR_IPE_NOT_REACHED_DEFAULT_CASE (-234)
1265/** @} */
1266
1267
1268/** @name Generic Device I/O Status Codes
1269 * @{
1270 */
1271/** Unresolved (unknown) device i/o error. */
1272#define VERR_DEV_IO_ERROR (-250)
1273/** Device i/o: Bad unit. */
1274#define VERR_IO_BAD_UNIT (-251)
1275/** Device i/o: Not ready. */
1276#define VERR_IO_NOT_READY (-252)
1277/** Device i/o: Bad command. */
1278#define VERR_IO_BAD_COMMAND (-253)
1279/** Device i/o: CRC error. */
1280#define VERR_IO_CRC (-254)
1281/** Device i/o: Bad length. */
1282#define VERR_IO_BAD_LENGTH (-255)
1283/** Device i/o: Sector not found. */
1284#define VERR_IO_SECTOR_NOT_FOUND (-256)
1285/** Device i/o: General failure. */
1286#define VERR_IO_GEN_FAILURE (-257)
1287/** @} */
1288
1289
1290/** @name Generic Pipe I/O Status Codes
1291 * @{
1292 */
1293/** Unresolved (unknown) pipe i/o error. */
1294#define VERR_PIPE_IO_ERROR (-300)
1295/** Broken pipe. */
1296#define VERR_BROKEN_PIPE (-301)
1297/** Bad pipe. */
1298#define VERR_BAD_PIPE (-302)
1299/** Pipe is busy. */
1300#define VERR_PIPE_BUSY (-303)
1301/** No data in pipe. */
1302#define VERR_NO_DATA (-304)
1303/** Pipe is not connected. */
1304#define VERR_PIPE_NOT_CONNECTED (-305)
1305/** More data available in pipe. */
1306#define VERR_MORE_DATA (-306)
1307/** Expected read pipe, got a write pipe instead. */
1308#define VERR_PIPE_NOT_READ (-307)
1309/** Expected write pipe, got a read pipe instead. */
1310#define VERR_PIPE_NOT_WRITE (-308)
1311/** @} */
1312
1313
1314/** @name Generic Semaphores Status Codes
1315 * @{
1316 */
1317/** Unresolved (unknown) semaphore error. */
1318#define VERR_SEM_ERROR (-350)
1319/** Too many semaphores. */
1320#define VERR_TOO_MANY_SEMAPHORES (-351)
1321/** Exclusive semaphore is owned by another process. */
1322#define VERR_EXCL_SEM_ALREADY_OWNED (-352)
1323/** The semaphore is set and cannot be closed. */
1324#define VERR_SEM_IS_SET (-353)
1325/** The semaphore cannot be set again. */
1326#define VERR_TOO_MANY_SEM_REQUESTS (-354)
1327/** Attempt to release mutex not owned by caller. */
1328#define VERR_NOT_OWNER (-355)
1329/** The semaphore has been opened too many times. */
1330#define VERR_TOO_MANY_OPENS (-356)
1331/** The maximum posts for the event semaphore has been reached. */
1332#define VERR_TOO_MANY_POSTS (-357)
1333/** The event semaphore has already been posted. */
1334#define VERR_ALREADY_POSTED (-358)
1335/** The event semaphore has already been reset. */
1336#define VERR_ALREADY_RESET (-359)
1337/** The semaphore is in use. */
1338#define VERR_SEM_BUSY (-360)
1339/** The previous ownership of this semaphore has ended. */
1340#define VERR_SEM_OWNER_DIED (-361)
1341/** Failed to open semaphore by name - not found. */
1342#define VERR_SEM_NOT_FOUND (-362)
1343/** Semaphore destroyed while waiting. */
1344#define VERR_SEM_DESTROYED (-363)
1345/** Nested ownership requests are not permitted for this semaphore type. */
1346#define VERR_SEM_NESTED (-364)
1347/** The release call only release a semaphore nesting, i.e. the caller is still
1348 * holding the semaphore. */
1349#define VINF_SEM_NESTED (364)
1350/** Deadlock detected. */
1351#define VERR_DEADLOCK (-365)
1352/** Ping-Pong listen or speak out of turn error. */
1353#define VERR_SEM_OUT_OF_TURN (-366)
1354/** Tried to take a semaphore in a bad context. */
1355#define VERR_SEM_BAD_CONTEXT (-367)
1356/** Don't spin for the semaphore, but it is safe to try grab it. */
1357#define VINF_SEM_BAD_CONTEXT (367)
1358/** Wrong locking order detected. */
1359#define VERR_SEM_LV_WRONG_ORDER (-368)
1360/** Wrong release order detected. */
1361#define VERR_SEM_LV_WRONG_RELEASE_ORDER (-369)
1362/** Attempt to recursively enter a non-recursive lock. */
1363#define VERR_SEM_LV_NESTED (-370)
1364/** Invalid parameters passed to the lock validator. */
1365#define VERR_SEM_LV_INVALID_PARAMETER (-371)
1366/** The lock validator detected a deadlock. */
1367#define VERR_SEM_LV_DEADLOCK (-372)
1368/** The lock validator detected an existing deadlock.
1369 * The deadlock was not caused by the current operation, but existed already. */
1370#define VERR_SEM_LV_EXISTING_DEADLOCK (-373)
1371/** Not the lock owner according our records. */
1372#define VERR_SEM_LV_NOT_OWNER (-374)
1373/** An illegal lock upgrade was attempted. */
1374#define VERR_SEM_LV_ILLEGAL_UPGRADE (-375)
1375/** The thread is not a valid signaller of the event. */
1376#define VERR_SEM_LV_NOT_SIGNALLER (-376)
1377/** Internal error in the lock validator or related components. */
1378#define VERR_SEM_LV_INTERNAL_ERROR (-377)
1379/** @} */
1380
1381
1382/** @name Generic Network I/O Status Codes
1383 * @{
1384 */
1385/** Unresolved (unknown) network error. */
1386#define VERR_NET_IO_ERROR (-400)
1387/** The network is busy or is out of resources. */
1388#define VERR_NET_OUT_OF_RESOURCES (-401)
1389/** Net host name not found. */
1390#define VERR_NET_HOST_NOT_FOUND (-402)
1391/** Network path not found. */
1392#define VERR_NET_PATH_NOT_FOUND (-403)
1393/** General network printing error. */
1394#define VERR_NET_PRINT_ERROR (-404)
1395/** The machine is not on the network. */
1396#define VERR_NET_NO_NETWORK (-405)
1397/** Name is not unique on the network. */
1398#define VERR_NET_NOT_UNIQUE_NAME (-406)
1399
1400/* These are BSD networking error codes - numbers correspond, don't mess! */
1401/** Operation in progress. */
1402#define VERR_NET_IN_PROGRESS (-436)
1403/** Operation already in progress. */
1404#define VERR_NET_ALREADY_IN_PROGRESS (-437)
1405/** Attempted socket operation with a non-socket handle.
1406 * (This includes closed handles.) */
1407#define VERR_NET_NOT_SOCKET (-438)
1408/** Destination address required. */
1409#define VERR_NET_DEST_ADDRESS_REQUIRED (-439)
1410/** Message too long. */
1411#define VERR_NET_MSG_SIZE (-440)
1412/** Protocol wrong type for socket. */
1413#define VERR_NET_PROTOCOL_TYPE (-441)
1414/** Protocol not available. */
1415#define VERR_NET_PROTOCOL_NOT_AVAILABLE (-442)
1416/** Protocol not supported. */
1417#define VERR_NET_PROTOCOL_NOT_SUPPORTED (-443)
1418/** Socket type not supported. */
1419#define VERR_NET_SOCKET_TYPE_NOT_SUPPORTED (-444)
1420/** Operation not supported. */
1421#define VERR_NET_OPERATION_NOT_SUPPORTED (-445)
1422/** Protocol family not supported. */
1423#define VERR_NET_PROTOCOL_FAMILY_NOT_SUPPORTED (-446)
1424/** Address family not supported by protocol family. */
1425#define VERR_NET_ADDRESS_FAMILY_NOT_SUPPORTED (-447)
1426/** Address already in use. */
1427#define VERR_NET_ADDRESS_IN_USE (-448)
1428/** Can't assign requested address. */
1429#define VERR_NET_ADDRESS_NOT_AVAILABLE (-449)
1430/** Network is down. */
1431#define VERR_NET_DOWN (-450)
1432/** Network is unreachable. */
1433#define VERR_NET_UNREACHABLE (-451)
1434/** Network dropped connection on reset. */
1435#define VERR_NET_CONNECTION_RESET (-452)
1436/** Software caused connection abort. */
1437#define VERR_NET_CONNECTION_ABORTED (-453)
1438/** Connection reset by peer. */
1439#define VERR_NET_CONNECTION_RESET_BY_PEER (-454)
1440/** No buffer space available. */
1441#define VERR_NET_NO_BUFFER_SPACE (-455)
1442/** Socket is already connected. */
1443#define VERR_NET_ALREADY_CONNECTED (-456)
1444/** Socket is not connected. */
1445#define VERR_NET_NOT_CONNECTED (-457)
1446/** Can't send after socket shutdown. */
1447#define VERR_NET_SHUTDOWN (-458)
1448/** Too many references: can't splice. */
1449#define VERR_NET_TOO_MANY_REFERENCES (-459)
1450/** Too many references: can't splice. */
1451#define VERR_NET_CONNECTION_TIMED_OUT (-460)
1452/** Connection refused. */
1453#define VERR_NET_CONNECTION_REFUSED (-461)
1454/* ELOOP is not net. */
1455/* ENAMETOOLONG is not net. */
1456/** Host is down. */
1457#define VERR_NET_HOST_DOWN (-464)
1458/** No route to host. */
1459#define VERR_NET_HOST_UNREACHABLE (-465)
1460/** Protocol error. */
1461#define VERR_NET_PROTOCOL_ERROR (-466)
1462/** Incomplete packet was submitted by guest. */
1463#define VERR_NET_INCOMPLETE_TX_PACKET (-467)
1464/** Winsock init error. */
1465#define VERR_NET_INIT_FAILED (-468)
1466/** Trying to use too new winsock API. */
1467#define VERR_NET_NOT_UNSUPPORTED (-469)
1468/** @} */
1469
1470
1471/** @name TCP Status Codes
1472 * @{
1473 */
1474/** Stop the TCP server. */
1475#define VERR_TCP_SERVER_STOP (-500)
1476/** The server was stopped. */
1477#define VINF_TCP_SERVER_STOP 500
1478/** The TCP server was shut down using RTTcpServerShutdown. */
1479#define VERR_TCP_SERVER_SHUTDOWN (-501)
1480/** The TCP server was destroyed. */
1481#define VERR_TCP_SERVER_DESTROYED (-502)
1482/** The TCP server has no client associated with it. */
1483#define VINF_TCP_SERVER_NO_CLIENT 503
1484/** @} */
1485
1486
1487/** @name UDP Status Codes
1488 * @{
1489 */
1490/** Stop the UDP server. */
1491#define VERR_UDP_SERVER_STOP (-520)
1492/** The server was stopped. */
1493#define VINF_UDP_SERVER_STOP 520
1494/** The UDP server was shut down using RTUdpServerShutdown. */
1495#define VERR_UDP_SERVER_SHUTDOWN (-521)
1496/** The UDP server was destroyed. */
1497#define VERR_UDP_SERVER_DESTROYED (-522)
1498/** The UDP server has no client associated with it. */
1499#define VINF_UDP_SERVER_NO_CLIENT 523
1500/** @} */
1501
1502
1503/** @name L4 Specific Status Codes
1504 * @{
1505 */
1506/** Invalid offset in an L4 dataspace */
1507#define VERR_L4_INVALID_DS_OFFSET (-550)
1508/** IPC error */
1509#define VERR_IPC (-551)
1510/** Item already used */
1511#define VERR_RESOURCE_IN_USE (-552)
1512/** Source/destination not found */
1513#define VERR_IPC_PROCESS_NOT_FOUND (-553)
1514/** Receive timeout */
1515#define VERR_IPC_RECEIVE_TIMEOUT (-554)
1516/** Send timeout */
1517#define VERR_IPC_SEND_TIMEOUT (-555)
1518/** Receive cancelled */
1519#define VERR_IPC_RECEIVE_CANCELLED (-556)
1520/** Send cancelled */
1521#define VERR_IPC_SEND_CANCELLED (-557)
1522/** Receive aborted */
1523#define VERR_IPC_RECEIVE_ABORTED (-558)
1524/** Send aborted */
1525#define VERR_IPC_SEND_ABORTED (-559)
1526/** Couldn't map pages during receive */
1527#define VERR_IPC_RECEIVE_MAP_FAILED (-560)
1528/** Couldn't map pages during send */
1529#define VERR_IPC_SEND_MAP_FAILED (-561)
1530/** Send pagefault timeout in receive */
1531#define VERR_IPC_RECEIVE_SEND_PF_TIMEOUT (-562)
1532/** Send pagefault timeout in send */
1533#define VERR_IPC_SEND_SEND_PF_TIMEOUT (-563)
1534/** (One) receive buffer was too small, or too few buffers */
1535#define VINF_IPC_RECEIVE_MSG_CUT 564
1536/** (One) send buffer was too small, or too few buffers */
1537#define VINF_IPC_SEND_MSG_CUT 565
1538/** Dataspace manager server not found */
1539#define VERR_L4_DS_MANAGER_NOT_FOUND (-566)
1540/** @} */
1541
1542
1543/** @name Loader Status Codes.
1544 * @{
1545 */
1546/** Invalid executable signature. */
1547#define VERR_INVALID_EXE_SIGNATURE (-600)
1548/** The iprt loader recognized a ELF image, but doesn't support loading it. */
1549#define VERR_ELF_EXE_NOT_SUPPORTED (-601)
1550/** The iprt loader recognized a PE image, but doesn't support loading it. */
1551#define VERR_PE_EXE_NOT_SUPPORTED (-602)
1552/** The iprt loader recognized a LX image, but doesn't support loading it. */
1553#define VERR_LX_EXE_NOT_SUPPORTED (-603)
1554/** The iprt loader recognized a LE image, but doesn't support loading it. */
1555#define VERR_LE_EXE_NOT_SUPPORTED (-604)
1556/** The iprt loader recognized a NE image, but doesn't support loading it. */
1557#define VERR_NE_EXE_NOT_SUPPORTED (-605)
1558/** The iprt loader recognized a MZ image, but doesn't support loading it. */
1559#define VERR_MZ_EXE_NOT_SUPPORTED (-606)
1560/** The iprt loader recognized an a.out image, but doesn't support loading it. */
1561#define VERR_AOUT_EXE_NOT_SUPPORTED (-607)
1562/** Bad executable. */
1563#define VERR_BAD_EXE_FORMAT (-608)
1564/** Symbol (export) not found. */
1565#define VERR_SYMBOL_NOT_FOUND (-609)
1566/** Module not found. */
1567#define VERR_MODULE_NOT_FOUND (-610)
1568/** The loader resolved an external symbol to an address to big for the image format. */
1569#define VERR_SYMBOL_VALUE_TOO_BIG (-611)
1570/** The image is too big. */
1571#define VERR_IMAGE_TOO_BIG (-612)
1572/** The image base address is to high for this image type. */
1573#define VERR_IMAGE_BASE_TOO_HIGH (-614)
1574/** Mismatching architecture. */
1575#define VERR_LDR_ARCH_MISMATCH (-615)
1576/** Mismatch between IPRT and native loader. */
1577#define VERR_LDR_MISMATCH_NATIVE (-616)
1578/** Failed to resolve an imported (external) symbol. */
1579#define VERR_LDR_IMPORTED_SYMBOL_NOT_FOUND (-617)
1580/** Generic loader failure. */
1581#define VERR_LDR_GENERAL_FAILURE (-618)
1582/** Code signing error. */
1583#define VERR_LDR_IMAGE_HASH (-619)
1584/** The PE loader encountered delayed imports, a feature which hasn't been implemented yet. */
1585#define VERR_LDRPE_DELAY_IMPORT (-620)
1586/** The PE loader encountered a malformed certificate. */
1587#define VERR_LDRPE_CERT_MALFORMED (-621)
1588/** The PE loader encountered a certificate with an unsupported type or structure revision. */
1589#define VERR_LDRPE_CERT_UNSUPPORTED (-622)
1590/** The PE loader doesn't know how to deal with the global pointer data directory entry yet. */
1591#define VERR_LDRPE_GLOBALPTR (-623)
1592/** The PE loader doesn't support the TLS data directory yet. */
1593#define VERR_LDRPE_TLS (-624)
1594/** The PE loader doesn't grok the COM descriptor data directory entry. */
1595#define VERR_LDRPE_COM_DESCRIPTOR (-625)
1596/** The PE loader encountered an unknown load config directory/header size. */
1597#define VERR_LDRPE_LOAD_CONFIG_SIZE (-626)
1598/** The PE loader encountered a lock prefix table, a feature which hasn't been implemented yet. */
1599#define VERR_LDRPE_LOCK_PREFIX_TABLE (-627)
1600/** The PE loader encountered some Guard CF stuff in the load config. */
1601#define VERR_LDRPE_GUARD_CF_STUFF (-628)
1602/** The ELF loader doesn't handle foreign endianness. */
1603#define VERR_LDRELF_ODD_ENDIAN (-630)
1604/** The ELF image is 'dynamic', the ELF loader can only deal with 'relocatable' images at present. */
1605#define VERR_LDRELF_DYN (-631)
1606/** The ELF image is 'executable', the ELF loader can only deal with 'relocatable' images at present. */
1607#define VERR_LDRELF_EXEC (-632)
1608/** The ELF image was created for an unsupported target machine type. */
1609#define VERR_LDRELF_MACHINE (-633)
1610/** The ELF version is not supported. */
1611#define VERR_LDRELF_VERSION (-634)
1612/** The ELF loader cannot handle multiple SYMTAB sections. */
1613#define VERR_LDRELF_MULTIPLE_SYMTABS (-635)
1614/** The ELF loader encountered a relocation type which is not implemented. */
1615#define VERR_LDRELF_RELOCATION_NOT_SUPPORTED (-636)
1616/** The ELF loader encountered a bad symbol index. */
1617#define VERR_LDRELF_INVALID_SYMBOL_INDEX (-637)
1618/** The ELF loader encountered an invalid symbol name offset. */
1619#define VERR_LDRELF_INVALID_SYMBOL_NAME_OFFSET (-638)
1620/** The ELF loader encountered an invalid relocation offset. */
1621#define VERR_LDRELF_INVALID_RELOCATION_OFFSET (-639)
1622/** The ELF loader didn't find the symbol/string table for the image. */
1623#define VERR_LDRELF_NO_SYMBOL_OR_NO_STRING_TABS (-640)
1624/** Invalid link address. */
1625#define VERR_LDR_INVALID_LINK_ADDRESS (-647)
1626/** Invalid image relative virtual address. */
1627#define VERR_LDR_INVALID_RVA (-648)
1628/** Invalid segment:offset address. */
1629#define VERR_LDR_INVALID_SEG_OFFSET (-649)
1630/** @}*/
1631
1632/** @name Debug Info Reader Status Codes.
1633 * @{
1634 */
1635/** The module contains no line number information. */
1636#define VERR_DBG_NO_LINE_NUMBERS (-650)
1637/** The module contains no symbol information. */
1638#define VERR_DBG_NO_SYMBOLS (-651)
1639/** The specified segment:offset address was invalid. Typically an attempt at
1640 * addressing outside the segment boundary. */
1641#define VERR_DBG_INVALID_ADDRESS (-652)
1642/** Invalid segment index. */
1643#define VERR_DBG_INVALID_SEGMENT_INDEX (-653)
1644/** Invalid segment offset. */
1645#define VERR_DBG_INVALID_SEGMENT_OFFSET (-654)
1646/** Invalid image relative virtual address. */
1647#define VERR_DBG_INVALID_RVA (-655)
1648/** Invalid image relative virtual address. */
1649#define VERR_DBG_SPECIAL_SEGMENT (-656)
1650/** Address conflict within a module/segment.
1651 * Attempted to add a segment, symbol or line number that fully or partially
1652 * overlaps with an existing one. */
1653#define VERR_DBG_ADDRESS_CONFLICT (-657)
1654/** Duplicate symbol within the module.
1655 * Attempted to add a symbol which name already exists within the module. */
1656#define VERR_DBG_DUPLICATE_SYMBOL (-658)
1657/** The segment index specified when adding a new segment is already in use. */
1658#define VERR_DBG_SEGMENT_INDEX_CONFLICT (-659)
1659/** No line number was found for the specified address/ordinal/whatever. */
1660#define VERR_DBG_LINE_NOT_FOUND (-660)
1661/** The length of the symbol name is out of range.
1662 * This means it is an empty string or that it's greater or equal to
1663 * RTDBG_SYMBOL_NAME_LENGTH. */
1664#define VERR_DBG_SYMBOL_NAME_OUT_OF_RANGE (-661)
1665/** The length of the file name is out of range.
1666 * This means it is an empty string or that it's greater or equal to
1667 * RTDBG_FILE_NAME_LENGTH. */
1668#define VERR_DBG_FILE_NAME_OUT_OF_RANGE (-662)
1669/** The length of the segment name is out of range.
1670 * This means it is an empty string or that it is greater or equal to
1671 * RTDBG_SEGMENT_NAME_LENGTH. */
1672#define VERR_DBG_SEGMENT_NAME_OUT_OF_RANGE (-663)
1673/** The specified address range wraps around. */
1674#define VERR_DBG_ADDRESS_WRAP (-664)
1675/** The file is not a valid NM map file. */
1676#define VERR_DBG_NOT_NM_MAP_FILE (-665)
1677/** The file is not a valid /proc/kallsyms file. */
1678#define VERR_DBG_NOT_LINUX_KALLSYMS (-666)
1679/** No debug module interpreter matching the debug info. */
1680#define VERR_DBG_NO_MATCHING_INTERPRETER (-667)
1681/** Bad DWARF line number header. */
1682#define VERR_DWARF_BAD_LINE_NUMBER_HEADER (-668)
1683/** Unexpected end of DWARF unit. */
1684#define VERR_DWARF_UNEXPECTED_END (-669)
1685/** DWARF LEB value overflows the decoder type. */
1686#define VERR_DWARF_LEB_OVERFLOW (-670)
1687/** Bad DWARF extended line number opcode. */
1688#define VERR_DWARF_BAD_LNE (-671)
1689/** Bad DWARF string. */
1690#define VERR_DWARF_BAD_STRING (-672)
1691/** Bad DWARF position. */
1692#define VERR_DWARF_BAD_POS (-673)
1693/** Bad DWARF info. */
1694#define VERR_DWARF_BAD_INFO (-674)
1695/** Bad DWARF abbreviation data. */
1696#define VERR_DWARF_BAD_ABBREV (-675)
1697/** A DWARF abbreviation was not found. */
1698#define VERR_DWARF_ABBREV_NOT_FOUND (-676)
1699/** Encountered an unknown attribute form. */
1700#define VERR_DWARF_UNKNOWN_FORM (-677)
1701/** Encountered an unexpected attribute form. */
1702#define VERR_DWARF_UNEXPECTED_FORM (-678)
1703/** Unfinished code. */
1704#define VERR_DWARF_TODO (-679)
1705/** Unknown location opcode. */
1706#define VERR_DWARF_UNKNOWN_LOC_OPCODE (-680)
1707/** Expression stack overflow. */
1708#define VERR_DWARF_STACK_OVERFLOW (-681)
1709/** Expression stack underflow. */
1710#define VERR_DWARF_STACK_UNDERFLOW (-682)
1711/** Internal processing error in the DWARF code. */
1712#define VERR_DWARF_IPE (-683)
1713/** Invalid configuration property value. */
1714#define VERR_DBG_CFG_INVALID_VALUE (-684)
1715/** Not an integer property. */
1716#define VERR_DBG_CFG_NOT_UINT_PROP (-685)
1717/** Deferred loading of information failed. */
1718#define VERR_DBG_DEFERRED_LOAD_FAILED (-686)
1719/** Unfinished debug info reader code. */
1720#define VERR_DBG_TODO (-687)
1721/** Found file, but it didn't match the search criteria. */
1722#define VERR_DBG_FILE_MISMATCH (-688)
1723/** Internal processing error in the debug module reader code. */
1724#define VERR_DBG_MOD_IPE (-689)
1725/** The symbol size was adjusted while adding it. */
1726#define VINF_DBG_ADJUSTED_SYM_SIZE 690
1727/** Unable to parse the CodeView debug information. */
1728#define VERR_CV_BAD_FORMAT (-691)
1729/** Unfinished CodeView debug information feature. */
1730#define VERR_CV_TODO (-692)
1731/** Internal processing error the CodeView debug information reader. */
1732#define VERR_CV_IPE (-693)
1733/** No unwind information was found. */
1734#define VERR_DBG_NO_UNWIND_INFO (-694)
1735/** No unwind information for the specified location. */
1736#define VERR_DBG_UNWIND_INFO_NOT_FOUND (-695)
1737/** Malformed unwind information. */
1738#define VERR_DBG_MALFORMED_UNWIND_INFO (-696)
1739/** @} */
1740
1741/** @name Request Packet Status Codes.
1742 * @{
1743 */
1744/** Invalid RT request type.
1745 * For the RTReqAlloc() case, the caller just specified an illegal enmType. For
1746 * all the other occurrences it means indicates corruption, broken logic, or stupid
1747 * interface user. */
1748#define VERR_RT_REQUEST_INVALID_TYPE (-700)
1749/** Invalid RT request state.
1750 * The state of the request packet was not the expected and accepted one(s). Either
1751 * the interface user screwed up, or we've got corruption/broken logic. */
1752#define VERR_RT_REQUEST_STATE (-701)
1753/** Invalid RT request packet.
1754 * One or more of the RT controlled packet members didn't contain the correct
1755 * values. Some thing's broken. */
1756#define VERR_RT_REQUEST_INVALID_PACKAGE (-702)
1757/** The status field has not been updated yet as the request is still
1758 * pending completion. Someone queried the iStatus field before the request
1759 * has been fully processed. */
1760#define VERR_RT_REQUEST_STATUS_STILL_PENDING (-703)
1761/** The request has been freed, don't read the status now.
1762 * Someone is reading the iStatus field of a freed request packet. */
1763#define VERR_RT_REQUEST_STATUS_FREED (-704)
1764/** @} */
1765
1766/** @name Environment Status Code
1767 * @{
1768 */
1769/** The specified environment variable was not found. (RTEnvGetEx) */
1770#define VERR_ENV_VAR_NOT_FOUND (-750)
1771/** The specified environment variable was not found. (RTEnvUnsetEx) */
1772#define VINF_ENV_VAR_NOT_FOUND (750)
1773/** Unable to translate all the variables in the default environment due to
1774 * codeset issues (LANG / LC_ALL / LC_CTYPE). */
1775#define VWRN_ENV_NOT_FULLY_TRANSLATED (751)
1776/** Invalid environment variable name. */
1777#define VERR_ENV_INVALID_VAR_NAME (-752)
1778/** The environment variable is an unset record. */
1779#define VINF_ENV_VAR_UNSET (753)
1780/** The environment variable has been recorded as being unset. */
1781#define VERR_ENV_VAR_UNSET (-753)
1782/** @} */
1783
1784/** @name Multiprocessor Status Codes.
1785 * @{
1786 */
1787/** The specified cpu is offline. */
1788#define VERR_CPU_OFFLINE (-800)
1789/** The specified cpu was not found. */
1790#define VERR_CPU_NOT_FOUND (-801)
1791/** Not all of the requested CPUs showed up in the PFNRTMPWORKER. */
1792#define VERR_NOT_ALL_CPUS_SHOWED (-802)
1793/** Internal processing error in the RTMp code.*/
1794#define VERR_CPU_IPE_1 (-803)
1795/** @} */
1796
1797/** @name RTGetOpt status codes
1798 * @{ */
1799/** RTGetOpt: Command line option not recognized. */
1800#define VERR_GETOPT_UNKNOWN_OPTION (-825)
1801/** RTGetOpt: Command line option needs argument. */
1802#define VERR_GETOPT_REQUIRED_ARGUMENT_MISSING (-826)
1803/** RTGetOpt: Command line option has argument with bad format. */
1804#define VERR_GETOPT_INVALID_ARGUMENT_FORMAT (-827)
1805/** RTGetOpt: Not an option. */
1806#define VINF_GETOPT_NOT_OPTION 828
1807/** RTGetOpt: Command line option needs an index. */
1808#define VERR_GETOPT_INDEX_MISSING (-829)
1809/** @} */
1810
1811/** @name RTCache status codes
1812 * @{ */
1813/** RTCache: cache is full. */
1814#define VERR_CACHE_FULL (-850)
1815/** RTCache: cache is empty. */
1816#define VERR_CACHE_EMPTY (-851)
1817/** @} */
1818
1819/** @name RTMemCache status codes
1820 * @{ */
1821/** Reached the max cache size. */
1822#define VERR_MEM_CACHE_MAX_SIZE (-855)
1823/** @} */
1824
1825/** @name RTS3 status codes
1826 * @{ */
1827/** Access denied error. */
1828#define VERR_S3_ACCESS_DENIED (-875)
1829/** The bucket/key wasn't found. */
1830#define VERR_S3_NOT_FOUND (-876)
1831/** Bucket already exists. */
1832#define VERR_S3_BUCKET_ALREADY_EXISTS (-877)
1833/** Can't delete bucket with keys. */
1834#define VERR_S3_BUCKET_NOT_EMPTY (-878)
1835/** The current operation was canceled. */
1836#define VERR_S3_CANCELED (-879)
1837/** @} */
1838
1839/** @name HTTP status codes
1840 * @{ */
1841/** HTTP Internal Server Error. */
1842#define VERR_HTTP_STATUS_SERVER_ERROR (-884)
1843/** HTTP initialization failed. */
1844#define VERR_HTTP_INIT_FAILED (-885)
1845/** The server has not found anything matching the URI given. */
1846#define VERR_HTTP_NOT_FOUND (-886)
1847/** The request is for something forbidden. Authorization will not help. */
1848#define VERR_HTTP_ACCESS_DENIED (-887)
1849/** The server did not understand the request due to bad syntax. */
1850#define VERR_HTTP_BAD_REQUEST (-888)
1851/** Couldn't connect to the server (proxy?). */
1852#define VERR_HTTP_COULDNT_CONNECT (-889)
1853/** SSL connection error. */
1854#define VERR_HTTP_SSL_CONNECT_ERROR (-890)
1855/** CAcert is missing or has the wrong format. */
1856#define VERR_HTTP_CACERT_WRONG_FORMAT (-891)
1857/** Certificate cannot be authenticated with the given CA certificates. */
1858#define VERR_HTTP_CACERT_CANNOT_AUTHENTICATE (-892)
1859/** The current HTTP request was forcefully aborted */
1860#define VERR_HTTP_ABORTED (-893)
1861/** Request was redirected. */
1862#define VERR_HTTP_REDIRECTED (-894)
1863/** Proxy couldn't be resolved. */
1864#define VERR_HTTP_PROXY_NOT_FOUND (-895)
1865/** The remote host couldn't be resolved. */
1866#define VERR_HTTP_HOST_NOT_FOUND (-896)
1867/** Unexpected cURL error configure the proxy. */
1868#define VERR_HTTP_CURL_PROXY_CONFIG (-897)
1869/** Generic CURL error. */
1870#define VERR_HTTP_CURL_ERROR (-899)
1871/** @} */
1872
1873/** @name RTManifest status codes
1874 * @{ */
1875/** A digest type used in the manifest file isn't supported. */
1876#define VERR_MANIFEST_UNSUPPORTED_DIGEST_TYPE (-900)
1877/** An entry in the manifest file couldn't be interpreted correctly. */
1878#define VERR_MANIFEST_WRONG_FILE_FORMAT (-901)
1879/** A digest doesn't match the corresponding file. */
1880#define VERR_MANIFEST_DIGEST_MISMATCH (-902)
1881/** The file list doesn't match to the content of the manifest file. */
1882#define VERR_MANIFEST_FILE_MISMATCH (-903)
1883/** The specified attribute (name) was not found in the manifest. */
1884#define VERR_MANIFEST_ATTR_NOT_FOUND (-904)
1885/** The attribute type did not match. */
1886#define VERR_MANIFEST_ATTR_TYPE_MISMATCH (-905)
1887/** No attribute of the specified types was found. */
1888#define VERR_MANIFEST_ATTR_TYPE_NOT_FOUND (-906)
1889/** @} */
1890
1891/** @name RTTar status codes
1892 * @{ */
1893/** The checksum of a tar header record doesn't match. */
1894#define VERR_TAR_CHKSUM_MISMATCH (-925)
1895/** The tar end of file record was read. */
1896#define VERR_TAR_END_OF_FILE (-926)
1897/** The tar file ended unexpectedly. */
1898#define VERR_TAR_UNEXPECTED_EOS (-927)
1899/** The tar termination records was encountered without reaching the end of
1900 * the input stream. */
1901#define VERR_TAR_EOS_MORE_INPUT (-928)
1902/** A number tar header field was malformed. */
1903#define VERR_TAR_BAD_NUM_FIELD (-929)
1904/** A numeric tar header field was not terminated correctly. */
1905#define VERR_TAR_BAD_NUM_FIELD_TERM (-930)
1906/** A number tar header field was encoded using base-256 which this
1907 * tar implementation currently does not support. */
1908#define VERR_TAR_BASE_256_NOT_SUPPORTED (-931)
1909/** A number tar header field yielded a value too large for the internal
1910 * variable of the tar interpreter. */
1911#define VERR_TAR_NUM_VALUE_TOO_LARGE (-932)
1912/** The combined minor and major device number type is too small to hold the
1913 * value stored in the tar header. */
1914#define VERR_TAR_DEV_VALUE_TOO_LARGE (-933)
1915/** The mode field in a tar header is bad. */
1916#define VERR_TAR_BAD_MODE_FIELD (-934)
1917/** The mode field should not include the type. */
1918#define VERR_TAR_MODE_WITH_TYPE (-935)
1919/** The size field should be zero for links and symlinks. */
1920#define VERR_TAR_SIZE_NOT_ZERO (-936)
1921/** Encountered an unknown type flag. */
1922#define VERR_TAR_UNKNOWN_TYPE_FLAG (-937)
1923/** The tar header is all zeros. */
1924#define VERR_TAR_ZERO_HEADER (-938)
1925/** Not a uniform standard tape v0.0 archive header. */
1926#define VERR_TAR_NOT_USTAR_V00 (-939)
1927/** The name is empty. */
1928#define VERR_TAR_EMPTY_NAME (-940)
1929/** A non-directory entry has a name ending with a slash. */
1930#define VERR_TAR_NON_DIR_ENDS_WITH_SLASH (-941)
1931/** Encountered an unsupported portable archive exchange (pax) header. */
1932#define VERR_TAR_UNSUPPORTED_PAX_TYPE (-942)
1933/** Encountered an unsupported Solaris Tar extension. */
1934#define VERR_TAR_UNSUPPORTED_SOLARIS_HDR_TYPE (-943)
1935/** Encountered an unsupported GNU Tar extension. */
1936#define VERR_TAR_UNSUPPORTED_GNU_HDR_TYPE (-944)
1937/** Malformed checksum field in the tar header. */
1938#define VERR_TAR_BAD_CHKSUM_FIELD (-945)
1939/** Malformed checksum field in the tar header. */
1940#define VERR_TAR_MALFORMED_GNU_LONGXXXX (-946)
1941/** Too long name or link string. */
1942#define VERR_TAR_NAME_TOO_LONG (-947)
1943/** A directory entry in the archive. */
1944#define VINF_TAR_DIR_PATH (948)
1945/** @} */
1946
1947/** @name RTPoll status codes
1948 * @{ */
1949/** The handle is not pollable. */
1950#define VERR_POLL_HANDLE_NOT_POLLABLE (-950)
1951/** The handle ID is already present in the poll set. */
1952#define VERR_POLL_HANDLE_ID_EXISTS (-951)
1953/** The handle ID was not found in the set. */
1954#define VERR_POLL_HANDLE_ID_NOT_FOUND (-952)
1955/** The poll set is full. */
1956#define VERR_POLL_SET_IS_FULL (-953)
1957/** @} */
1958
1959/** @name Pkzip status codes
1960 * @{ */
1961/** No end of central directory record found. */
1962#define VERR_PKZIP_NO_EOCB (-960)
1963/** Too long name string. */
1964#define VERR_PKZIP_NAME_TOO_LONG (-961)
1965/** Local file header corrupt. */
1966#define VERR_PKZIP_BAD_LF_HEADER (-962)
1967/** Central directory file header corrupt. */
1968#define VERR_PKZIP_BAD_CDF_HEADER (-963)
1969/** Encountered an unknown type flag. */
1970#define VERR_PKZIP_UNKNOWN_TYPE_FLAG (-964)
1971/** Found a ZIP64 Extra Information Field in a ZIP32 file. */
1972#define VERR_PKZIP_ZIP64EX_IN_ZIP32 (-965)
1973
1974
1975/** @name RTZip status codes
1976 * @{ */
1977/** Generic zip error. */
1978#define VERR_ZIP_ERROR (-22000)
1979/** The compressed data was corrupted. */
1980#define VERR_ZIP_CORRUPTED (-22001)
1981/** Ran out of memory while compressing or uncompressing. */
1982#define VERR_ZIP_NO_MEMORY (-22002)
1983/** The compression format version is unsupported. */
1984#define VERR_ZIP_UNSUPPORTED_VERSION (-22003)
1985/** The compression method is unsupported. */
1986#define VERR_ZIP_UNSUPPORTED_METHOD (-22004)
1987/** The compressed data started with a bad header. */
1988#define VERR_ZIP_BAD_HEADER (-22005)
1989/** @} */
1990
1991/** @name RTVfs status codes
1992 * @{ */
1993/** The VFS chain specification does not have a valid prefix. */
1994#define VERR_VFS_CHAIN_NO_PREFIX (-22100)
1995/** The VFS chain specification is empty. */
1996#define VERR_VFS_CHAIN_EMPTY (-22101)
1997/** Expected an element. */
1998#define VERR_VFS_CHAIN_EXPECTED_ELEMENT (-22102)
1999/** The VFS object type is not known. */
2000#define VERR_VFS_CHAIN_UNKNOWN_TYPE (-22103)
2001/** Expected a left parentheses. */
2002#define VERR_VFS_CHAIN_EXPECTED_LEFT_PARENTHESES (-22104)
2003/** Expected a right parentheses. */
2004#define VERR_VFS_CHAIN_EXPECTED_RIGHT_PARENTHESES (-22105)
2005/** Expected a provider name. */
2006#define VERR_VFS_CHAIN_EXPECTED_PROVIDER_NAME (-22106)
2007/** Expected an element separator (| or :). */
2008#define VERR_VFS_CHAIN_EXPECTED_SEPARATOR (-22107)
2009/** Leading element separator not permitted. */
2010#define VERR_VFS_CHAIN_LEADING_SEPARATOR (-22108)
2011/** Trailing element separator not permitted. */
2012#define VERR_VFS_CHAIN_TRAILING_SEPARATOR (-22109)
2013/** The provider is only allowed as the first element. */
2014#define VERR_VFS_CHAIN_MUST_BE_FIRST_ELEMENT (-22110)
2015/** The provider cannot be the first element. */
2016#define VERR_VFS_CHAIN_CANNOT_BE_FIRST_ELEMENT (-22111)
2017/** VFS object cast failed. */
2018#define VERR_VFS_CHAIN_CAST_FAILED (-22112)
2019/** Internal error in the VFS chain code. */
2020#define VERR_VFS_CHAIN_IPE (-22113)
2021/** VFS chain element provider not found. */
2022#define VERR_VFS_CHAIN_PROVIDER_NOT_FOUND (-22114)
2023/** VFS chain does not terminate with the desired object type. */
2024#define VERR_VFS_CHAIN_FINAL_TYPE_MISMATCH (-22115)
2025/** VFS chain element takes no arguments. */
2026#define VERR_VFS_CHAIN_NO_ARGS (-22116)
2027/** VFS chain element takes exactly one argument. */
2028#define VERR_VFS_CHAIN_ONE_ARG (-22117)
2029/** VFS chain element expected at most one argument. */
2030#define VERR_VFS_CHAIN_AT_MOST_ONE_ARG (-22118)
2031/** VFS chain element expected at least one argument. */
2032#define VERR_VFS_CHAIN_AT_LEAST_ONE_ARG (-22119)
2033/** VFS chain element takes exactly two arguments. */
2034#define VERR_VFS_CHAIN_TWO_ARGS (-22120)
2035/** VFS chain element expected at least two arguments. */
2036#define VERR_VFS_CHAIN_AT_LEAST_TWO_ARGS (-22121)
2037/** VFS chain element expected at most two arguments. */
2038#define VERR_VFS_CHAIN_AT_MOST_TWO_ARGS (-22122)
2039/** VFS chain element takes exactly three arguments. */
2040#define VERR_VFS_CHAIN_THREE_ARGS (-22123)
2041/** VFS chain element expected at least three arguments. */
2042#define VERR_VFS_CHAIN_AT_LEAST_THREE_ARGS (-22124)
2043/** VFS chain element expected at most three arguments. */
2044#define VERR_VFS_CHAIN_AT_MOST_THREE_ARGS (-22125)
2045/** VFS chain element takes exactly four arguments. */
2046#define VERR_VFS_CHAIN_FOUR_ARGS (-22126)
2047/** VFS chain element expected at least four arguments. */
2048#define VERR_VFS_CHAIN_AT_LEAST_FOUR_ARGS (-22127)
2049/** VFS chain element expected at most four arguments. */
2050#define VERR_VFS_CHAIN_AT_MOST_FOUR_ARGS (-22128)
2051/** VFS chain element takes exactly five arguments. */
2052#define VERR_VFS_CHAIN_FIVE_ARGS (-22129)
2053/** VFS chain element expected at least five arguments. */
2054#define VERR_VFS_CHAIN_AT_LEAST_FIVE_ARGS (-22130)
2055/** VFS chain element expected at most five arguments. */
2056#define VERR_VFS_CHAIN_AT_MOST_FIVE_ARGS (-22131)
2057/** VFS chain element takes exactly six arguments. */
2058#define VERR_VFS_CHAIN_SIX_ARGS (-22132)
2059/** VFS chain element expected at least six arguments. */
2060#define VERR_VFS_CHAIN_AT_LEAST_SIX_ARGS (-22133)
2061/** VFS chain element expected at most six arguments. */
2062#define VERR_VFS_CHAIN_AT_MOST_SIX_ARGS (-22134)
2063/** VFS chain element expected at most six arguments. */
2064#define VERR_VFS_CHAIN_TOO_FEW_ARGS (-22135)
2065/** VFS chain element expected at most six arguments. */
2066#define VERR_VFS_CHAIN_TOO_MANY_ARGS (-22136)
2067/** VFS chain element expected non-empty argument. */
2068#define VERR_VFS_CHAIN_EMPTY_ARG (-22137)
2069/** Invalid argument to VFS chain element. */
2070#define VERR_VFS_CHAIN_INVALID_ARGUMENT (-22138)
2071/** VFS chain element only provides file and I/O stream (ios) objects. */
2072#define VERR_VFS_CHAIN_ONLY_FILE_OR_IOS (-22139)
2073/** VFS chain element only provides I/O stream (ios) objects. */
2074#define VERR_VFS_CHAIN_ONLY_IOS (-22140)
2075/** VFS chain element only provides directory (dir) objects. */
2076#define VERR_VFS_CHAIN_ONLY_DIR (-22141)
2077/** VFS chain element only provides file system stream (fss) objects. */
2078#define VERR_VFS_CHAIN_ONLY_FSS (-22142)
2079/** VFS chain element only provides file system (vfs) objects. */
2080#define VERR_VFS_CHAIN_ONLY_VFS (-22143)
2081/** VFS chain element only provides file, I/O stream (ios), or
2082 * directory (dir) objects. */
2083#define VERR_VFS_CHAIN_ONLY_FILE_OR_IOS_OR_DIR (-22144)
2084/** VFS chain element only provides file, I/O stream (ios), or
2085 * directory (dir) objects. */
2086#define VERR_VFS_CHAIN_ONLY_DIR_OR_VFS (-22145)
2087/** VFS chain element takes a file object as input. */
2088#define VERR_VFS_CHAIN_TAKES_FILE (-22146)
2089/** VFS chain element takes a file or I/O stream (ios) object as input. */
2090#define VERR_VFS_CHAIN_TAKES_FILE_OR_IOS (-22147)
2091/** VFS chain element takes a directory (dir) object as input. */
2092#define VERR_VFS_CHAIN_TAKES_DIR (-22148)
2093/** VFS chain element takes a file system stream (fss) object as input. */
2094#define VERR_VFS_CHAIN_TAKES_FSS (-22149)
2095/** VFS chain element takes a file system (vfs) object as input. */
2096#define VERR_VFS_CHAIN_TAKES_VFS (-22150)
2097/** VFS chain element takes a directory (dir) or file system (vfs)
2098 * object as input. */
2099#define VERR_VFS_CHAIN_TAKES_DIR_OR_VFS (-22151)
2100/** VFS chain element takes a directory (dir), file system stream (fss),
2101 * or file system (vfs) object as input. */
2102#define VERR_VFS_CHAIN_TAKES_DIR_OR_FSS_OR_VFS (-22152)
2103/** VFS chain element only provides a read-only I/O stream, while the chain
2104 * requires write access. */
2105#define VERR_VFS_CHAIN_READ_ONLY_IOS (-22153)
2106/** VFS chain element only provides a read-only I/O stream, while the chain
2107 * read access. */
2108#define VERR_VFS_CHAIN_WRITE_ONLY_IOS (-22154)
2109/** VFS chain only has a single element and it is just a path, need to be
2110 * treated as a normal file system request. */
2111#define VERR_VFS_CHAIN_PATH_ONLY (-22155)
2112/** VFS chain element preceding the final path needs to be a directory, file
2113 * system or file system stream. */
2114#define VERR_VFS_CHAIN_TYPE_MISMATCH_PATH_ONLY (-22156)
2115/** VFS chain doesn't end with a path only element. */
2116#define VERR_VFS_CHAIN_NOT_PATH_ONLY (-22157)
2117/** The path only element at the end of the VFS chain is too short to make out
2118 * the parent directory. */
2119#define VERR_VFS_CHAIN_TOO_SHORT_FOR_PARENT (-22158)
2120/** @} */
2121
2122/** @name RTDvm status codes
2123 * @{ */
2124/** The volume map doesn't contain any valid volume. */
2125#define VERR_DVM_MAP_EMPTY (-22200)
2126/** There is no volume behind the current one. */
2127#define VERR_DVM_MAP_NO_VOLUME (-22201)
2128/** @} */
2129
2130/** @name Logger status codes
2131 * @{ */
2132/** The internal logger revision did not match. */
2133#define VERR_LOG_REVISION_MISMATCH (-22300)
2134/** @} */
2135
2136/* see above, 22400..22499 is used for misc codes! */
2137
2138/** @name Logger status codes
2139 * @{ */
2140/** Power off is not supported by the hardware or the OS. */
2141#define VERR_SYS_CANNOT_POWER_OFF (-22500)
2142/** The halt action was requested, but the OS may actually power
2143 * off the machine. */
2144#define VINF_SYS_MAY_POWER_OFF (22501)
2145/** Shutdown failed. */
2146#define VERR_SYS_SHUTDOWN_FAILED (-22502)
2147/** @} */
2148
2149/** @name Filesystem status codes
2150 * @{ */
2151/** Filesystem can't be opened because it is corrupt. */
2152#define VERR_FILESYSTEM_CORRUPT (-22600)
2153/** @} */
2154
2155/** @name RTZipXar status codes.
2156 * @{ */
2157/** Wrong magic value. */
2158#define VERR_XAR_WRONG_MAGIC (-22700)
2159/** Bad header size. */
2160#define VERR_XAR_BAD_HDR_SIZE (-22701)
2161/** Unsupported version. */
2162#define VERR_XAR_UNSUPPORTED_VERSION (-22702)
2163/** Unsupported hashing function. */
2164#define VERR_XAR_UNSUPPORTED_HASH_FUNCTION (-22703)
2165/** The table of content (TOC) is too small and therefore can't be valid. */
2166#define VERR_XAR_TOC_TOO_SMALL (-22704)
2167/** The table of content (TOC) is too big. */
2168#define VERR_XAR_TOC_TOO_BIG (-22705)
2169/** The compressed table of content is too big. */
2170#define VERR_XAR_TOC_TOO_BIG_COMPRESSED (-22706)
2171/** The uncompressed table of content size in the header didn't match what
2172 * ZLib returned. */
2173#define VERR_XAR_TOC_UNCOMP_SIZE_MISMATCH (-22707)
2174/** The table of content string length didn't match the size specified in the
2175 * header. */
2176#define VERR_XAR_TOC_STRLEN_MISMATCH (-22708)
2177/** The table of content isn't valid UTF-8. */
2178#define VERR_XAR_TOC_UTF8_ENCODING (-22709)
2179/** XML error while parsing the table of content. */
2180#define VERR_XAR_TOC_XML_PARSE_ERROR (-22710)
2181/** The table of content XML document does not have a toc element. */
2182#define VERR_XML_TOC_ELEMENT_MISSING (-22711)
2183/** The table of content XML element (toc) has siblings, we expected it to be
2184 * an only child or the root element (xar). */
2185#define VERR_XML_TOC_ELEMENT_HAS_SIBLINGS (-22712)
2186/** The XAR table of content digest doesn't match. */
2187#define VERR_XAR_TOC_DIGEST_MISMATCH (-22713)
2188/** Bad or missing XAR checksum element. */
2189#define VERR_XAR_BAD_CHECKSUM_ELEMENT (-22714)
2190/** The hash function in the header doesn't match the one in the table of
2191 * content. */
2192#define VERR_XAR_HASH_FUNCTION_MISMATCH (-22715)
2193/** Bad digest length encountered in the table of content. */
2194#define VERR_XAR_BAD_DIGEST_LENGTH (-22716)
2195/** The order of elements in the XAR file does not lend it self to expansion
2196 * from via an I/O stream. */
2197#define VERR_XAR_NOT_STREAMBLE_ELEMENT_ORDER (-22717)
2198/** Missing offset element in table of content sub-element. */
2199#define VERR_XAR_MISSING_OFFSET_ELEMENT (-22718)
2200/** Bad offset element in table of content sub-element. */
2201#define VERR_XAR_BAD_OFFSET_ELEMENT (-22719)
2202/** Missing size element in table of content sub-element. */
2203#define VERR_XAR_MISSING_SIZE_ELEMENT (-22720)
2204/** Bad size element in table of content sub-element. */
2205#define VERR_XAR_BAD_SIZE_ELEMENT (-22721)
2206/** Missing length element in table of content sub-element. */
2207#define VERR_XAR_MISSING_LENGTH_ELEMENT (-22722)
2208/** Bad length element in table of content sub-element. */
2209#define VERR_XAR_BAD_LENGTH_ELEMENT (-22723)
2210/** Bad file element in XAR table of content. */
2211#define VERR_XAR_BAD_FILE_ELEMENT (-22724)
2212/** Missing data element for XAR file. */
2213#define VERR_XAR_MISSING_DATA_ELEMENT (-22725)
2214/** Unknown XAR file type value. */
2215#define VERR_XAR_UNKNOWN_FILE_TYPE (-22726)
2216/** Missing encoding element for XAR data stream. */
2217#define VERR_XAR_NO_ENCODING (-22727)
2218/** Bad timestamp for XAR file. */
2219#define VERR_XAR_BAD_FILE_TIMESTAMP (-22728)
2220/** Bad file mode for XAR file. */
2221#define VERR_XAR_BAD_FILE_MODE (-22729)
2222/** Bad file user id for XAR file. */
2223#define VERR_XAR_BAD_FILE_UID (-22730)
2224/** Bad file group id for XAR file. */
2225#define VERR_XAR_BAD_FILE_GID (-22731)
2226/** Bad file inode device number for XAR file. */
2227#define VERR_XAR_BAD_FILE_DEVICE_NO (-22732)
2228/** Bad file inode number for XAR file. */
2229#define VERR_XAR_BAD_FILE_INODE (-22733)
2230/** Invalid name for XAR file. */
2231#define VERR_XAR_INVALID_FILE_NAME (-22734)
2232/** The message digest of the extracted data does not match the one supplied. */
2233#define VERR_XAR_EXTRACTED_HASH_MISMATCH (-22735)
2234/** The extracted data has exceeded the expected size. */
2235#define VERR_XAR_EXTRACTED_SIZE_EXCEEDED (-22736)
2236/** The message digest of the archived data does not match the one supplied. */
2237#define VERR_XAR_ARCHIVED_HASH_MISMATCH (-22737)
2238/** The decompressor completed without using all the input data. */
2239#define VERR_XAR_UNUSED_ARCHIVED_DATA (-22738)
2240/** Expected the archived and extracted XAR data sizes to be the same for
2241 * uncompressed data. */
2242#define VERR_XAR_ARCHIVED_AND_EXTRACTED_SIZES_MISMATCH (-22739)
2243/** @} */
2244
2245/** @name RTX509 status codes
2246 * @{ */
2247/** Error reading a certificate in PEM format from BIO. */
2248#define VERR_X509_READING_CERT_FROM_BIO (-23100)
2249/** Error extracting a public key from the certificate. */
2250#define VERR_X509_EXTRACT_PUBKEY_FROM_CERT (-23101)
2251/** Error extracting RSA from the public key. */
2252#define VERR_X509_EXTRACT_RSA_FROM_PUBLIC_KEY (-23102)
2253/** Signature verification failed. */
2254#define VERR_X509_RSA_VERIFICATION_FUILURE (-23103)
2255/** Basic constraints were not found. */
2256#define VERR_X509_NO_BASIC_CONSTARAINTS (-23104)
2257/** Error getting extensions from the certificate. */
2258#define VERR_X509_GETTING_EXTENSION_FROM_CERT (-23105)
2259/** Error getting a data from the extension. */
2260#define VERR_X509_GETTING_DATA_FROM_EXTENSION (-23106)
2261/** Error formatting an extension. */
2262#define VERR_X509_PRINT_EXTENSION_TO_BIO (-23107)
2263/** X509 certificate verification error. */
2264#define VERR_X509_CERTIFICATE_VERIFICATION_FAILURE (-23108)
2265/** X509 certificate isn't self signed. */
2266#define VERR_X509_NOT_SELFSIGNED_CERTIFICATE (-23109)
2267/** Warning X509 certificate isn't self signed. */
2268#define VINF_X509_NOT_SELFSIGNED_CERTIFICATE 23109
2269/** @} */
2270
2271/** @name RTAsn1 status codes
2272 * @{ */
2273/** Temporary place holder. */
2274#define VERR_ASN1_ERROR (-22800)
2275/** Encountered an ASN.1 string type that is not supported. */
2276#define VERR_ASN1_STRING_TYPE_NOT_IMPLEMENTED (-22801)
2277/** Invalid ASN.1 UTF-8 STRING encoding. */
2278#define VERR_ASN1_INVALID_UTF8_STRING_ENCODING (-22802)
2279/** Invalid ASN.1 NUMERIC STRING encoding. */
2280#define VERR_ASN1_INVALID_NUMERIC_STRING_ENCODING (-22803)
2281/** Invalid ASN.1 PRINTABLE STRING encoding. */
2282#define VERR_ASN1_INVALID_PRINTABLE_STRING_ENCODING (-22804)
2283/** Invalid ASN.1 T61/TELETEX STRING encoding. */
2284#define VERR_ASN1_INVALID_T61_STRING_ENCODING (-22805)
2285/** Invalid ASN.1 VIDEOTEX STRING encoding. */
2286#define VERR_ASN1_INVALID_VIDEOTEX_STRING_ENCODING (-22806)
2287/** Invalid ASN.1 IA5 STRING encoding. */
2288#define VERR_ASN1_INVALID_IA5_STRING_ENCODING (-22807)
2289/** Invalid ASN.1 GRAPHIC STRING encoding. */
2290#define VERR_ASN1_INVALID_GRAPHIC_STRING_ENCODING (-22808)
2291/** Invalid ASN.1 ISO-646/VISIBLE STRING encoding. */
2292#define VERR_ASN1_INVALID_VISIBLE_STRING_ENCODING (-22809)
2293/** Invalid ASN.1 GENERAL STRING encoding. */
2294#define VERR_ASN1_INVALID_GENERAL_STRING_ENCODING (-22810)
2295/** Invalid ASN.1 UNIVERSAL STRING encoding. */
2296#define VERR_ASN1_INVALID_UNIVERSAL_STRING_ENCODING (-22811)
2297/** Invalid ASN.1 BMP STRING encoding. */
2298#define VERR_ASN1_INVALID_BMP_STRING_ENCODING (-22812)
2299/** Invalid ASN.1 OBJECT IDENTIFIER encoding. */
2300#define VERR_ASN1_INVALID_OBJID_ENCODING (-22813)
2301/** A component value of an ASN.1 OBJECT IDENTIFIER is too big for our
2302 * internal representation (32-bits). */
2303#define VERR_ASN1_OBJID_COMPONENT_TOO_BIG (-22814)
2304/** Too many components in an ASN.1 OBJECT IDENTIFIER for our internal
2305 * representation. */
2306#define VERR_ASN1_OBJID_TOO_MANY_COMPONENTS (-22815)
2307/** The dotted-string representation of an ASN.1 OBJECT IDENTIFIER would be too
2308 * long for our internal representation. */
2309#define VERR_ASN1_OBJID_TOO_LONG_STRING_FORM (-22816)
2310/** Invalid dotted string. */
2311#define VERR_ASN1_OBJID_INVALID_DOTTED_STRING (-22817)
2312/** Constructed string type not implemented. */
2313#define VERR_ASN1_CONSTRUCTED_STRING_NOT_IMPL (-22818)
2314/** Expected a different string tag. */
2315#define VERR_ASN1_STRING_TAG_MISMATCH (-22819)
2316/** Expected a different time tag. */
2317#define VERR_ASN1_TIME_TAG_MISMATCH (-22820)
2318/** More unconsumed data available. */
2319#define VINF_ASN1_MORE_DATA (22821)
2320/** RTAsnEncodeWriteHeader return code indicating that nothing was written
2321 * and the content should be skipped as well. */
2322#define VINF_ASN1_NOT_ENCODED (22822)
2323/** Unknown escape sequence encountered in TeletexString. */
2324#define VERR_ASN1_TELETEX_UNKNOWN_ESC_SEQ (-22823)
2325/** Unsupported escape sequence encountered in TeletexString. */
2326#define VERR_ASN1_TELETEX_UNSUPPORTED_ESC_SEQ (-22824)
2327/** Unsupported character set. */
2328#define VERR_ASN1_TELETEX_UNSUPPORTED_CHARSET (-22825)
2329/** ASN.1 object has no virtual method table. */
2330#define VERR_ASN1_NO_VTABLE (-22826)
2331/** ASN.1 object has no pfnCheckSanity method. */
2332#define VERR_ASN1_NO_CHECK_SANITY_METHOD (-22827)
2333/** ASN.1 object is not present */
2334#define VERR_ASN1_NOT_PRESENT (-22828)
2335/** There are unconsumed bytes after decoding an ASN.1 object. */
2336#define VERR_ASN1_CURSOR_NOT_AT_END (-22829)
2337/** Long ASN.1 tag form is not implemented. */
2338#define VERR_ASN1_CURSOR_LONG_TAG (-22830)
2339/** Bad ASN.1 object length encoding. */
2340#define VERR_ASN1_CURSOR_BAD_LENGTH_ENCODING (-22831)
2341/** Indefinite length form is against the rules. */
2342#define VERR_ASN1_CURSOR_ILLEGAL_INDEFINITE_LENGTH (-22832)
2343/** Malformed indefinite length encoding. */
2344#define VERR_ASN1_CURSOR_BAD_INDEFINITE_LENGTH (-22833)
2345/** ASN.1 object length goes beyond the end of the byte stream being decoded. */
2346#define VERR_ASN1_CURSOR_BAD_LENGTH (-22834)
2347/** Not more data in ASN.1 byte stream. */
2348#define VERR_ASN1_CURSOR_NO_MORE_DATA (-22835)
2349/** Too little data in ASN.1 byte stream. */
2350#define VERR_ASN1_CURSOR_TOO_LITTLE_DATA_LEFT (-22836)
2351/** Constructed string is not according to the encoding rules. */
2352#define VERR_ASN1_CURSOR_ILLEGAL_CONSTRUCTED_STRING (-22837)
2353/** Unexpected ASN.1 tag encountered while decoding. */
2354#define VERR_ASN1_CURSOR_TAG_MISMATCH (-22838)
2355/** Unexpected ASN.1 tag class/flag encountered while decoding. */
2356#define VERR_ASN1_CURSOR_TAG_FLAG_CLASS_MISMATCH (-22839)
2357/** ASN.1 bit string object is out of bounds. */
2358#define VERR_ASN1_BITSTRING_OUT_OF_BOUNDS (-22840)
2359/** Bad ASN.1 time object. */
2360#define VERR_ASN1_TIME_BAD_NORMALIZE_INPUT (-22841)
2361/** Failed to normalize ASN.1 time object. */
2362#define VERR_ASN1_TIME_NORMALIZE_ERROR (-22842)
2363/** Normalization of ASN.1 time object didn't work out. */
2364#define VERR_ASN1_TIME_NORMALIZE_MISMATCH (-22843)
2365/** Invalid ASN.1 UTC TIME encoding. */
2366#define VERR_ASN1_INVALID_UTC_TIME_ENCODING (-22844)
2367/** Invalid ASN.1 GENERALIZED TIME encoding. */
2368#define VERR_ASN1_INVALID_GENERALIZED_TIME_ENCODING (-22845)
2369/** Invalid ASN.1 BOOLEAN encoding. */
2370#define VERR_ASN1_INVALID_BOOLEAN_ENCODING (-22846)
2371/** Invalid ASN.1 NULL encoding. */
2372#define VERR_ASN1_INVALID_NULL_ENCODING (-22847)
2373/** Invalid ASN.1 BIT STRING encoding. */
2374#define VERR_ASN1_INVALID_BITSTRING_ENCODING (-22848)
2375/** Unimplemented ASN.1 tag reached the RTAsn1DynType code. */
2376#define VERR_ASN1_DYNTYPE_TAG_NOT_IMPL (-22849)
2377/** ASN.1 tag and flags/class mismatch in RTAsn1DynType code. */
2378#define VERR_ASN1_DYNTYPE_BAD_TAG (-22850)
2379/** Unexpected ASN.1 fake/dummy object. */
2380#define VERR_ASN1_DUMMY_OBJECT (-22851)
2381/** ASN.1 object is too long. */
2382#define VERR_ASN1_TOO_LONG (-22852)
2383/** Expected primitive ASN.1 object. */
2384#define VERR_ASN1_EXPECTED_PRIMITIVE (-22853)
2385/** Expected valid data pointer for ASN.1 object. */
2386#define VERR_ASN1_INVALID_DATA_POINTER (-22854)
2387/** The ASN.1 encoding is too deeply nested for the decoder. */
2388#define VERR_ASN1_TOO_DEEPLY_NESTED (-22855)
2389/** Generic unexpected object ID error. */
2390#define VERR_ASN1_UNEXPECTED_OBJ_ID (-22856)
2391/** Invalid ASN.1 INTEGER encoding. */
2392#define VERR_ASN1_INVALID_INTEGER_ENCODING (-22857)
2393
2394/** ANS.1 internal error 1. */
2395#define VERR_ASN1_INTERNAL_ERROR_1 (-22895)
2396/** ANS.1 internal error 2. */
2397#define VERR_ASN1_INTERNAL_ERROR_2 (-22896)
2398/** ANS.1 internal error 3. */
2399#define VERR_ASN1_INTERNAL_ERROR_3 (-22897)
2400/** ANS.1 internal error 4. */
2401#define VERR_ASN1_INTERNAL_ERROR_4 (-22898)
2402/** ANS.1 internal error 5. */
2403#define VERR_ASN1_INTERNAL_ERROR_5 (-22899)
2404/** @} */
2405
2406/** @name More RTLdr status codes.
2407 * @{ */
2408/** Image Verification Failure: No Authenticode Signature. */
2409#define VERR_LDRVI_NOT_SIGNED (-22900)
2410/** Image Verification Warning: No Authenticode Signature, but on whitelist. */
2411#define VINF_LDRVI_NOT_SIGNED (22900)
2412/** Image Verification Failure: Error reading image headers. */
2413#define VERR_LDRVI_READ_ERROR_HDR (-22901)
2414/** Image Verification Failure: Error reading section headers. */
2415#define VERR_LDRVI_READ_ERROR_SHDRS (-22902)
2416/** Image Verification Failure: Error reading authenticode signature data. */
2417#define VERR_LDRVI_READ_ERROR_SIGNATURE (-22903)
2418/** Image Verification Failure: Error reading file for hashing. */
2419#define VERR_LDRVI_READ_ERROR_HASH (-22904)
2420/** Image Verification Failure: Error determining the file length. */
2421#define VERR_LDRVI_FILE_LENGTH_ERROR (-22905)
2422/** Image Verification Failure: Error allocating memory for state data. */
2423#define VERR_LDRVI_NO_MEMORY_STATE (-22906)
2424/** Image Verification Failure: Error allocating memory for authenticode
2425 * signature data. */
2426#define VERR_LDRVI_NO_MEMORY_SIGNATURE (-22907)
2427/** Image Verification Failure: Error allocating memory for section headers. */
2428#define VERR_LDRVI_NO_MEMORY_SHDRS (-22908)
2429/** Image Verification Failure: Authenticode parsing output. */
2430#define VERR_LDRVI_NO_MEMORY_PARSE_OUTPUT (-22909)
2431/** Image Verification Failure: Invalid security directory entry. */
2432#define VERR_LDRVI_INVALID_SECURITY_DIR_ENTRY (-22910)
2433/** Image Verification Failure: */
2434#define VERR_LDRVI_BAD_CERT_HDR_LENGTH (-22911)
2435/** Image Verification Failure: */
2436#define VERR_LDRVI_BAD_CERT_HDR_REVISION (-22912)
2437/** Image Verification Failure: */
2438#define VERR_LDRVI_BAD_CERT_HDR_TYPE (-22913)
2439/** Image Verification Failure: More than one certificate table entry. */
2440#define VERR_LDRVI_BAD_CERT_MULTIPLE (-22914)
2441
2442/** Image Verification Failure: */
2443#define VERR_LDRVI_BAD_MZ_OFFSET (-22915)
2444/** Image Verification Failure: Invalid section count. */
2445#define VERR_LDRVI_INVALID_SECTION_COUNT (-22916)
2446/** Image Verification Failure: Raw data offsets and sizes are out of range. */
2447#define VERR_LDRVI_SECTION_RAW_DATA_VALUES (-22917)
2448/** Optional header magic and target machine does not match. */
2449#define VERR_LDRVI_MACHINE_OPT_HDR_MAGIC_MISMATCH (-22918)
2450/** Unsupported image target architecture. */
2451#define VERR_LDRVI_UNSUPPORTED_ARCH (-22919)
2452
2453/** Image Verification Failure: Internal error in signature parser. */
2454#define VERR_LDRVI_PARSE_IPE (-22921)
2455/** Generic BER parse error. Will be refined later. */
2456#define VERR_LDRVI_PARSE_BER_ERROR (-22922)
2457
2458/** Expected the signed data content to be the object ID of
2459 * SpcIndirectDataContent, found something else instead. */
2460#define VERR_LDRVI_EXPECTED_INDIRECT_DATA_CONTENT_OID (-22923)
2461/** Page hash table size overflow. */
2462#define VERR_LDRVI_PAGE_HASH_TAB_SIZE_OVERFLOW (-22924)
2463/** Page hash table is too long (covers signature data, i.e. itself). */
2464#define VERR_LDRVI_PAGE_HASH_TAB_TOO_LONG (-22925)
2465/** The page hash table is not strictly ordered by offset. */
2466#define VERR_LDRVI_PAGE_HASH_TAB_NOT_STRICTLY_SORTED (-22926)
2467/** The page hash table hashes data outside the defined and implicit sections. */
2468#define VERR_PAGE_HASH_TAB_HASHES_NON_SECTION_DATA (-22927)
2469/** Page hash mismatch. */
2470#define VERR_LDRVI_PAGE_HASH_MISMATCH (-22928)
2471/** Image hash mismatch. */
2472#define VERR_LDRVI_IMAGE_HASH_MISMATCH (-22929)
2473/** Malformed code signing structure. */
2474#define VERR_LDRVI_BAD_CERT_FORMAT (-22930)
2475
2476/** Cannot resolve symbol because it's a forwarder. */
2477#define VERR_LDR_FORWARDER (-22950)
2478/** The symbol is not a forwarder. */
2479#define VERR_LDR_NOT_FORWARDER (-22951)
2480/** Malformed forwarder entry. */
2481#define VERR_LDR_BAD_FORWARDER (-22952)
2482/** Too long forwarder chain or there is a loop. */
2483#define VERR_LDR_FORWARDER_CHAIN_TOO_LONG (-22953)
2484/** Support for forwarders has not been implemented. */
2485#define VERR_LDR_FORWARDERS_NOT_SUPPORTED (-22954)
2486/** Only native endian Mach-O files are supported. */
2487#define VERR_LDRMACHO_OTHER_ENDIAN_NOT_SUPPORTED (-22955)
2488/** The Mach-O header is bad or contains new and unsupported features. */
2489#define VERR_LDRMACHO_BAD_HEADER (-22956)
2490/** The file type isn't supported. */
2491#define VERR_LDRMACHO_UNSUPPORTED_FILE_TYPE (-22957)
2492/** The machine (cputype / cpusubtype combination) isn't supported. */
2493#define VERR_LDRMACHO_UNSUPPORTED_MACHINE (-22958)
2494/** Bad load command(s). */
2495#define VERR_LDRMACHO_BAD_LOAD_COMMAND (-22959)
2496/** Encountered an unknown load command.*/
2497#define VERR_LDRMACHO_UNKNOWN_LOAD_COMMAND (-22960)
2498/** Encountered a load command that's not implemented.*/
2499#define VERR_LDRMACHO_UNSUPPORTED_LOAD_COMMAND (-22961)
2500/** Bad section. */
2501#define VERR_LDRMACHO_BAD_SECTION (-22962)
2502/** Encountered a section type that's not implemented.*/
2503#define VERR_LDRMACHO_UNSUPPORTED_SECTION (-22963)
2504/** Encountered a init function section. */
2505#define VERR_LDRMACHO_UNSUPPORTED_INIT_SECTION (-22964)
2506/** Encountered a term function section. */
2507#define VERR_LDRMACHO_UNSUPPORTED_TERM_SECTION (-22965)
2508/** Encountered a section type that's not known to the loader. (probably invalid) */
2509#define VERR_LDRMACHO_UNKNOWN_SECTION (-22966)
2510/** The sections aren't ordered by segment as expected by the loader. */
2511#define VERR_LDRMACHO_BAD_SECTION_ORDER (-22967)
2512/** The image is 32-bit and contains 64-bit load commands or vise versa. */
2513#define VERR_LDRMACHO_BIT_MIX (-22968)
2514/** Bad MH_OBJECT file. */
2515#define VERR_LDRMACHO_BAD_OBJECT_FILE (-22969)
2516/** Bad symbol table entry. */
2517#define VERR_LDRMACHO_BAD_SYMBOL (-22970)
2518/** Unsupported fixup type. */
2519#define VERR_LDRMACHO_UNSUPPORTED_FIXUP_TYPE (-22971)
2520/** Both debug and non-debug sections in segment. */
2521#define VERR_LDRMACHO_MIXED_DEBUG_SECTION_FLAGS (-22972)
2522/** The segment bits are non-contiguous in the file. */
2523#define VERR_LDRMACHO_NON_CONT_SEG_BITS (-22973)
2524/** Hit a todo in the mach-o loader. */
2525#define VERR_LDRMACHO_TODO (-22974)
2526/** Bad symbol table size in Mach-O image. */
2527#define VERR_LDRMACHO_BAD_SYMTAB_SIZE (-22975)
2528/** Duplicate segment name. */
2529#define VERR_LDR_DUPLICATE_SEGMENT_NAME (-22976)
2530/** No image UUID. */
2531#define VERR_LDR_NO_IMAGE_UUID (-22977)
2532/** Bad image relocation. */
2533#define VERR_LDR_BAD_FIXUP (-22978)
2534/** Address overflow. */
2535#define VERR_LDR_ADDRESS_OVERFLOW (-22979)
2536/** validation of LX header failed. */
2537#define VERR_LDRLX_BAD_HEADER (-22980)
2538/** validation of the loader section (in the LX header) failed. */
2539#define VERR_LDRLX_BAD_LOADER_SECTION (-22981)
2540/** validation of the fixup section (in the LX header) failed. */
2541#define VERR_LDRLX_BAD_FIXUP_SECTION (-22982)
2542/** validation of the LX object table failed. */
2543#define VERR_LDRLX_BAD_OBJECT_TABLE (-22983)
2544/** A bad page map entry was encountered. */
2545#define VERR_LDRLX_BAD_PAGE_MAP (-22984)
2546/** Bad iterdata (EXEPACK) data. */
2547#define VERR_LDRLX_BAD_ITERDATA (-22985)
2548/** Bad iterdata2 (EXEPACK2) data. */
2549#define VERR_LDRLX_BAD_ITERDATA2 (-22986)
2550/** Bad bundle data. */
2551#define VERR_LDRLX_BAD_BUNDLE (-22987)
2552/** No soname. */
2553#define VERR_LDRLX_NO_SONAME (-22988)
2554/** Bad soname. */
2555#define VERR_LDRLX_BAD_SONAME (-22989)
2556/** Bad forwarder entry. */
2557#define VERR_LDRLX_BAD_FORWARDER (-22990)
2558/** internal fixup chain isn't implemented yet. */
2559#define VERR_LDRLX_NRICHAIN_NOT_SUPPORTED (-22991)
2560/** Import module ordinal is out of bounds. */
2561#define VERR_LDRLX_IMPORT_ORDINAL_OUT_OF_BOUNDS (-22992)
2562/** @} */
2563
2564/** @name RTCrX509 status codes.
2565 * @{ */
2566/** Generic X.509 error. */
2567#define VERR_CR_X509_GENERIC_ERROR (-23000)
2568/** Internal error in the X.509 code. */
2569#define VERR_CR_X509_INTERNAL_ERROR (-23001)
2570/** Internal error in the X.509 certificate path building and verification
2571 * code. */
2572#define VERR_CR_X509_CERTPATHS_INTERNAL_ERROR (-23002)
2573/** Path not verified yet. */
2574#define VERR_CR_X509_NOT_VERIFIED (-23003)
2575/** The certificate path has no trust anchor. */
2576#define VERR_CR_X509_NO_TRUST_ANCHOR (-23004)
2577/** Unknown X.509 certificate signature algorithm. */
2578#define VERR_CR_X509_UNKNOWN_CERT_SIGN_ALGO (-23005)
2579/** Certificate signature algorithm mismatch. */
2580#define VERR_CR_X509_CERT_SIGN_ALGO_MISMATCH (-23006)
2581/** The signature algorithm in the to-be-signed certificate part does not match
2582 * the one associated with the signature. */
2583#define VERR_CR_X509_CERT_TBS_SIGN_ALGO_MISMATCH (-23007)
2584/** Certificate extensions requires certificate version 3 or later. */
2585#define VERR_CR_X509_TBSCERT_EXTS_REQ_V3 (-23008)
2586/** Unique issuer and subject IDs require version certificate 2. */
2587#define VERR_CR_X509_TBSCERT_UNIQUE_IDS_REQ_V2 (-23009)
2588/** Certificate serial number length is out of bounds. */
2589#define VERR_CR_X509_TBSCERT_SERIAL_NUMBER_OUT_OF_BOUNDS (-23010)
2590/** Unsupported X.509 certificate version. */
2591#define VERR_CR_X509_TBSCERT_UNSUPPORTED_VERSION (-23011)
2592/** Public key is too small. */
2593#define VERR_CR_X509_PUBLIC_KEY_TOO_SMALL (-23012)
2594/** Invalid string tag for a X.509 name object. */
2595#define VERR_CR_X509_INVALID_NAME_STRING_TAG (-23013)
2596/** Empty string in X.509 name object. */
2597#define VERR_CR_X509_NAME_EMPTY_STRING (-23014)
2598/** Non-string object inside X.509 name object. */
2599#define VERR_CR_X509_NAME_NOT_STRING (-23015)
2600/** Empty set inside X.509 name. */
2601#define VERR_CR_X509_NAME_EMPTY_SET (-23016)
2602/** Empty sub-string set inside X.509 name. */
2603#define VERR_CR_X509_NAME_EMPTY_SUB_SET (-23017)
2604/** The NotBefore and NotAfter values of an X.509 Validity object seems to
2605 * have been swapped around. */
2606#define VERR_CR_X509_VALIDITY_SWAPPED (-23018)
2607/** Duplicate certificate extension. */
2608#define VERR_CR_X509_TBSCERT_DUPLICATE_EXTENSION (-23019)
2609/** Missing relative distinguished name map entry. */
2610#define VERR_CR_X509_NAME_MISSING_RDN_MAP_ENTRY (-23020)
2611/** Certificate path validator: No trusted certificate paths. */
2612#define VERR_CR_X509_CPV_NO_TRUSTED_PATHS (-23021)
2613/** Certificate path validator: No valid certificate policy. */
2614#define VERR_CR_X509_CPV_NO_VALID_POLICY (-23022)
2615/** Certificate path validator: Unknown critical certificate extension. */
2616#define VERR_CR_X509_CPV_UNKNOWN_CRITICAL_EXTENSION (-23023)
2617/** Certificate path validator: Intermediate certificate is missing the
2618 * KeyCertSign usage flag. */
2619#define VERR_CR_X509_CPV_MISSING_KEY_CERT_SIGN (-23024)
2620/** Certificate path validator: Hit the max certificate path length before
2621 * reaching trust anchor. */
2622#define VERR_CR_X509_CPV_MAX_PATH_LENGTH (-23025)
2623/** Certificate path validator: Intermediate certificate is not marked as a
2624 * certificate authority (CA). */
2625#define VERR_CR_X509_CPV_NOT_CA_CERT (-23026)
2626/** Certificate path validator: Intermediate certificate is not a version 3
2627 * certificate. */
2628#define VERR_CR_X509_CPV_NOT_V3_CERT (-23027)
2629/** Certificate path validator: Invalid policy mapping (to/from anyPolicy). */
2630#define VERR_CR_X509_CPV_INVALID_POLICY_MAPPING (-23028)
2631/** Certificate path validator: Name constraints permits no names. */
2632#define VERR_CR_X509_CPV_NO_PERMITTED_NAMES (-23029)
2633/** Certificate path validator: Name constraints does not permits the
2634 * certificate name. */
2635#define VERR_CR_X509_CPV_NAME_NOT_PERMITTED (-23030)
2636/** Certificate path validator: Name constraints does not permits the
2637 * alternative certificate name. */
2638#define VERR_CR_X509_CPV_ALT_NAME_NOT_PERMITTED (-23031)
2639/** Certificate path validator: Intermediate certificate subject does not
2640 * match child issuer property. */
2641#define VERR_CR_X509_CPV_ISSUER_MISMATCH (-23032)
2642/** Certificate path validator: The certificate is not valid at the
2643 * specified time. */
2644#define VERR_CR_X509_CPV_NOT_VALID_AT_TIME (-23033)
2645/** Certificate path validator: Unexpected choice found in general subtree
2646 * object (name constraints). */
2647#define VERR_CR_X509_CPV_UNEXP_GENERAL_SUBTREE_CHOICE (-23034)
2648/** Certificate path validator: Unexpected minimum value found in general
2649 * subtree object (name constraints). */
2650#define VERR_CR_X509_CPV_UNEXP_GENERAL_SUBTREE_MIN (-23035)
2651/** Certificate path validator: Unexpected maximum value found in
2652 * general subtree object (name constraints). */
2653#define VERR_CR_X509_CPV_UNEXP_GENERAL_SUBTREE_MAX (-23036)
2654/** Certificate path builder: Encountered bad certificate context. */
2655#define VERR_CR_X509_CPB_BAD_CERT_CTX (-23037)
2656/** OpenSSL d2i_X509 failed. */
2657#define VERR_CR_X509_OSSL_D2I_FAILED (-23090)
2658/** @} */
2659
2660/** @name RTCrPkcs7 status codes.
2661 * @{ */
2662/** Generic PKCS \#7 error. */
2663#define VERR_CR_PKCS7_GENERIC_ERROR (-23300)
2664/** Signed data verification failed because there are zero signer infos. */
2665#define VERR_CR_PKCS7_NO_SIGNER_INFOS (-23301)
2666/** Signed data certificate not found. */
2667#define VERR_CR_PKCS7_SIGNED_DATA_CERT_NOT_FOUND (-23302)
2668/** Signed data verification failed due to key usage issues. */
2669#define VERR_CR_PKCS7_KEY_USAGE_MISMATCH (-23303)
2670/** Signed data verification failed because of missing (or duplicate)
2671 * authenticated content-type attribute. */
2672#define VERR_CR_PKCS7_MISSING_CONTENT_TYPE_ATTRIB (-23304)
2673/** Signed data verification failed because of the authenticated content-type
2674 * attribute did not match. */
2675#define VERR_CR_PKCS7_CONTENT_TYPE_ATTRIB_MISMATCH (-23305)
2676/** Signed data verification failed because of a malformed authenticated
2677 * content-type attribute. */
2678#define VERR_CR_PKCS7_BAD_CONTENT_TYPE_ATTRIB (-23306)
2679/** Signed data verification failed because of missing (or duplicate)
2680 * authenticated message-digest attribute. */
2681#define VERR_CR_PKCS7_MISSING_MESSAGE_DIGEST_ATTRIB (-23307)
2682/** Signed data verification failed because the authenticated message-digest
2683 * attribute did not match. */
2684#define VERR_CR_PKCS7_MESSAGE_DIGEST_ATTRIB_MISMATCH (-23308)
2685/** Signed data verification failed because of a malformed authenticated
2686 * message-digest attribute. */
2687#define VERR_CR_PKCS7_BAD_MESSAGE_DIGEST_ATTRIB (-23309)
2688/** Signature verification failed. */
2689#define VERR_CR_PKCS7_SIGNATURE_VERIFICATION_FAILED (-23310)
2690/** Internal PKCS \#7 error. */
2691#define VERR_CR_PKCS7_INTERNAL_ERROR (-22311)
2692/** OpenSSL d2i_PKCS7 failed. */
2693#define VERR_CR_PKCS7_OSSL_D2I_FAILED (-22312)
2694/** OpenSSL PKCS \#7 verification failed. */
2695#define VERR_CR_PKCS7_OSSL_VERIFY_FAILED (-22313)
2696/** Digest algorithm parameters are not supported by the PKCS \#7 code. */
2697#define VERR_CR_PKCS7_DIGEST_PARAMS_NOT_IMPL (-22314)
2698/** The digest algorithm of a signer info entry was not found in the list of
2699 * digest algorithms in the signed data. */
2700#define VERR_CR_PKCS7_DIGEST_ALGO_NOT_FOUND_IN_LIST (-22315)
2701/** The PKCS \#7 content is not signed data. */
2702#define VERR_CR_PKCS7_NOT_SIGNED_DATA (-22316)
2703/** No digest algorithms listed in PKCS \#7 signed data. */
2704#define VERR_CR_PKCS7_NO_DIGEST_ALGORITHMS (-22317)
2705/** Too many digest algorithms used by PKCS \#7 signed data. This is an
2706 * internal limitation of the code that aims at saving kernel stack space. */
2707#define VERR_CR_PKCS7_TOO_MANY_DIGEST_ALGORITHMS (-22318)
2708/** Error creating digest algorithm calculator. */
2709#define VERR_CR_PKCS7_DIGEST_CREATE_ERROR (-22319)
2710/** Error while calculating a digest for a PKCS \#7 verification operation. */
2711#define VERR_CR_PKCS7_DIGEST_CALC_ERROR (-22320)
2712/** Unsupported PKCS \#7 signed data version. */
2713#define VERR_CR_PKCS7_SIGNED_DATA_VERSION (-22350)
2714/** PKCS \#7 signed data has no digest algorithms listed. */
2715#define VERR_CR_PKCS7_SIGNED_DATA_NO_DIGEST_ALGOS (-22351)
2716/** Unknown digest algorithm used by PKCS \#7 object. */
2717#define VERR_CR_PKCS7_UNKNOWN_DIGEST_ALGORITHM (-22352)
2718/** Expected PKCS \#7 object to ship at least one certificate. */
2719#define VERR_CR_PKCS7_NO_CERTIFICATES (-22353)
2720/** Expected PKCS \#7 object to not contain any CRLs. */
2721#define VERR_CR_PKCS7_EXPECTED_NO_CRLS (-22354)
2722/** Expected PKCS \#7 object to contain exactly on signer info entry. */
2723#define VERR_CR_PKCS7_EXPECTED_ONE_SIGNER_INFO (-22355)
2724/** Unsupported PKCS \#7 signer info version. */
2725#define VERR_CR_PKCS7_SIGNER_INFO_VERSION (-22356)
2726/** PKCS \#7 singer info contains no issuer serial number. */
2727#define VERR_CR_PKCS7_SIGNER_INFO_NO_ISSUER_SERIAL_NO (-22357)
2728/** Expected PKCS \#7 object to ship the signer certificate(s). */
2729#define VERR_CR_PKCS7_SIGNER_CERT_NOT_SHIPPED (-22358)
2730/** The encrypted digest algorithm does not match the one in the certificate. */
2731#define VERR_CR_PKCS7_SIGNER_INFO_DIGEST_ENCRYPT_MISMATCH (-22359)
2732/** @} */
2733
2734/** @name RTCrSpc status codes.
2735 * @{ */
2736/** Generic SPC error. */
2737#define VERR_CR_SPC_GENERIC_ERROR (-23400)
2738/** SPC requires there to be exactly one SignerInfo entry. */
2739#define VERR_CR_SPC_NOT_EXACTLY_ONE_SIGNER_INFOS (-23401)
2740/** There shall be exactly one digest algorithm to go with the single
2741 * SingerInfo entry required by SPC. */
2742#define VERR_CR_SPC_NOT_EXACTLY_ONE_DIGEST_ALGO (-23402)
2743/** The digest algorithm in the SignerInfo does not match the one in the
2744 * indirect data. */
2745#define VERR_CR_SPC_SIGNED_IND_DATA_DIGEST_ALGO_MISMATCH (-23403)
2746/** The digest algorithm in the indirect data was not found in the list of
2747 * digest algorithms in the signed data structure. */
2748#define VERR_CR_SPC_IND_DATA_DIGEST_ALGO_NOT_IN_DIGEST_ALGOS (-23404)
2749/** The digest algorithm is not known to us. */
2750#define VERR_CR_SPC_UNKNOWN_DIGEST_ALGO (-23405)
2751/** The indirect data digest size does not match the digest algorithm. */
2752#define VERR_CR_SPC_IND_DATA_DIGEST_SIZE_MISMATCH (-23406)
2753/** Expected PE image data inside indirect data object. */
2754#define VERR_CR_SPC_EXPECTED_PE_IMAGE_DATA (-23407)
2755/** Internal SPC error: The PE image data is missing. */
2756#define VERR_CR_SPC_PEIMAGE_DATA_NOT_PRESENT (-23408)
2757/** Bad SPC object moniker UUID field. */
2758#define VERR_CR_SPC_BAD_MONIKER_UUID (-23409)
2759/** Unknown SPC object moniker UUID. */
2760#define VERR_CR_SPC_UNKNOWN_MONIKER_UUID (-23410)
2761/** Internal SPC error: Bad object moniker choice value. */
2762#define VERR_CR_SPC_BAD_MONIKER_CHOICE (-23411)
2763/** Internal SPC error: Bad object moniker data pointer. */
2764#define VERR_CR_SPC_MONIKER_BAD_DATA (-23412)
2765/** Multiple PE image page hash tables. */
2766#define VERR_CR_SPC_PEIMAGE_MULTIPLE_HASH_TABS (-23413)
2767/** Unknown SPC PE image attribute. */
2768#define VERR_CR_SPC_PEIMAGE_UNKNOWN_ATTRIBUTE (-23414)
2769/** URL not expected in SPC PE image data. */
2770#define VERR_CR_SPC_PEIMAGE_URL_UNEXPECTED (-23415)
2771/** PE image data without any valid content was not expected. */
2772#define VERR_CR_SPC_PEIMAGE_NO_CONTENT (-23416)
2773/** @} */
2774
2775/** @name RTCrPkix status codes.
2776 * @{ */
2777/** Generic PKCS \#7 error. */
2778#define VERR_CR_PKIX_GENERIC_ERROR (-23500)
2779/** Parameters was presented to a signature schema that does not take any. */
2780#define VERR_CR_PKIX_SIGNATURE_TAKES_NO_PARAMETERS (-23501)
2781/** Unknown hash digest type. */
2782#define VERR_CR_PKIX_UNKNOWN_DIGEST_TYPE (-23502)
2783/** Internal error. */
2784#define VERR_CR_PKIX_INTERNAL_ERROR (-23503)
2785/** The hash is too long for the key used when signing/verifying. */
2786#define VERR_CR_PKIX_HASH_TOO_LONG_FOR_KEY (-23504)
2787/** The signature is too long for the scratch buffer. */
2788#define VERR_CR_PKIX_SIGNATURE_TOO_LONG (-23505)
2789/** The signature is greater than or equal to the key. */
2790#define VERR_CR_PKIX_SIGNATURE_GE_KEY (-23506)
2791/** The signature is negative. */
2792#define VERR_CR_PKIX_SIGNATURE_NEGATIVE (-23507)
2793/** Invalid signature length. */
2794#define VERR_CR_PKIX_INVALID_SIGNATURE_LENGTH (-23508)
2795/** PKIX signature no does not match up to the current data. */
2796#define VERR_CR_PKIX_SIGNATURE_MISMATCH (-23509)
2797/** PKIX cipher algorithm parameters are not implemented. */
2798#define VERR_CR_PKIX_CIPHER_ALGO_PARAMS_NOT_IMPL (-23510)
2799/** Cipher algorithm is not known to us. */
2800#define VERR_CR_PKIX_CIPHER_ALGO_NOT_KNOWN (-23511)
2801/** PKIX cipher algorithm is not known to OpenSSL. */
2802#define VERR_CR_PKIX_OSSL_CIPHER_ALGO_NOT_KNOWN (-23512)
2803/** PKIX cipher algorithm is not known to OpenSSL EVP API. */
2804#define VERR_CR_PKIX_OSSL_CIPHER_ALGO_NOT_KNOWN_EVP (-23513)
2805/** OpenSSL failed to init PKIX cipher algorithm context. */
2806#define VERR_CR_PKIX_OSSL_CIPHER_ALOG_INIT_FAILED (-23514)
2807/** Final OpenSSL PKIX verification failed. */
2808#define VERR_CR_PKIX_OSSL_VERIFY_FINAL_FAILED (-23515)
2809/** OpenSSL failed to decode the public key. */
2810#define VERR_CR_PKIX_OSSL_D2I_PUBLIC_KEY_FAILED (-23516)
2811/** The EVP_PKEY_type API in OpenSSL failed. */
2812#define VERR_CR_PKIX_OSSL_EVP_PKEY_TYPE_ERROR (-23517)
2813/** OpenSSL failed to decode the public key. */
2814#define VERR_CR_PKIX_OSSL_D2I_PRIVATE_KEY_FAILED (-23518)
2815/** The EVP_PKEY_CTX_set_rsa_padding API in OpenSSL failed. */
2816#define VERR_CR_PKIX_OSSL_EVP_PKEY_RSA_PAD_ERROR (-23519)
2817/** Final OpenSSL PKIX signing failed. */
2818#define VERR_CR_PKIX_OSSL_SIGN_FINAL_FAILED (-23520)
2819/** OpenSSL and IPRT disagree on the signature size. */
2820#define VERR_CR_PKIX_OSSL_VS_IPRT_SIGNATURE_SIZE (-23521)
2821/** OpenSSL and IPRT disagree on the signature. */
2822#define VERR_CR_PKIX_OSSL_VS_IPRT_SIGNATURE (-23522)
2823/** Expected RSA private key. */
2824#define VERR_CR_PKIX_NOT_RSA_PRIVATE_KEY (-23523)
2825/** Expected RSA public key. */
2826#define VERR_CR_PKIX_NOT_RSA_PUBLIC_KEY (-23524)
2827/** @} */
2828
2829/** @name RTCrStore status codes.
2830 * @{ */
2831/** Generic store error. */
2832#define VERR_CR_STORE_GENERIC_ERROR (-23700)
2833/** @} */
2834
2835/** @name RTCrKey status codes.
2836 * @{ */
2837/** Could not recognize the key type. */
2838#define VERR_CR_KEY_UNKNOWN_TYPE (-23800)
2839/** Unsupported key format. */
2840#define VERR_CR_KEY_FORMAT_NOT_SUPPORTED (-23801)
2841/** Key encrypted but no password was given. */
2842#define VERR_CR_KEY_ENCRYPTED (-23802)
2843/** The key was marked as encrypted by no DEK-Info field with the encryption
2844 * algortihms was found. */
2845#define VERR_CR_KEY_NO_DEK_INFO (-23803)
2846/** The algorithms part of the DEK-Info field is too long. */
2847#define VERR_CR_KEY_DEK_INFO_TOO_LONG (-23804)
2848/** Key decryption is not supported. */
2849#define VERR_CR_KEY_DECRYPTION_NOT_SUPPORTED (-23805)
2850/** Unsupported key encryption cipher. */
2851#define VERR_CR_KEY_UNSUPPORTED_CIPHER (-23806)
2852/** Found unexpected cipher parameters for encrypted key. */
2853#define VERR_CR_KEY_UNEXPECTED_CIPHER_PARAMS (-23807)
2854/** Missing ciper parameters for encrypted key. */
2855#define VERR_CR_KEY_MISSING_CIPHER_PARAMS (-23808)
2856/** To short initialization vector for encrypted key ciper. */
2857#define VERR_CR_KEY_TOO_SHORT_CIPHER_IV (-23809)
2858/** Malformed initialization vector for encrypted key ciper. */
2859#define VERR_CR_KEY_MALFORMED_CIPHER_IV (-23810)
2860/** Error encoding the password for key decryption. */
2861#define VERR_CR_KEY_PASSWORD_ENCODING (-23811)
2862/** EVP_DecryptInit_ex failed. */
2863#define VERR_CR_KEY_OSSL_DECRYPT_INIT_ERROR (-23812)
2864/** Key decryption failed, perhaps due to an incorrect password. */
2865#define VERR_CR_KEY_DECRYPTION_FAILED (-23813)
2866/** The key was decrypted. */
2867#define VINF_CR_KEY_WAS_DECRYPTED (23814)
2868/** Failed to generate RSA key. */
2869#define VERR_CR_KEY_GEN_FAILED_RSA (-23815)
2870/** @} */
2871
2872/** @name RTCrRsa status codes.
2873 * @{ */
2874/** Generic RSA error. */
2875#define VERR_CR_RSA_GENERIC_ERROR (-23900)
2876/** @} */
2877
2878/** @name RTBigNum status codes.
2879 * @{ */
2880/** Sensitive input requires the result(s) to be initialized as sensitive. */
2881#define VERR_BIGNUM_SENSITIVE_INPUT (-24000)
2882/** Attempt to divide by zero. */
2883#define VERR_BIGNUM_DIV_BY_ZERO (-24001)
2884/** Negative exponent makes no sense to integer math. */
2885#define VERR_BIGNUM_NEGATIVE_EXPONENT (-24002)
2886
2887/** @} */
2888
2889/** @name RTCrDigest status codes.
2890 * @{ */
2891/** OpenSSL failed to initialize the digest algorithm context. */
2892#define VERR_CR_DIGEST_OSSL_DIGEST_INIT_ERROR (-24200)
2893/** OpenSSL failed to clone the digest algorithm context. */
2894#define VERR_CR_DIGEST_OSSL_DIGEST_CTX_COPY_ERROR (-24201)
2895/** Deprecated digest. */
2896#define VINF_CR_DIGEST_DEPRECATED (24202)
2897/** Deprecated digest. */
2898#define VERR_CR_DIGEST_DEPRECATED (-24202)
2899/** Compromised digest. */
2900#define VINF_CR_DIGEST_COMPROMISED (24203)
2901/** Compromised digest. */
2902#define VERR_CR_DIGEST_COMPROMISED (-24203)
2903/** Severely compromised digest. */
2904#define VINF_CR_DIGEST_SEVERELY_COMPROMISED (24204)
2905/** Severely compromised digest. */
2906#define VERR_CR_DIGEST_SEVERELY_COMPROMISED (-24204)
2907/** Specified digest not supported in this context. */
2908#define VERR_CR_DIGEST_NOT_SUPPORTED (-24205)
2909/** @} */
2910
2911/** @name RTCr misc status codes.
2912 * @{ */
2913/** Failed to derivate key from password. */
2914#define VERR_CR_PASSWORD_2_KEY_DERIVIATION_FAILED (-24396)
2915/** Failed getting cryptographically strong random bytes. */
2916#define VERR_CR_RANDOM_SETUP_FAILED (-24397)
2917/** Failed getting cryptographically strong random bytes. */
2918#define VERR_CR_RANDOM_FAILED (-24398)
2919/** Malformed or failed to parse PEM formatted data. */
2920#define VERR_CR_MALFORMED_PEM_HEADER (-24399)
2921/** @} */
2922
2923/** @name RTPath status codes.
2924 * @{ */
2925/** Unknown glob variable. */
2926#define VERR_PATH_MATCH_UNKNOWN_VARIABLE (-24400)
2927/** The specified glob variable must be first in the pattern. */
2928#define VERR_PATH_MATCH_VARIABLE_MUST_BE_FIRST (-24401)
2929/** Hit unimplemented glob pattern matching feature. */
2930#define VERR_PATH_MATCH_FEATURE_NOT_IMPLEMENTED (-24402)
2931/** Unknown character class in glob pattern. */
2932#define VERR_PATH_GLOB_UNKNOWN_CHAR_CLASS (-24403)
2933/** @} */
2934
2935/** @name RTUri status codes.
2936 * @{ */
2937/** The URI is empty */
2938#define VERR_URI_EMPTY (-24600)
2939/** The URI is too short to be a valid URI. */
2940#define VERR_URI_TOO_SHORT (-24601)
2941/** Invalid scheme. */
2942#define VERR_URI_INVALID_SCHEME (-24602)
2943/** Invalid port number. */
2944#define VERR_URI_INVALID_PORT_NUMBER (-24603)
2945/** Invalid escape sequence. */
2946#define VERR_URI_INVALID_ESCAPE_SEQ (-24604)
2947/** Escape URI char decodes as zero (the C string terminator). */
2948#define VERR_URI_ESCAPED_ZERO (-24605)
2949/** Escaped URI characters does not decode to valid UTF-8. */
2950#define VERR_URI_ESCAPED_CHARS_NOT_VALID_UTF8 (-24606)
2951/** Escaped URI character is not a valid UTF-8 lead byte. */
2952#define VERR_URI_INVALID_ESCAPED_UTF8_LEAD_BYTE (-24607)
2953/** Escaped URI character sequence with invalid UTF-8 continutation byte. */
2954#define VERR_URI_INVALID_ESCAPED_UTF8_CONTINUATION_BYTE (-24608)
2955/** Missing UTF-8 continutation in escaped URI character sequence. */
2956#define VERR_URI_MISSING_UTF8_CONTINUATION_BYTE (-24609)
2957/** Expected URI using the 'file:' scheme. */
2958#define VERR_URI_NOT_FILE_SCHEME (-24610)
2959/** @} */
2960
2961/** @name RTJson status codes.
2962 * @{ */
2963/** The called method does not work with the value type of the given JSON value. */
2964#define VERR_JSON_VALUE_INVALID_TYPE (-24700)
2965/** The iterator reached the end. */
2966#define VERR_JSON_ITERATOR_END (-24701)
2967/** The JSON document is malformed. */
2968#define VERR_JSON_MALFORMED (-24702)
2969/** Object or array is empty. */
2970#define VERR_JSON_IS_EMPTY (-24703)
2971/** Invalid UTF-16 escape sequence. */
2972#define VERR_JSON_INVALID_UTF16_ESCAPE_SEQUENCE (-24704)
2973/** Missing UTF-16 surrogate pair. */
2974#define VERR_JSON_MISSING_SURROGATE_PAIR (-24705)
2975/** Bad UTF-16 surrogate pair sequence. */
2976#define VERR_JSON_BAD_SURROGATE_PAIR_SEQUENCE (-24706)
2977/** Invalid codepoint. */
2978#define VERR_JSON_INVALID_CODEPOINT (-24707)
2979/** @} */
2980
2981/** @name RTVfs status codes.
2982 * @{ */
2983/** Unknown file system format. */
2984#define VERR_VFS_UNKNOWN_FORMAT (-24800)
2985/** Found bogus values in the file system. */
2986#define VERR_VFS_BOGUS_FORMAT (-24801)
2987/** Found bogus offset in the file system. */
2988#define VERR_VFS_BOGUS_OFFSET (-24802)
2989/** Unsupported file system format. */
2990#define VERR_VFS_UNSUPPORTED_FORMAT (-24803)
2991/** Unsupported create type in an RTVfsObjOpen or RTVfsDirOpenObj call. */
2992#define VERR_VFS_UNSUPPORTED_CREATE_TYPE (-24804)
2993/** @} */
2994
2995/** @name RTFsIsoMaker status codes.
2996 * @{ */
2997/** No validation entry in the boot catalog. */
2998#define VERR_ISOMK_BOOT_CAT_NO_VALIDATION_ENTRY (-25000)
2999/** No default entry in the boot catalog. */
3000#define VERR_ISOMK_BOOT_CAT_NO_DEFAULT_ENTRY (-25001)
3001/** Expected section header. */
3002#define VERR_ISOMK_BOOT_CAT_EXPECTED_SECTION_HEADER (-25002)
3003/** Entry in a boot catalog section is empty. */
3004#define VERR_ISOMK_BOOT_CAT_EMPTY_ENTRY (-25003)
3005/** Entry in a boot catalog section is another section. */
3006#define VERR_ISOMK_BOOT_CAT_INVALID_SECTION_SIZE (-25004)
3007/** Unsectioned boot catalog entry. */
3008#define VERR_ISOMK_BOOT_CAT_ERRATIC_ENTRY (-25005)
3009/** The file is too big for the current ISO level (4GB+ sized files
3010 * requires ISO level 3). */
3011#define VERR_ISOMK_FILE_TOO_BIG_REQ_ISO_LEVEL_3 (-25006)
3012/** Cannot add symbolic link to namespace which isn't configured to support it. */
3013#define VERR_ISOMK_SYMLINK_REQ_ROCK_RIDGE (-25007)
3014/** Cannot add symbolic link to one of the selected namespaces. */
3015#define VINF_ISOMK_SYMLINK_REQ_ROCK_RIDGE (25007)
3016/** Cannot add symbolic link because no namespace is configured to support it. */
3017#define VERR_ISOMK_SYMLINK_SUPPORT_DISABLED (-25008)
3018/** No space for rock ridge 'CE' entry in directory record. */
3019#define VERR_ISOMK_RR_NO_SPACE_FOR_CE (-25009)
3020/** Internal ISO maker error: Rock ridge read problem. */
3021#define VERR_ISOMK_IPE_RR_READ (-25010)
3022/** Internal ISO maker error: Buggy namespace table. */
3023#define VERR_ISOMK_IPE_TABLE (-25011)
3024/** Internal ISO maker error: Namespace problem \#1. */
3025#define VERR_ISOMK_IPE_NAMESPACE_1 (-25012)
3026/** Internal ISO maker error: Namespace problem \#2. */
3027#define VERR_ISOMK_IPE_NAMESPACE_2 (-25013)
3028/** Internal ISO maker error: Namespace problem \#3. */
3029#define VERR_ISOMK_IPE_NAMESPACE_3 (-25014)
3030/** Internal ISO maker error: Namespace problem \#4. */
3031#define VERR_ISOMK_IPE_NAMESPACE_4 (-25015)
3032/** Internal ISO maker error: Namespace problem \#5. */
3033#define VERR_ISOMK_IPE_NAMESPACE_5 (-25016)
3034/** Internal ISO maker error: Namespace problem \#6. */
3035#define VERR_ISOMK_IPE_NAMESPACE_6 (-25017)
3036/** Internal ISO maker error: Empty path. */
3037#define VERR_ISOMK_IPE_EMPTY_PATH (-25018)
3038/** Internal ISO maker error: Unexpected empty component. */
3039#define VERR_ISOMK_IPE_EMPTY_COMPONENT (-25019)
3040/** Internal ISO maker error: Expected path to start with root slash. */
3041#define VERR_ISOMK_IPE_ROOT_SLASH (-25020)
3042/** Internal ISO maker error: Descriptor miscounting. */
3043#define VERR_ISOMK_IPE_DESC_COUNT (-25021)
3044/** Internal ISO maker error: Buffer size. */
3045#define VERR_ISOMK_IPE_BUFFER_SIZE (-25022)
3046/** Internal ISO maker error: Boot catalog file handle problem. */
3047#define VERR_ISOMK_IPE_BOOT_CAT_FILE (-25023)
3048/** Internal ISO maker error: Inconsistency produing trans.tbl file. */
3049#define VERR_ISOMK_IPE_PRODUCE_TRANS_TBL (-25024)
3050/** Internal ISO maker error: Read file data probem \#1. */
3051#define VERR_ISOMK_IPE_READ_FILE_DATA_1 (-25025)
3052/** Internal ISO maker error: Read file data probem \#2. */
3053#define VERR_ISOMK_IPE_READ_FILE_DATA_2 (-25026)
3054/** Internal ISO maker error: Read file data probem \#3. */
3055#define VERR_ISOMK_IPE_READ_FILE_DATA_3 (-25027)
3056/** Internal ISO maker error: Finalization problem \#1. */
3057#define VERR_ISOMK_IPE_FINALIZE_1 (-25028)
3058/** The spill file grew larger than 4GB. */
3059#define VERR_ISOMK_RR_SPILL_FILE_FULL (-25029)
3060
3061/** Requested to import an unknown ISO format. */
3062#define VERR_ISOMK_IMPORT_UNKNOWN_FORMAT (-25100)
3063/** Too many volume descriptors in the import ISO. */
3064#define VERR_ISOMK_IMPORT_TOO_MANY_VOL_DESCS (-25101)
3065/** Import ISO contains a bad volume descriptor header. */
3066#define VERR_ISOMK_IMPORT_INVALID_VOL_DESC_HDR (-25102)
3067/** Import ISO contains more than one primary volume descriptor. */
3068#define VERR_ISOMK_IMPORT_MULTIPLE_PRIMARY_VOL_DESCS (-25103)
3069/** Import ISO contains more than one el torito descriptor. */
3070#define VERR_ISOMK_IMPORT_MULTIPLE_EL_TORITO_DESCS (-25104)
3071/** Import ISO contains more than one joliet volume descriptor. */
3072#define VERR_ISOMK_IMPORT_MULTIPLE_JOLIET_VOL_DESCS (-25105)
3073/** Import ISO starts with supplementary volume descriptor before any
3074 * primary ones. */
3075#define VERR_ISOMK_IMPORT_SUPPLEMENTARY_BEFORE_PRIMARY (-25106)
3076/** Import ISO contains an unsupported primary volume descriptor version. */
3077#define VERR_IOSMK_IMPORT_PRIMARY_VOL_DESC_VER (-25107)
3078/** Import ISO contains a bad primary volume descriptor. */
3079#define VERR_ISOMK_IMPORT_BAD_PRIMARY_VOL_DESC (-25108)
3080/** Import ISO contains an unsupported supplementary volume descriptor
3081 * version. */
3082#define VERR_IOSMK_IMPORT_SUP_VOL_DESC_VER (-25109)
3083/** Import ISO contains a bad supplementary volume descriptor. */
3084#define VERR_ISOMK_IMPORT_BAD_SUP_VOL_DESC (-25110)
3085/** Import ISO uses a logical block size other than 2KB. */
3086#define VERR_ISOMK_IMPORT_LOGICAL_BLOCK_SIZE_NOT_2KB (-25111)
3087/** Import ISO contains more than volume. */
3088#define VERR_ISOMK_IMPORT_MORE_THAN_ONE_VOLUME_IN_SET (-25112)
3089/** Import ISO uses invalid volume sequence number. */
3090#define VERR_ISOMK_IMPORT_INVALID_VOLUMNE_SEQ_NO (-25113)
3091/** Import ISO has different volume space sizes of primary and supplementary
3092 * volume descriptors. */
3093#define VERR_ISOMK_IMPORT_VOLUME_SPACE_SIZE_MISMATCH (-25114)
3094/** Import ISO has different volume set sizes of primary and supplementary
3095 * volume descriptors. */
3096#define VERR_ISOMK_IMPORT_VOLUME_IN_SET_MISMATCH (-25115)
3097/** Import ISO contains a bad root directory record. */
3098#define VERR_ISOMK_IMPORT_BAD_ROOT_DIR_REC (-25116)
3099/** Import ISO contains a zero sized root directory. */
3100#define VERR_ISOMK_IMPORT_ZERO_SIZED_ROOT_DIR (-25117)
3101/** Import ISO contains a root directory with a mismatching volume sequence
3102 * number. */
3103#define VERR_ISOMK_IMPORT_ROOT_VOLUME_SEQ_NO (-25118)
3104/** Import ISO contains a root directory with an out of bounds data extent. */
3105#define VERR_ISOMK_IMPORT_ROOT_DIR_EXTENT_OUT_OF_BOUNDS (-25119)
3106/** Import ISO contains a root directory with a bad record length. */
3107#define VERR_ISOMK_IMPORT_BAD_ROOT_DIR_REC_LENGTH (-25120)
3108/** Import ISO contains a root directory without the directory flag set. */
3109#define VERR_ISOMK_IMPORT_ROOT_DIR_WITHOUT_DIR_FLAG (-25121)
3110/** Import ISO contains a root directory with multiple extents. */
3111#define VERR_ISOMK_IMPORT_ROOT_DIR_IS_MULTI_EXTENT (-25122)
3112/** Import ISO contains a too deep directory subtree. */
3113#define VERR_ISOMK_IMPORT_TOO_DEEP_DIR_TREE (-25123)
3114/** Import ISO contains a bad directory record. */
3115#define VERR_ISOMK_IMPORT_BAD_DIR_REC (-25124)
3116/** Import ISO contains a directory record with a mismatching volume sequence
3117 * number. */
3118#define VERR_ISOMK_IMPORT_DIR_REC_VOLUME_SEQ_NO (-25125)
3119/** Import ISO contains a directory with an extent that is out of bounds. */
3120#define VERR_ISOMK_IMPORT_DIR_REC_EXTENT_OUT_OF_BOUNDS (-25126)
3121/** Import ISO contains a directory with a bad record length. */
3122#define VERR_ISOMK_IMPORT_BAD_DIR_REC_LENGTH (-25127)
3123/** Import ISO contains a '.' or '..' directory record with a bad name
3124 * length. */
3125#define VERR_ISOMK_IMPORT_DOT_DIR_REC_BAD_NAME_LENGTH (-25128)
3126/** Import ISO contains a '.' or '..' directory record with a bad name. */
3127#define VERR_ISOMK_IMPORT_DOT_DIR_REC_BAD_NAME (-25129)
3128/** Import ISO contains a directory with a more than one extent, that's
3129 * currently not supported. */
3130#define VERR_ISOMK_IMPORT_DIR_WITH_MORE_EXTENTS (-25130)
3131/** Import ISO contains a multi-extent directory record that differs
3132 * significantly from first record. */
3133#define VERR_ISOMK_IMPORT_MISMATCHING_MULTI_EXTENT_REC (-25131)
3134/** Import ISO contains a non-final multi-extent directory record with a
3135 * size that isn't block aligned. */
3136#define VERR_ISOMK_IMPORT_MISALIGNED_MULTI_EXTENT (-25132)
3137/** Import ISO contains a non-contigiuous multi-extent data, this is
3138 * currently not supported. */
3139#define VERR_ISOMK_IMPORT_NON_CONTIGUOUS_MULTI_EXTENT (-25133)
3140
3141/** The boot catalog block in the import ISO is out of bounds. */
3142#define VERR_ISOMK_IMPORT_BOOT_CAT_BAD_OUT_OF_BOUNDS (-25140)
3143/** The boot catalog block in the import ISO has an incorrect validation
3144 * header ID. */
3145#define VERR_ISOMK_IMPORT_BOOT_CAT_BAD_VALIDATION_HEADER_ID (-25141)
3146/** The boot catalog validation entry in the import ISO has incorrect keys. */
3147#define VERR_ISOMK_IMPORT_BOOT_CAT_BAD_VALIDATION_KEYS (-25142)
3148/** The boot catalog validation entry in the import ISO has an incorrect checksum. */
3149#define VERR_ISOMK_IMPORT_BOOT_CAT_BAD_VALIDATION_CHECKSUM (-25143)
3150/** A boot catalog entry in the import ISO has an unknown type. */
3151#define VERR_ISOMK_IMPORT_BOOT_CAT_UNKNOWN_HEADER_ID (-25144)
3152/** A boot catalog entry in the import ISO has an invalid boot media type. */
3153#define VERR_ISOMK_IMPORT_BOOT_CAT_INVALID_BOOT_MEDIA_TYPE (-25145)
3154/** The default boot catalog entry in the import ISO has invalid flags set. */
3155#define VERR_ISOMK_IMPORT_BOOT_CAT_DEF_ENTRY_INVALID_FLAGS (-25146)
3156/** A boot catalog entry in the import ISO has reserved flag set. */
3157#define VERR_ISOMK_IMPORT_BOOT_CAT_ENTRY_RESERVED_FLAG (-25147)
3158/** A boot catalog entry in the import ISO is using the unused field. */
3159#define VERR_ISOMK_IMPORT_BOOT_CAT_ENTRY_USES_UNUSED_FIELD (-25148)
3160/** A boot catalog entry in the import ISO points to a block after the end of
3161 * the image input file. */
3162#define VERR_ISOMK_IMPORT_BOOT_CAT_ENTRY_IMAGE_OUT_OF_BOUNDS (-25149)
3163/** A boot catalog entry in the import ISO has an image with an
3164 * indeterminate size. */
3165#define VERR_ISOMK_IMPORT_BOOT_CAT_ENTRY_UNKNOWN_IMAGE_SIZE (-25150)
3166/** The boot catalog in the import ISO is larger than a sector or it is
3167 * missing the final section header entry. */
3168#define VERR_ISOMK_IMPORT_BOOT_CAT_MISSING_FINAL_OR_TOO_BIG (-25151)
3169/** The default boot catalog entry in the import ISO an invalid boot
3170 * indicator value. */
3171#define VERR_ISOMK_IMPORT_BOOT_CAT_DEF_ENTRY_INVALID_BOOT_IND (-25152)
3172/** A boot catalog extension entry in the import ISO was either flagged
3173 * incorrectly in the previous entry or has an invalid header ID. */
3174#define VERR_ISOMK_IMPORT_BOOT_CAT_EXT_ENTRY_INVALID_ID (-25153)
3175/** A boot catalog extension entry in the import ISO uses undefined flags
3176 * which will be lost. */
3177#define VERR_ISOMK_IMPORT_BOOT_CAT_EXT_ENTRY_UNDEFINED_FLAGS (-25154)
3178/** A boot catalog extension entry in the import ISO indicates more entries when
3179 * we reached the end of the boot catalog sector. */
3180#define VERR_ISOMK_IMPORT_BOOT_CAT_EXT_ENTRY_END_OF_SECTOR (-25155)
3181/** A boot catalog entry in the import ISO sets the continuation flag when using
3182 * NONE as the selection criteria type. */
3183#define VERR_ISOMK_IMPORT_BOOT_CAT_ENTRY_CONTINUATION_WITH_NONE (-25156)
3184/** A boot catalog entry in the import ISO sets the continuation flag when
3185 * we reached the ned of the boot catalog secotr. */
3186#define VERR_ISOMK_IMPORT_BOOT_CAT_ENTRY_CONTINUATION_EOS (-25157)
3187
3188/** @} */
3189
3190
3191/** @name RTFsIsoVol status codes
3192 * @{ */
3193/** Descriptor tag is all zeros. */
3194#define VERR_ISOFS_TAG_IS_ALL_ZEROS (-25300)
3195/** Unsupported descriptor tag version. */
3196#define VERR_ISOFS_UNSUPPORTED_TAG_VERSION (-25301)
3197/** Bad descriptor tag checksum. */
3198#define VERR_ISOFS_BAD_TAG_CHECKSUM (-25302)
3199/** Descriptor tag sector number mismatch. */
3200#define VERR_ISOFS_TAG_SECTOR_MISMATCH (-25303)
3201/** Descriptor CRC mismatch. */
3202#define VERR_ISOFS_DESC_CRC_MISMATCH (-25304)
3203/** Insufficient data to check descriptor CRC. */
3204#define VERR_ISOFS_INSUFFICIENT_DATA_FOR_DESC_CRC (-25305)
3205/** Unexpected/unknown/bad descriptor in volume descriptor sequence. */
3206#define VERR_ISOFS_UNEXPECTED_VDS_DESC (-25306)
3207/** Too many primary volume descriptors. */
3208#define VERR_ISOFS_TOO_MANY_PVDS (-25307)
3209/** Too many logical volume descriptors. */
3210#define VERR_ISOFS_TOO_MANY_LVDS (-25308)
3211/** Too many partition descriptors. */
3212#define VERR_ISOFS_TOO_MANY_PDS (-25309)
3213/** The logical volume descriptor has a too big partition map. */
3214#define VERR_ISOFS_TOO_BIT_PARTMAP_IN_LVD (-25310)
3215/** No primary volume descriptors found. */
3216#define VERR_ISOFS_NO_PVD (-25311)
3217/** No logical volume descriptors found. */
3218#define VERR_ISOFS_NO_LVD (-25312)
3219/** No partition descriptors found. */
3220#define VERR_ISOFS_NO_PD (-25313)
3221/** Multiple primary volume descriptors found, we can only deal with one. */
3222#define VERR_ISOFS_MULTIPLE_PVDS (-25314)
3223/** Multiple logical volume descriptors found, we can only deal with one. */
3224#define VERR_ISOFS_MULTIPLE_LVDS (-25315)
3225/** Too many partition maps in the logical volume descriptor. */
3226#define VERR_ISOFS_TOO_MANY_PART_MAPS (-25316)
3227/** Malformed partition map table in the logical volume descriptor. */
3228#define VERR_ISOFS_MALFORMED_PART_MAP_TABLE (-25317)
3229/** Unable to find partition descriptor for a partition map table entry. */
3230#define VERR_ISOFS_PARTITION_NOT_FOUND (-25318)
3231/** Partition mapping table is shorted than described. */
3232#define VERR_ISOFS_INCOMPLETE_PART_MAP_TABLE (-25319)
3233/** Unknown partition map entry type. */
3234#define VERR_ISOFS_UNKNOWN_PART_MAP_ENTRY_TYPE (-25320)
3235/** Unkonwn paritition ID found in the partition map table. */
3236#define VERR_ISOFS_UNKNOWN_PART_MAP_TYPE_ID (-25321)
3237/** Support for virtual partitions as not yet been implemented. */
3238#define VERR_ISOFS_VPM_NOT_SUPPORTED (-25322)
3239/** Support for sparable partitions as not yet been implemented. */
3240#define VERR_ISOFS_SPM_NOT_SUPPORTED (-25323)
3241/** Support for metadata partitions as not yet been implemented. */
3242#define VERR_ISOFS_MPM_NOT_SUPPORTED (-25324)
3243/** Invalid or unsupported logical block size. */
3244#define VERR_ISOFS_UNSUPPORTED_LOGICAL_BLOCK_SIZE (-25325)
3245/** Unsupported domain ID in logical volume descriptor. */
3246#define VERR_ISOFS_BAD_LVD_DOMAIN_ID (-25326)
3247/** Malformed or invalid file set descriptor location. */
3248#define VERR_ISOFS_BAD_LVD_FILE_SET_DESC_LOCATION (-25327)
3249/** Non-standard descriptor character set in the logical volume descriptor. */
3250#define VERR_ISOFS_BAD_LVD_DESC_CHAR_SET (-25329)
3251/** Invalid partition index in a location. */
3252#define VERR_ISOFS_INVALID_PARTITION_INDEX (-25330)
3253/** Unsupported file system charset. */
3254#define VERR_ISOFS_FSD_UNSUPPORTED_CHAR_SET (-25331)
3255/** File set descriptor has an zero length or invalid root dir extent. */
3256#define VERR_ISOFS_FSD_ZERO_ROOT_DIR (-25332)
3257/** File set descriptor has a next extent member. */
3258#define VERR_ISOFS_FSD_NEXT_EXTENT (-25333)
3259/** The ICB for is too big. */
3260#define VERR_ISOFS_ICB_TOO_BIG (-25334)
3261/** The ICB for is too small. */
3262#define VERR_ISOFS_ICB_TOO_SMALL (-25335)
3263/** No direct ICB entries found. */
3264#define VERR_ISOFS_NO_DIRECT_ICB_ENTRIES (-25336)
3265/** Too many ICB indirections, possibly a loop. */
3266#define VERR_ISOFS_TOO_MANY_ICB_INDIRECTIONS (-25337)
3267/** Too deep ICB recursion. */
3268#define VERR_ISOFS_TOO_DEEP_ICB_RECURSION (-25338)
3269/** ICB is too small to contain anything useful. */
3270#define VERR_ISOFS_ICB_ENTRY_TOO_SMALL (-25339)
3271/** Unsupported tag encountered in ICB. */
3272#define VERR_ISOFS_UNSUPPORTED_ICB (-25340)
3273/** Bad file entry (ICB). */
3274#define VERR_ISOFS_BAD_FILE_ENTRY (-25341)
3275/** Unknown allocation descriptor type. */
3276#define VERR_ISO_FS_UNKNOWN_AD_TYPE (-25342)
3277/** Malformed extended allocation descriptor. */
3278#define VERR_ISOFS_BAD_EXTAD (-25343)
3279/** Wrong file type. */
3280#define VERR_ISOFS_WRONG_FILE_TYPE (-25344)
3281/** Unknow file type. */
3282#define VERR_ISOFS_UNKNOWN_FILE_TYPE (-25345)
3283
3284/** Not implemented for UDF. */
3285#define VERR_ISOFS_UDF_NOT_IMPLEMENTED (-25390)
3286/** Internal processing error \#1. */
3287#define VERR_ISOFS_IPE_1 (-25391)
3288/** Internal processing error \#2. */
3289#define VERR_ISOFS_IPE_2 (-25392)
3290/** Internal processing error \#3. */
3291#define VERR_ISOFS_IPE_3 (-25393)
3292/** Internal processing error \#4. */
3293#define VERR_ISOFS_IPE_4 (-25394)
3294/** Internal processing error \#5. */
3295#define VERR_ISOFS_IPE_5 (-25395)
3296/** @} */
3297
3298
3299/** @name RTSerialPort status codes
3300 * @{ */
3301/** A break was detected until all requested data could be received. */
3302#define VERR_SERIALPORT_BREAK_DETECTED (-25500)
3303/** The chosen baudrate is invalid or not supported by the given serial port. */
3304#define VERR_SERIALPORT_INVALID_BAUDRATE (-25501)
3305/** @} */
3306
3307
3308/** @name RTCRest status codes
3309 * @{ */
3310/** Do not know how to handle the content type in the server response. */
3311#define VERR_REST_RESPONSE_CONTENT_TYPE_NOT_SUPPORTED (-25700)
3312/** Invalid UTF-8 encoding in the response. */
3313#define VERR_REST_RESPONSE_INVALID_UTF8_ENCODING (-25701)
3314/** Server response contains embedded zero character(s). */
3315#define VERR_REST_RESPONSE_EMBEDDED_ZERO_CHAR (-25702)
3316/** Server response contains unexpected repetitive header field. */
3317#define VERR_REST_RESPONSE_REPEAT_HEADER_FIELD (-25703)
3318/** Unable to decode date value. */
3319#define VWRN_REST_UNABLE_TO_DECODE_DATE (25704)
3320/** Unable to decode date value. */
3321#define VERR_REST_UNABLE_TO_DECODE_DATE (-25704)
3322/** Wrong JSON type for bool value. */
3323#define VERR_REST_WRONG_JSON_TYPE_FOR_BOOL (-25705)
3324/** Wrong JSON type for integer value. */
3325#define VERR_REST_WRONG_JSON_TYPE_FOR_INTEGER (-25706)
3326/** Wrong JSON type for double value. */
3327#define VERR_REST_WRONG_JSON_TYPE_FOR_DOUBLE (-25707)
3328/** Wrong JSON type for string value. */
3329#define VERR_REST_WRONG_JSON_TYPE_FOR_STRING (-25708)
3330/** Wrong JSON type for date value. */
3331#define VERR_REST_WRONG_JSON_TYPE_FOR_DATE (-25709)
3332/** Unable to parse string as bool. */
3333#define VERR_REST_UNABLE_TO_PARSE_STRING_AS_BOOL (-25710)
3334/** A path parameter was not set. */
3335#define VERR_REST_PATH_PARAMETER_NOT_SET (-25711)
3336/** A required query parameter was not set. */
3337#define VERR_REST_REQUIRED_QUERY_PARAMETER_NOT_SET (-25712)
3338/** A required header parmaeter was not set. */
3339#define VERR_REST_REQUIRED_HEADER_PARAMETER_NOT_SET (-25713)
3340
3341/** Internal error \#1. */
3342#define VERR_REST_INTERNAL_ERROR_1 (-25791)
3343/** Internal error \#2. */
3344#define VERR_REST_INTERNAL_ERROR_2 (-25792)
3345/** Internal error \#3. */
3346#define VERR_REST_INTERNAL_ERROR_3 (-25793)
3347/** Internal error \#4. */
3348#define VERR_REST_INTERNAL_ERROR_4 (-25794)
3349/** Internal error \#5. */
3350#define VERR_REST_INTERNAL_ERROR_5 (-25795)
3351/** Internal error \#6. */
3352#define VERR_REST_INTERNAL_ERROR_6 (-25796)
3353/** Internal error \#7. */
3354#define VERR_REST_INTERNAL_ERROR_7 (-25797)
3355/** Internal error \#8. */
3356#define VERR_REST_INTERNAL_ERROR_8 (-25798)
3357/** Internal error \#9. */
3358#define VERR_REST_INTERNAL_ERROR_9 (-25799)
3359/** @} */
3360
3361
3362/** @name RTCrCipher status codes
3363 * @{ */
3364/** Unsupported cipher. */
3365#define VERR_CR_CIPHER_NOT_SUPPORTED (-25800)
3366/** EVP_EncryptInit failed. */
3367#define VERR_CR_CIPHER_OSSL_ENCRYPT_INIT_FAILED (-25801)
3368/** EVP_EncryptUpdate failed. */
3369#define VERR_CR_CIPHER_OSSL_ENCRYPT_UPDATE_FAILED (-25802)
3370/** EVP_EncryptFinal failed. */
3371#define VERR_CR_CIPHER_OSSL_ENCRYPT_FINAL_FAILED (-25803)
3372/** EVP_DecryptInit failed. */
3373#define VERR_CR_CIPHER_OSSL_DECRYPT_INIT_FAILED (-25804)
3374/** EVP_DecryptUpdate failed. */
3375#define VERR_CR_CIPHER_OSSL_DECRYPT_UPDATE_FAILED (-25805)
3376/** EVP_DecryptFinal failed. */
3377#define VERR_CR_CIPHER_OSSL_DECRYPT_FINAL_FAILED (-25806)
3378/** Invalid key length. */
3379#define VERR_CR_CIPHER_INVALID_KEY_LENGTH (-25807)
3380/** Invalid initialization vector length. */
3381#define VERR_CR_CIPHER_INVALID_INITIALIZATION_VECTOR_LENGTH (-25808)
3382/** @} */
3383
3384/* SED-END */
3385
3386/** @} */
3387
3388#endif
3389
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