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