VirtualBox

source: vbox/trunk/src/VBox/Runtime/win/RTErrConvertFromWin32.cpp@ 56290

Last change on this file since 56290 was 56290, checked in by vboxsync, 9 years ago

IPRT: Updated (C) year.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 19.1 KB
Line 
1/* $Id: RTErrConvertFromWin32.cpp 56290 2015-06-09 14:01:31Z vboxsync $ */
2/** @file
3 * IPRT - Convert win32 error codes to iprt status codes.
4 */
5
6/*
7 * Copyright (C) 2006-2015 Oracle Corporation
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
27/*******************************************************************************
28* Header Files *
29*******************************************************************************/
30#include <Windows.h>
31
32#include <iprt/err.h>
33#include <iprt/assert.h>
34#include <iprt/err.h>
35
36
37RTR3DECL(int) RTErrConvertFromWin32(unsigned uNativeCode)
38{
39 /* very fast check for no error. */
40 if (uNativeCode == ERROR_SUCCESS)
41 return(VINF_SUCCESS);
42
43 /* process error codes. */
44 switch (uNativeCode)
45 {
46 case ERROR_INVALID_FUNCTION: return VERR_INVALID_FUNCTION;
47 case ERROR_FILE_NOT_FOUND: return VERR_FILE_NOT_FOUND;
48 case ERROR_PATH_NOT_FOUND: return VERR_PATH_NOT_FOUND;
49 case ERROR_TOO_MANY_OPEN_FILES: return VERR_TOO_MANY_OPEN_FILES;
50 case ERROR_ACCESS_DENIED: return VERR_ACCESS_DENIED;
51 case ERROR_NOACCESS: return VERR_ACCESS_DENIED;
52
53 case ERROR_INVALID_HANDLE:
54 case ERROR_DIRECT_ACCESS_HANDLE: return VERR_INVALID_HANDLE;
55
56 case ERROR_NO_SYSTEM_RESOURCES: /** @todo better translation */
57 case ERROR_NOT_ENOUGH_MEMORY:
58 case ERROR_OUTOFMEMORY: return VERR_NO_MEMORY;
59
60 case ERROR_INVALID_DRIVE: return VERR_INVALID_DRIVE;
61 case ERROR_CURRENT_DIRECTORY: return VERR_CANT_DELETE_DIRECTORY;
62 case ERROR_NOT_SAME_DEVICE: return VERR_NOT_SAME_DEVICE;
63 case ERROR_NO_MORE_FILES: return VERR_NO_MORE_FILES;
64 case ERROR_WRITE_PROTECT: return VERR_WRITE_PROTECT;
65 case ERROR_BAD_UNIT: return VERR_IO_BAD_UNIT;
66 case ERROR_NOT_READY: return VERR_IO_NOT_READY;
67 case ERROR_BAD_COMMAND: return VERR_IO_BAD_COMMAND;
68 case ERROR_CRC: return VERR_IO_CRC;
69 case ERROR_BAD_LENGTH: return VERR_IO_BAD_LENGTH;
70 case ERROR_SEEK: return VERR_SEEK;
71 case ERROR_NOT_DOS_DISK: return VERR_DISK_INVALID_FORMAT;
72 case ERROR_SECTOR_NOT_FOUND: return VERR_IO_SECTOR_NOT_FOUND;
73 case ERROR_WRITE_FAULT: return VERR_WRITE_ERROR;
74 case ERROR_READ_FAULT: return VERR_READ_ERROR;
75 case ERROR_GEN_FAILURE: return VERR_IO_GEN_FAILURE;
76 case ERROR_SHARING_VIOLATION: return VERR_SHARING_VIOLATION;
77 case ERROR_LOCK_VIOLATION: return VERR_FILE_LOCK_VIOLATION;
78 case ERROR_HANDLE_EOF: return VERR_EOF;
79 case ERROR_NOT_LOCKED: return VERR_FILE_NOT_LOCKED;
80 case ERROR_DIR_NOT_EMPTY: return VERR_DIR_NOT_EMPTY;
81
82 case ERROR_HANDLE_DISK_FULL:
83 case ERROR_DISK_FULL: return VERR_DISK_FULL;
84
85 case ERROR_NOT_SUPPORTED: return VERR_NOT_SUPPORTED;
86
87 case ERROR_INVALID_PARAMETER:
88 case ERROR_BAD_ARGUMENTS:
89 case ERROR_INVALID_FLAGS: return VERR_INVALID_PARAMETER;
90
91 case ERROR_REM_NOT_LIST: return VERR_NET_IO_ERROR;
92
93 case ERROR_BAD_NETPATH:
94 case ERROR_NETNAME_DELETED: return VERR_NET_HOST_NOT_FOUND;
95
96 case ERROR_BAD_NET_NAME:
97 case ERROR_DEV_NOT_EXIST: return VERR_NET_PATH_NOT_FOUND;
98
99 case ERROR_NETWORK_BUSY:
100 case ERROR_TOO_MANY_CMDS:
101 case ERROR_TOO_MANY_NAMES:
102 case ERROR_TOO_MANY_SESS:
103 case ERROR_OUT_OF_STRUCTURES: return VERR_NET_OUT_OF_RESOURCES;
104
105 case ERROR_PRINTQ_FULL:
106 case ERROR_NO_SPOOL_SPACE:
107 case ERROR_PRINT_CANCELLED: return VERR_NET_PRINT_ERROR;
108
109 case ERROR_DUP_NAME:
110 case ERROR_ADAP_HDW_ERR:
111 case ERROR_BAD_NET_RESP:
112 case ERROR_UNEXP_NET_ERR:
113 case ERROR_BAD_REM_ADAP:
114 case ERROR_NETWORK_ACCESS_DENIED:
115 case ERROR_BAD_DEV_TYPE:
116 case ERROR_SHARING_PAUSED:
117 case ERROR_REQ_NOT_ACCEP:
118 case ERROR_REDIR_PAUSED:
119 case ERROR_ALREADY_ASSIGNED:
120 case ERROR_INVALID_PASSWORD:
121 case ERROR_NET_WRITE_FAULT: return VERR_NET_IO_ERROR;
122
123 case ERROR_FILE_EXISTS:
124 case ERROR_ALREADY_EXISTS: return VERR_ALREADY_EXISTS;
125
126 case ERROR_CANNOT_MAKE: return VERR_CANT_CREATE;
127 case ERROR_NO_PROC_SLOTS: return VERR_MAX_PROCS_REACHED;
128 case ERROR_TOO_MANY_SEMAPHORES: return VERR_TOO_MANY_SEMAPHORES;
129 case ERROR_EXCL_SEM_ALREADY_OWNED: return VERR_EXCL_SEM_ALREADY_OWNED;
130 case ERROR_SEM_IS_SET: return VERR_SEM_IS_SET;
131 case ERROR_TOO_MANY_SEM_REQUESTS: return VERR_TOO_MANY_SEM_REQUESTS;
132 case ERROR_SEM_OWNER_DIED: return VERR_SEM_OWNER_DIED;
133 case ERROR_DRIVE_LOCKED: return VERR_DRIVE_LOCKED;
134 case ERROR_BROKEN_PIPE: return VERR_BROKEN_PIPE;
135 case ERROR_OPEN_FAILED: return VERR_OPEN_FAILED;
136
137 case ERROR_BUFFER_OVERFLOW:
138 case ERROR_INSUFFICIENT_BUFFER: return VERR_BUFFER_OVERFLOW;
139
140 case ERROR_NO_MORE_SEARCH_HANDLES: return VERR_NO_MORE_SEARCH_HANDLES;
141
142 case ERROR_SEM_TIMEOUT:
143 case WAIT_TIMEOUT:
144 case ERROR_SERVICE_REQUEST_TIMEOUT:
145 case ERROR_COUNTER_TIMEOUT:
146 case ERROR_TIMEOUT: return VERR_TIMEOUT;
147
148 case ERROR_INVALID_NAME:
149 case ERROR_BAD_PATHNAME: return VERR_INVALID_NAME;
150
151 case ERROR_NEGATIVE_SEEK: return VERR_NEGATIVE_SEEK;
152 case ERROR_SEEK_ON_DEVICE: return VERR_SEEK_ON_DEVICE;
153
154 case ERROR_SIGNAL_REFUSED:
155 case ERROR_NO_SIGNAL_SENT: return VERR_SIGNAL_REFUSED;
156
157 case ERROR_SIGNAL_PENDING: return VERR_SIGNAL_PENDING;
158 case ERROR_MAX_THRDS_REACHED: return VERR_MAX_THRDS_REACHED;
159 case ERROR_LOCK_FAILED: return VERR_FILE_LOCK_FAILED;
160 case ERROR_SEM_NOT_FOUND: return VERR_SEM_NOT_FOUND;
161 case ERROR_FILENAME_EXCED_RANGE: return VERR_FILENAME_TOO_LONG;
162 case ERROR_INVALID_SIGNAL_NUMBER: return VERR_SIGNAL_INVALID;
163
164 case ERROR_BAD_PIPE: return VERR_BAD_PIPE;
165 case ERROR_PIPE_BUSY: return VERR_PIPE_BUSY;
166 case ERROR_NO_DATA: return VERR_NO_DATA;
167 case ERROR_PIPE_NOT_CONNECTED: return VERR_PIPE_NOT_CONNECTED;
168 case ERROR_MORE_DATA: return VERR_MORE_DATA;
169 case ERROR_NOT_OWNER: return VERR_NOT_OWNER;
170 case ERROR_TOO_MANY_POSTS: return VERR_TOO_MANY_POSTS;
171
172 case ERROR_PIPE_CONNECTED:
173 case ERROR_PIPE_LISTENING: return VERR_PIPE_IO_ERROR;
174
175 case ERROR_OPERATION_ABORTED: return VERR_INTERRUPTED;
176 case ERROR_NO_UNICODE_TRANSLATION: return VERR_NO_TRANSLATION;
177
178 case RPC_S_INVALID_STRING_UUID: return VERR_INVALID_UUID_FORMAT;
179
180 case ERROR_PROC_NOT_FOUND: return VERR_SYMBOL_NOT_FOUND;
181 case ERROR_MOD_NOT_FOUND: return VERR_MODULE_NOT_FOUND;
182
183 case ERROR_INVALID_EXE_SIGNATURE: return VERR_INVALID_EXE_SIGNATURE;
184 case ERROR_BAD_EXE_FORMAT: return VERR_BAD_EXE_FORMAT;
185 case ERROR_RESOURCE_DATA_NOT_FOUND: return VERR_NO_DATA; ///@todo fix ERROR_RESOURCE_DATA_NOT_FOUND translation
186 case ERROR_INVALID_ADDRESS: return VERR_INVALID_POINTER; ///@todo fix ERROR_INVALID_ADDRESS translation - dbghelp returns it on some line number queries.
187
188 case ERROR_CANCELLED: return VERR_CANCELLED;
189 case ERROR_USER_MAPPED_FILE: return VERR_SHARING_VIOLATION;
190 case ERROR_DIRECTORY: return VERR_NOT_A_DIRECTORY;
191
192 case ERROR_LOGON_FAILURE: return VERR_AUTHENTICATION_FAILURE;
193
194 /*
195 * Winsocket errors are mostly BSD errno.h wrappers.
196 * This is copied from RTErrConvertFromErrno() and checked against winsock.h.
197 * Please, keep things in sync!
198 */
199#ifdef WSAEPERM
200 case WSAEPERM: return VERR_ACCESS_DENIED; /* 1 */
201#endif
202#ifdef WSAENOENT
203 case WSAENOENT: return VERR_FILE_NOT_FOUND;
204#endif
205#ifdef WSAESRCH
206 case WSAESRCH: return VERR_PROCESS_NOT_FOUND;
207#endif
208 case WSAEINTR: return VERR_INTERRUPTED;
209#ifdef WSAEIO
210 case WSAEIO: return VERR_DEV_IO_ERROR;
211#endif
212#ifdef WSAE2BIG
213 case WSAE2BIG: return VERR_TOO_MUCH_DATA;
214#endif
215#ifdef WSAENOEXEC
216 case WSAENOEXEC: return VERR_BAD_EXE_FORMAT;
217#endif
218 case WSAEBADF: return VERR_INVALID_HANDLE;
219#ifdef WSAECHILD
220 case WSAECHILD: return VERR_PROCESS_NOT_FOUND; //... /* 10 */
221#endif
222 case WSAEWOULDBLOCK: return VERR_TRY_AGAIN; /* EAGAIN */
223#ifdef WSAENOMEM
224 case WSAENOMEM: return VERR_NO_MEMORY;
225#endif
226 case WSAEACCES: return VERR_ACCESS_DENIED;
227 case WSAEFAULT: return VERR_INVALID_POINTER;
228 //case WSAENOTBLK: return VERR_;
229#ifdef WSAEBUSY
230 case WSAEBUSY: return VERR_DEV_IO_ERROR;
231#endif
232#ifdef WSAEEXIST
233 case WSAEEXIST: return VERR_ALREADY_EXISTS;
234#endif
235 //case WSAEXDEV:
236#ifdef WSAENODEV
237 case WSAENODEV: return VERR_NOT_SUPPORTED;
238#endif
239#ifdef WSAENOTDIR
240 case WSAENOTDIR: return VERR_PATH_NOT_FOUND; /* 20 */
241#endif
242#ifdef WSAEISDIR
243 case WSAEISDIR: return VERR_FILE_NOT_FOUND;
244#endif
245 case WSAEINVAL: return VERR_INVALID_PARAMETER;
246#ifdef WSAENFILE
247 case WSAENFILE: return VERR_TOO_MANY_OPEN_FILES;
248#endif
249 case WSAEMFILE: return VERR_TOO_MANY_OPEN_FILES;
250#ifdef WSAENOTTY
251 case WSAENOTTY: return VERR_INVALID_FUNCTION;
252#endif
253#ifdef WSAETXTBSY
254 case WSAETXTBSY: return VERR_SHARING_VIOLATION;
255#endif
256 //case WSAEFBIG:
257#ifdef WSAENOSPC
258 case WSAENOSPC: return VERR_DISK_FULL;
259#endif
260#ifdef WSAESPIPE
261 case WSAESPIPE: return VERR_SEEK_ON_DEVICE;
262#endif
263#ifdef WSAEROFS
264 case WSAEROFS: return VERR_WRITE_PROTECT; /* 30 */
265#endif
266 //case WSAEMLINK:
267#ifdef WSAEPIPE
268 case WSAEPIPE: return VERR_BROKEN_PIPE;
269#endif
270#ifdef WSAEDOM
271 case WSAEDOM: return VERR_INVALID_PARAMETER;
272#endif
273#ifdef WSAERANGE
274 case WSAERANGE: return VERR_INVALID_PARAMETER;
275#endif
276#ifdef WSAEDEADLK
277 case WSAEDEADLK: return VERR_DEADLOCK;
278#endif
279 case WSAENAMETOOLONG: return VERR_FILENAME_TOO_LONG;
280#ifdef WSAENOLCK
281 case WSAENOLCK: return VERR_FILE_LOCK_FAILED;
282#endif
283#ifdef WSAENOSYS
284 case WSAENOSYS: return VERR_NOT_SUPPORTED;
285#endif
286 case WSAENOTEMPTY: return VERR_CANT_DELETE_DIRECTORY;
287 case WSAELOOP: return VERR_TOO_MANY_SYMLINKS; /* 40 */
288 //case WSAENOMSG 42 /* No message of desired type */
289 //case WSAEIDRM 43 /* Identifier removed */
290 //case WSAECHRNG 44 /* Channel number out of range */
291 //case WSAEL2NSYNC 45 /* Level 2 not synchronized */
292 //case WSAEL3HLT 46 /* Level 3 halted */
293 //case WSAEL3RST 47 /* Level 3 reset */
294 //case WSAELNRNG 48 /* Link number out of range */
295 //case WSAEUNATCH 49 /* Protocol driver not attached */
296 //case WSAENOCSI 50 /* No CSI structure available */
297 //case WSAEL2HLT 51 /* Level 2 halted */
298 //case WSAEBADE 52 /* Invalid exchange */
299 //case WSAEBADR 53 /* Invalid request descriptor */
300 //case WSAEXFULL 54 /* Exchange full */
301 //case WSAENOANO 55 /* No anode */
302 //case WSAEBADRQC 56 /* Invalid request code */
303 //case WSAEBADSLT 57 /* Invalid slot */
304 //case 58:
305 //case WSAEBFONT 59 /* Bad font file format */
306 //case WSAENOSTR 60 /* Device not a stream */
307#ifdef WSAENODATA
308 case WSAENODATA: return VERR_NO_DATA;
309#endif
310 //case WSAETIME 62 /* Timer expired */
311 //case WSAENOSR 63 /* Out of streams resources */
312#ifdef WSAENONET
313 case WSAENONET: return VERR_NET_NO_NETWORK;
314#endif
315 //case WSAENOPKG 65 /* Package not installed */
316 //case WSAEREMOTE 66 /* Object is remote */
317 //case WSAENOLINK 67 /* Link has been severed */
318 //case WSAEADV 68 /* Advertise error */
319 //case WSAESRMNT 69 /* Srmount error */
320 //case WSAECOMM 70 /* Communication error on send */
321 //case WSAEPROTO 71 /* Protocol error */
322 //case WSAEMULTIHOP 72 /* Multihop attempted */
323 //case WSAEDOTDOT 73 /* RFS specific error */
324 //case WSAEBADMSG 74 /* Not a data message */
325#ifdef WSAEOVERFLOW
326 case WSAEOVERFLOW: return VERR_TOO_MUCH_DATA;
327#endif
328#ifdef WSAENOTUNIQ
329 case WSAENOTUNIQ: return VERR_NET_NOT_UNIQUE_NAME;
330#endif
331#ifdef WSAEBADFD
332 case WSAEBADFD: return VERR_INVALID_HANDLE;
333#endif
334 //case WSAEREMCHG 78 /* Remote address changed */
335 //case WSAELIBACC 79 /* Can not access a needed shared library */
336 //case WSAELIBBAD 80 /* Accessing a corrupted shared library */
337 //case WSAELIBSCN 81 /* .lib section in a.out corrupted */
338 //case WSAELIBMAX 82 /* Attempting to link in too many shared libraries */
339 //case WSAELIBEXEC 83 /* Cannot exec a shared library directly */
340#ifdef WSAEILSEQ
341 case WSAEILSEQ: return VERR_NO_TRANSLATION;
342#endif
343#ifdef WSAERESTART
344 case WSAERESTART: return VERR_INTERRUPTED;
345#endif
346 //case WSAESTRPIPE 86 /* Streams pipe error */
347 //case WSAEUSERS 87 /* Too many users */
348 case WSAENOTSOCK: return VERR_NET_NOT_SOCKET;
349 case WSAEDESTADDRREQ: return VERR_NET_DEST_ADDRESS_REQUIRED;
350 case WSAEMSGSIZE: return VERR_NET_MSG_SIZE;
351 case WSAEPROTOTYPE: return VERR_NET_PROTOCOL_TYPE;
352 case WSAENOPROTOOPT: return VERR_NET_PROTOCOL_NOT_AVAILABLE;
353 case WSAEPROTONOSUPPORT: return VERR_NET_PROTOCOL_NOT_SUPPORTED;
354 case WSAESOCKTNOSUPPORT: return VERR_NET_SOCKET_TYPE_NOT_SUPPORTED;
355 case WSAEOPNOTSUPP: return VERR_NET_OPERATION_NOT_SUPPORTED;
356 case WSAEPFNOSUPPORT: return VERR_NET_PROTOCOL_FAMILY_NOT_SUPPORTED;
357 case WSAEAFNOSUPPORT: return VERR_NET_ADDRESS_FAMILY_NOT_SUPPORTED;
358 case WSAEADDRINUSE: return VERR_NET_ADDRESS_IN_USE;
359 case WSAEADDRNOTAVAIL: return VERR_NET_ADDRESS_NOT_AVAILABLE;
360 case WSAENETDOWN: return VERR_NET_DOWN;
361 case WSAENETUNREACH: return VERR_NET_UNREACHABLE;
362 case WSAENETRESET: return VERR_NET_CONNECTION_RESET;
363 case WSAECONNABORTED: return VERR_NET_CONNECTION_ABORTED;
364 case WSAECONNRESET: return VERR_NET_CONNECTION_RESET_BY_PEER;
365 case WSAENOBUFS: return VERR_NET_NO_BUFFER_SPACE;
366 case WSAEISCONN: return VERR_NET_ALREADY_CONNECTED;
367 case WSAENOTCONN: return VERR_NET_NOT_CONNECTED;
368 case WSAESHUTDOWN: return VERR_NET_SHUTDOWN;
369 case WSAETOOMANYREFS: return VERR_NET_TOO_MANY_REFERENCES;
370 case WSAETIMEDOUT: return VERR_TIMEOUT;
371 case WSAECONNREFUSED: return VERR_NET_CONNECTION_REFUSED;
372 case WSAEHOSTDOWN: return VERR_NET_HOST_DOWN;
373 case WSAEHOSTUNREACH: return VERR_NET_HOST_UNREACHABLE;
374 case WSAEALREADY: return VERR_NET_ALREADY_IN_PROGRESS;
375 case WSAEINPROGRESS: return VERR_NET_IN_PROGRESS;
376 //case WSAESTALE 116 /* Stale NFS file handle */
377 //case WSAEUCLEAN 117 /* Structure needs cleaning */
378 //case WSAENOTNAM 118 /* Not a XENIX named type file */
379 //case WSAENAVAIL 119 /* No XENIX semaphores available */
380 //case WSAEISNAM 120 /* Is a named type file */
381 //case WSAEREMOTEIO 121 /* Remote I/O error */
382 case WSAEDQUOT: return VERR_DISK_FULL;
383#ifdef WSAENOMEDIUM
384 case WSAENOMEDIUM: return VERR_MEDIA_NOT_PRESENT;
385#endif
386#ifdef WSAEMEDIUMTYPE
387 case WSAEMEDIUMTYPE: return VERR_MEDIA_NOT_RECOGNIZED;
388#endif
389 case WSAEPROCLIM: return VERR_MAX_PROCS_REACHED;
390
391 //case WSAEDISCON: (WSABASEERR+101)
392 //case WSASYSNOTREADY (WSABASEERR+91)
393 //case WSAVERNOTSUPPORTED (WSABASEERR+92)
394 //case WSANOTINITIALISED (WSABASEERR+93)
395
396#ifdef WSAHOST_NOT_FOUND
397 case WSAHOST_NOT_FOUND: return VERR_NET_HOST_NOT_FOUND;
398#endif
399#ifdef WSATRY_AGAIN
400 case WSATRY_AGAIN: return VERR_TRY_AGAIN;
401#endif
402#ifndef WSANO_RECOVERY
403 case WSANO_RECOVERY: return VERR_IO_GEN_FAILURE;
404#endif
405#ifdef WSANO_DATA
406 case WSANO_DATA: return VERR_NET_ADDRESS_NOT_AVAILABLE;
407#endif
408
409
410#ifndef ERROR_NOT_A_REPARSE_POINT
411# define ERROR_NOT_A_REPARSE_POINT 0x1126
412#endif
413 case ERROR_NOT_A_REPARSE_POINT: return VERR_NOT_SYMLINK;
414
415 case NTE_BAD_ALGID: return VERR_CR_PKIX_UNKNOWN_DIGEST_TYPE;
416 }
417
418 /* unknown error. */
419#ifndef DEBUG_dmik
420 AssertMsgFailed(("Unhandled error %u\n", uNativeCode));
421#endif
422 return VERR_UNRESOLVED_ERROR;
423}
424
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