VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp@ 8245

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

rebranding: IPRT files again.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 12.4 KB
Line 
1/* $Id: RTErrConvertFromErrno.cpp 8245 2008-04-21 17:24:28Z vboxsync $ */
2/** @file
3 * IPRT - Convert errno to iprt status codes.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 *
26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include <iprt/err.h>
36#include <iprt/assert.h>
37#include <iprt/err.h>
38
39#if defined(RT_OS_DARWIN) && defined(KERNEL)
40# include <sys/errno.h>
41#else
42# include <errno.h>
43#endif
44
45
46RTDECL(int) RTErrConvertFromErrno(unsigned uNativeCode)
47{
48 /* very fast check for no error. */
49 if (uNativeCode == 0)
50 return VINF_SUCCESS;
51
52 /*
53 * Process error codes.
54 *
55 * (Use a switch and not a table since the numbers vary among compilers
56 * and OSes. So we let the compiler switch optimizer handle speed issues.)
57 *
58 * This switch is arranged like the Linux i386 errno.h!
59 */
60 switch (uNativeCode)
61 { /* Linux number */
62#ifdef EPERM
63 case EPERM: return VERR_ACCESS_DENIED; /* 1 */
64#endif
65#ifdef ENOENT
66 case ENOENT: return VERR_FILE_NOT_FOUND;
67#endif
68#ifdef ESRCH
69 case ESRCH: return VERR_PROCESS_NOT_FOUND;
70#endif
71#ifdef EINTR
72 case EINTR: return VERR_INTERRUPTED;
73#endif
74#ifdef EIO
75 case EIO: return VERR_DEV_IO_ERROR;
76#endif
77#ifdef ENXIO
78 case ENXIO: return VERR_DEV_IO_ERROR;
79#endif
80#ifdef E2BIG
81 case E2BIG: return VERR_TOO_MUCH_DATA;
82#endif
83#ifdef ENOEXEC
84 case ENOEXEC: return VERR_BAD_EXE_FORMAT;
85#endif
86#ifdef EBADF
87 case EBADF: return VERR_INVALID_HANDLE;
88#endif
89#ifdef ECHILD
90 case ECHILD: return VERR_PROCESS_NOT_FOUND; //... /* 10 */
91#endif
92#ifdef EAGAIN
93 case EAGAIN: return VERR_TRY_AGAIN;
94#endif
95#ifdef ENOMEM
96 case ENOMEM: return VERR_NO_MEMORY;
97#endif
98#ifdef EACCES
99 case EACCES: return VERR_ACCESS_DENIED;
100#endif
101#ifdef EFAULT
102 case EFAULT: return VERR_INVALID_POINTER;
103#endif
104#ifdef ENOTBLK
105 //case ENOTBLK: return VERR_;
106#endif
107#ifdef EBUSY
108 case EBUSY: return VERR_DEV_IO_ERROR;
109#endif
110#ifdef EEXIST
111 case EEXIST: return VERR_ALREADY_EXISTS;
112#endif
113#ifdef EXDEV
114 case EXDEV: return VERR_NOT_SAME_DEVICE;
115#endif
116#ifdef ENODEV
117 case ENODEV: return VERR_NOT_SUPPORTED;
118#endif
119#ifdef ENOTDIR
120 case ENOTDIR: return VERR_PATH_NOT_FOUND; /* 20 */
121#endif
122#ifdef EISDIR
123 case EISDIR: return VERR_IS_A_DIRECTORY;
124#endif
125#ifdef EINVAL
126 case EINVAL: return VERR_INVALID_PARAMETER;
127#endif
128#ifdef ENFILE
129 case ENFILE: return VERR_TOO_MANY_OPEN_FILES;
130#endif
131#ifdef EMFILE
132 case EMFILE: return VERR_TOO_MANY_OPEN_FILES;
133#endif
134#ifdef ENOTTY
135 case ENOTTY: return VERR_INVALID_FUNCTION;
136#endif
137#ifdef ETXTBSY
138 case ETXTBSY: return VERR_SHARING_VIOLATION;
139#endif
140#ifdef EFBIG
141 case EFBIG: return VERR_FILE_TOO_BIG;
142#endif
143#ifdef ENOSPC
144 case ENOSPC: return VERR_DISK_FULL;
145#endif
146#ifdef ESPIPE
147 case ESPIPE: return VERR_SEEK_ON_DEVICE;
148#endif
149#ifdef EROFS
150 case EROFS: return VERR_WRITE_PROTECT; /* 30 */
151#endif
152#ifdef EMLINK
153 //case EMLINK:
154#endif
155#ifdef EPIPE
156 case EPIPE: return VERR_BROKEN_PIPE;
157#endif
158#ifdef EDOM
159 case EDOM: return VERR_INVALID_PARAMETER;
160#endif
161#ifdef ERANGE
162 case ERANGE: return VERR_INVALID_PARAMETER;
163#endif
164#ifdef EDEADLK
165 case EDEADLK: return VERR_DEADLOCK;
166#endif
167#ifdef ENAMETOOLONG
168 case ENAMETOOLONG: return VERR_FILENAME_TOO_LONG;
169#endif
170#ifdef ENOLCK
171 case ENOLCK: return VERR_FILE_LOCK_FAILED;
172#endif
173#ifdef ENOSYS /** @todo map this differently on solaris. */
174 case ENOSYS: return VERR_NOT_SUPPORTED;
175#endif
176#ifdef ENOTEMPTY
177 case ENOTEMPTY: return VERR_DIR_NOT_EMPTY;
178#endif
179#ifdef ELOOP
180 case ELOOP: return VERR_TOO_MANY_SYMLINKS; /* 40 */
181#endif
182 //41??
183#ifdef ENOMSG
184 //case ENOMSG 42 /* No message of desired type */
185#endif
186#ifdef EIDRM
187 //case EIDRM 43 /* Identifier removed */
188#endif
189#ifdef ECHRNG
190 //case ECHRNG 44 /* Channel number out of range */
191#endif
192#ifdef EL2NSYNC
193 //case EL2NSYNC 45 /* Level 2 not synchronized */
194#endif
195#ifdef EL3HLT
196 //case EL3HLT 46 /* Level 3 halted */
197#endif
198#ifdef EL3RST
199 //case EL3RST 47 /* Level 3 reset */
200#endif
201#ifdef ELNRNG
202 //case ELNRNG 48 /* Link number out of range */
203#endif
204#ifdef EUNATCH
205 //case EUNATCH 49 /* Protocol driver not attached */
206#endif
207#ifdef ENOCSI
208 //case ENOCSI 50 /* No CSI structure available */
209#endif
210#ifdef EL2HLT
211 //case EL2HLT 51 /* Level 2 halted */
212#endif
213#ifdef EBADE
214 //case EBADE 52 /* Invalid exchange */
215#endif
216#ifdef EBADR
217 //case EBADR 53 /* Invalid request descriptor */
218#endif
219#ifdef EXFULL
220 //case EXFULL 54 /* Exchange full */
221#endif
222#ifdef ENOANO
223 //case ENOANO 55 /* No anode */
224#endif
225#ifdef EBADRQC
226 //case EBADRQC 56 /* Invalid request code */
227#endif
228#ifdef EBADSLT
229 //case EBADSLT 57 /* Invalid slot */
230#endif
231 //case 58:
232#ifdef EBFONT
233 //case EBFONT 59 /* Bad font file format */
234#endif
235#ifdef ENOSTR
236 //case ENOSTR 60 /* Device not a stream */
237#endif
238#ifdef ENODATA
239 case ENODATA: return VERR_NO_DATA;
240#endif
241#ifdef ETIME
242 //case ETIME 62 /* Timer expired */
243#endif
244#ifdef ENOSR
245 //case ENOSR 63 /* Out of streams resources */
246#endif
247#ifdef ENONET
248 case ENONET: return VERR_NET_NO_NETWORK;
249#endif
250#ifdef ENOPKG
251 //case ENOPKG 65 /* Package not installed */
252#endif
253#ifdef EREMOTE
254 //case EREMOTE 66 /* Object is remote */
255#endif
256#ifdef ENOLINK
257 //case ENOLINK 67 /* Link has been severed */
258#endif
259#ifdef EADV
260 //case EADV 68 /* Advertise error */
261#endif
262#ifdef ESRMNT
263 //case ESRMNT 69 /* Srmount error */
264#endif
265#ifdef ECOMM
266 //case ECOMM 70 /* Communication error on send */
267#endif
268#ifdef EPROTO
269 //case EPROTO 71 /* Protocol error */
270#endif
271#ifdef EMULTIHOP
272 //case EMULTIHOP 72 /* Multihop attempted */
273#endif
274#ifdef EDOTDOT
275 //case EDOTDOT 73 /* RFS specific error */
276#endif
277#ifdef EBADMSG
278 //case EBADMSG 74 /* Not a data message */
279#endif
280#ifdef EOVERFLOW
281 case EOVERFLOW: return VERR_TOO_MUCH_DATA;
282#endif
283#ifdef ENOTUNIQ
284 case ENOTUNIQ: return VERR_NET_NOT_UNIQUE_NAME;
285#endif
286#ifdef EBADFD
287 case EBADFD: return VERR_INVALID_HANDLE;
288#endif
289#ifdef EREMCHG
290 //case EREMCHG 78 /* Remote address changed */
291#endif
292#ifdef ELIBACC
293 //case ELIBACC 79 /* Can not access a needed shared library */
294#endif
295#ifdef ELIBBAD
296 //case ELIBBAD 80 /* Accessing a corrupted shared library */
297#endif
298#ifdef ELIBSCN
299 //case ELIBSCN 81 /* .lib section in a.out corrupted */
300#endif
301#ifdef ELIBMAX
302 //case ELIBMAX 82 /* Attempting to link in too many shared libraries */
303#endif
304#ifdef ELIBEXEC
305 //case ELIBEXEC 83 /* Cannot exec a shared library directly */
306#endif
307#ifdef EILSEQ
308 case EILSEQ: return VERR_NO_TRANSLATION;
309#endif
310#ifdef ERESTART
311 case ERESTART: return VERR_INTERRUPTED;
312#endif
313#ifdef ESTRPIPE
314 //case ESTRPIPE 86 /* Streams pipe error */
315#endif
316#ifdef EUSERS
317 //case EUSERS 87 /* Too many users */
318#endif
319#ifdef ENOTSOCK
320 case ENOTSOCK: return VERR_NET_NOT_SOCKET;
321#endif
322#ifdef EDESTADDRREQ
323 case EDESTADDRREQ: return VERR_NET_DEST_ADDRESS_REQUIRED;
324#endif
325#ifdef EMSGSIZE
326 case EMSGSIZE: return VERR_NET_MSG_SIZE;
327#endif
328#ifdef EPROTOTYPE
329 case EPROTOTYPE: return VERR_NET_PROTOCOL_TYPE;
330#endif
331#ifdef ENOPROTOOPT
332 case ENOPROTOOPT: return VERR_NET_PROTOCOL_NOT_AVAILABLE;
333#endif
334#ifdef EPROTONOSUPPORT
335 case EPROTONOSUPPORT: return VERR_NET_PROTOCOL_NOT_SUPPORTED;
336#endif
337#ifdef ESOCKTNOSUPPORT
338 case ESOCKTNOSUPPORT: return VERR_NET_SOCKET_TYPE_NOT_SUPPORTED;
339#endif
340#ifdef EOPNOTSUPP /** @todo map this differently on solaris. */
341 case EOPNOTSUPP: return VERR_NET_OPERATION_NOT_SUPPORTED;
342#endif
343#ifdef EPFNOSUPPORT
344 case EPFNOSUPPORT: return VERR_NET_PROTOCOL_FAMILY_NOT_SUPPORTED;
345#endif
346#ifdef EAFNOSUPPORT
347 case EAFNOSUPPORT: return VERR_NET_ADDRESS_FAMILY_NOT_SUPPORTED;
348#endif
349#ifdef EADDRINUSE
350 case EADDRINUSE: return VERR_NET_ADDRESS_IN_USE;
351#endif
352#ifdef EADDRNOTAVAIL
353 case EADDRNOTAVAIL: return VERR_NET_ADDRESS_NOT_AVAILABLE;
354#endif
355#ifdef ENETDOWN
356 case ENETDOWN: return VERR_NET_DOWN;
357#endif
358#ifdef ENETUNREACH
359 case ENETUNREACH: return VERR_NET_UNREACHABLE;
360#endif
361#ifdef ENETRESET
362 case ENETRESET: return VERR_NET_CONNECTION_RESET;
363#endif
364#ifdef ECONNABORTED
365 case ECONNABORTED: return VERR_NET_CONNECTION_ABORTED;
366#endif
367#ifdef ECONNRESET
368 case ECONNRESET: return VERR_NET_CONNECTION_RESET_BY_PEER;
369#endif
370#ifdef ENOBUFS
371 case ENOBUFS: return VERR_NET_NO_BUFFER_SPACE;
372#endif
373#ifdef EISCONN
374 case EISCONN: return VERR_NET_ALREADY_CONNECTED;
375#endif
376#ifdef ENOTCONN
377 case ENOTCONN: return VERR_NET_NOT_CONNECTED;
378#endif
379#ifdef ESHUTDOWN
380 case ESHUTDOWN: return VERR_NET_SHUTDOWN;
381#endif
382#ifdef ETOOMANYREFS
383 case ETOOMANYREFS: return VERR_NET_TOO_MANY_REFERENCES;
384#endif
385#ifdef ETIMEDOUT
386 case ETIMEDOUT: return VERR_TIMEOUT;
387#endif
388#ifdef ECONNREFUSED
389 case ECONNREFUSED: return VERR_NET_CONNECTION_REFUSED;
390#endif
391#ifdef EHOSTDOWN
392 case EHOSTDOWN: return VERR_NET_HOST_DOWN;
393#endif
394#ifdef EHOSTUNREACH
395 case EHOSTUNREACH: return VERR_NET_HOST_UNREACHABLE;
396#endif
397#ifdef EALREADY
398 case EALREADY: return VERR_NET_ALREADY_IN_PROGRESS;
399#endif
400#ifdef EINPROGRESS
401 case EINPROGRESS: return VERR_NET_IN_PROGRESS;
402#endif
403#ifdef ESTALE
404 //case ESTALE 116 /* Stale NFS file handle */
405#endif
406#ifdef EUCLEAN
407 //case EUCLEAN 117 /* Structure needs cleaning */
408#endif
409#ifdef ENOTNAM
410 //case ENOTNAM 118 /* Not a XENIX named type file */
411#endif
412#ifdef ENAVAIL
413 //case ENAVAIL 119 /* No XENIX semaphores available */
414#endif
415#ifdef EISNAM
416 //case EISNAM 120 /* Is a named type file */
417#endif
418#ifdef EREMOTEIO
419 //case EREMOTEIO 121 /* Remote I/O error */
420#endif
421#ifdef EDQUOT
422 case EDQUOT: return VERR_DISK_FULL;
423#endif
424#ifdef ENOMEDIUM
425 case ENOMEDIUM: return VERR_MEDIA_NOT_PRESENT;
426#endif
427#ifdef EMEDIUMTYPE
428 case EMEDIUMTYPE: return VERR_MEDIA_NOT_RECOGNIZED;
429#endif
430
431 /* Non-linux */
432
433#ifdef EPROCLIM
434 case EPROCLIM: return VERR_MAX_PROCS_REACHED;
435#endif
436
437 default:
438 AssertMsgFailed(("Unhandled error code %d\n", uNativeCode));
439 return VERR_UNRESOLVED_ERROR;
440 }
441}
442
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