s3-errors: add NT_STATUS_RPC_NT_PROCNUM_OUT_OF_RANGE.
[samba.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(0)
78 #define WERR_BADFUNC W_ERROR(1)
79 #define WERR_BADFILE W_ERROR(2)
80 #define WERR_ACCESS_DENIED W_ERROR(5)
81 #define WERR_BADFID W_ERROR(6)
82 #define WERR_NOMEM W_ERROR(8)
83 #define WERR_GENERAL_FAILURE W_ERROR(31)
84 #define WERR_NOT_SUPPORTED W_ERROR(50)
85 #define WERR_DUP_NAME W_ERROR(52)
86 #define WERR_BAD_NETPATH W_ERROR(53)
87 #define WERR_BAD_NET_RESP W_ERROR(58)
88 #define WERR_UNEXP_NET_ERR W_ERROR(59)
89 #define WERR_DEVICE_NOT_EXIST W_ERROR(55)
90 #define WERR_PRINTQ_FULL W_ERROR(61)
91 #define WERR_NO_SPOOL_SPACE W_ERROR(62)
92 #define WERR_NO_SUCH_SHARE W_ERROR(67)
93 #define WERR_FILE_EXISTS W_ERROR(80)
94 #define WERR_BAD_PASSWORD W_ERROR(86)
95 #define WERR_INVALID_PARAM W_ERROR(87)
96 #define WERR_CALL_NOT_IMPLEMENTED W_ERROR(120)
97 #define WERR_SEM_TIMEOUT W_ERROR(121)
98 #define WERR_INSUFFICIENT_BUFFER W_ERROR(122)
99 #define WERR_INVALID_NAME W_ERROR(123)
100 #define WERR_UNKNOWN_LEVEL W_ERROR(124)
101 #define WERR_OBJECT_PATH_INVALID W_ERROR(161)
102 #define WERR_ALREADY_EXISTS W_ERROR(183)
103 #define WERR_NO_MORE_ITEMS W_ERROR(259)
104 #define WERR_MORE_DATA W_ERROR(234)
105 #define WERR_INVALID_OWNER W_ERROR(1307)
106 #define WERR_IO_PENDING W_ERROR(997)
107 #define WERR_CAN_NOT_COMPLETE W_ERROR(1003)
108 #define WERR_INVALID_FLAGS W_ERROR(1004)
109 #define WERR_REG_CORRUPT W_ERROR(1015)
110 #define WERR_REG_IO_FAILURE W_ERROR(1016)
111 #define WERR_REG_FILE_INVALID W_ERROR(1017)
112 #define WERR_NO_SUCH_SERVICE W_ERROR(1060)
113 #define WERR_INVALID_SERVICE_CONTROL W_ERROR(1052)
114 #define WERR_SERVICE_ALREADY_RUNNING W_ERROR(1056)
115 #define WERR_SERVICE_DISABLED W_ERROR(1058)
116 #define WERR_SERVICE_MARKED_FOR_DELETE W_ERROR(1072)
117 #define WERR_SERVICE_EXISTS W_ERROR(1073)
118 #define WERR_SERVICE_NEVER_STARTED W_ERROR(1077)
119 #define WERR_DUPLICATE_SERVICE_NAME W_ERROR(1078)
120 #define WERR_DEVICE_NOT_CONNECTED W_ERROR(1167)
121 #define WERR_NOT_FOUND W_ERROR(1168)
122 #define WERR_INVALID_COMPUTERNAME W_ERROR(1210)
123 #define WERR_INVALID_DOMAINNAME W_ERROR(1212)
124 #define WERR_NOT_AUTHENTICATED W_ERROR(1244)
125 #define WERR_UNKNOWN_REVISION W_ERROR(1305)
126 #define WERR_MACHINE_LOCKED W_ERROR(1271)
127 #define WERR_REVISION_MISMATCH W_ERROR(1306)
128 #define WERR_INVALID_OWNER W_ERROR(1307)
129 #define WERR_INVALID_PRIMARY_GROUP W_ERROR(1308)
130 #define WERR_NO_LOGON_SERVERS W_ERROR(1311)
131 #define WERR_NO_SUCH_LOGON_SESSION W_ERROR(1312)
132 #define WERR_NO_SUCH_PRIVILEGE W_ERROR(1313)
133 #define WERR_PRIVILEGE_NOT_HELD W_ERROR(1314)
134 #define WERR_USER_ALREADY_EXISTS W_ERROR(1316)
135 #define WERR_NO_SUCH_USER W_ERROR(1317)
136 #define WERR_GROUP_EXISTS W_ERROR(1318)
137 #define WERR_NO_SUCH_GROUP W_ERROR(1319)
138 #define WERR_MEMBER_IN_GROUP W_ERROR(1320)
139 #define WERR_USER_NOT_IN_GROUP W_ERROR(1321)
140 #define WERR_WRONG_PASSWORD W_ERROR(1323)
141 #define WERR_PASSWORD_RESTRICTION W_ERROR(1325)
142 #define WERR_LOGON_FAILURE W_ERROR(1326)
143 #define WERR_NO_SUCH_DOMAIN W_ERROR(1355)
144 #define WERR_NONE_MAPPED W_ERROR(1332)
145 #define WERR_INVALID_SECURITY_DESCRIPTOR W_ERROR(1338)
146 #define WERR_INVALID_DOMAIN_STATE W_ERROR(1353)
147 #define WERR_INVALID_DOMAIN_ROLE W_ERROR(1354)
148 #define WERR_NO_SUCH_DOMAIN W_ERROR(1355)
149 #define WERR_NO_SYSTEM_RESOURCES W_ERROR(1450)
150 #define WERR_SPECIAL_ACCOUNT W_ERROR(1371)
151 #define WERR_NO_SUCH_ALIAS W_ERROR(1376)
152 #define WERR_MEMBER_IN_ALIAS W_ERROR(1378)
153 #define WERR_ALIAS_EXISTS W_ERROR(1379)
154 #define WERR_TIME_SKEW W_ERROR(1398)
155 #define WERR_EVENTLOG_FILE_CORRUPT W_ERROR(1500)
156 #define WERR_SERVER_UNAVAILABLE W_ERROR(1722)
157 #define WERR_INVALID_USER_BUFFER W_ERROR(1784)
158 #define WERR_NO_TRUST_SAM_ACCOUNT W_ERROR(1787)
159 #define WERR_INVALID_FORM_NAME W_ERROR(1902)
160 #define WERR_INVALID_FORM_SIZE W_ERROR(1903)
161 #define WERR_PASSWORD_MUST_CHANGE W_ERROR(1907)
162 #define WERR_ACCOUNT_LOCKED_OUT W_ERROR(1909)
163 #define WERR_ALREADY_SHARED W_ERROR(2118)
164 #define WERR_NOT_CONNECTED W_ERROR(2250)
165 #define WERR_NAME_NOT_FOUND W_ERROR(2273)
166 #define WERR_SESSION_NOT_FOUND W_ERROR(2312)
167 #define WERR_FID_NOT_FOUND W_ERROR(2314)
168 #define WERR_DOMAIN_CONTROLLER_NOT_FOUND W_ERROR(2453)
169 #define WERR_TIME_DIFF_AT_DC W_ERROR(2457)
170
171 #define WERR_DEVICE_NOT_AVAILABLE W_ERROR(4319)
172 #define WERR_STATUS_MORE_ENTRIES   W_ERROR(0x0105)
173
174 #define WERR_PRINTER_DRIVER_ALREADY_INSTALLED W_ERROR(ERRdriveralreadyinstalled)
175 #define WERR_UNKNOWN_PORT W_ERROR(ERRunknownprinterport)
176 #define WERR_UNKNOWN_PRINTER_DRIVER W_ERROR(ERRunknownprinterdriver)
177 #define WERR_UNKNOWN_PRINTPROCESSOR W_ERROR(ERRunknownprintprocessor)
178 #define WERR_INVALID_SEPARATOR_FILE W_ERROR(ERRinvalidseparatorfile)
179 #define WERR_INVALID_PRIORITY W_ERROR(ERRinvalidjobpriority)
180 #define WERR_INVALID_PRINTER_NAME W_ERROR(ERRinvalidprintername)
181 #define WERR_PRINTER_ALREADY_EXISTS W_ERROR(ERRprinteralreadyexists)
182 #define WERR_INVALID_PRINTER_COMMAND W_ERROR(ERRinvalidprintercommand)
183 #define WERR_INVALID_DATATYPE W_ERROR(ERRinvaliddatatype)
184 #define WERR_INVALID_ENVIRONMENT W_ERROR(ERRinvalidenvironment)
185
186 #define WERR_UNKNOWN_PRINT_MONITOR W_ERROR(ERRunknownprintmonitor)
187 #define WERR_PRINTER_DRIVER_IN_USE W_ERROR(ERRprinterdriverinuse)
188 #define WERR_SPOOL_FILE_NOT_FOUND W_ERROR(ERRspoolfilenotfound)
189 #define WERR_SPL_NO_STARTDOC W_ERROR(ERRnostartdoc)
190 #define WERR_SPL_NO_ADDJOB W_ERROR(ERRnoaddjob)
191 #define WERR_PRINT_PROCESSOR_ALREADY_INSTALLED W_ERROR(ERRprintprocessoralreadyinstalled)
192 #define WERR_PRINT_MONITOR_ALREADY_INSTALLED W_ERROR(ERRprintmonitoralreadyinstalled)
193 #define WERR_INVALID_PRINT_MONITOR W_ERROR(ERRinvalidprintmonitor)
194 #define WERR_PRINT_MONITOR_IN_USE W_ERROR(ERRprintmonitorinuse)
195 #define WERR_PRINTER_HAS_JOBS_QUEUED W_ERROR(ERRprinterhasjobsqueued)
196
197 #define WERR_CLASS_NOT_REGISTERED W_ERROR(0x40154)
198 #define WERR_NO_SHUTDOWN_IN_PROGRESS W_ERROR(0x45c)
199 #define WERR_SHUTDOWN_ALREADY_IN_PROGRESS W_ERROR(0x45b)
200 /* Configuration Manager Errors */
201 /* Basically Win32 errors meanings are specific to the \ntsvcs pipe */
202
203 #define WERR_CM_INVALID_POINTER W_ERROR(3)
204 #define WERR_CM_BUFFER_SMALL W_ERROR(26)
205 #define WERR_CM_NO_MORE_HW_PROFILES W_ERROR(35)
206 #define WERR_CM_NO_SUCH_VALUE W_ERROR(37)
207
208 #define WERR_DEVICE_NOT_SHARED          W_ERROR(NERR_BASE+211)
209
210 /* DFS errors */
211
212 #ifndef NERR_BASE
213 #define NERR_BASE (2100)
214 #endif
215
216 #ifndef MAX_NERR
217 #define MAX_NERR (NERR_BASE+899)
218 #endif
219
220 #define WERR_BUF_TOO_SMALL              W_ERROR(NERR_BASE+23)
221 #define WERR_JOB_NOT_FOUND              W_ERROR(NERR_BASE+51)
222 #define WERR_DEST_NOT_FOUND             W_ERROR(NERR_BASE+52)
223 #define WERR_GROUP_NOT_FOUND            W_ERROR(NERR_BASE+120)
224 #define WERR_USER_NOT_FOUND             W_ERROR(NERR_BASE+121)
225 #define WERR_USER_EXISTS                W_ERROR(NERR_BASE+124)
226 #define WERR_NET_NAME_NOT_FOUND         W_ERROR(NERR_BASE+210)
227 #define WERR_NOT_LOCAL_DOMAIN           W_ERROR(NERR_BASE+220)
228 #define WERR_DC_NOT_FOUND               W_ERROR(NERR_BASE+353)
229 #define WERR_DFS_NO_SUCH_VOL            W_ERROR(NERR_BASE+562)
230 #define WERR_DFS_NO_SUCH_SHARE          W_ERROR(NERR_BASE+565)
231 #define WERR_DFS_NO_SUCH_SERVER         W_ERROR(NERR_BASE+573)
232 #define WERR_DFS_INTERNAL_ERROR         W_ERROR(NERR_BASE+590)
233 #define WERR_DFS_CANT_CREATE_JUNCT      W_ERROR(NERR_BASE+569)
234 #define WERR_SETUP_ALREADY_JOINED       W_ERROR(NERR_BASE+591)
235 #define WERR_SETUP_NOT_JOINED           W_ERROR(NERR_BASE+592)
236 #define WERR_SETUP_DOMAIN_CONTROLLER    W_ERROR(NERR_BASE+593)
237 #define WERR_DEFAULT_JOIN_REQUIRED      W_ERROR(NERR_BASE+594)
238
239 /* DS errors */
240 #define WERR_DS_NO_ATTRIBUTE_OR_VALUE W_ERROR(0x0000200A)
241 #define WERR_DS_INVALID_ATTRIBUTE_SYNTAX W_ERROR(0x0000200B)
242 #define WERR_DS_ATTRIBUTE_TYPE_UNDEFINED W_ERROR(0x0000200C)
243 #define WERR_DS_ATTRIBUTE_OR_VALUE_EXISTS W_ERROR(0x0000200D)
244 #define WERR_DS_BUSY W_ERROR(0x0000200E)
245 #define WERR_DS_UNAVAILABLE W_ERROR(0x0000200F)
246 #define WERR_DS_OBJ_CLASS_VIOLATION W_ERROR(0x00002014)
247 #define WERR_DS_CANT_ON_NON_LEAF W_ERROR(0x00002015)
248 #define WERR_DS_CANT_ON_RDN W_ERROR(0x00002016)
249 #define WERR_DS_CANT_MOD_OBJ_CLASS W_ERROR(0x00002017)
250 #define WERR_DS_OPERATIONS_ERROR W_ERROR(0x00002020)
251 #define WERR_DS_PROTOCOL_ERROR W_ERROR(0x00002021)
252 #define WERR_DS_TIMELIMIT_EXCEEDED W_ERROR(0x00002022)
253 #define WERR_DS_SIZE_LIMIT_EXCEEDED W_ERROR(0x00002023)
254 #define WERR_DS_ADMIN_LIMIT_EXCEEDED W_ERROR(0x00002024)
255 #define WERR_DS_COMPARE_FALSE W_ERROR(0x00002025)
256 #define WERR_DS_COMPARE_TRUE W_ERROR(0x00002026)
257 #define WERR_DS_AUTH_METHOD_NOT_SUPPORTED W_ERROR(0x00002027)
258 #define WERR_DS_STRONG_AUTH_REQUIRED W_ERROR(0x00002028)
259 #define WERR_DS_INAPPROPRIATE_AUTH W_ERROR(0x00002029)
260 #define WERR_DS_REFERRAL W_ERROR(0x0000202B)
261 #define WERR_DS_UNAVAILABLE_CRIT_EXTENSION W_ERROR(0x0000202C)
262 #define WERR_DS_CONFIDENTIALITY_REQUIRED W_ERROR(0x0000202D)
263 #define WERR_DS_INAPPROPRIATE_MATCHING W_ERROR(0x0000202E)
264 #define WERR_DS_CONSTRAINT_VIOLATION W_ERROR(0x0000202F)
265 #define WERR_DS_NO_SUCH_OBJECT W_ERROR(0x00002030)
266 #define WERR_DS_ALIAS_PROBLEM W_ERROR(0x00002031)
267 #define WERR_DS_INVALID_DN_SYNTAX W_ERROR(0x00002032)
268 #define WERR_DS_ALIAS_DEREF_PROBLEM W_ERROR(0x00002034)
269 #define WERR_DS_UNWILLING_TO_PERFORM W_ERROR(0x00002035)
270 #define WERR_DS_LOOP_DETECT W_ERROR(0x00002036)
271 #define WERR_DS_NAMING_VIOLATION W_ERROR(0x00002037)
272 #define WERR_DS_AFFECTS_MULTIPLE_DSAS W_ERROR(0x00002039)
273 #define WERR_DS_OBJ_STRING_NAME_EXISTS W_ERROR(0x00002071)
274 #define WERR_DS_OBJ_NOT_FOUND W_ERROR(0x0000208D)
275 #define WERR_DS_GENERIC_ERROR W_ERROR(0x00002095)
276 #define WERR_DS_INSUFF_ACCESS_RIGHTS W_ERROR(0x00002098)
277 #define WERR_DS_SCHEMA_NOT_LOADED W_ERROR(0x20DE)
278 #define WERR_DS_SCHEMA_ALLOC_FAILED W_ERROR(0x20DF)
279 #define WERR_DS_ATT_SCHEMA_REQ_SYNTAX W_ERROR(0x000020E0)
280 #define WERR_DS_DRA_SCHEMA_MISMATCH W_ERROR(0x000020E2)
281 #define WERR_DS_DRA_INVALID_PARAMETER W_ERROR(0x000020F5)
282 #define WERR_DS_DRA_BAD_DN W_ERROR(0x000020F7)
283 #define WERR_DS_DRA_BAD_NC W_ERROR(0x000020F8)
284 #define WERR_DS_DRA_INTERNAL_ERROR W_ERROR(0x000020FA)
285 #define WERR_DS_DRA_OUT_OF_MEM W_ERROR(0x000020FE)
286 #define WERR_DS_SINGLE_VALUE_CONSTRAINT W_ERROR(0x00002081)
287 #define WERR_DS_DRA_DB_ERROR W_ERROR(0x00002103)
288 #define WERR_DS_DRA_NO_REPLICA W_ERROR(0x00002104)
289 #define WERR_DS_DRA_ACCESS_DENIED W_ERROR(0x00002105)
290 #define WERR_DS_DRA_SOURCE_DISABLED W_ERROR(0x00002108)
291 #define WERR_DS_DNS_LOOKUP_FAILURE W_ERROR(0x0000214C)
292 #define WERR_DS_WRONG_LINKED_ATTRIBUTE_SYNTAX W_ERROR(0x00002150)
293 #define WERR_DS_NO_MSDS_INTID W_ERROR(0x00002194)
294 #define WERR_DS_DUP_MSDS_INTID W_ERROR(0x00002195)
295
296 /* FRS errors */
297 #define WERR_FRS_INSUFFICIENT_PRIV W_ERROR(FRS_ERR_BASE+7)
298 #define WERR_FRS_SYSVOL_IS_BUSY W_ERROR(FRS_ERR_BASE+15)
299 #define WERR_FRS_INVALID_SERVICE_PARAMETER W_ERROR(FRS_ERR_BASE+17)
300
301 /* RPC errors */
302 #define WERR_RPC_E_INVALID_HEADER       W_ERROR(0x80010111)
303 #define WERR_RPC_E_REMOTE_DISABLED      W_ERROR(0x8001011c)
304
305 /* SEC errors */
306 #define WERR_SEC_E_ENCRYPT_FAILURE      W_ERROR(0x80090329)
307 #define WERR_SEC_E_DECRYPT_FAILURE      W_ERROR(0x80090330)
308 #define WERR_SEC_E_ALGORITHM_MISMATCH   W_ERROR(0x80090331)
309
310 #define WERR_FOOBAR WERR_GENERAL_FAILURE
311
312 /*****************************************************************************
313  returns a windows error message.  not amazingly helpful, but better than a number.
314  *****************************************************************************/
315 const char *win_errstr(WERROR werror);
316
317 const char *get_friendly_werror_msg(WERROR werror);
318
319
320 #endif