1 | /* $Id: RTErrConvertFromOS2.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Convert OS/2 error codes to iprt status codes.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #define INCL_ERRORS
|
---|
42 | #define INCL_DOSERRORS
|
---|
43 | #include <os2.h>
|
---|
44 | #undef RT_MAX
|
---|
45 |
|
---|
46 | #include <iprt/err.h>
|
---|
47 | #include <iprt/log.h>
|
---|
48 | #include <iprt/assert.h>
|
---|
49 |
|
---|
50 |
|
---|
51 | RTDECL(int) RTErrConvertFromOS2(unsigned uNativeCode)
|
---|
52 | {
|
---|
53 | /* very fast check for no error. */
|
---|
54 | if (uNativeCode == NO_ERROR)
|
---|
55 | return VINF_SUCCESS;
|
---|
56 |
|
---|
57 | switch (uNativeCode)
|
---|
58 | {
|
---|
59 | case ERROR_INVALID_FUNCTION: return VERR_INVALID_FUNCTION;
|
---|
60 | case ERROR_FILE_NOT_FOUND: return VERR_FILE_NOT_FOUND;
|
---|
61 | case ERROR_PATH_NOT_FOUND: return VERR_PATH_NOT_FOUND;
|
---|
62 | case ERROR_TOO_MANY_OPEN_FILES: return VERR_TOO_MANY_OPEN_FILES;
|
---|
63 | case ERROR_ACCESS_DENIED: return VERR_ACCESS_DENIED;
|
---|
64 |
|
---|
65 | case ERROR_INVALID_HANDLE:
|
---|
66 | case ERROR_DIRECT_ACCESS_HANDLE: return VERR_INVALID_HANDLE;
|
---|
67 |
|
---|
68 | case ERROR_NOT_ENOUGH_MEMORY: return VERR_NO_MEMORY;
|
---|
69 |
|
---|
70 | case ERROR_INVALID_DRIVE: return VERR_INVALID_DRIVE;
|
---|
71 | case ERROR_CURRENT_DIRECTORY: return VERR_CANT_DELETE_DIRECTORY;
|
---|
72 | case ERROR_NOT_SAME_DEVICE: return VERR_NOT_SAME_DEVICE;
|
---|
73 | case ERROR_NO_MORE_FILES: return VERR_NO_MORE_FILES;
|
---|
74 | case ERROR_WRITE_PROTECT: return VERR_WRITE_PROTECT;
|
---|
75 | case ERROR_BAD_UNIT: return VERR_IO_BAD_UNIT;
|
---|
76 | case ERROR_NOT_READY: return VERR_IO_NOT_READY;
|
---|
77 | case ERROR_BAD_COMMAND: return VERR_IO_BAD_COMMAND;
|
---|
78 | case ERROR_CRC: return VERR_IO_CRC;
|
---|
79 | case ERROR_BAD_LENGTH: return VERR_IO_BAD_LENGTH;
|
---|
80 | case ERROR_SEEK: return VERR_SEEK;
|
---|
81 | case ERROR_NOT_DOS_DISK: return VERR_DISK_INVALID_FORMAT;
|
---|
82 | case ERROR_SECTOR_NOT_FOUND: return VERR_IO_SECTOR_NOT_FOUND;
|
---|
83 | case ERROR_WRITE_FAULT: return VERR_WRITE_ERROR;
|
---|
84 | case ERROR_READ_FAULT: return VERR_READ_ERROR;
|
---|
85 | case ERROR_GEN_FAILURE: return VERR_IO_GEN_FAILURE;
|
---|
86 | case ERROR_SHARING_VIOLATION: return VERR_SHARING_VIOLATION;
|
---|
87 | case ERROR_LOCK_VIOLATION: return VERR_FILE_LOCK_FAILED;
|
---|
88 | case ERROR_HANDLE_EOF: return VERR_EOF;
|
---|
89 |
|
---|
90 | case ERROR_HANDLE_DISK_FULL:
|
---|
91 | case ERROR_DISK_FULL: return VERR_DISK_FULL;
|
---|
92 |
|
---|
93 | case ERROR_NOT_SUPPORTED: return VERR_NOT_SUPPORTED;
|
---|
94 |
|
---|
95 | case ERROR_INVALID_PARAMETER:
|
---|
96 | case ERROR_BAD_ARGUMENTS:
|
---|
97 | case ERROR_PMM_INVALID_FLAGS: return VERR_INVALID_PARAMETER;
|
---|
98 |
|
---|
99 | case ERROR_REM_NOT_LIST: return VERR_NET_IO_ERROR;
|
---|
100 |
|
---|
101 | case ERROR_BAD_NETPATH:
|
---|
102 | case ERROR_NETNAME_DELETED: return VERR_NET_HOST_NOT_FOUND;
|
---|
103 |
|
---|
104 | case ERROR_BAD_NET_NAME:
|
---|
105 | case ERROR_DEV_NOT_EXIST: return VERR_NET_PATH_NOT_FOUND;
|
---|
106 |
|
---|
107 | case ERROR_NETWORK_BUSY:
|
---|
108 | case ERROR_TOO_MANY_CMDS:
|
---|
109 | case ERROR_TOO_MANY_NAMES:
|
---|
110 | case ERROR_TOO_MANY_SESS:
|
---|
111 | case ERROR_OUT_OF_STRUCTURES: return VERR_NET_OUT_OF_RESOURCES;
|
---|
112 |
|
---|
113 | case ERROR_PRINTQ_FULL:
|
---|
114 | case ERROR_NO_SPOOL_SPACE:
|
---|
115 | case ERROR_PRINT_CANCELLED: return VERR_NET_PRINT_ERROR;
|
---|
116 |
|
---|
117 | case ERROR_DUP_NAME:
|
---|
118 | case ERROR_ADAP_HDW_ERR:
|
---|
119 | case ERROR_BAD_NET_RESP:
|
---|
120 | case ERROR_UNEXP_NET_ERR:
|
---|
121 | case ERROR_BAD_REM_ADAP:
|
---|
122 | case ERROR_NETWORK_ACCESS_DENIED:
|
---|
123 | case ERROR_BAD_DEV_TYPE:
|
---|
124 | case ERROR_SHARING_PAUSED:
|
---|
125 | case ERROR_REQ_NOT_ACCEP:
|
---|
126 | case ERROR_REDIR_PAUSED:
|
---|
127 | case ERROR_ALREADY_ASSIGNED:
|
---|
128 | case ERROR_INVALID_PASSWORD:
|
---|
129 | case ERROR_NET_WRITE_FAULT: return VERR_NET_IO_ERROR;
|
---|
130 |
|
---|
131 | case ERROR_FILE_EXISTS:
|
---|
132 | case ERROR_ALREADY_EXISTS: return VERR_ALREADY_EXISTS;
|
---|
133 |
|
---|
134 | case ERROR_CANNOT_MAKE: return VERR_CANT_CREATE;
|
---|
135 | case ERROR_NO_PROC_SLOTS: return VERR_MAX_PROCS_REACHED;
|
---|
136 | case ERROR_TOO_MANY_SEMAPHORES: return VERR_TOO_MANY_SEMAPHORES;
|
---|
137 | case ERROR_EXCL_SEM_ALREADY_OWNED: return VERR_EXCL_SEM_ALREADY_OWNED;
|
---|
138 | case ERROR_SEM_IS_SET: return VERR_SEM_IS_SET;
|
---|
139 | case ERROR_TOO_MANY_SEM_REQUESTS: return VERR_TOO_MANY_SEM_REQUESTS;
|
---|
140 | case ERROR_SEM_OWNER_DIED: return VERR_SEM_OWNER_DIED;
|
---|
141 | case ERROR_DRIVE_LOCKED: return VERR_DRIVE_LOCKED;
|
---|
142 | case ERROR_BROKEN_PIPE: return VERR_BROKEN_PIPE;
|
---|
143 | case ERROR_OPEN_FAILED: return VERR_OPEN_FAILED;
|
---|
144 |
|
---|
145 | case ERROR_BUFFER_OVERFLOW:
|
---|
146 | case ERROR_INSUFFICIENT_BUFFER: return VERR_BUFFER_OVERFLOW;
|
---|
147 |
|
---|
148 | case ERROR_NO_MORE_SEARCH_HANDLES: return VERR_NO_MORE_SEARCH_HANDLES;
|
---|
149 |
|
---|
150 | case ERROR_SEM_TIMEOUT:
|
---|
151 | case ERROR_TIMEOUT: return VERR_TIMEOUT;
|
---|
152 |
|
---|
153 | case ERROR_INVALID_NAME:
|
---|
154 | case ERROR_BAD_PATHNAME: return VERR_INVALID_NAME;
|
---|
155 |
|
---|
156 | case ERROR_NEGATIVE_SEEK: return VERR_NEGATIVE_SEEK;
|
---|
157 | case ERROR_SEEK_ON_DEVICE: return VERR_SEEK_ON_DEVICE;
|
---|
158 |
|
---|
159 | case ERROR_SIGNAL_REFUSED:
|
---|
160 | case ERROR_NO_SIGNAL_SENT: return VERR_SIGNAL_REFUSED;
|
---|
161 |
|
---|
162 | case ERROR_SIGNAL_PENDING: return VERR_SIGNAL_PENDING;
|
---|
163 | case ERROR_MAX_THRDS_REACHED: return VERR_MAX_THRDS_REACHED;
|
---|
164 | case ERROR_LOCK_FAILED: return VERR_FILE_LOCK_FAILED;
|
---|
165 | case ERROR_SEM_NOT_FOUND: return VERR_SEM_NOT_FOUND;
|
---|
166 | case ERROR_FILENAME_EXCED_RANGE: return VERR_FILENAME_TOO_LONG;
|
---|
167 | case ERROR_INVALID_SIGNAL_NUMBER: return VERR_SIGNAL_INVALID;
|
---|
168 |
|
---|
169 | case ERROR_BAD_PIPE: return VERR_BAD_PIPE;
|
---|
170 | case ERROR_PIPE_BUSY: return VERR_PIPE_BUSY;
|
---|
171 | case ERROR_NO_DATA: return VERR_NO_DATA;
|
---|
172 | case ERROR_PIPE_NOT_CONNECTED: return VERR_PIPE_NOT_CONNECTED;
|
---|
173 | case ERROR_MORE_DATA: return VERR_MORE_DATA;
|
---|
174 | case ERROR_NOT_OWNER: return VERR_NOT_OWNER;
|
---|
175 | case ERROR_TOO_MANY_POSTS: return VERR_TOO_MANY_POSTS;
|
---|
176 |
|
---|
177 | case ERROR_INTERRUPT: return VERR_INTERRUPTED;
|
---|
178 |
|
---|
179 | case ERROR_BUSY: return VERR_MEMORY_BUSY;
|
---|
180 | //case ERROR_NO_UNICODE_TRANSLATION: return VERR_NO_TRANSLATION;
|
---|
181 | }
|
---|
182 |
|
---|
183 | /* unknown error. */
|
---|
184 | AssertLogRelMsgFailed(("Unhandled error %u\n", uNativeCode));
|
---|
185 | return VERR_UNRESOLVED_ERROR;
|
---|
186 | }
|
---|
187 |
|
---|