doserrors: print out some more werrors.
[samba.git] / libcli / util / ntstatus.h
1 /* 
2    Unix SMB/CIFS implementation.
3    NT error code constants
4    Copyright (C) Andrew Tridgell              1992-2000
5    Copyright (C) John H Terpstra              1996-2000
6    Copyright (C) Luke Kenneth Casson Leighton 1996-2000
7    Copyright (C) Paul Ashton                  1998-2000
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 #ifndef _NTSTATUS_H
24 #define _NTSTATUS_H
25
26 /* the following rather strange looking definitions of NTSTATUS 
27    are there in order to catch common coding errors where different error types
28    are mixed up. This is especially important as we slowly convert Samba
29    from using bool for internal functions 
30 */
31
32 #if defined(HAVE_IMMEDIATE_STRUCTURES)
33 typedef struct {uint32_t v;} NTSTATUS;
34 #define NT_STATUS(x) ((NTSTATUS) { x })
35 #define NT_STATUS_V(x) ((x).v)
36 #else
37 typedef uint32_t NTSTATUS;
38 #define NT_STATUS(x) (x)
39 #define NT_STATUS_V(x) (x)
40 #endif
41
42 /* Win32 Status codes. */
43
44 #define STATUS_BUFFER_OVERFLOW            NT_STATUS(0x80000005)
45 #define STATUS_NO_MORE_FILES              NT_STATUS(0x80000006)
46 #define STATUS_NO_MORE_EAS                NT_STATUS(0x80000012) 
47 #define STATUS_INVALID_EA_NAME            NT_STATUS(0x80000013)
48 #define STATUS_EA_LIST_INCONSISTENT       NT_STATUS(0x80000014)
49 #define STATUS_INVALID_EA_FLAG            NT_STATUS(0x80000015)
50 #define NT_STATUS_NO_MORE_ENTRIES         NT_STATUS(0x8000001a)
51
52 #define STATUS_PENDING                    NT_STATUS(0x0103)
53 /* Vista Status codes. */
54 #define NT_STATUS_INACCESSIBLE_SYSTEM_SHORTCUT         NT_STATUS(0x8000002d)
55 #define STATUS_MORE_ENTRIES               NT_STATUS(0x0105)
56 #define STATUS_SOME_UNMAPPED              NT_STATUS(0x0107)
57 #define STATUS_NOTIFY_CLEANUP             NT_STATUS(0x010b)
58 #define STATUS_NOTIFY_ENUM_DIR            NT_STATUS(0x010c)
59 #define ERROR_INVALID_PARAMETER           NT_STATUS(0x0057)
60 #define ERROR_INSUFFICIENT_BUFFER         NT_STATUS(0x007a)
61 #define ERROR_INVALID_DATATYPE            NT_STATUS(0x070c)
62
63 /* Win7 status codes. */
64 #define NT_STATUS_INVALID_LOCK_RANGE      NT_STATUS(0xC0000000 | 0x01a1)
65
66 /* Win32 Error codes extracted using a loop in smbclient then printing a
67    netmon sniff to a file. */
68
69 /*
70                        --------------
71                       /              \
72                      /      REST      \
73                     /        IN        \
74                    /       PEACE        \
75                   /                      \
76                   | NT_STATUS_NOPROBLEMO |
77                   |                      |
78                   |                      |
79                   |      4 September     |
80                   |                      |
81                   |         2001         |
82                  *|     *  *  *          | *
83         _________)/\\_//(\/(/\)/\//\/\///|_)_______
84 */
85
86 #define NT_STATUS_OK NT_STATUS(0x0000)
87 #define NT_STATUS_UNSUCCESSFUL NT_STATUS(0xC0000000 | 0x0001)
88 #define NT_STATUS_NOT_IMPLEMENTED NT_STATUS(0xC0000000 | 0x0002)
89 #define NT_STATUS_INVALID_INFO_CLASS NT_STATUS(0xC0000000 | 0x0003)
90 #define NT_STATUS_INFO_LENGTH_MISMATCH NT_STATUS(0xC0000000 | 0x0004)
91 #define NT_STATUS_ACCESS_VIOLATION NT_STATUS(0xC0000000 | 0x0005)
92 #define NT_STATUS_IN_PAGE_ERROR NT_STATUS(0xC0000000 | 0x0006)
93 #define NT_STATUS_PAGEFILE_QUOTA NT_STATUS(0xC0000000 | 0x0007)
94 #define NT_STATUS_INVALID_HANDLE NT_STATUS(0xC0000000 | 0x0008)
95 #define NT_STATUS_BAD_INITIAL_STACK NT_STATUS(0xC0000000 | 0x0009)
96 #define NT_STATUS_BAD_INITIAL_PC NT_STATUS(0xC0000000 | 0x000a)
97 #define NT_STATUS_INVALID_CID NT_STATUS(0xC0000000 | 0x000b)
98 #define NT_STATUS_TIMER_NOT_CANCELED NT_STATUS(0xC0000000 | 0x000c)
99 #define NT_STATUS_INVALID_PARAMETER NT_STATUS(0xC0000000 | 0x000d)
100 #define NT_STATUS_NO_SUCH_DEVICE NT_STATUS(0xC0000000 | 0x000e)
101 #define NT_STATUS_NO_SUCH_FILE NT_STATUS(0xC0000000 | 0x000f)
102 #define NT_STATUS_INVALID_DEVICE_REQUEST NT_STATUS(0xC0000000 | 0x0010)
103 #define NT_STATUS_END_OF_FILE NT_STATUS(0xC0000000 | 0x0011)
104 #define NT_STATUS_WRONG_VOLUME NT_STATUS(0xC0000000 | 0x0012)
105 #define NT_STATUS_NO_MEDIA_IN_DEVICE NT_STATUS(0xC0000000 | 0x0013)
106 #define NT_STATUS_UNRECOGNIZED_MEDIA NT_STATUS(0xC0000000 | 0x0014)
107 #define NT_STATUS_NONEXISTENT_SECTOR NT_STATUS(0xC0000000 | 0x0015)
108 #define NT_STATUS_MORE_PROCESSING_REQUIRED NT_STATUS(0xC0000000 | 0x0016)
109 #if 0
110 /* this demonstrates a little trick when tracking down error codes */
111 #define NT_STATUS_NO_MEMORY (printf("no memory at %s\n", __location__), NT_STATUS(0xC0000000 | 0x0017))
112 #else
113 #define NT_STATUS_NO_MEMORY NT_STATUS(0xC0000000 | 0x0017)
114 #endif
115 #define NT_STATUS_CONFLICTING_ADDRESSES NT_STATUS(0xC0000000 | 0x0018)
116 #define NT_STATUS_NOT_MAPPED_VIEW NT_STATUS(0xC0000000 | 0x0019)
117 #define NT_STATUS_UNABLE_TO_FREE_VM NT_STATUS(0xC0000000 | 0x001a)
118 #define NT_STATUS_UNABLE_TO_DELETE_SECTION NT_STATUS(0xC0000000 | 0x001b)
119 #define NT_STATUS_INVALID_SYSTEM_SERVICE NT_STATUS(0xC0000000 | 0x001c)
120 #define NT_STATUS_ILLEGAL_INSTRUCTION NT_STATUS(0xC0000000 | 0x001d)
121 #define NT_STATUS_INVALID_LOCK_SEQUENCE NT_STATUS(0xC0000000 | 0x001e)
122 #define NT_STATUS_INVALID_VIEW_SIZE NT_STATUS(0xC0000000 | 0x001f)
123 #define NT_STATUS_INVALID_FILE_FOR_SECTION NT_STATUS(0xC0000000 | 0x0020)
124 #define NT_STATUS_ALREADY_COMMITTED NT_STATUS(0xC0000000 | 0x0021)
125 #if 0
126 /* this demonstrates a little trick when tracking down error codes */
127 #define NT_STATUS_ACCESS_DENIED (printf("access denied at %s\n", __location__), NT_STATUS(0xC0000000 | 0x0022))
128 #else
129 #define NT_STATUS_ACCESS_DENIED NT_STATUS(0xC0000000 | 0x0022)
130 #endif
131 #define NT_STATUS_BUFFER_TOO_SMALL NT_STATUS(0xC0000000 | 0x0023)
132 #define NT_STATUS_OBJECT_TYPE_MISMATCH NT_STATUS(0xC0000000 | 0x0024)
133 #define NT_STATUS_NONCONTINUABLE_EXCEPTION NT_STATUS(0xC0000000 | 0x0025)
134 #define NT_STATUS_INVALID_DISPOSITION NT_STATUS(0xC0000000 | 0x0026)
135 #define NT_STATUS_UNWIND NT_STATUS(0xC0000000 | 0x0027)
136 #define NT_STATUS_BAD_STACK NT_STATUS(0xC0000000 | 0x0028)
137 #define NT_STATUS_INVALID_UNWIND_TARGET NT_STATUS(0xC0000000 | 0x0029)
138 #define NT_STATUS_NOT_LOCKED NT_STATUS(0xC0000000 | 0x002a)
139 #define NT_STATUS_PARITY_ERROR NT_STATUS(0xC0000000 | 0x002b)
140 #define NT_STATUS_UNABLE_TO_DECOMMIT_VM NT_STATUS(0xC0000000 | 0x002c)
141 #define NT_STATUS_NOT_COMMITTED NT_STATUS(0xC0000000 | 0x002d)
142 #define NT_STATUS_INVALID_PORT_ATTRIBUTES NT_STATUS(0xC0000000 | 0x002e)
143 #define NT_STATUS_PORT_MESSAGE_TOO_LONG NT_STATUS(0xC0000000 | 0x002f)
144 #define NT_STATUS_INVALID_PARAMETER_MIX NT_STATUS(0xC0000000 | 0x0030)
145 #define NT_STATUS_INVALID_QUOTA_LOWER NT_STATUS(0xC0000000 | 0x0031)
146 #define NT_STATUS_DISK_CORRUPT_ERROR NT_STATUS(0xC0000000 | 0x0032)
147 #define NT_STATUS_OBJECT_NAME_INVALID NT_STATUS(0xC0000000 | 0x0033)
148 #define NT_STATUS_OBJECT_NAME_NOT_FOUND NT_STATUS(0xC0000000 | 0x0034)
149 #define NT_STATUS_OBJECT_NAME_COLLISION NT_STATUS(0xC0000000 | 0x0035)
150 #define NT_STATUS_HANDLE_NOT_WAITABLE NT_STATUS(0xC0000000 | 0x0036)
151 #define NT_STATUS_PORT_DISCONNECTED NT_STATUS(0xC0000000 | 0x0037)
152 #define NT_STATUS_DEVICE_ALREADY_ATTACHED NT_STATUS(0xC0000000 | 0x0038)
153 #define NT_STATUS_OBJECT_PATH_INVALID NT_STATUS(0xC0000000 | 0x0039)
154 #define NT_STATUS_OBJECT_PATH_NOT_FOUND NT_STATUS(0xC0000000 | 0x003a)
155 #define NT_STATUS_OBJECT_PATH_SYNTAX_BAD NT_STATUS(0xC0000000 | 0x003b)
156 #define NT_STATUS_DATA_OVERRUN NT_STATUS(0xC0000000 | 0x003c)
157 #define NT_STATUS_DATA_LATE_ERROR NT_STATUS(0xC0000000 | 0x003d)
158 #define NT_STATUS_DATA_ERROR NT_STATUS(0xC0000000 | 0x003e)
159 #define NT_STATUS_CRC_ERROR NT_STATUS(0xC0000000 | 0x003f)
160 #define NT_STATUS_SECTION_TOO_BIG NT_STATUS(0xC0000000 | 0x0040)
161 #define NT_STATUS_PORT_CONNECTION_REFUSED NT_STATUS(0xC0000000 | 0x0041)
162 #define NT_STATUS_INVALID_PORT_HANDLE NT_STATUS(0xC0000000 | 0x0042)
163 #define NT_STATUS_SHARING_VIOLATION NT_STATUS(0xC0000000 | 0x0043)
164 #define NT_STATUS_QUOTA_EXCEEDED NT_STATUS(0xC0000000 | 0x0044)
165 #define NT_STATUS_INVALID_PAGE_PROTECTION NT_STATUS(0xC0000000 | 0x0045)
166 #define NT_STATUS_MUTANT_NOT_OWNED NT_STATUS(0xC0000000 | 0x0046)
167 #define NT_STATUS_SEMAPHORE_LIMIT_EXCEEDED NT_STATUS(0xC0000000 | 0x0047)
168 #define NT_STATUS_PORT_ALREADY_SET NT_STATUS(0xC0000000 | 0x0048)
169 #define NT_STATUS_SECTION_NOT_IMAGE NT_STATUS(0xC0000000 | 0x0049)
170 #define NT_STATUS_SUSPEND_COUNT_EXCEEDED NT_STATUS(0xC0000000 | 0x004a)
171 #define NT_STATUS_THREAD_IS_TERMINATING NT_STATUS(0xC0000000 | 0x004b)
172 #define NT_STATUS_BAD_WORKING_SET_LIMIT NT_STATUS(0xC0000000 | 0x004c)
173 #define NT_STATUS_INCOMPATIBLE_FILE_MAP NT_STATUS(0xC0000000 | 0x004d)
174 #define NT_STATUS_SECTION_PROTECTION NT_STATUS(0xC0000000 | 0x004e)
175 #define NT_STATUS_EAS_NOT_SUPPORTED NT_STATUS(0xC0000000 | 0x004f)
176 #define NT_STATUS_EA_TOO_LARGE NT_STATUS(0xC0000000 | 0x0050)
177 #define NT_STATUS_NONEXISTENT_EA_ENTRY NT_STATUS(0xC0000000 | 0x0051)
178 #define NT_STATUS_NO_EAS_ON_FILE NT_STATUS(0xC0000000 | 0x0052)
179 #define NT_STATUS_EA_CORRUPT_ERROR NT_STATUS(0xC0000000 | 0x0053)
180 #define NT_STATUS_FILE_LOCK_CONFLICT NT_STATUS(0xC0000000 | 0x0054)
181 #define NT_STATUS_LOCK_NOT_GRANTED NT_STATUS(0xC0000000 | 0x0055)
182 #define NT_STATUS_DELETE_PENDING NT_STATUS(0xC0000000 | 0x0056)
183 #define NT_STATUS_CTL_FILE_NOT_SUPPORTED NT_STATUS(0xC0000000 | 0x0057)
184 #define NT_STATUS_UNKNOWN_REVISION NT_STATUS(0xC0000000 | 0x0058)
185 #define NT_STATUS_REVISION_MISMATCH NT_STATUS(0xC0000000 | 0x0059)
186 #define NT_STATUS_INVALID_OWNER NT_STATUS(0xC0000000 | 0x005a)
187 #define NT_STATUS_INVALID_PRIMARY_GROUP NT_STATUS(0xC0000000 | 0x005b)
188 #define NT_STATUS_NO_IMPERSONATION_TOKEN NT_STATUS(0xC0000000 | 0x005c)
189 #define NT_STATUS_CANT_DISABLE_MANDATORY NT_STATUS(0xC0000000 | 0x005d)
190 #define NT_STATUS_NO_LOGON_SERVERS NT_STATUS(0xC0000000 | 0x005e)
191 #define NT_STATUS_NO_SUCH_LOGON_SESSION NT_STATUS(0xC0000000 | 0x005f)
192 #define NT_STATUS_NO_SUCH_PRIVILEGE NT_STATUS(0xC0000000 | 0x0060)
193 #define NT_STATUS_PRIVILEGE_NOT_HELD NT_STATUS(0xC0000000 | 0x0061)
194 #define NT_STATUS_INVALID_ACCOUNT_NAME NT_STATUS(0xC0000000 | 0x0062)
195 #define NT_STATUS_USER_EXISTS NT_STATUS(0xC0000000 | 0x0063)
196 #define NT_STATUS_NO_SUCH_USER NT_STATUS(0xC0000000 | 0x0064)
197 #define NT_STATUS_GROUP_EXISTS NT_STATUS(0xC0000000 | 0x0065)
198 #define NT_STATUS_NO_SUCH_GROUP NT_STATUS(0xC0000000 | 0x0066)
199 #define NT_STATUS_MEMBER_IN_GROUP NT_STATUS(0xC0000000 | 0x0067)
200 #define NT_STATUS_MEMBER_NOT_IN_GROUP NT_STATUS(0xC0000000 | 0x0068)
201 #define NT_STATUS_LAST_ADMIN NT_STATUS(0xC0000000 | 0x0069)
202 #define NT_STATUS_WRONG_PASSWORD NT_STATUS(0xC0000000 | 0x006a)
203 #define NT_STATUS_ILL_FORMED_PASSWORD NT_STATUS(0xC0000000 | 0x006b)
204 #define NT_STATUS_PASSWORD_RESTRICTION NT_STATUS(0xC0000000 | 0x006c)
205 #define NT_STATUS_LOGON_FAILURE NT_STATUS(0xC0000000 | 0x006d)
206 #define NT_STATUS_ACCOUNT_RESTRICTION NT_STATUS(0xC0000000 | 0x006e)
207 #define NT_STATUS_INVALID_LOGON_HOURS NT_STATUS(0xC0000000 | 0x006f)
208 #define NT_STATUS_INVALID_WORKSTATION NT_STATUS(0xC0000000 | 0x0070)
209 #define NT_STATUS_PASSWORD_EXPIRED NT_STATUS(0xC0000000 | 0x0071)
210 #define NT_STATUS_ACCOUNT_DISABLED NT_STATUS(0xC0000000 | 0x0072)
211 #define NT_STATUS_NONE_MAPPED NT_STATUS(0xC0000000 | 0x0073)
212 #define NT_STATUS_TOO_MANY_LUIDS_REQUESTED NT_STATUS(0xC0000000 | 0x0074)
213 #define NT_STATUS_LUIDS_EXHAUSTED NT_STATUS(0xC0000000 | 0x0075)
214 #define NT_STATUS_INVALID_SUB_AUTHORITY NT_STATUS(0xC0000000 | 0x0076)
215 #define NT_STATUS_INVALID_ACL NT_STATUS(0xC0000000 | 0x0077)
216 #define NT_STATUS_INVALID_SID NT_STATUS(0xC0000000 | 0x0078)
217 #define NT_STATUS_INVALID_SECURITY_DESCR NT_STATUS(0xC0000000 | 0x0079)
218 #define NT_STATUS_PROCEDURE_NOT_FOUND NT_STATUS(0xC0000000 | 0x007a)
219 #define NT_STATUS_INVALID_IMAGE_FORMAT NT_STATUS(0xC0000000 | 0x007b)
220 #define NT_STATUS_NO_TOKEN NT_STATUS(0xC0000000 | 0x007c)
221 #define NT_STATUS_BAD_INHERITANCE_ACL NT_STATUS(0xC0000000 | 0x007d)
222 #define NT_STATUS_RANGE_NOT_LOCKED NT_STATUS(0xC0000000 | 0x007e)
223 #define NT_STATUS_DISK_FULL NT_STATUS(0xC0000000 | 0x007f)
224 #define NT_STATUS_SERVER_DISABLED NT_STATUS(0xC0000000 | 0x0080)
225 #define NT_STATUS_SERVER_NOT_DISABLED NT_STATUS(0xC0000000 | 0x0081)
226 #define NT_STATUS_TOO_MANY_GUIDS_REQUESTED NT_STATUS(0xC0000000 | 0x0082)
227 #define NT_STATUS_GUIDS_EXHAUSTED NT_STATUS(0xC0000000 | 0x0083)
228 #define NT_STATUS_INVALID_ID_AUTHORITY NT_STATUS(0xC0000000 | 0x0084)
229 #define NT_STATUS_AGENTS_EXHAUSTED NT_STATUS(0xC0000000 | 0x0085)
230 #define NT_STATUS_INVALID_VOLUME_LABEL NT_STATUS(0xC0000000 | 0x0086)
231 #define NT_STATUS_SECTION_NOT_EXTENDED NT_STATUS(0xC0000000 | 0x0087)
232 #define NT_STATUS_NOT_MAPPED_DATA NT_STATUS(0xC0000000 | 0x0088)
233 #define NT_STATUS_RESOURCE_DATA_NOT_FOUND NT_STATUS(0xC0000000 | 0x0089)
234 #define NT_STATUS_RESOURCE_TYPE_NOT_FOUND NT_STATUS(0xC0000000 | 0x008a)
235 #define NT_STATUS_RESOURCE_NAME_NOT_FOUND NT_STATUS(0xC0000000 | 0x008b)
236 #define NT_STATUS_ARRAY_BOUNDS_EXCEEDED NT_STATUS(0xC0000000 | 0x008c)
237 #define NT_STATUS_FLOAT_DENORMAL_OPERAND NT_STATUS(0xC0000000 | 0x008d)
238 #define NT_STATUS_FLOAT_DIVIDE_BY_ZERO NT_STATUS(0xC0000000 | 0x008e)
239 #define NT_STATUS_FLOAT_INEXACT_RESULT NT_STATUS(0xC0000000 | 0x008f)
240 #define NT_STATUS_FLOAT_INVALID_OPERATION NT_STATUS(0xC0000000 | 0x0090)
241 #define NT_STATUS_FLOAT_OVERFLOW NT_STATUS(0xC0000000 | 0x0091)
242 #define NT_STATUS_FLOAT_STACK_CHECK NT_STATUS(0xC0000000 | 0x0092)
243 #define NT_STATUS_FLOAT_UNDERFLOW NT_STATUS(0xC0000000 | 0x0093)
244 #define NT_STATUS_INTEGER_DIVIDE_BY_ZERO NT_STATUS(0xC0000000 | 0x0094)
245 #define NT_STATUS_INTEGER_OVERFLOW NT_STATUS(0xC0000000 | 0x0095)
246 #define NT_STATUS_PRIVILEGED_INSTRUCTION NT_STATUS(0xC0000000 | 0x0096)
247 #define NT_STATUS_TOO_MANY_PAGING_FILES NT_STATUS(0xC0000000 | 0x0097)
248 #define NT_STATUS_FILE_INVALID NT_STATUS(0xC0000000 | 0x0098)
249 #define NT_STATUS_ALLOTTED_SPACE_EXCEEDED NT_STATUS(0xC0000000 | 0x0099)
250 #define NT_STATUS_INSUFFICIENT_RESOURCES NT_STATUS(0xC0000000 | 0x009a)
251 #define NT_STATUS_DFS_EXIT_PATH_FOUND NT_STATUS(0xC0000000 | 0x009b)
252 #define NT_STATUS_DEVICE_DATA_ERROR NT_STATUS(0xC0000000 | 0x009c)
253 #define NT_STATUS_DEVICE_NOT_CONNECTED NT_STATUS(0xC0000000 | 0x009d)
254 #define NT_STATUS_DEVICE_POWER_FAILURE NT_STATUS(0xC0000000 | 0x009e)
255 #define NT_STATUS_FREE_VM_NOT_AT_BASE NT_STATUS(0xC0000000 | 0x009f)
256 #define NT_STATUS_MEMORY_NOT_ALLOCATED NT_STATUS(0xC0000000 | 0x00a0)
257 #define NT_STATUS_WORKING_SET_QUOTA NT_STATUS(0xC0000000 | 0x00a1)
258 #define NT_STATUS_MEDIA_WRITE_PROTECTED NT_STATUS(0xC0000000 | 0x00a2)
259 #define NT_STATUS_DEVICE_NOT_READY NT_STATUS(0xC0000000 | 0x00a3)
260 #define NT_STATUS_INVALID_GROUP_ATTRIBUTES NT_STATUS(0xC0000000 | 0x00a4)
261 #define NT_STATUS_BAD_IMPERSONATION_LEVEL NT_STATUS(0xC0000000 | 0x00a5)
262 #define NT_STATUS_CANT_OPEN_ANONYMOUS NT_STATUS(0xC0000000 | 0x00a6)
263 #define NT_STATUS_BAD_VALIDATION_CLASS NT_STATUS(0xC0000000 | 0x00a7)
264 #define NT_STATUS_BAD_TOKEN_TYPE NT_STATUS(0xC0000000 | 0x00a8)
265 #define NT_STATUS_BAD_MASTER_BOOT_RECORD NT_STATUS(0xC0000000 | 0x00a9)
266 #define NT_STATUS_INSTRUCTION_MISALIGNMENT NT_STATUS(0xC0000000 | 0x00aa)
267 #define NT_STATUS_INSTANCE_NOT_AVAILABLE NT_STATUS(0xC0000000 | 0x00ab)
268 #define NT_STATUS_PIPE_NOT_AVAILABLE NT_STATUS(0xC0000000 | 0x00ac)
269 #define NT_STATUS_INVALID_PIPE_STATE NT_STATUS(0xC0000000 | 0x00ad)
270 #define NT_STATUS_PIPE_BUSY NT_STATUS(0xC0000000 | 0x00ae)
271 #define NT_STATUS_ILLEGAL_FUNCTION NT_STATUS(0xC0000000 | 0x00af)
272 #define NT_STATUS_PIPE_DISCONNECTED NT_STATUS(0xC0000000 | 0x00b0)
273 #define NT_STATUS_PIPE_CLOSING NT_STATUS(0xC0000000 | 0x00b1)
274 #define NT_STATUS_PIPE_CONNECTED NT_STATUS(0xC0000000 | 0x00b2)
275 #define NT_STATUS_PIPE_LISTENING NT_STATUS(0xC0000000 | 0x00b3)
276 #define NT_STATUS_INVALID_READ_MODE NT_STATUS(0xC0000000 | 0x00b4)
277 #define NT_STATUS_IO_TIMEOUT NT_STATUS(0xC0000000 | 0x00b5)
278 #define NT_STATUS_FILE_FORCED_CLOSED NT_STATUS(0xC0000000 | 0x00b6)
279 #define NT_STATUS_PROFILING_NOT_STARTED NT_STATUS(0xC0000000 | 0x00b7)
280 #define NT_STATUS_PROFILING_NOT_STOPPED NT_STATUS(0xC0000000 | 0x00b8)
281 #define NT_STATUS_COULD_NOT_INTERPRET NT_STATUS(0xC0000000 | 0x00b9)
282 #define NT_STATUS_FILE_IS_A_DIRECTORY NT_STATUS(0xC0000000 | 0x00ba)
283 #define NT_STATUS_NOT_SUPPORTED NT_STATUS(0xC0000000 | 0x00bb)
284 #define NT_STATUS_REMOTE_NOT_LISTENING NT_STATUS(0xC0000000 | 0x00bc)
285 #define NT_STATUS_DUPLICATE_NAME NT_STATUS(0xC0000000 | 0x00bd)
286 #define NT_STATUS_BAD_NETWORK_PATH NT_STATUS(0xC0000000 | 0x00be)
287 #define NT_STATUS_NETWORK_BUSY NT_STATUS(0xC0000000 | 0x00bf)
288 #define NT_STATUS_DEVICE_DOES_NOT_EXIST NT_STATUS(0xC0000000 | 0x00c0)
289 #define NT_STATUS_TOO_MANY_COMMANDS NT_STATUS(0xC0000000 | 0x00c1)
290 #define NT_STATUS_ADAPTER_HARDWARE_ERROR NT_STATUS(0xC0000000 | 0x00c2)
291 #define NT_STATUS_INVALID_NETWORK_RESPONSE NT_STATUS(0xC0000000 | 0x00c3)
292 #define NT_STATUS_UNEXPECTED_NETWORK_ERROR NT_STATUS(0xC0000000 | 0x00c4)
293 #define NT_STATUS_BAD_REMOTE_ADAPTER NT_STATUS(0xC0000000 | 0x00c5)
294 #define NT_STATUS_PRINT_QUEUE_FULL NT_STATUS(0xC0000000 | 0x00c6)
295 #define NT_STATUS_NO_SPOOL_SPACE NT_STATUS(0xC0000000 | 0x00c7)
296 #define NT_STATUS_PRINT_CANCELLED NT_STATUS(0xC0000000 | 0x00c8)
297 #define NT_STATUS_NETWORK_NAME_DELETED NT_STATUS(0xC0000000 | 0x00c9)
298 #define NT_STATUS_NETWORK_ACCESS_DENIED NT_STATUS(0xC0000000 | 0x00ca)
299 #define NT_STATUS_BAD_DEVICE_TYPE NT_STATUS(0xC0000000 | 0x00cb)
300 #define NT_STATUS_BAD_NETWORK_NAME NT_STATUS(0xC0000000 | 0x00cc)
301 #define NT_STATUS_TOO_MANY_NAMES NT_STATUS(0xC0000000 | 0x00cd)
302 #define NT_STATUS_TOO_MANY_SESSIONS NT_STATUS(0xC0000000 | 0x00ce)
303 #define NT_STATUS_SHARING_PAUSED NT_STATUS(0xC0000000 | 0x00cf)
304 #define NT_STATUS_REQUEST_NOT_ACCEPTED NT_STATUS(0xC0000000 | 0x00d0)
305 #define NT_STATUS_REDIRECTOR_PAUSED NT_STATUS(0xC0000000 | 0x00d1)
306 #define NT_STATUS_NET_WRITE_FAULT NT_STATUS(0xC0000000 | 0x00d2)
307 #define NT_STATUS_PROFILING_AT_LIMIT NT_STATUS(0xC0000000 | 0x00d3)
308 #define NT_STATUS_NOT_SAME_DEVICE NT_STATUS(0xC0000000 | 0x00d4)
309 #define NT_STATUS_FILE_RENAMED NT_STATUS(0xC0000000 | 0x00d5)
310 #define NT_STATUS_VIRTUAL_CIRCUIT_CLOSED NT_STATUS(0xC0000000 | 0x00d6)
311 #define NT_STATUS_NO_SECURITY_ON_OBJECT NT_STATUS(0xC0000000 | 0x00d7)
312 #define NT_STATUS_CANT_WAIT NT_STATUS(0xC0000000 | 0x00d8)
313 #define NT_STATUS_PIPE_EMPTY NT_STATUS(0xC0000000 | 0x00d9)
314 #define NT_STATUS_CANT_ACCESS_DOMAIN_INFO NT_STATUS(0xC0000000 | 0x00da)
315 #define NT_STATUS_CANT_TERMINATE_SELF NT_STATUS(0xC0000000 | 0x00db)
316 #define NT_STATUS_INVALID_SERVER_STATE NT_STATUS(0xC0000000 | 0x00dc)
317 #define NT_STATUS_INVALID_DOMAIN_STATE NT_STATUS(0xC0000000 | 0x00dd)
318 #define NT_STATUS_INVALID_DOMAIN_ROLE NT_STATUS(0xC0000000 | 0x00de)
319 #define NT_STATUS_NO_SUCH_DOMAIN NT_STATUS(0xC0000000 | 0x00df)
320 #define NT_STATUS_DOMAIN_EXISTS NT_STATUS(0xC0000000 | 0x00e0)
321 #define NT_STATUS_DOMAIN_LIMIT_EXCEEDED NT_STATUS(0xC0000000 | 0x00e1)
322 #define NT_STATUS_OPLOCK_NOT_GRANTED NT_STATUS(0xC0000000 | 0x00e2)
323 #define NT_STATUS_INVALID_OPLOCK_PROTOCOL NT_STATUS(0xC0000000 | 0x00e3)
324 #define NT_STATUS_INTERNAL_DB_CORRUPTION NT_STATUS(0xC0000000 | 0x00e4)
325 #define NT_STATUS_INTERNAL_ERROR NT_STATUS(0xC0000000 | 0x00e5)
326 #define NT_STATUS_GENERIC_NOT_MAPPED NT_STATUS(0xC0000000 | 0x00e6)
327 #define NT_STATUS_BAD_DESCRIPTOR_FORMAT NT_STATUS(0xC0000000 | 0x00e7)
328 #define NT_STATUS_INVALID_USER_BUFFER NT_STATUS(0xC0000000 | 0x00e8)
329 #define NT_STATUS_UNEXPECTED_IO_ERROR NT_STATUS(0xC0000000 | 0x00e9)
330 #define NT_STATUS_UNEXPECTED_MM_CREATE_ERR NT_STATUS(0xC0000000 | 0x00ea)
331 #define NT_STATUS_UNEXPECTED_MM_MAP_ERROR NT_STATUS(0xC0000000 | 0x00eb)
332 #define NT_STATUS_UNEXPECTED_MM_EXTEND_ERR NT_STATUS(0xC0000000 | 0x00ec)
333 #define NT_STATUS_NOT_LOGON_PROCESS NT_STATUS(0xC0000000 | 0x00ed)
334 #define NT_STATUS_LOGON_SESSION_EXISTS NT_STATUS(0xC0000000 | 0x00ee)
335 #define NT_STATUS_INVALID_PARAMETER_1 NT_STATUS(0xC0000000 | 0x00ef)
336 #define NT_STATUS_INVALID_PARAMETER_2 NT_STATUS(0xC0000000 | 0x00f0)
337 #define NT_STATUS_INVALID_PARAMETER_3 NT_STATUS(0xC0000000 | 0x00f1)
338 #define NT_STATUS_INVALID_PARAMETER_4 NT_STATUS(0xC0000000 | 0x00f2)
339 #define NT_STATUS_INVALID_PARAMETER_5 NT_STATUS(0xC0000000 | 0x00f3)
340 #define NT_STATUS_INVALID_PARAMETER_6 NT_STATUS(0xC0000000 | 0x00f4)
341 #define NT_STATUS_INVALID_PARAMETER_7 NT_STATUS(0xC0000000 | 0x00f5)
342 #define NT_STATUS_INVALID_PARAMETER_8 NT_STATUS(0xC0000000 | 0x00f6)
343 #define NT_STATUS_INVALID_PARAMETER_9 NT_STATUS(0xC0000000 | 0x00f7)
344 #define NT_STATUS_INVALID_PARAMETER_10 NT_STATUS(0xC0000000 | 0x00f8)
345 #define NT_STATUS_INVALID_PARAMETER_11 NT_STATUS(0xC0000000 | 0x00f9)
346 #define NT_STATUS_INVALID_PARAMETER_12 NT_STATUS(0xC0000000 | 0x00fa)
347 #define NT_STATUS_REDIRECTOR_NOT_STARTED NT_STATUS(0xC0000000 | 0x00fb)
348 #define NT_STATUS_REDIRECTOR_STARTED NT_STATUS(0xC0000000 | 0x00fc)
349 #define NT_STATUS_STACK_OVERFLOW NT_STATUS(0xC0000000 | 0x00fd)
350 #define NT_STATUS_NO_SUCH_PACKAGE NT_STATUS(0xC0000000 | 0x00fe)
351 #define NT_STATUS_BAD_FUNCTION_TABLE NT_STATUS(0xC0000000 | 0x00ff)
352 #define NT_STATUS_DIRECTORY_NOT_EMPTY NT_STATUS(0xC0000000 | 0x0101)
353 #define NT_STATUS_FILE_CORRUPT_ERROR NT_STATUS(0xC0000000 | 0x0102)
354 #define NT_STATUS_NOT_A_DIRECTORY NT_STATUS(0xC0000000 | 0x0103)
355 #define NT_STATUS_BAD_LOGON_SESSION_STATE NT_STATUS(0xC0000000 | 0x0104)
356 #define NT_STATUS_LOGON_SESSION_COLLISION NT_STATUS(0xC0000000 | 0x0105)
357 #define NT_STATUS_NAME_TOO_LONG NT_STATUS(0xC0000000 | 0x0106)
358 #define NT_STATUS_FILES_OPEN NT_STATUS(0xC0000000 | 0x0107)
359 #define NT_STATUS_CONNECTION_IN_USE NT_STATUS(0xC0000000 | 0x0108)
360 #define NT_STATUS_MESSAGE_NOT_FOUND NT_STATUS(0xC0000000 | 0x0109)
361 #define NT_STATUS_PROCESS_IS_TERMINATING NT_STATUS(0xC0000000 | 0x010a)
362 #define NT_STATUS_INVALID_LOGON_TYPE NT_STATUS(0xC0000000 | 0x010b)
363 #define NT_STATUS_NO_GUID_TRANSLATION NT_STATUS(0xC0000000 | 0x010c)
364 #define NT_STATUS_CANNOT_IMPERSONATE NT_STATUS(0xC0000000 | 0x010d)
365 #define NT_STATUS_IMAGE_ALREADY_LOADED NT_STATUS(0xC0000000 | 0x010e)
366 #define NT_STATUS_ABIOS_NOT_PRESENT NT_STATUS(0xC0000000 | 0x010f)
367 #define NT_STATUS_ABIOS_LID_NOT_EXIST NT_STATUS(0xC0000000 | 0x0110)
368 #define NT_STATUS_ABIOS_LID_ALREADY_OWNED NT_STATUS(0xC0000000 | 0x0111)
369 #define NT_STATUS_ABIOS_NOT_LID_OWNER NT_STATUS(0xC0000000 | 0x0112)
370 #define NT_STATUS_ABIOS_INVALID_COMMAND NT_STATUS(0xC0000000 | 0x0113)
371 #define NT_STATUS_ABIOS_INVALID_LID NT_STATUS(0xC0000000 | 0x0114)
372 #define NT_STATUS_ABIOS_SELECTOR_NOT_AVAILABLE NT_STATUS(0xC0000000 | 0x0115)
373 #define NT_STATUS_ABIOS_INVALID_SELECTOR NT_STATUS(0xC0000000 | 0x0116)
374 #define NT_STATUS_NO_LDT NT_STATUS(0xC0000000 | 0x0117)
375 #define NT_STATUS_INVALID_LDT_SIZE NT_STATUS(0xC0000000 | 0x0118)
376 #define NT_STATUS_INVALID_LDT_OFFSET NT_STATUS(0xC0000000 | 0x0119)
377 #define NT_STATUS_INVALID_LDT_DESCRIPTOR NT_STATUS(0xC0000000 | 0x011a)
378 #define NT_STATUS_INVALID_IMAGE_NE_FORMAT NT_STATUS(0xC0000000 | 0x011b)
379 #define NT_STATUS_RXACT_INVALID_STATE NT_STATUS(0xC0000000 | 0x011c)
380 #define NT_STATUS_RXACT_COMMIT_FAILURE NT_STATUS(0xC0000000 | 0x011d)
381 #define NT_STATUS_MAPPED_FILE_SIZE_ZERO NT_STATUS(0xC0000000 | 0x011e)
382 #define NT_STATUS_TOO_MANY_OPENED_FILES NT_STATUS(0xC0000000 | 0x011f)
383 #define NT_STATUS_CANCELLED NT_STATUS(0xC0000000 | 0x0120)
384 #define NT_STATUS_CANNOT_DELETE NT_STATUS(0xC0000000 | 0x0121)
385 #define NT_STATUS_INVALID_COMPUTER_NAME NT_STATUS(0xC0000000 | 0x0122)
386 #define NT_STATUS_FILE_DELETED NT_STATUS(0xC0000000 | 0x0123)
387 #define NT_STATUS_SPECIAL_ACCOUNT NT_STATUS(0xC0000000 | 0x0124)
388 #define NT_STATUS_SPECIAL_GROUP NT_STATUS(0xC0000000 | 0x0125)
389 #define NT_STATUS_SPECIAL_USER NT_STATUS(0xC0000000 | 0x0126)
390 #define NT_STATUS_MEMBERS_PRIMARY_GROUP NT_STATUS(0xC0000000 | 0x0127)
391 #define NT_STATUS_FILE_CLOSED NT_STATUS(0xC0000000 | 0x0128)
392 #define NT_STATUS_TOO_MANY_THREADS NT_STATUS(0xC0000000 | 0x0129)
393 #define NT_STATUS_THREAD_NOT_IN_PROCESS NT_STATUS(0xC0000000 | 0x012a)
394 #define NT_STATUS_TOKEN_ALREADY_IN_USE NT_STATUS(0xC0000000 | 0x012b)
395 #define NT_STATUS_PAGEFILE_QUOTA_EXCEEDED NT_STATUS(0xC0000000 | 0x012c)
396 #define NT_STATUS_COMMITMENT_LIMIT NT_STATUS(0xC0000000 | 0x012d)
397 #define NT_STATUS_INVALID_IMAGE_LE_FORMAT NT_STATUS(0xC0000000 | 0x012e)
398 #define NT_STATUS_INVALID_IMAGE_NOT_MZ NT_STATUS(0xC0000000 | 0x012f)
399 #define NT_STATUS_INVALID_IMAGE_PROTECT NT_STATUS(0xC0000000 | 0x0130)
400 #define NT_STATUS_INVALID_IMAGE_WIN_16 NT_STATUS(0xC0000000 | 0x0131)
401 #define NT_STATUS_LOGON_SERVER_CONFLICT NT_STATUS(0xC0000000 | 0x0132)
402 #define NT_STATUS_TIME_DIFFERENCE_AT_DC NT_STATUS(0xC0000000 | 0x0133)
403 #define NT_STATUS_SYNCHRONIZATION_REQUIRED NT_STATUS(0xC0000000 | 0x0134)
404 #define NT_STATUS_DLL_NOT_FOUND NT_STATUS(0xC0000000 | 0x0135)
405 #define NT_STATUS_OPEN_FAILED NT_STATUS(0xC0000000 | 0x0136)
406 #define NT_STATUS_IO_PRIVILEGE_FAILED NT_STATUS(0xC0000000 | 0x0137)
407 #define NT_STATUS_ORDINAL_NOT_FOUND NT_STATUS(0xC0000000 | 0x0138)
408 #define NT_STATUS_ENTRYPOINT_NOT_FOUND NT_STATUS(0xC0000000 | 0x0139)
409 #define NT_STATUS_CONTROL_C_EXIT NT_STATUS(0xC0000000 | 0x013a)
410 #define NT_STATUS_LOCAL_DISCONNECT NT_STATUS(0xC0000000 | 0x013b)
411 #define NT_STATUS_REMOTE_DISCONNECT NT_STATUS(0xC0000000 | 0x013c)
412 #define NT_STATUS_REMOTE_RESOURCES NT_STATUS(0xC0000000 | 0x013d)
413 #define NT_STATUS_LINK_FAILED NT_STATUS(0xC0000000 | 0x013e)
414 #define NT_STATUS_LINK_TIMEOUT NT_STATUS(0xC0000000 | 0x013f)
415 #define NT_STATUS_INVALID_CONNECTION NT_STATUS(0xC0000000 | 0x0140)
416 #define NT_STATUS_INVALID_ADDRESS NT_STATUS(0xC0000000 | 0x0141)
417 #define NT_STATUS_DLL_INIT_FAILED NT_STATUS(0xC0000000 | 0x0142)
418 #define NT_STATUS_MISSING_SYSTEMFILE NT_STATUS(0xC0000000 | 0x0143)
419 #define NT_STATUS_UNHANDLED_EXCEPTION NT_STATUS(0xC0000000 | 0x0144)
420 #define NT_STATUS_APP_INIT_FAILURE NT_STATUS(0xC0000000 | 0x0145)
421 #define NT_STATUS_PAGEFILE_CREATE_FAILED NT_STATUS(0xC0000000 | 0x0146)
422 #define NT_STATUS_NO_PAGEFILE NT_STATUS(0xC0000000 | 0x0147)
423 #define NT_STATUS_INVALID_LEVEL NT_STATUS(0xC0000000 | 0x0148)
424 #define NT_STATUS_WRONG_PASSWORD_CORE NT_STATUS(0xC0000000 | 0x0149)
425 #define NT_STATUS_ILLEGAL_FLOAT_CONTEXT NT_STATUS(0xC0000000 | 0x014a)
426 #define NT_STATUS_PIPE_BROKEN NT_STATUS(0xC0000000 | 0x014b)
427 #define NT_STATUS_REGISTRY_CORRUPT NT_STATUS(0xC0000000 | 0x014c)
428 #define NT_STATUS_REGISTRY_IO_FAILED NT_STATUS(0xC0000000 | 0x014d)
429 #define NT_STATUS_NO_EVENT_PAIR NT_STATUS(0xC0000000 | 0x014e)
430 #define NT_STATUS_UNRECOGNIZED_VOLUME NT_STATUS(0xC0000000 | 0x014f)
431 #define NT_STATUS_SERIAL_NO_DEVICE_INITED NT_STATUS(0xC0000000 | 0x0150)
432 #define NT_STATUS_NO_SUCH_ALIAS NT_STATUS(0xC0000000 | 0x0151)
433 #define NT_STATUS_MEMBER_NOT_IN_ALIAS NT_STATUS(0xC0000000 | 0x0152)
434 #define NT_STATUS_MEMBER_IN_ALIAS NT_STATUS(0xC0000000 | 0x0153)
435 #define NT_STATUS_ALIAS_EXISTS NT_STATUS(0xC0000000 | 0x0154)
436 #define NT_STATUS_LOGON_NOT_GRANTED NT_STATUS(0xC0000000 | 0x0155)
437 #define NT_STATUS_TOO_MANY_SECRETS NT_STATUS(0xC0000000 | 0x0156)
438 #define NT_STATUS_SECRET_TOO_LONG NT_STATUS(0xC0000000 | 0x0157)
439 #define NT_STATUS_INTERNAL_DB_ERROR NT_STATUS(0xC0000000 | 0x0158)
440 #define NT_STATUS_FULLSCREEN_MODE NT_STATUS(0xC0000000 | 0x0159)
441 #define NT_STATUS_TOO_MANY_CONTEXT_IDS NT_STATUS(0xC0000000 | 0x015a)
442 #define NT_STATUS_LOGON_TYPE_NOT_GRANTED NT_STATUS(0xC0000000 | 0x015b)
443 #define NT_STATUS_NOT_REGISTRY_FILE NT_STATUS(0xC0000000 | 0x015c)
444 #define NT_STATUS_NT_CROSS_ENCRYPTION_REQUIRED NT_STATUS(0xC0000000 | 0x015d)
445 #define NT_STATUS_DOMAIN_CTRLR_CONFIG_ERROR NT_STATUS(0xC0000000 | 0x015e)
446 #define NT_STATUS_FT_MISSING_MEMBER NT_STATUS(0xC0000000 | 0x015f)
447 #define NT_STATUS_ILL_FORMED_SERVICE_ENTRY NT_STATUS(0xC0000000 | 0x0160)
448 #define NT_STATUS_ILLEGAL_CHARACTER NT_STATUS(0xC0000000 | 0x0161)
449 #define NT_STATUS_UNMAPPABLE_CHARACTER NT_STATUS(0xC0000000 | 0x0162)
450 #define NT_STATUS_UNDEFINED_CHARACTER NT_STATUS(0xC0000000 | 0x0163)
451 #define NT_STATUS_FLOPPY_VOLUME NT_STATUS(0xC0000000 | 0x0164)
452 #define NT_STATUS_FLOPPY_ID_MARK_NOT_FOUND NT_STATUS(0xC0000000 | 0x0165)
453 #define NT_STATUS_FLOPPY_WRONG_CYLINDER NT_STATUS(0xC0000000 | 0x0166)
454 #define NT_STATUS_FLOPPY_UNKNOWN_ERROR NT_STATUS(0xC0000000 | 0x0167)
455 #define NT_STATUS_FLOPPY_BAD_REGISTERS NT_STATUS(0xC0000000 | 0x0168)
456 #define NT_STATUS_DISK_RECALIBRATE_FAILED NT_STATUS(0xC0000000 | 0x0169)
457 #define NT_STATUS_DISK_OPERATION_FAILED NT_STATUS(0xC0000000 | 0x016a)
458 #define NT_STATUS_DISK_RESET_FAILED NT_STATUS(0xC0000000 | 0x016b)
459 #define NT_STATUS_SHARED_IRQ_BUSY NT_STATUS(0xC0000000 | 0x016c)
460 #define NT_STATUS_FT_ORPHANING NT_STATUS(0xC0000000 | 0x016d)
461 #define NT_STATUS_PARTITION_FAILURE NT_STATUS(0xC0000000 | 0x0172)
462 #define NT_STATUS_INVALID_BLOCK_LENGTH NT_STATUS(0xC0000000 | 0x0173)
463 #define NT_STATUS_DEVICE_NOT_PARTITIONED NT_STATUS(0xC0000000 | 0x0174)
464 #define NT_STATUS_UNABLE_TO_LOCK_MEDIA NT_STATUS(0xC0000000 | 0x0175)
465 #define NT_STATUS_UNABLE_TO_UNLOAD_MEDIA NT_STATUS(0xC0000000 | 0x0176)
466 #define NT_STATUS_EOM_OVERFLOW NT_STATUS(0xC0000000 | 0x0177)
467 #define NT_STATUS_NO_MEDIA NT_STATUS(0xC0000000 | 0x0178)
468 #define NT_STATUS_NO_SUCH_MEMBER NT_STATUS(0xC0000000 | 0x017a)
469 #define NT_STATUS_INVALID_MEMBER NT_STATUS(0xC0000000 | 0x017b)
470 #define NT_STATUS_KEY_DELETED NT_STATUS(0xC0000000 | 0x017c)
471 #define NT_STATUS_NO_LOG_SPACE NT_STATUS(0xC0000000 | 0x017d)
472 #define NT_STATUS_TOO_MANY_SIDS NT_STATUS(0xC0000000 | 0x017e)
473 #define NT_STATUS_LM_CROSS_ENCRYPTION_REQUIRED NT_STATUS(0xC0000000 | 0x017f)
474 #define NT_STATUS_KEY_HAS_CHILDREN NT_STATUS(0xC0000000 | 0x0180)
475 #define NT_STATUS_CHILD_MUST_BE_VOLATILE NT_STATUS(0xC0000000 | 0x0181)
476 #define NT_STATUS_DEVICE_CONFIGURATION_ERROR NT_STATUS(0xC0000000 | 0x0182)
477 #define NT_STATUS_DRIVER_INTERNAL_ERROR NT_STATUS(0xC0000000 | 0x0183)
478 #define NT_STATUS_INVALID_DEVICE_STATE NT_STATUS(0xC0000000 | 0x0184)
479 #define NT_STATUS_IO_DEVICE_ERROR NT_STATUS(0xC0000000 | 0x0185)
480 #define NT_STATUS_DEVICE_PROTOCOL_ERROR NT_STATUS(0xC0000000 | 0x0186)
481 #define NT_STATUS_BACKUP_CONTROLLER NT_STATUS(0xC0000000 | 0x0187)
482 #define NT_STATUS_LOG_FILE_FULL NT_STATUS(0xC0000000 | 0x0188)
483 #define NT_STATUS_TOO_LATE NT_STATUS(0xC0000000 | 0x0189)
484 #define NT_STATUS_NO_TRUST_LSA_SECRET NT_STATUS(0xC0000000 | 0x018a)
485 #define NT_STATUS_NO_TRUST_SAM_ACCOUNT NT_STATUS(0xC0000000 | 0x018b)
486 #define NT_STATUS_TRUSTED_DOMAIN_FAILURE NT_STATUS(0xC0000000 | 0x018c)
487 #define NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE NT_STATUS(0xC0000000 | 0x018d)
488 #define NT_STATUS_EVENTLOG_FILE_CORRUPT NT_STATUS(0xC0000000 | 0x018e)
489 #define NT_STATUS_EVENTLOG_CANT_START NT_STATUS(0xC0000000 | 0x018f)
490 #define NT_STATUS_TRUST_FAILURE NT_STATUS(0xC0000000 | 0x0190)
491 #define NT_STATUS_MUTANT_LIMIT_EXCEEDED NT_STATUS(0xC0000000 | 0x0191)
492 #define NT_STATUS_NETLOGON_NOT_STARTED NT_STATUS(0xC0000000 | 0x0192)
493 #define NT_STATUS_ACCOUNT_EXPIRED NT_STATUS(0xC0000000 | 0x0193)
494 #define NT_STATUS_POSSIBLE_DEADLOCK NT_STATUS(0xC0000000 | 0x0194)
495 #define NT_STATUS_NETWORK_CREDENTIAL_CONFLICT NT_STATUS(0xC0000000 | 0x0195)
496 #define NT_STATUS_REMOTE_SESSION_LIMIT NT_STATUS(0xC0000000 | 0x0196)
497 #define NT_STATUS_EVENTLOG_FILE_CHANGED NT_STATUS(0xC0000000 | 0x0197)
498 #define NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT NT_STATUS(0xC0000000 | 0x0198)
499 #define NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT NT_STATUS(0xC0000000 | 0x0199)
500 #define NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT NT_STATUS(0xC0000000 | 0x019a)
501 #define NT_STATUS_DOMAIN_TRUST_INCONSISTENT NT_STATUS(0xC0000000 | 0x019b)
502 #define NT_STATUS_FS_DRIVER_REQUIRED NT_STATUS(0xC0000000 | 0x019c)
503 #define NT_STATUS_NO_USER_SESSION_KEY NT_STATUS(0xC0000000 | 0x0202)
504 #define NT_STATUS_USER_SESSION_DELETED NT_STATUS(0xC0000000 | 0x0203)
505 #define NT_STATUS_RESOURCE_LANG_NOT_FOUND NT_STATUS(0xC0000000 | 0x0204)
506 #define NT_STATUS_INSUFF_SERVER_RESOURCES NT_STATUS(0xC0000000 | 0x0205)
507 #define NT_STATUS_INVALID_BUFFER_SIZE NT_STATUS(0xC0000000 | 0x0206)
508 #define NT_STATUS_INVALID_ADDRESS_COMPONENT NT_STATUS(0xC0000000 | 0x0207)
509 #define NT_STATUS_INVALID_ADDRESS_WILDCARD NT_STATUS(0xC0000000 | 0x0208)
510 #define NT_STATUS_TOO_MANY_ADDRESSES NT_STATUS(0xC0000000 | 0x0209)
511 #define NT_STATUS_ADDRESS_ALREADY_EXISTS NT_STATUS(0xC0000000 | 0x020a)
512 #define NT_STATUS_ADDRESS_CLOSED NT_STATUS(0xC0000000 | 0x020b)
513 #define NT_STATUS_CONNECTION_DISCONNECTED NT_STATUS(0xC0000000 | 0x020c)
514 #define NT_STATUS_CONNECTION_RESET NT_STATUS(0xC0000000 | 0x020d)
515 #define NT_STATUS_TOO_MANY_NODES NT_STATUS(0xC0000000 | 0x020e)
516 #define NT_STATUS_TRANSACTION_ABORTED NT_STATUS(0xC0000000 | 0x020f)
517 #define NT_STATUS_TRANSACTION_TIMED_OUT NT_STATUS(0xC0000000 | 0x0210)
518 #define NT_STATUS_TRANSACTION_NO_RELEASE NT_STATUS(0xC0000000 | 0x0211)
519 #define NT_STATUS_TRANSACTION_NO_MATCH NT_STATUS(0xC0000000 | 0x0212)
520 #define NT_STATUS_TRANSACTION_RESPONDED NT_STATUS(0xC0000000 | 0x0213)
521 #define NT_STATUS_TRANSACTION_INVALID_ID NT_STATUS(0xC0000000 | 0x0214)
522 #define NT_STATUS_TRANSACTION_INVALID_TYPE NT_STATUS(0xC0000000 | 0x0215)
523 #define NT_STATUS_NOT_SERVER_SESSION NT_STATUS(0xC0000000 | 0x0216)
524 #define NT_STATUS_NOT_CLIENT_SESSION NT_STATUS(0xC0000000 | 0x0217)
525 #define NT_STATUS_CANNOT_LOAD_REGISTRY_FILE NT_STATUS(0xC0000000 | 0x0218)
526 #define NT_STATUS_DEBUG_ATTACH_FAILED NT_STATUS(0xC0000000 | 0x0219)
527 #define NT_STATUS_SYSTEM_PROCESS_TERMINATED NT_STATUS(0xC0000000 | 0x021a)
528 #define NT_STATUS_DATA_NOT_ACCEPTED NT_STATUS(0xC0000000 | 0x021b)
529 #define NT_STATUS_NO_BROWSER_SERVERS_FOUND NT_STATUS(0xC0000000 | 0x021c)
530 #define NT_STATUS_VDM_HARD_ERROR NT_STATUS(0xC0000000 | 0x021d)
531 #define NT_STATUS_DRIVER_CANCEL_TIMEOUT NT_STATUS(0xC0000000 | 0x021e)
532 #define NT_STATUS_REPLY_MESSAGE_MISMATCH NT_STATUS(0xC0000000 | 0x021f)
533 #define NT_STATUS_MAPPED_ALIGNMENT NT_STATUS(0xC0000000 | 0x0220)
534 #define NT_STATUS_IMAGE_CHECKSUM_MISMATCH NT_STATUS(0xC0000000 | 0x0221)
535 #define NT_STATUS_LOST_WRITEBEHIND_DATA NT_STATUS(0xC0000000 | 0x0222)
536 #define NT_STATUS_CLIENT_SERVER_PARAMETERS_INVALID NT_STATUS(0xC0000000 | 0x0223)
537 #define NT_STATUS_PASSWORD_MUST_CHANGE NT_STATUS(0xC0000000 | 0x0224)
538 #define NT_STATUS_NOT_FOUND NT_STATUS(0xC0000000 | 0x0225)
539 #define NT_STATUS_NOT_TINY_STREAM NT_STATUS(0xC0000000 | 0x0226)
540 #define NT_STATUS_RECOVERY_FAILURE NT_STATUS(0xC0000000 | 0x0227)
541 #define NT_STATUS_STACK_OVERFLOW_READ NT_STATUS(0xC0000000 | 0x0228)
542 #define NT_STATUS_FAIL_CHECK NT_STATUS(0xC0000000 | 0x0229)
543 #define NT_STATUS_DUPLICATE_OBJECTID NT_STATUS(0xC0000000 | 0x022a)
544 #define NT_STATUS_OBJECTID_EXISTS NT_STATUS(0xC0000000 | 0x022b)
545 #define NT_STATUS_CONVERT_TO_LARGE NT_STATUS(0xC0000000 | 0x022c)
546 #define NT_STATUS_RETRY NT_STATUS(0xC0000000 | 0x022d)
547 #define NT_STATUS_FOUND_OUT_OF_SCOPE NT_STATUS(0xC0000000 | 0x022e)
548 #define NT_STATUS_ALLOCATE_BUCKET NT_STATUS(0xC0000000 | 0x022f)
549 #define NT_STATUS_PROPSET_NOT_FOUND NT_STATUS(0xC0000000 | 0x0230)
550 #define NT_STATUS_MARSHALL_OVERFLOW NT_STATUS(0xC0000000 | 0x0231)
551 #define NT_STATUS_INVALID_VARIANT NT_STATUS(0xC0000000 | 0x0232)
552 #define NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND NT_STATUS(0xC0000000 | 0x0233)
553 #define NT_STATUS_ACCOUNT_LOCKED_OUT NT_STATUS(0xC0000000 | 0x0234)
554 #define NT_STATUS_HANDLE_NOT_CLOSABLE NT_STATUS(0xC0000000 | 0x0235)
555 #define NT_STATUS_CONNECTION_REFUSED NT_STATUS(0xC0000000 | 0x0236)
556 #define NT_STATUS_GRACEFUL_DISCONNECT NT_STATUS(0xC0000000 | 0x0237)
557 #define NT_STATUS_ADDRESS_ALREADY_ASSOCIATED NT_STATUS(0xC0000000 | 0x0238)
558 #define NT_STATUS_ADDRESS_NOT_ASSOCIATED NT_STATUS(0xC0000000 | 0x0239)
559 #define NT_STATUS_CONNECTION_INVALID NT_STATUS(0xC0000000 | 0x023a)
560 #define NT_STATUS_CONNECTION_ACTIVE NT_STATUS(0xC0000000 | 0x023b)
561 #define NT_STATUS_NETWORK_UNREACHABLE NT_STATUS(0xC0000000 | 0x023c)
562 #define NT_STATUS_HOST_UNREACHABLE NT_STATUS(0xC0000000 | 0x023d)
563 #define NT_STATUS_PROTOCOL_UNREACHABLE NT_STATUS(0xC0000000 | 0x023e)
564 #define NT_STATUS_PORT_UNREACHABLE NT_STATUS(0xC0000000 | 0x023f)
565 #define NT_STATUS_REQUEST_ABORTED NT_STATUS(0xC0000000 | 0x0240)
566 #define NT_STATUS_CONNECTION_ABORTED NT_STATUS(0xC0000000 | 0x0241)
567 #define NT_STATUS_BAD_COMPRESSION_BUFFER NT_STATUS(0xC0000000 | 0x0242)
568 #define NT_STATUS_USER_MAPPED_FILE NT_STATUS(0xC0000000 | 0x0243)
569 #define NT_STATUS_AUDIT_FAILED NT_STATUS(0xC0000000 | 0x0244)
570 #define NT_STATUS_TIMER_RESOLUTION_NOT_SET NT_STATUS(0xC0000000 | 0x0245)
571 #define NT_STATUS_CONNECTION_COUNT_LIMIT NT_STATUS(0xC0000000 | 0x0246)
572 #define NT_STATUS_LOGIN_TIME_RESTRICTION NT_STATUS(0xC0000000 | 0x0247)
573 #define NT_STATUS_LOGIN_WKSTA_RESTRICTION NT_STATUS(0xC0000000 | 0x0248)
574 #define NT_STATUS_IMAGE_MP_UP_MISMATCH NT_STATUS(0xC0000000 | 0x0249)
575 #define NT_STATUS_INSUFFICIENT_LOGON_INFO NT_STATUS(0xC0000000 | 0x0250)
576 #define NT_STATUS_BAD_DLL_ENTRYPOINT NT_STATUS(0xC0000000 | 0x0251)
577 #define NT_STATUS_BAD_SERVICE_ENTRYPOINT NT_STATUS(0xC0000000 | 0x0252)
578 #define NT_STATUS_LPC_REPLY_LOST NT_STATUS(0xC0000000 | 0x0253)
579 #define NT_STATUS_IP_ADDRESS_CONFLICT1 NT_STATUS(0xC0000000 | 0x0254)
580 #define NT_STATUS_IP_ADDRESS_CONFLICT2 NT_STATUS(0xC0000000 | 0x0255)
581 #define NT_STATUS_REGISTRY_QUOTA_LIMIT NT_STATUS(0xC0000000 | 0x0256)
582 #define NT_STATUS_PATH_NOT_COVERED NT_STATUS(0xC0000000 | 0x0257)
583 #define NT_STATUS_NO_CALLBACK_ACTIVE NT_STATUS(0xC0000000 | 0x0258)
584 #define NT_STATUS_LICENSE_QUOTA_EXCEEDED NT_STATUS(0xC0000000 | 0x0259)
585 #define NT_STATUS_PWD_TOO_SHORT NT_STATUS(0xC0000000 | 0x025a)
586 #define NT_STATUS_PWD_TOO_RECENT NT_STATUS(0xC0000000 | 0x025b)
587 #define NT_STATUS_PWD_HISTORY_CONFLICT NT_STATUS(0xC0000000 | 0x025c)
588 #define NT_STATUS_PLUGPLAY_NO_DEVICE NT_STATUS(0xC0000000 | 0x025e)
589 #define NT_STATUS_UNSUPPORTED_COMPRESSION NT_STATUS(0xC0000000 | 0x025f)
590 #define NT_STATUS_INVALID_HW_PROFILE NT_STATUS(0xC0000000 | 0x0260)
591 #define NT_STATUS_INVALID_PLUGPLAY_DEVICE_PATH NT_STATUS(0xC0000000 | 0x0261)
592 #define NT_STATUS_DRIVER_ORDINAL_NOT_FOUND NT_STATUS(0xC0000000 | 0x0262)
593 #define NT_STATUS_DRIVER_ENTRYPOINT_NOT_FOUND NT_STATUS(0xC0000000 | 0x0263)
594 #define NT_STATUS_RESOURCE_NOT_OWNED NT_STATUS(0xC0000000 | 0x0264)
595 #define NT_STATUS_TOO_MANY_LINKS NT_STATUS(0xC0000000 | 0x0265)
596 #define NT_STATUS_QUOTA_LIST_INCONSISTENT NT_STATUS(0xC0000000 | 0x0266)
597 #define NT_STATUS_FILE_IS_OFFLINE NT_STATUS(0xC0000000 | 0x0267)
598 #define NT_STATUS_DS_BUSY NT_STATUS(0xC0000000 | 0x02a5)
599 #define NT_STATUS_DS_NO_MORE_RIDS NT_STATUS(0xC0000000 | 0x02a8)
600 #define NT_STATUS_NOT_A_REPARSE_POINT NT_STATUS(0xC0000000 | 0x0275)
601 #define NT_STATUS_CURRENT_DOMAIN_NOT_ALLOWED NT_STATUS(0xC0000000 | 0x02E9)
602 #define NT_STATUS_OBJECTID_NOT_FOUND NT_STATUS(0xC0000000 | 0x02F0)
603 #define NT_STATUS_NO_SUCH_JOB NT_STATUS(0xC0000000 | 0xEDE) /* scheduler */
604 #define NT_STATUS_DOWNGRADE_DETECTED NT_STATUS(0xC0000000 | 0x0388)
605 #define NT_STATUS_NO_SUCH_JOB NT_STATUS(0xC0000000 | 0xEDE) /* scheduler */
606 #define NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED NT_STATUS(0xC0000000 | 0x20004)
607 #define NT_STATUS_RPC_UNSUPPORTED_NAME_SYNTAX NT_STATUS(0xC0000000 | 0x20026)
608 #define NT_STATUS_RPC_NT_CALL_FAILED NT_STATUS(0xC0000000 | 0x2001B)
609 #define NT_STATUS_ERROR_DS_OBJ_STRING_NAME_EXISTS NT_STATUS(0xC0000000 | 0x2071)
610 #define NT_STATUS_ERROR_DS_INCOMPATIBLE_VERSION NT_STATUS(0xC0000000 | 0x00002177)
611
612 /* I use NT_STATUS_FOOBAR when I have no idea what error code to use -
613  * this means we need a torture test */
614 #define NT_STATUS_FOOBAR NT_STATUS_UNSUCCESSFUL
615
616 /*****************************************************************************
617  returns an NT error message.  not amazingly helpful, but better than a number.
618  *****************************************************************************/
619 const char *nt_errstr(NTSTATUS nt_code);
620
621 /************************************************************************
622  Print friendler version fo NT error code
623  ***********************************************************************/
624 const char *get_friendly_nt_error_msg(NTSTATUS nt_code);
625
626 /*****************************************************************************
627  returns an NT_STATUS constant as a string for inclusion in autogen C code
628  *****************************************************************************/
629 const char *get_nt_error_c_code(NTSTATUS nt_code);
630
631 /*****************************************************************************
632  returns the NT_STATUS constant matching the string supplied (as an NTSTATUS)
633  *****************************************************************************/
634 NTSTATUS nt_status_string_to_code(const char *nt_status_str);
635
636 /** Used by ntstatus_dos_equal: */
637 extern bool ntstatus_check_dos_mapping;
638
639 #define NT_STATUS_IS_OK(x) (NT_STATUS_V(x) == 0)
640 #define NT_STATUS_IS_ERR(x) ((NT_STATUS_V(x) & 0xc0000000) == 0xc0000000)
641 /* checking for DOS error mapping here is ugly, but unfortunately the
642    alternative is a very intrusive rewrite of the torture code */
643 #if _SAMBA_BUILD_ == 4
644 #define NT_STATUS_EQUAL(x,y) (NT_STATUS_IS_DOS(x)||NT_STATUS_IS_DOS(y)?ntstatus_dos_equal(x,y):NT_STATUS_V(x) == NT_STATUS_V(y))
645 #else
646 #define NT_STATUS_EQUAL(x,y) (NT_STATUS_V(x) == NT_STATUS_V(y))
647 #endif
648
649 #define NT_STATUS_HAVE_NO_MEMORY(x) do { \
650         if (!(x)) {\
651                 return NT_STATUS_NO_MEMORY;\
652         }\
653 } while (0)
654
655 /* This varient is for when you want to free a local
656    temporary memory context in the error path */
657 #define NT_STATUS_HAVE_NO_MEMORY_AND_FREE(x, ctx) do {  \
658         if (!(x)) {\
659                 talloc_free(ctx); \
660                 return NT_STATUS_NO_MEMORY;\
661         }\
662 } while (0)
663
664 #define NT_STATUS_IS_OK_RETURN(x) do { \
665         if (NT_STATUS_IS_OK(x)) {\
666                 return x;\
667         }\
668 } while (0)
669
670 #define NT_STATUS_NOT_OK_RETURN(x) do { \
671         if (!NT_STATUS_IS_OK(x)) {\
672                 return x;\
673         }\
674 } while (0)
675
676 #define NT_STATUS_IS_ERR_RETURN(x) do { \
677         if (NT_STATUS_IS_ERR(x)) {\
678                 return x;\
679         }\
680 } while (0)
681
682 #define NT_STATUS_NOT_ERR_RETURN(x) do { \
683         if (!NT_STATUS_IS_ERR(x)) {\
684                 return x;\
685         }\
686 } while (0)
687
688 /* this defines special NTSTATUS codes to represent DOS errors.  I
689    have chosen this macro to produce status codes in the invalid
690    NTSTATUS range */
691 #define NT_STATUS_DOS(class, code) NT_STATUS(0xF1000000 | ((class)<<16) | code)
692 #define NT_STATUS_IS_DOS(status) ((NT_STATUS_V(status) & 0xFF000000) == 0xF1000000)
693 #define NT_STATUS_DOS_CLASS(status) ((NT_STATUS_V(status) >> 16) & 0xFF)
694 #define NT_STATUS_DOS_CODE(status) (NT_STATUS_V(status) & 0xFFFF)
695
696 /* define ldap error codes as NTSTATUS codes */
697 #define NT_STATUS_LDAP(code) NT_STATUS(0xF2000000 | code)
698 #define NT_STATUS_IS_LDAP(status) ((NT_STATUS_V(status) & 0xFF000000) == 0xF2000000)
699 #define NT_STATUS_LDAP_CODE(status) (NT_STATUS_V(status) & ~0xFF000000)
700
701 #define NT_STATUS_RPC_CANNOT_SUPPORT NT_STATUS(0xC0000000 | 0x20041)
702
703 #endif /* _NTSTATUS_H */