w32err: Set hex format values for all errors
[ira/wip.git] / libcli / util / werror.h
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB parameters and setup, plus a whole lot more.
4    
5    Copyright (C) Andrew Tridgell              2001
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #ifndef _WERROR_H_
22 #define _WERROR_H_
23
24 #include <stdint.h>
25
26 /* the following rather strange looking definitions of NTSTATUS and WERROR
27    and 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;} WERROR;
34 #define W_ERROR(x) ((WERROR) { x })
35 #define W_ERROR_V(x) ((x).v)
36 #else
37 typedef uint32_t WERROR;
38 #define W_ERROR(x) (x)
39 #define W_ERROR_V(x) (x)
40 #endif
41
42 #define W_ERROR_IS_OK(x) (W_ERROR_V(x) == 0)
43 #define W_ERROR_EQUAL(x,y) (W_ERROR_V(x) == W_ERROR_V(y))
44
45 #define W_ERROR_HAVE_NO_MEMORY(x) do { \
46         if (!(x)) {\
47                 return WERR_NOMEM;\
48         }\
49 } while (0)
50
51 #define W_ERROR_IS_OK_RETURN(x) do { \
52         if (W_ERROR_IS_OK(x)) {\
53                 return x;\
54         }\
55 } while (0)
56
57 #define W_ERROR_NOT_OK_RETURN(x) do { \
58         if (!W_ERROR_IS_OK(x)) {\
59                 return x;\
60         }\
61 } while (0)
62
63 #define W_ERROR_NOT_OK_GOTO_DONE(x) do { \
64         if (!W_ERROR_IS_OK(x)) {\
65                 goto done;\
66         }\
67 } while (0)
68
69 #define W_ERROR_NOT_OK_GOTO(x, y) do {\
70         if (!W_ERROR_IS_OK(x)) {\
71                 goto y;\
72         }\
73 } while(0)
74
75 /* these are win32 error codes. There are only a few places where
76    these matter for Samba, primarily in the NT printing code */
77 #define WERR_OK W_ERROR(0x00000000)
78 #define WERR_BADFUNC W_ERROR(0x00000001)
79 #define WERR_BADFILE W_ERROR(0x00000002)
80 #define WERR_ACCESS_DENIED W_ERROR(0x00000005)
81 #define WERR_BADFID W_ERROR(0x00000006)
82 #define WERR_NOMEM W_ERROR(0x00000008)
83 #define WERR_GENERAL_FAILURE W_ERROR(0x0000001F)
84 #define WERR_NOT_SUPPORTED W_ERROR(0x00000032)
85 #define WERR_DUP_NAME W_ERROR(0x00000034)
86 #define WERR_BAD_NETPATH W_ERROR(0x00000035)
87 #define WERR_BAD_NET_RESP W_ERROR(0x0000003A)
88 #define WERR_UNEXP_NET_ERR W_ERROR(0x0000003B)
89 #define WERR_DEVICE_NOT_EXIST W_ERROR(0x00000037)
90 #define WERR_PRINTQ_FULL W_ERROR(0x0000003D)
91 #define WERR_NO_SPOOL_SPACE W_ERROR(0x0000003E)
92 #define WERR_NO_SUCH_SHARE W_ERROR(0x00000043)
93 #define WERR_FILE_EXISTS W_ERROR(0x00000050)
94 #define WERR_BAD_PASSWORD W_ERROR(0x00000056)
95 #define WERR_INVALID_PARAM W_ERROR(0x00000057)
96 #define WERR_CALL_NOT_IMPLEMENTED W_ERROR(0x00000078)
97 #define WERR_SEM_TIMEOUT W_ERROR(0x00000079)
98 #define WERR_INSUFFICIENT_BUFFER W_ERROR(0x0000007A)
99 #define WERR_INVALID_NAME W_ERROR(0x0000007B)
100 #define WERR_UNKNOWN_LEVEL W_ERROR(0x0000007C)
101 #define WERR_OBJECT_PATH_INVALID W_ERROR(0x000000A1)
102 #define WERR_ALREADY_EXISTS W_ERROR(0x000000B7)
103 #define WERR_MORE_DATA W_ERROR(0x000000EA)
104 #define WERR_NO_MORE_ITEMS W_ERROR(0x00000103)
105 #define WERR_STATUS_MORE_ENTRIES W_ERROR(0x00000105)
106 #define WERR_IO_PENDING W_ERROR(0x000003E5)
107 #define WERR_CAN_NOT_COMPLETE W_ERROR(0x000003EB)
108 #define WERR_INVALID_FLAGS W_ERROR(0x000003EC)
109 #define WERR_REG_CORRUPT W_ERROR(0x000003F7)
110 #define WERR_REG_IO_FAILURE W_ERROR(0x000003F8)
111 #define WERR_REG_FILE_INVALID W_ERROR(0x000003F9)
112 #define WERR_INVALID_SERVICE_CONTROL W_ERROR(0x0000041C)
113 #define WERR_SERVICE_ALREADY_RUNNING W_ERROR(0x00000420)
114 #define WERR_SERVICE_DISABLED W_ERROR(0x00000422)
115 #define WERR_NO_SUCH_SERVICE W_ERROR(0x00000424)
116 #define WERR_SERVICE_MARKED_FOR_DELETE W_ERROR(0x00000430)
117 #define WERR_SERVICE_EXISTS W_ERROR(0x00000431)
118 #define WERR_SERVICE_NEVER_STARTED W_ERROR(0x00000435)
119 #define WERR_DUPLICATE_SERVICE_NAME W_ERROR(0x00000436)
120 #define WERR_DEVICE_NOT_CONNECTED W_ERROR(0x0000048F)
121 #define WERR_NOT_FOUND W_ERROR(0x00000490)
122 #define WERR_INVALID_COMPUTERNAME W_ERROR(0x000004BA)
123 #define WERR_INVALID_DOMAINNAME W_ERROR(0x000004BC)
124 #define WERR_NOT_AUTHENTICATED W_ERROR(0x000004DC)
125 #define WERR_MACHINE_LOCKED W_ERROR(0x000004F7)
126 #define WERR_UNKNOWN_REVISION W_ERROR(0x00000519)
127 #define WERR_INVALID_OWNER W_ERROR(0x0000051B)
128 #define WERR_REVISION_MISMATCH W_ERROR(0x0000051A)
129 #define WERR_INVALID_OWNER W_ERROR(0x0000051B)
130 #define WERR_INVALID_PRIMARY_GROUP W_ERROR(0x0000051C)
131 #define WERR_NO_LOGON_SERVERS W_ERROR(0x0000051F)
132 #define WERR_NO_SUCH_LOGON_SESSION W_ERROR(0x00000520)
133 #define WERR_NO_SUCH_PRIVILEGE W_ERROR(0x00000521)
134 #define WERR_PRIVILEGE_NOT_HELD W_ERROR(0x00000522)
135 #define WERR_USER_ALREADY_EXISTS W_ERROR(0x00000524)
136 #define WERR_NO_SUCH_USER W_ERROR(0x00000525)
137 #define WERR_GROUP_EXISTS W_ERROR(0x00000526)
138 #define WERR_NO_SUCH_GROUP W_ERROR(0x00000527)
139 #define WERR_MEMBER_IN_GROUP W_ERROR(0x00000528)
140 #define WERR_USER_NOT_IN_GROUP W_ERROR(0x00000529)
141 #define WERR_WRONG_PASSWORD W_ERROR(0x0000052B)
142 #define WERR_PASSWORD_RESTRICTION W_ERROR(0x0000052D)
143 #define WERR_LOGON_FAILURE W_ERROR(0x0000052E)
144 #define WERR_NONE_MAPPED W_ERROR(0x00000534)
145 #define WERR_INVALID_SECURITY_DESCRIPTOR W_ERROR(0x0000053A)
146 #define WERR_INVALID_DOMAIN_STATE W_ERROR(0x00000549)
147 #define WERR_INVALID_DOMAIN_ROLE W_ERROR(0x0000054A)
148 #define WERR_NO_SUCH_DOMAIN W_ERROR(0x0000054B)
149 #define WERR_SPECIAL_ACCOUNT W_ERROR(0x0000055B)
150 #define WERR_NO_SUCH_ALIAS W_ERROR(0x00000560)
151 #define WERR_MEMBER_IN_ALIAS W_ERROR(0x00000562)
152 #define WERR_ALIAS_EXISTS W_ERROR(0x00000563)
153 #define WERR_TIME_SKEW W_ERROR(0x00000576)
154 #define WERR_NO_SYSTEM_RESOURCES W_ERROR(0x000005AA)
155 #define WERR_EVENTLOG_FILE_CORRUPT W_ERROR(0x000005DC)
156 #define WERR_SERVER_UNAVAILABLE W_ERROR(0x000006BA)
157 #define WERR_INVALID_USER_BUFFER W_ERROR(0x000006F8)
158 #define WERR_NO_TRUST_SAM_ACCOUNT W_ERROR(0x000006FB)
159 #define WERR_INVALID_FORM_NAME W_ERROR(0x0000076E)
160 #define WERR_INVALID_FORM_SIZE W_ERROR(0x0000076F)
161 #define WERR_PASSWORD_MUST_CHANGE W_ERROR(0x00000773)
162 #define WERR_ACCOUNT_LOCKED_OUT W_ERROR(0x00000775)
163
164 #define WERR_DOMAIN_CONTROLLER_NOT_FOUND W_ERROR(0x00000995) /* Error code is wrong, should be  0x00000774 (1908)*/
165
166 #define WERR_DEVICE_NOT_AVAILABLE W_ERROR(0x000010DF)
167
168 #define WERR_PRINTER_DRIVER_ALREADY_INSTALLED   W_ERROR(0x00000703)
169 #define WERR_UNKNOWN_PORT                       W_ERROR(0x00000704)
170 #define WERR_UNKNOWN_PRINTER_DRIVER             W_ERROR(0x00000705)
171 #define WERR_UNKNOWN_PRINTPROCESSOR             W_ERROR(0x00000706)
172 #define WERR_INVALID_SEPARATOR_FILE             W_ERROR(0x00000707)
173 #define WERR_INVALID_PRIORITY                   W_ERROR(0x00000708)
174 #define WERR_INVALID_PRINTER_NAME               W_ERROR(0x00000709)
175 #define WERR_PRINTER_ALREADY_EXISTS             W_ERROR(0x0000070A)
176 #define WERR_INVALID_PRINTER_COMMAND            W_ERROR(0x0000070B)
177 #define WERR_INVALID_DATATYPE                   W_ERROR(0x0000070C)
178 #define WERR_INVALID_ENVIRONMENT                W_ERROR(0x0000070D)
179
180 #define WERR_UNKNOWN_PRINT_MONITOR              W_ERROR(0x00000BB8)
181 #define WERR_PRINTER_DRIVER_IN_USE              W_ERROR(0x00000BB9)
182 #define WERR_SPOOL_FILE_NOT_FOUND               W_ERROR(0x00000BBA)
183 #define WERR_SPL_NO_STARTDOC                    W_ERROR(0x00000BBB)
184 #define WERR_SPL_NO_ADDJOB                      W_ERROR(0x00000BBC)
185 #define WERR_PRINT_PROCESSOR_ALREADY_INSTALLED  W_ERROR(0x00000BBD)
186 #define WERR_PRINT_MONITOR_ALREADY_INSTALLED    W_ERROR(0x00000BBE)
187 #define WERR_INVALID_PRINT_MONITOR              W_ERROR(0x00000BBF)
188 #define WERR_PRINT_MONITOR_IN_USE               W_ERROR(0x00000BC0)
189 #define WERR_PRINTER_HAS_JOBS_QUEUED            W_ERROR(0x00000BC1)
190
191 #define WERR_NO_SHUTDOWN_IN_PROGRESS W_ERROR(0x0000045c)
192 #define WERR_SHUTDOWN_ALREADY_IN_PROGRESS W_ERROR(0x0000045b)
193
194 /* Configuration Manager Errors */
195 /* Basically Win32 errors meanings are specific to the \ntsvcs pipe */
196 #define WERR_CM_INVALID_POINTER W_ERROR(3)
197 #define WERR_CM_BUFFER_SMALL W_ERROR(26)
198 #define WERR_CM_NO_MORE_HW_PROFILES W_ERROR(35)
199 #define WERR_CM_NO_SUCH_VALUE W_ERROR(37)
200
201 /* DFS errors */
202
203 #ifndef NERR_BASE
204 #define NERR_BASE (2100)
205 #endif
206
207 #ifndef MAX_NERR
208 #define MAX_NERR (NERR_BASE+899)
209 #endif
210
211 #define WERR_BUF_TOO_SMALL              W_ERROR(0x0000084B)
212 #define WERR_ALREADY_SHARED             W_ERROR(0x00000846)
213 #define WERR_JOB_NOT_FOUND              W_ERROR(0x00000867)
214 #define WERR_DEST_NOT_FOUND             W_ERROR(0x00000868)
215 #define WERR_GROUP_NOT_FOUND            W_ERROR(0x000008AC)
216 #define WERR_USER_NOT_FOUND             W_ERROR(0x000008AD)
217 #define WERR_USER_EXISTS                W_ERROR(0x000008B0)
218 #define WERR_NOT_CONNECTED              W_ERROR(0x000008CA)
219 #define WERR_NAME_NOT_FOUND             W_ERROR(0x000008E1)
220 #define WERR_NET_NAME_NOT_FOUND         W_ERROR(0x00000906)
221 #define WERR_SESSION_NOT_FOUND          W_ERROR(0x00000908)
222 #define WERR_DEVICE_NOT_SHARED          W_ERROR(0x00000907)
223 #define WERR_FID_NOT_FOUND              W_ERROR(0x0000090A)
224 #define WERR_NOT_LOCAL_DOMAIN           W_ERROR(0x00000910)
225 #define WERR_DC_NOT_FOUND               W_ERROR(0x00000995)
226 #define WERR_TIME_DIFF_AT_DC            W_ERROR(0x00000999)
227 #define WERR_DFS_NO_SUCH_VOL            W_ERROR(0x00000A66)
228 #define WERR_DFS_NO_SUCH_SHARE          W_ERROR(0x00000A69)
229 #define WERR_DFS_NO_SUCH_SERVER         W_ERROR(0x00000A71)
230 #define WERR_DFS_INTERNAL_ERROR         W_ERROR(0x00000A82)
231 #define WERR_DFS_CANT_CREATE_JUNCT      W_ERROR(0x00000A6D)
232 #define WERR_SETUP_ALREADY_JOINED       W_ERROR(0x00000A83)
233 #define WERR_SETUP_NOT_JOINED           W_ERROR(0x00000A84)
234 #define WERR_SETUP_DOMAIN_CONTROLLER    W_ERROR(0x00000A85)
235 #define WERR_DEFAULT_JOIN_REQUIRED      W_ERROR(0x00000A86)
236
237 /* DS errors */
238 #define WERR_DS_NO_ATTRIBUTE_OR_VALUE W_ERROR(0x0000200A)
239 #define WERR_DS_INVALID_ATTRIBUTE_SYNTAX W_ERROR(0x0000200B)
240 #define WERR_DS_ATTRIBUTE_TYPE_UNDEFINED W_ERROR(0x0000200C)
241 #define WERR_DS_ATTRIBUTE_OR_VALUE_EXISTS W_ERROR(0x0000200D)
242 #define WERR_DS_BUSY W_ERROR(0x0000200E)
243 #define WERR_DS_UNAVAILABLE W_ERROR(0x0000200F)
244 #define WERR_DS_OBJ_CLASS_VIOLATION W_ERROR(0x00002014)
245 #define WERR_DS_CANT_ON_NON_LEAF W_ERROR(0x00002015)
246 #define WERR_DS_CANT_ON_RDN W_ERROR(0x00002016)
247 #define WERR_DS_CANT_MOD_OBJ_CLASS W_ERROR(0x00002017)
248 #define WERR_DS_OPERATIONS_ERROR W_ERROR(0x00002020)
249 #define WERR_DS_PROTOCOL_ERROR W_ERROR(0x00002021)
250 #define WERR_DS_TIMELIMIT_EXCEEDED W_ERROR(0x00002022)
251 #define WERR_DS_SIZE_LIMIT_EXCEEDED W_ERROR(0x00002023)
252 #define WERR_DS_ADMIN_LIMIT_EXCEEDED W_ERROR(0x00002024)
253 #define WERR_DS_COMPARE_FALSE W_ERROR(0x00002025)
254 #define WERR_DS_COMPARE_TRUE W_ERROR(0x00002026)
255 #define WERR_DS_AUTH_METHOD_NOT_SUPPORTED W_ERROR(0x00002027)
256 #define WERR_DS_STRONG_AUTH_REQUIRED W_ERROR(0x00002028)
257 #define WERR_DS_INAPPROPRIATE_AUTH W_ERROR(0x00002029)
258 #define WERR_DS_REFERRAL W_ERROR(0x0000202B)
259 #define WERR_DS_UNAVAILABLE_CRIT_EXTENSION W_ERROR(0x0000202C)
260 #define WERR_DS_CONFIDENTIALITY_REQUIRED W_ERROR(0x0000202D)
261 #define WERR_DS_INAPPROPRIATE_MATCHING W_ERROR(0x0000202E)
262 #define WERR_DS_CONSTRAINT_VIOLATION W_ERROR(0x0000202F)
263 #define WERR_DS_NO_SUCH_OBJECT W_ERROR(0x00002030)
264 #define WERR_DS_ALIAS_PROBLEM W_ERROR(0x00002031)
265 #define WERR_DS_INVALID_DN_SYNTAX W_ERROR(0x00002032)
266 #define WERR_DS_ALIAS_DEREF_PROBLEM W_ERROR(0x00002034)
267 #define WERR_DS_UNWILLING_TO_PERFORM W_ERROR(0x00002035)
268 #define WERR_DS_LOOP_DETECT W_ERROR(0x00002036)
269 #define WERR_DS_NAMING_VIOLATION W_ERROR(0x00002037)
270 #define WERR_DS_AFFECTS_MULTIPLE_DSAS W_ERROR(0x00002039)
271 #define WERR_DS_OBJ_STRING_NAME_EXISTS W_ERROR(0x00002071)
272 #define WERR_DS_OBJ_NOT_FOUND W_ERROR(0x0000208D)
273 #define WERR_DS_GENERIC_ERROR W_ERROR(0x00002095)
274 #define WERR_DS_INSUFF_ACCESS_RIGHTS W_ERROR(0x00002098)
275 #define WERR_DS_SCHEMA_NOT_LOADED W_ERROR(0x20DE)
276 #define WERR_DS_SCHEMA_ALLOC_FAILED W_ERROR(0x20DF)
277 #define WERR_DS_ATT_SCHEMA_REQ_SYNTAX W_ERROR(0x000020E0)
278 #define WERR_DS_DRA_SCHEMA_MISMATCH W_ERROR(0x000020E2)
279 #define WERR_DS_DRA_INVALID_PARAMETER W_ERROR(0x000020F5)
280 #define WERR_DS_DRA_BAD_DN W_ERROR(0x000020F7)
281 #define WERR_DS_DRA_BAD_NC W_ERROR(0x000020F8)
282 #define WERR_DS_DRA_INTERNAL_ERROR W_ERROR(0x000020FA)
283 #define WERR_DS_DRA_OUT_OF_MEM W_ERROR(0x000020FE)
284 #define WERR_DS_SINGLE_VALUE_CONSTRAINT W_ERROR(0x00002081)
285 #define WERR_DS_DRA_DB_ERROR W_ERROR(0x00002103)
286 #define WERR_DS_DRA_NO_REPLICA W_ERROR(0x00002104)
287 #define WERR_DS_DRA_ACCESS_DENIED W_ERROR(0x00002105)
288 #define WERR_DS_DRA_SOURCE_DISABLED W_ERROR(0x00002108)
289 #define WERR_DS_DNS_LOOKUP_FAILURE W_ERROR(0x0000214C)
290 #define WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX W_ERROR(0x00002150)
291 #define WERR_DS_NO_MSDS_INTID W_ERROR(0x00002194)
292 #define WERR_DS_DUP_MSDS_INTID W_ERROR(0x00002195)
293
294 /* FRS errors */
295 #define WERR_FRS_INSUFFICIENT_PRIV W_ERROR(FRS_ERR_BASE+7)
296 #define WERR_FRS_SYSVOL_IS_BUSY W_ERROR(FRS_ERR_BASE+15)
297 #define WERR_FRS_INVALID_SERVICE_PARAMETER W_ERROR(FRS_ERR_BASE+17)
298
299 /* RPC/COM/OLE HRESULT error codes */
300 /* RPC errors */
301 #define WERR_RPC_E_INVALID_HEADER       W_ERROR(0x80010111)
302 #define WERR_RPC_E_REMOTE_DISABLED      W_ERROR(0x8001011c)
303
304 /* SEC errors */
305 #define WERR_SEC_E_ENCRYPT_FAILURE      W_ERROR(0x80090329)
306 #define WERR_SEC_E_DECRYPT_FAILURE      W_ERROR(0x80090330)
307 #define WERR_SEC_E_ALGORITHM_MISMATCH   W_ERROR(0x80090331)
308
309 /* COM REGDB error codes */
310 #define WERR_CLASS_NOT_REGISTERED       W_ERROR(0x80040154)     /* REGDB_E_CLASSNOTREG */
311
312 /* Generic error code aliases */
313 #define WERR_FOOBAR WERR_GENERAL_FAILURE
314
315 /*****************************************************************************
316  returns a windows error message.  not amazingly helpful, but better than a number.
317  *****************************************************************************/
318 const char *win_errstr(WERROR werror);
319
320 const char *get_friendly_werror_msg(WERROR werror);
321
322
323 #endif