VirtualBox

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

Last change on this file since 3810 was 3636, checked in by vboxsync, 17 years ago

AMD64 -> RT_ARCH_AMD64; X86 -> RT_ARCH_X86; [OS] (except LINUX) -> RT_OS_[OS].

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 31.3 KB
Line 
1/** @file
2 * innotek Portable Runtime - Status Codes.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef ___iprt_err_h
22#define ___iprt_err_h
23
24#include <iprt/cdefs.h>
25#include <iprt/types.h>
26
27__BEGIN_DECLS
28
29/** @defgroup grp_rt_err RTErr - Status Codes
30 * @ingroup grp_rt
31 * @{
32 */
33
34/** @defgroup grp_rt_err_hlp Status Code Helpers
35 * @ingroup grp_rt_err
36 * @{
37 */
38
39/** @def RT_SUCCESS
40 * Check for success. We expect success in normal cases, that is the code path depending on
41 * this check is normally taken. To prevent any prediction use RT_SUCCESS_NP instead.
42 *
43 * @returns true if rc indicates success.
44 * @returns false if rc indicates failure.
45 *
46 * @param rc The iprt status code to test.
47 */
48#define RT_SUCCESS(rc) ( RT_LIKELY((int)(rc) >= VINF_SUCCESS) )
49
50/** @def RT_SUCCESS_NP
51 * Check for success. Don't predict the result.
52 *
53 * @returns true if rc indicates success.
54 * @returns false if rc indicates failure.
55 *
56 * @param rc The iprt status code to test.
57 */
58#define RT_SUCCESS_NP(rc) ( (int)(rc) >= VINF_SUCCESS )
59
60/** @def RT_FAILURE
61 * Check for failure. We don't expect in normal cases, that is the code path depending on
62 * this check is normally NOT taken. To prevent any prediction use RT_FAILURE_NP instead.
63 *
64 * @returns true if rc indicates failure.
65 * @returns false if rc indicates success.
66 *
67 * @param rc The iprt status code to test.
68 */
69#define RT_FAILURE(rc) ( RT_UNLIKELY(!RT_SUCCESS_NP(rc)) )
70
71/** @def RT_FAILURE_NP
72 * Check for failure. Don't predict the result.
73 *
74 * @returns true if rc indicates failure.
75 * @returns false if rc indicates success.
76 *
77 * @param rc The iprt status code to test.
78 */
79#define RT_FAILURE_NP(rc) ( !RT_SUCCESS_NP(rc) )
80
81/**
82 * Converts a Darwin HRESULT error to an iprt status code.
83 *
84 * @returns iprt status code.
85 * @param iNativeCode errno code.
86 * @remark Darwin only.
87 */
88RTDECL(int) RTErrConvertFromDarwinCOM(int32_t iNativeCode);
89
90/**
91 * Converts a Darwin IOReturn error to an iprt status code.
92 *
93 * @returns iprt status code.
94 * @param iNativeCode errno code.
95 * @remark Darwin only.
96 */
97RTDECL(int) RTErrConvertFromDarwinIO(int iNativeCode);
98
99/**
100 * Converts a Darwin kern_return_t error to an iprt status code.
101 *
102 * @returns iprt status code.
103 * @param iNativeCode errno code.
104 * @remark Darwin only.
105 */
106RTDECL(int) RTErrConvertFromDarwinKern(int iNativeCode);
107
108/**
109 * Converts errno to iprt status code.
110 *
111 * @returns iprt status code.
112 * @param uNativeCode errno code.
113 */
114RTDECL(int) RTErrConvertFromErrno(unsigned uNativeCode);
115
116/**
117 * Converts a L4 errno to a iprt status code.
118 *
119 * @returns iprt status code.
120 * @param uNativeCode l4 errno.
121 * @remark L4 only.
122 */
123RTDECL(int) RTErrConvertFromL4Errno(unsigned uNativeCode);
124
125/**
126 * Converts NT status code to iprt status code.
127 *
128 * Needless to say, this is only available on NT and winXX targets.
129 *
130 * @returns iprt status code.
131 * @param lNativeCode NT status code.
132 * @remark Windows only.
133 */
134RTDECL(int) RTErrConvertFromNtStatus(long lNativeCode);
135
136/**
137 * Converts OS/2 error code to iprt status code.
138 *
139 * @returns iprt status code.
140 * @param uNativeCode OS/2 error code.
141 * @remark OS/2 only.
142 */
143RTDECL(int) RTErrConvertFromOS2(unsigned uNativeCode);
144
145/**
146 * Converts Win32 error code to iprt status code.
147 *
148 * @returns iprt status code.
149 * @param uNativeCode Win32 error code.
150 * @remark Windows only.
151 */
152RTDECL(int) RTErrConvertFromWin32(unsigned uNativeCode);
153
154
155#ifdef IN_RING3
156
157/**
158 * iprt status code message.
159 */
160typedef struct RTSTATUSMSG
161{
162 /** Pointer to the short message string. */
163 const char *pszMsgShort;
164 /** Pointer to the full message string. */
165 const char *pszMsgFull;
166 /** Pointer to the define string. */
167 const char *pszDefine;
168 /** Status code number. */
169 int iCode;
170} RTSTATUSMSG;
171/** Pointer to iprt status code message. */
172typedef RTSTATUSMSG *PRTSTATUSMSG;
173/** Pointer to const iprt status code message. */
174typedef const RTSTATUSMSG *PCRTSTATUSMSG;
175
176/**
177 * Get the message structure corresponding to a given iprt status code.
178 *
179 * @returns Pointer to read-only message description.
180 * @param rc The status code.
181 */
182RTDECL(PCRTSTATUSMSG) RTErrGet(int rc);
183
184/**
185 * Get the define corresponding to a given iprt status code.
186 *
187 * @returns Pointer to read-only string with the \#define identifier.
188 * @param rc The status code.
189 */
190#define RTErrGetDefine(rc) (RTErrGet(rc)->pszDefine)
191
192/**
193 * Get the short description corresponding to a given iprt status code.
194 *
195 * @returns Pointer to read-only string with the description.
196 * @param rc The status code.
197 */
198#define RTErrGetShort(rc) (RTErrGet(rc)->pszMsgShort)
199
200/**
201 * Get the full description corresponding to a given iprt status code.
202 *
203 * @returns Pointer to read-only string with the description.
204 * @param rc The status code.
205 */
206#define RTErrGetFull(rc) (RTErrGet(rc)->pszMsgFull)
207
208#ifdef RT_OS_WINDOWS
209/**
210 * Windows error code message.
211 */
212typedef struct RTWINERRMSG
213{
214 /** Pointer to the full message string. */
215 const char *pszMsgFull;
216 /** Pointer to the define string. */
217 const char *pszDefine;
218 /** Error code number. */
219 long iCode;
220} RTWINERRMSG;
221/** Pointer to Windows error code message. */
222typedef RTWINERRMSG *PRTWINERRMSG;
223/** Pointer to const Windows error code message. */
224typedef const RTWINERRMSG *PCRTWINERRMSG;
225
226/**
227 * Get the message structure corresponding to a given Windows error code.
228 *
229 * @returns Pointer to read-only message description.
230 * @param rc The status code.
231 */
232RTDECL(PCRTWINERRMSG) RTErrWinGet(long rc);
233#endif /* RT_OS_WINDOWS */
234
235#endif /* IN_RING3 */
236
237/** @} */
238
239
240/* SED-START */
241
242/** @name Misc. Status Codes
243 * @{
244 */
245/** Success. */
246#define VINF_SUCCESS 0
247
248/** General failure - DON'T USE THIS!!!
249 * (aka SUPDRV_ERR_GENERAL_FAILURE) */
250#define VERR_GENERAL_FAILURE (-1)
251/** Invalid parameter.
252 * (aka SUPDRV_ERR_INVALID_PARAM) */
253#define VERR_INVALID_PARAMETER (-2)
254/** Invalid magic or cookie.
255 * (aka SUPDRV_ERR_INVALID_MAGIC) */
256#define VERR_INVALID_MAGIC (-3)
257/** Invalid loader handle.
258 * (aka SUPDRV_ERR_INVALID_HANDLE) */
259#define VERR_INVALID_HANDLE (-4)
260/** Failed to lock the address range.
261 * (aka SUPDRV_ERR_INVALID_HANDLE) */
262#define VERR_LOCK_FAILED (-5)
263/** Invalid memory pointer.
264 * (aka SUPDRV_ERR_INVALID_POINTER) */
265#define VERR_INVALID_POINTER (-6)
266/** Failed to patch the IDT.
267 * (aka SUPDRV_ERR_IDT_FAILED) */
268#define VERR_IDT_FAILED (-7)
269/** Memory allocation failed.
270 * (aka SUPDRV_ERR_NO_MEMORY) */
271#define VERR_NO_MEMORY (-8)
272/** Already loaded.
273 * (aka SUPDRV_ERR_ALREADY_LOADED) */
274#define VERR_ALREADY_LOADED (-9)
275/** Permission denied.
276 * (aka SUPDRV_ERR_PERMISSION_DENIED) */
277#define VERR_PERMISSION_DENIED (-10)
278/** Version mismatch.
279 * (aka SUPDRV_ERR_VERSION_MISMATCH) */
280#define VERR_VERSION_MISMATCH (-11)
281/** The request function is not implemented. */
282#define VERR_NOT_IMPLEMENTED (-12)
283
284/** Failed to allocate temporary memory. */
285#define VERR_NO_TMP_MEMORY (-20)
286/** Invalid file mode mask (RTFMODE). */
287#define VERR_INVALID_FMODE (-21)
288/** Incorrect call order. */
289#define VERR_WRONG_ORDER (-22)
290/** There is no TLS (thread local storage) available for storing the current thread. */
291#define VERR_NO_TLS_FOR_SELF (-23)
292/** Failed to set the TLS (thread local storage) entry which points to our thread structure. */
293#define VERR_FAILED_TO_SET_SELF_TLS (-24)
294/** Not able to allocate contiguous memory. */
295#define VERR_NO_CONT_MEMORY (-26)
296/** No memory available for page table or page directory. */
297#define VERR_NO_PAGE_MEMORY (-27)
298/** Already initialized. */
299#define VINF_ALREADY_INITIALIZED 28
300/** The specified thread is dead. */
301#define VERR_THREAD_IS_DEAD (-29)
302/** The specified thread is not waitable. */
303#define VERR_THREAD_NOT_WAITABLE (-30)
304/** Pagetable not present. */
305#define VERR_PAGE_TABLE_NOT_PRESENT (-31)
306/** Internal error - we're screwed if this happens. */
307#define VERR_INTERNAL_ERROR (-32)
308/** The per process timer is busy. */
309#define VERR_TIMER_BUSY (-33)
310/** Address conflict. */
311#define VERR_ADDRESS_CONFLICT (-34)
312/** Unresolved (unknown) host platform error. */
313#define VERR_UNRESOLVED_ERROR (-35)
314/** Invalid function. */
315#define VERR_INVALID_FUNCTION (-36)
316/** Not supported. */
317#define VERR_NOT_SUPPORTED (-37)
318/** Access denied. */
319#define VERR_ACCESS_DENIED (-38)
320/** Call interrupted. */
321#define VERR_INTERRUPTED (-39)
322/** Timeout. */
323#define VERR_TIMEOUT (-40)
324/** Buffer too small to save result. */
325#define VERR_BUFFER_OVERFLOW (-41)
326/** Buffer too small to save result. */
327#define VINF_BUFFER_OVERFLOW 41
328/** Data size overflow. */
329#define VERR_TOO_MUCH_DATA (-42)
330/** Max threads number reached. */
331#define VERR_MAX_THRDS_REACHED (-43)
332/** Max process number reached. */
333#define VERR_MAX_PROCS_REACHED (-44)
334/** The recipient process has refused the signal. */
335#define VERR_SIGNAL_REFUSED (-45)
336/** A signal is already pending. */
337#define VERR_SIGNAL_PENDING (-46)
338/** The signal being posted is not correct. */
339#define VERR_SIGNAL_INVALID (-47)
340/** The state changed.
341 * This is a generic error message and needs a context to make sense. */
342#define VERR_STATE_CHANGED (-48)
343/** Warning, the state changed.
344 * This is a generic error message and needs a context to make sense. */
345#define VWRN_STATE_CHANGED 48
346/** Error while parsing UUID string */
347#define VERR_INVALID_UUID_FORMAT (-49)
348/** The specified process was not found. */
349#define VERR_PROCESS_NOT_FOUND (-50)
350/** The process specified to a non-block wait had not exitted. */
351#define VERR_PROCESS_RUNNING (-51)
352/** Retry the operation. */
353#define VERR_TRY_AGAIN (-52)
354/** Generic parse error. */
355#define VERR_PARSE_ERROR (-53)
356/** Value out of range. */
357#define VERR_OUT_OF_RANGE (-54)
358/** A numeric convertion encountered a value which was too big for the target. */
359#define VERR_NUMBER_TOO_BIG (-55)
360/** A numeric convertion encountered a value which was too big for the target. */
361#define VWRN_NUMBER_TOO_BIG 55
362/** The number begin converted (string) contained no digits. */
363#define VERR_NO_DIGITS (-56)
364/** The number begin converted (string) contained no digits. */
365#define VWRN_NO_DIGITS 56
366/** Encountered a '-' during convertion to an unsigned value. */
367#define VERR_NEGATIVE_UNSIGNED (-57)
368/** Encountered a '-' during convertion to an unsigned value. */
369#define VWRN_NEGATIVE_UNSIGNED 57
370/** Error while characters translation (unicode and so). */
371#define VERR_NO_TRANSLATION (-58)
372/** Encountered unicode code point which is reserved for use as endian indicator (0xffff or 0xfffe). */
373#define VERR_CODE_POINT_ENDIAN_INDICATOR (-59)
374/** Encountered unicode code point in the surrogate range (0xd800 to 0xdfff). */
375#define VERR_CODE_POINT_SURROGATE (-60)
376/** A string claiming to be UTF-8 is incorrectly encoded. */
377#define VERR_INVALID_UTF8_ENCODING (-61)
378/** Ad string claiming to be in UTF-16 is incorrectly encoded. */
379#define VERR_INVALID_UTF16_ENCODING (-62)
380/** Encountered a unicode code point which cannot be represented as UTF-16. */
381#define VERR_CANT_RECODE_AS_UTF16 (-63)
382/** Got an out of memory condition trying to allocate a string. */
383#define VERR_NO_STR_MEMORY (-64)
384/** Got an out of memory condition trying to allocate a UTF-16 (/UCS-2) string. */
385#define VERR_NO_UTF16_MEMORY (-65)
386/** Get an out of memory condition trying to allocate a code point array. */
387#define VERR_NO_CODE_POINT_MEMORY (-66)
388/** Can't free the memory because it's used in mapping. */
389#define VERR_MEMORY_BUSY (-67)
390/** The timer can't be started because it's already active. */
391#define VERR_TIMER_ACTIVE (-68)
392/** The timer can't be stopped because i's already suspended. */
393#define VERR_TIMER_SUSPENDED (-69)
394/** The operation was cancelled by the user. */
395#define VERR_CANCELLED (-70)
396/** Failed to initialize a memory object.
397 * Exactly what this means is OS specific. */
398#define VERR_MEMOBJ_INIT_FAILED (-71)
399/** Out of memory condition when allocating memory with low physical backing. */
400#define VERR_NO_LOW_MEMORY (-72)
401/** Out of memory condition when allocating physical memory (without mapping). */
402#define VERR_NO_PHYS_MEMORY (-73)
403/** The address (virtual or physical) is too big. */
404#define VERR_ADDRESS_TOO_BIG (-74)
405/** Failed to map a memory object. */
406#define VERR_MAP_FAILED (-75)
407/** @} */
408
409
410/** @name Common File/Disk/Pipe/etc Status Codes
411 * @{
412 */
413/** Unresolved (unknown) file i/o error. */
414#define VERR_FILE_IO_ERROR (-100)
415/** File/Device open failed. */
416#define VERR_OPEN_FAILED (-101)
417/** File not found. */
418#define VERR_FILE_NOT_FOUND (-102)
419/** Path not found. */
420#define VERR_PATH_NOT_FOUND (-103)
421/** Invalid (malformed) file/path name. */
422#define VERR_INVALID_NAME (-104)
423/** File/Device already exists. */
424#define VERR_ALREADY_EXISTS (-105)
425/** Too many open files. */
426#define VERR_TOO_MANY_OPEN_FILES (-106)
427/** Seek error. */
428#define VERR_SEEK (-107)
429/** Seek below file start. */
430#define VERR_NEGATIVE_SEEK (-108)
431/** Trying to seek on device. */
432#define VERR_SEEK_ON_DEVICE (-109)
433/** Reached the end of the file. */
434#define VERR_EOF (-110)
435/** Reached the end of the file. */
436#define VINF_EOF 110
437/** Generic file read error. */
438#define VERR_READ_ERROR (-111)
439/** Generic file write error. */
440#define VERR_WRITE_ERROR (-112)
441/** Write protect error. */
442#define VERR_WRITE_PROTECT (-113)
443/** Sharing violetion, file is being used by another process. */
444#define VERR_SHARING_VIOLATION (-114)
445/** Unable to lock a region of a file. */
446#define VERR_FILE_LOCK_FAILED (-115)
447/** File access error, another process has locked a portion of the file. */
448#define VERR_FILE_LOCK_VIOLATION (-116)
449/** File or directory can't be created. */
450#define VERR_CANT_CREATE (-117)
451/** Directory can't be deleted. */
452#define VERR_CANT_DELETE_DIRECTORY (-118)
453/** Can't move file to another disk. */
454#define VERR_NOT_SAME_DEVICE (-119)
455/** The filename or extension is too long. */
456#define VERR_FILENAME_TOO_LONG (-120)
457/** Media not present in drive. */
458#define VERR_MEDIA_NOT_PRESENT (-121)
459/** The type of media was not recognized. Not formatted? */
460#define VERR_MEDIA_NOT_RECOGNIZED (-122)
461/** Can't unlock - region was not locked. */
462#define VERR_FILE_NOT_LOCKED (-123)
463/** Unrecoverable error: lock was lost. */
464#define VERR_FILE_LOCK_LOST (-124)
465/** Can't delete directory with files. */
466#define VERR_DIR_NOT_EMPTY (-125)
467/** A directory operation was attempted on a non-directory object. */
468#define VERR_NOT_A_DIRECTORY (-126)
469/** A non-directory operation was attempted on a directory object. */
470#define VERR_IS_A_DIRECTORY (-127)
471/** Tried to grow a file beyond the limit imposed by the process or the filesystem. */
472#define VERR_FILE_TOO_BIG (-128)
473/** @} */
474
475
476/** @name Generic Filesystem I/O Status Codes
477 * @{
478 */
479/** Unresolved (unknown) disk i/o error. */
480#define VERR_DISK_IO_ERROR (-150)
481/** Invalid drive number. */
482#define VERR_INVALID_DRIVE (-151)
483/** Disk is full. */
484#define VERR_DISK_FULL (-152)
485/** Disk was changed. */
486#define VERR_DISK_CHANGE (-153)
487/** Drive is locked. */
488#define VERR_DRIVE_LOCKED (-154)
489/** The specified disk or diskette cannot be accessed. */
490#define VERR_DISK_INVALID_FORMAT (-155)
491/** Too many symbolic links. */
492#define VERR_TOO_MANY_SYMLINKS (-156)
493/** @} */
494
495
496/** @name Generic Directory Enumeration Status Codes
497 * @{
498 */
499/** Unresolved (unknown) search error. */
500#define VERR_SEARCH_ERROR (-200)
501/** No more files found. */
502#define VERR_NO_MORE_FILES (-201)
503/** No more search handles available. */
504#define VERR_NO_MORE_SEARCH_HANDLES (-202)
505/** RTDirReadEx() failed to retrieve the extra data which was requested. */
506#define VWRN_NO_DIRENT_INFO 203
507/** @} */
508
509
510/** @name Generic Device I/O Status Codes
511 * @{
512 */
513/** Unresolved (unknown) device i/o error. */
514#define VERR_DEV_IO_ERROR (-250)
515/** Device i/o: Bad unit. */
516#define VERR_IO_BAD_UNIT (-251)
517/** Device i/o: Not ready. */
518#define VERR_IO_NOT_READY (-252)
519/** Device i/o: Bad command. */
520#define VERR_IO_BAD_COMMAND (-253)
521/** Device i/o: CRC error. */
522#define VERR_IO_CRC (-254)
523/** Device i/o: Bad length. */
524#define VERR_IO_BAD_LENGTH (-255)
525/** Device i/o: Sector not found. */
526#define VERR_IO_SECTOR_NOT_FOUND (-256)
527/** Device i/o: General failure. */
528#define VERR_IO_GEN_FAILURE (-257)
529/** @} */
530
531
532/** @name Generic Pipe I/O Status Codes
533 * @{
534 */
535/** Unresolved (unknown) pipe i/o error. */
536#define VERR_PIPE_IO_ERROR (-300)
537/** Broken pipe. */
538#define VERR_BROKEN_PIPE (-301)
539/** Bad pipe. */
540#define VERR_BAD_PIPE (-302)
541/** Pipe is busy. */
542#define VERR_PIPE_BUSY (-303)
543/** No data in pipe. */
544#define VERR_NO_DATA (-304)
545/** Pipe is not connected. */
546#define VERR_PIPE_NOT_CONNECTED (-305)
547/** More data available in pipe. */
548#define VERR_MORE_DATA (-306)
549/** @} */
550
551
552/** @name Generic Semaphores Status Codes
553 * @{
554 */
555/** Unresolved (unknown) semaphore error. */
556#define VERR_SEM_ERROR (-350)
557/** Too many semaphores. */
558#define VERR_TOO_MANY_SEMAPHORES (-351)
559/** Exclusive semaphore is owned by another process. */
560#define VERR_EXCL_SEM_ALREADY_OWNED (-352)
561/** The semaphore is set and cannot be closed. */
562#define VERR_SEM_IS_SET (-353)
563/** The semaphore cannot be set again. */
564#define VERR_TOO_MANY_SEM_REQUESTS (-354)
565/** Attempt to release mutex not owned by caller. */
566#define VERR_NOT_OWNER (-355)
567/** The semaphore has been opened too many times. */
568#define VERR_TOO_MANY_OPENS (-356)
569/** The maximum posts for the event semaphore has been reached. */
570#define VERR_TOO_MANY_POSTS (-357)
571/** The event semaphore has already been posted. */
572#define VERR_ALREADY_POSTED (-358)
573/** The event semaphore has already been reset. */
574#define VERR_ALREADY_RESET (-359)
575/** The semaphore is in use. */
576#define VERR_SEM_BUSY (-360)
577/** The previous ownership of this semaphore has ended. */
578#define VERR_SEM_OWNER_DIED (-361)
579/** Failed to open semaphore by name - not found. */
580#define VERR_SEM_NOT_FOUND (-362)
581/** Semaphore destroyed while waiting. */
582#define VERR_SEM_DESTROYED (-363)
583/** Nested ownership requests are not permitted for this semaphore type. */
584#define VERR_SEM_NESTED (-364)
585/** Deadlock detected. */
586#define VERR_DEADLOCK (-365)
587/** Ping-Pong listen or speak out of turn error. */
588#define VERR_SEM_OUT_OF_TURN (-366)
589/** @} */
590
591
592/** @name Generic Network I/O Status Codes
593 * @{
594 */
595/** Unresolved (unknown) network error. */
596#define VERR_NET_IO_ERROR (-400)
597/** The network is busy or is out of resources. */
598#define VERR_NET_OUT_OF_RESOURCES (-401)
599/** Net host name not found. */
600#define VERR_NET_HOST_NOT_FOUND (-402)
601/** Network path not found. */
602#define VERR_NET_PATH_NOT_FOUND (-403)
603/** General network printing error. */
604#define VERR_NET_PRINT_ERROR (-404)
605/** The machine is not on the network. */
606#define VERR_NET_NO_NETWORK (-405)
607/** Name is not unique on the network. */
608#define VERR_NET_NOT_UNIQUE_NAME (-406)
609
610/* These are BSD networking error codes - numbers correspond, don't mess! */
611/** Operation in progress. */
612#define VERR_NET_IN_PROGRESS (-436)
613/** Operation already in progress. */
614#define VERR_NET_ALREADY_IN_PROGRESS (-437)
615/** Attempted socket operation with a non-socket handle.
616 * (This includes closed handles.) */
617#define VERR_NET_NOT_SOCKET (-438)
618/** Destination address required. */
619#define VERR_NET_DEST_ADDRESS_REQUIRED (-439)
620/** Message too long. */
621#define VERR_NET_MSG_SIZE (-440)
622/** Protocol wrong type for socket. */
623#define VERR_NET_PROTOCOL_TYPE (-441)
624/** Protocol not available. */
625#define VERR_NET_PROTOCOL_NOT_AVAILABLE (-442)
626/** Protocol not supported. */
627#define VERR_NET_PROTOCOL_NOT_SUPPORTED (-443)
628/** Socket type not supported. */
629#define VERR_NET_SOCKET_TYPE_NOT_SUPPORTED (-444)
630/** Operation not supported. */
631#define VERR_NET_OPERATION_NOT_SUPPORTED (-445)
632/** Protocol family not supported. */
633#define VERR_NET_PROTOCOL_FAMILY_NOT_SUPPORTED (-446)
634/** Address family not supported by protocol family. */
635#define VERR_NET_ADDRESS_FAMILY_NOT_SUPPORTED (-447)
636/** Address already in use. */
637#define VERR_NET_ADDRESS_IN_USE (-448)
638/** Can't assign requested address. */
639#define VERR_NET_ADDRESS_NOT_AVAILABLE (-449)
640/** Network is down. */
641#define VERR_NET_DOWN (-450)
642/** Network is unreachable. */
643#define VERR_NET_UNREACHABLE (-451)
644/** Network dropped connection on reset. */
645#define VERR_NET_CONNECTION_RESET (-452)
646/** Software caused connection abort. */
647#define VERR_NET_CONNECTION_ABORTED (-453)
648/** Connection reset by peer. */
649#define VERR_NET_CONNECTION_RESET_BY_PEER (-454)
650/** No buffer space available. */
651#define VERR_NET_NO_BUFFER_SPACE (-455)
652/** Socket is already connected. */
653#define VERR_NET_ALREADY_CONNECTED (-456)
654/** Socket is not connected. */
655#define VERR_NET_NOT_CONNECTED (-457)
656/** Can't send after socket shutdown. */
657#define VERR_NET_SHUTDOWN (-458)
658/** Too many references: can't splice. */
659#define VERR_NET_TOO_MANY_REFERENCES (-459)
660/** Too many references: can't splice. */
661#define VERR_NET_CONNECTION_TIMED_OUT (-460)
662/** Connection refused. */
663#define VERR_NET_CONNECTION_REFUSED (-461)
664/* ELOOP is not net. */
665/* ENAMETOOLONG is not net. */
666/** Host is down. */
667#define VERR_NET_HOST_DOWN (-464)
668/** No route to host. */
669#define VERR_NET_HOST_UNREACHABLE (-465)
670/** @} */
671
672
673/** @name TCP Status Codes
674 * @{
675 */
676/** Stop the TCP server. */
677#define VERR_TCP_SERVER_STOP (-500)
678/** The server was stopped. */
679#define VINF_TCP_SERVER_STOP 500
680/** @} */
681
682
683/** @name L4 Specific Status Codes
684 * @{
685 */
686/** Invalid offset in an L4 dataspace */
687#define VERR_L4_INVALID_DS_OFFSET (-550)
688/** IPC error */
689#define VERR_IPC (-551)
690/** Item already used */
691#define VERR_RESOURCE_IN_USE (-552)
692/** Source/destination not found */
693#define VERR_IPC_PROCESS_NOT_FOUND (-553)
694/** Receive timeout */
695#define VERR_IPC_RECEIVE_TIMEOUT (-554)
696/** Send timeout */
697#define VERR_IPC_SEND_TIMEOUT (-555)
698/** Receive cancelled */
699#define VERR_IPC_RECEIVE_CANCELLED (-556)
700/** Send cancelled */
701#define VERR_IPC_SEND_CANCELLED (-557)
702/** Receive aborted */
703#define VERR_IPC_RECEIVE_ABORTED (-558)
704/** Send aborted */
705#define VERR_IPC_SEND_ABORTED (-559)
706/** Couldn't map pages during receive */
707#define VERR_IPC_RECEIVE_MAP_FAILED (-560)
708/** Couldn't map pages during send */
709#define VERR_IPC_SEND_MAP_FAILED (-561)
710/** Send pagefault timeout in receive */
711#define VERR_IPC_RECEIVE_SEND_PF_TIMEOUT (-562)
712/** Send pagefault timeout in send */
713#define VERR_IPC_SEND_SEND_PF_TIMEOUT (-563)
714/** (One) receive buffer was too small, or too few buffers */
715#define VINF_IPC_RECEIVE_MSG_CUT 564
716/** (One) send buffer was too small, or too few buffers */
717#define VINF_IPC_SEND_MSG_CUT 565
718/** Dataspace manager server not found */
719#define VERR_L4_DS_MANAGER_NOT_FOUND (-566)
720/** @} */
721
722
723/** @name Loader Status Codes.
724 * @{
725 */
726/** Invalid executable signature. */
727#define VERR_INVALID_EXE_SIGNATURE (-600)
728/** The iprt loader recognized a ELF image, but doesn't support loading it. */
729#define VERR_ELF_EXE_NOT_SUPPORTED (-601)
730/** The iprt loader recognized a PE image, but doesn't support loading it. */
731#define VERR_PE_EXE_NOT_SUPPORTED (-602)
732/** The iprt loader recognized a LX image, but doesn't support loading it. */
733#define VERR_LX_EXE_NOT_SUPPORTED (-603)
734/** The iprt loader recognized a LE image, but doesn't support loading it. */
735#define VERR_LE_EXE_NOT_SUPPORTED (-604)
736/** The iprt loader recognized a NE image, but doesn't support loading it. */
737#define VERR_NE_EXE_NOT_SUPPORTED (-605)
738/** The iprt loader recognized a MZ image, but doesn't support loading it. */
739#define VERR_MZ_EXE_NOT_SUPPORTED (-606)
740/** The iprt loader recognized an a.out image, but doesn't support loading it. */
741#define VERR_AOUT_EXE_NOT_SUPPORTED (-607)
742/** Bad executable. */
743#define VERR_BAD_EXE_FORMAT (-608)
744/** Symbol (export) not found. */
745#define VERR_SYMBOL_NOT_FOUND (-609)
746/** Module not found. */
747#define VERR_MODULE_NOT_FOUND (-610)
748/** The loader resolved an external symbol to an address to big for the image format. */
749#define VERR_SYMBOL_VALUE_TOO_BIG (-611)
750/** The image is too big. */
751#define VERR_IMAGE_TOO_BIG (-612)
752/** The image base address is to high for this image type. */
753#define VERR_IMAGE_BASE_TOO_HIGH (-614)
754/** The PE loader encountered delayed imports, a feature which hasn't been implemented yet. */
755#define VERR_LDRPE_DELAY_IMPORT (-620)
756/** The PE loader doesn't have a clue what the security data directory entry is all about. */
757#define VERR_LDRPE_SECURITY (-621)
758/** The PE loader doesn't know how to deal with the global pointer data directory entry yet. */
759#define VERR_LDRPE_GLOBALPTR (-622)
760/** The PE loader doesn't support the TLS data directory yet. */
761#define VERR_LDRPE_TLS (-623)
762/** The PE loader doesn't grok the COM descriptor data directory entry. */
763#define VERR_LDRPE_COM_DESCRIPTOR (-624)
764/** The PE loader encountered an unknown load config directory/header size. */
765#define VERR_LDRPE_LOAD_CONFIG_SIZE (-625)
766/** The PE loader encountered a lock prefix table, a feature which hasn't been implemented yet. */
767#define VERR_LDRPE_LOCK_PREFIX_TABLE (-626)
768/** The ELF loader doesn't handle foreign endianness. */
769#define VERR_LDRELF_ODD_ENDIAN (-630)
770/** The ELF image is 'dynamic', the ELF loader can only deal with 'relocatable' images at present. */
771#define VERR_LDRELF_DYN (-631)
772/** The ELF image is 'executable', the ELF loader can only deal with 'relocatable' images at present. */
773#define VERR_LDRELF_EXEC (-632)
774/** The ELF image was created for an unsupported target machine type. */
775#define VERR_LDRELF_MACHINE (-633)
776/** The ELF version is not supported. */
777#define VERR_LDRELF_VERSION (-634)
778/** The ELF loader cannot handle multiple SYMTAB sections. */
779#define VERR_LDRELF_MULTIPLE_SYMTABS (-635)
780/** The ELF loader encountered a relocation type which is not implemented. */
781#define VERR_LDRELF_RELOCATION_NOT_SUPPORTED (-636)
782/** The ELF loader encountered a bad symbol index. */
783#define VERR_LDRELF_INVALID_SYMBOL_INDEX (-637)
784/** The ELF loader encountered an invalid symbol name offset. */
785#define VERR_LDRELF_INVALID_SYMBOL_NAME_OFFSET (-638)
786/** The ELF loader encountered an invalid relocation offset. */
787#define VERR_LDRELF_INVALID_RELOCATION_OFFSET (-639)
788/** The ELF loader didn't find the symbol/string table for the image. */
789#define VERR_LDRELF_NO_SYMBOL_OR_NO_STRING_TABS (-640)
790/** @}*/
791
792/** @name Debug Info Reader Status Codes.
793 * @{
794 */
795/** The specified segment:offset address was invalid. Typically an attempt at
796 * addressing outside the segment boundrary. */
797#define VERR_DBGMOD_INVALID_ADDRESS (-650)
798/** @} */
799
800/** @name Request Packet Status Codes.
801 * @{
802 */
803/** Invalid RT request type.
804 * For the RTReqAlloc() case, the caller just specified an illegal enmType. For
805 * all the other occurences it means indicates corruption, broken logic, or stupid
806 * interface user. */
807#define VERR_RT_REQUEST_INVALID_TYPE (-700)
808/** Invalid RT request state.
809 * The state of the request packet was not the expected and accepted one(s). Either
810 * the interface user screwed up, or we've got corruption/broken logic. */
811#define VERR_RT_REQUEST_STATE (-701)
812/** Invalid RT request packet.
813 * One or more of the RT controlled packet members didn't contain the correct
814 * values. Some thing's broken. */
815#define VERR_RT_REQUEST_INVALID_PACKAGE (-702)
816/** The status field has not been updated yet as the request is still
817 * pending completion. Someone queried the iStatus field before the request
818 * has been fully processed. */
819#define VERR_RT_REQUEST_STATUS_STILL_PENDING (-703)
820/** The request has been freed, don't read the status now.
821 * Someone is reading the iStatus field of a freed request packet. */
822#define VERR_RT_REQUEST_STATUS_FREED (-704)
823/** @} */
824
825/* SED-END */
826
827/** @} */
828
829__END_DECLS
830
831#endif
832
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