r13316: Let the carnage begin....
[ira/wip.git] / source / include / doserr.h
1 /* 
2    Unix SMB/CIFS implementation.
3    DOS 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    Copyright (C) Gerald (Jerry) Carter        2005
9    
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 2 of the License, or
13    (at your option) any later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
25 #ifndef _DOSERR_H
26 #define _DOSERR_H
27
28 /* Error classes */
29
30 #define ERRDOS 0x01 /*  Error is from the core DOS operating system set. */
31 #define ERRSRV 0x02  /* Error is generated by the server network file manager.*/
32 #define ERRHRD 0x03  /* Error is an hardware error. */
33 #define ERRCMD 0xFF  /* Command was not in the "SMB" format. */
34
35 /* SMB X/Open error codes for the ERRDOS error class */
36 #define ERRsuccess 0 /* No error */
37 #define ERRbadfunc 1 /* Invalid function (or system call) */
38 #define ERRbadfile 2 /* File not found (pathname error) */
39 #define ERRbadpath 3 /* Directory not found */
40 #define ERRnofids 4 /* Too many open files */
41 #define ERRnoaccess 5 /* Access denied */
42 #define ERRbadfid 6 /* Invalid fid */
43 #define ERRbadmcb 7 /* Memory control blocks destroyed. */
44 #define ERRnomem 8 /* Out of memory */
45 #define ERRbadmem 9 /* Invalid memory block address */
46 #define ERRbadenv 10 /* Invalid environment */
47 #define ERRbadaccess 12 /* Invalid open mode */
48 #define ERRbaddata 13 /* Invalid data (only from ioctl call) */
49 #define ERRres 14 /* reserved */
50 #define ERRbaddrive 15 /* Invalid drive */
51 #define ERRremcd 16 /* Attempt to delete current directory */
52 #define ERRdiffdevice 17 /* rename/move across different filesystems */
53 #define ERRnofiles 18 /* no more files found in file search */
54 #define ERRgeneral 31 /* General failure */
55 #define ERRbadshare 32 /* Share mode on file conflict with open mode */
56 #define ERRlock 33 /* Lock request conflicts with existing lock */
57 #define ERRunsup 50 /* Request unsupported, returned by Win 95, RJS 20Jun98 */
58 #define ERRnetnamedel 64 /* Network name deleted or not available */
59 #define ERRnosuchshare 67 /* You specified an invalid share name */
60 #define ERRfilexists 80 /* File in operation already exists */
61 #define ERRinvalidparam 87
62 #define ERRcannotopen 110 /* Cannot open the file specified */
63 #define ERRinsufficientbuffer 122
64 #define ERRinvalidname 123 /* Invalid name */
65 #define ERRunknownlevel 124
66 #define ERRnotlocked 158 /* This region is not locked by this locking context. */
67 #define ERRinvalidpath 161
68 #define ERRcancelviolation 173
69 #define ERRnoatomiclocks 174
70 #define ERRrename 183
71 #define ERRbadpipe 230 /* Named pipe invalid */
72 #define ERRpipebusy 231 /* All instances of pipe are busy */
73 #define ERRpipeclosing 232 /* named pipe close in progress */
74 #define ERRnotconnected 233 /* No process on other end of named pipe */
75 #define ERRmoredata 234 /* More data to be returned */
76 #define ERReainconsistent 255 /* from EMC */
77 #define ERRnomoreitems 259
78 #define ERRbaddirectory 267 /* Invalid directory name in a path. */
79 #define ERReasnotsupported 282 /* Extended attributes */
80 #define ERRlogonfailure 1326 /* Unknown username or bad password */
81 #define ERRbuftoosmall 2123
82 #define ERRunknownipc 2142
83 #define ERRnosuchprintjob 2151
84 #define ERRinvgroup 2455
85
86 /* here's a special one from observing NT */
87 #define ERRnoipc 66 /* don't support ipc */
88
89 /* These errors seem to be only returned by the NT printer driver system */
90 #define ERRdriveralreadyinstalled 1795 /* ERROR_PRINTER_DRIVER_ALREADY_INSTALLED */
91 #define ERRunknownprinterport 1796 /* ERROR_UNKNOWN_PORT */
92 #define ERRunknownprinterdriver 1797 /* ERROR_UNKNOWN_PRINTER_DRIVER */
93 #define ERRunknownprintprocessor 1798 /* ERROR_UNKNOWN_PRINTPROCESSOR */
94 #define ERRinvalidseparatorfile 1799 /* ERROR_INVALID_SEPARATOR_FILE */
95 #define ERRinvalidjobpriority 1800 /* ERROR_INVALID_PRIORITY */
96 #define ERRinvalidprintername 1801 /* ERROR_INVALID_PRINTER_NAME */
97 #define ERRprinteralreadyexists 1802 /* ERROR_PRINTER_ALREADY_EXISTS */
98 #define ERRinvalidprintercommand 1803 /* ERROR_INVALID_PRINTER_COMMAND */
99 #define ERRinvaliddatatype 1804 /* ERROR_INVALID_DATATYPE */
100 #define ERRinvalidenvironment 1805 /* ERROR_INVALID_ENVIRONMENT */
101
102 #define ERRunknownprintmonitor 3000 /* ERROR_UNKNOWN_PRINT_MONITOR */
103 #define ERRprinterdriverinuse 3001 /* ERROR_PRINTER_DRIVER_IN_USE */
104 #define ERRspoolfilenotfound 3002 /* ERROR_SPOOL_FILE_NOT_FOUND */
105 #define ERRnostartdoc 3003 /* ERROR_SPL_NO_STARTDOC */
106 #define ERRnoaddjob 3004 /* ERROR_SPL_NO_ADDJOB */
107 #define ERRprintprocessoralreadyinstalled 3005 /* ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED */
108 #define ERRprintmonitoralreadyinstalled 3006 /* ERROR_PRINT_MONITOR_ALREADY_INSTALLED */
109 #define ERRinvalidprintmonitor 3007 /* ERROR_INVALID_PRINT_MONITOR */
110 #define ERRprintmonitorinuse 3008 /* ERROR_PRINT_MONITOR_IN_USE */
111 #define ERRprinterhasjobsqueued 3009 /* ERROR_PRINTER_HAS_JOBS_QUEUED */
112
113 /* Error codes for the ERRSRV class */
114
115 #define ERRerror 1 /* Non specific error code */
116 #define ERRbadpw 2 /* Bad password */
117 #define ERRbadtype 3 /* reserved */
118 #define ERRaccess 4 /* No permissions to do the requested operation */
119 #define ERRinvnid 5 /* tid invalid */
120 #define ERRinvnetname 6 /* Invalid servername */
121 #define ERRinvdevice 7 /* Invalid device */
122 #define ERRqfull 49 /* Print queue full */
123 #define ERRqtoobig 50 /* Queued item too big */
124 #define ERRinvpfid 52 /* Invalid print file in smb_fid */
125 #define ERRsmbcmd 64 /* Unrecognised command */
126 #define ERRsrverror 65 /* smb server internal error */
127 #define ERRfilespecs 67 /* fid and pathname invalid combination */
128 #define ERRbadlink 68 /* reserved */
129 #define ERRbadpermits 69 /* Access specified for a file is not valid */
130 #define ERRbadpid 70 /* reserved */
131 #define ERRsetattrmode 71 /* attribute mode invalid */
132 #define ERRpaused 81 /* Message server paused */
133 #define ERRmsgoff 82 /* Not receiving messages */
134 #define ERRnoroom 83 /* No room for message */
135 #define ERRrmuns 87 /* too many remote usernames */
136 #define ERRtimeout 88 /* operation timed out */
137 #define ERRnoresource  89 /* No resources currently available for request. */
138 #define ERRtoomanyuids 90 /* too many userids */
139 #define ERRbaduid 91 /* bad userid */
140 #define ERRuseMPX 250 /* temporarily unable to use raw mode, use MPX mode */
141 #define ERRuseSTD 251 /* temporarily unable to use raw mode, use standard mode */
142 #define ERRcontMPX 252 /* resume MPX mode */
143 #define ERRbadPW /* reserved */
144 #define ERRnosupport 0xFFFF
145 #define ERRunknownsmb 22 /* from NT 3.5 response */
146
147 /* Error codes for the ERRHRD class */
148
149 #define ERRnowrite 19 /* read only media */
150 #define ERRbadunit 20 /* Unknown device */
151 #define ERRnotready 21 /* Drive not ready */
152 #define ERRbadcmd 22 /* Unknown command */
153 #define ERRdata 23 /* Data (CRC) error */
154 #define ERRbadreq 24 /* Bad request structure length */
155 #define ERRseek 25
156 #define ERRbadmedia 26
157 #define ERRbadsector 27
158 #define ERRnopaper 28
159 #define ERRwrite 29 /* write fault */
160 #define ERRread 30 /* read fault */
161 #define ERRgeneral 31 /* General hardware failure */
162 #define ERRwrongdisk 34
163 #define ERRFCBunavail 35
164 #define ERRsharebufexc 36 /* share buffer exceeded */
165 #define ERRdiskfull 39
166
167
168 /* these are win32 error codes. There are only a few places where
169    these matter for Samba, primarily in the NT printing code */
170 #define WERR_OK W_ERROR(0)
171 #define WERR_BADFUNC W_ERROR(1)
172 #define WERR_BADFILE W_ERROR(2)
173 #define WERR_ACCESS_DENIED W_ERROR(5)
174 #define WERR_BADFID W_ERROR(6)
175 #define WERR_NOMEM W_ERROR(8)
176 #define WERR_GENERAL_FAILURE W_ERROR(31)
177 #define WERR_NOT_SUPPORTED W_ERROR(50)
178 #define WERR_DEVICE_NOT_EXIST W_ERROR(55)
179 #define WERR_PRINTQ_FULL W_ERROR(61)
180 #define WERR_NO_SPOOL_SPACE W_ERROR(62)
181 #define WERR_NO_SUCH_SHARE W_ERROR(67)
182 #define WERR_ALREADY_EXISTS W_ERROR(80)
183 #define WERR_BAD_PASSWORD W_ERROR(86)
184 #define WERR_INVALID_PARAM W_ERROR(87)
185 #define WERR_INSUFFICIENT_BUFFER W_ERROR(122)
186 #define WERR_INVALID_NAME W_ERROR(123)
187 #define WERR_UNKNOWN_LEVEL W_ERROR(124)
188 #define WERR_OBJECT_PATH_INVALID W_ERROR(161)
189 #define WERR_NO_MORE_ITEMS W_ERROR(259)
190 #define WERR_MORE_DATA W_ERROR(234)
191 #define WERR_INVALID_OWNER W_ERROR(1307)
192 #define WERR_IO_PENDING W_ERROR(997)
193 #define WERR_CAN_NOT_COMPLETE W_ERROR(1003)
194 #define WERR_REG_CORRUPT W_ERROR(1015)
195 #define WERR_REG_IO_FAILURE W_ERROR(1016)
196 #define WERR_REG_FILE_INVALID W_ERROR(1017)
197 #define WERR_NO_SUCH_SERVICE W_ERROR(1060)
198 #define WERR_INVALID_SERVICE_CONTROL W_ERROR(1052)
199 #define WERR_SERVICE_DISABLED W_ERROR(1058)
200 #define WERR_SERVICE_NEVER_STARTED W_ERROR(1077)
201 #define WERR_MACHINE_LOCKED W_ERROR(1271)
202 #define WERR_INVALID_SECURITY_DESCRIPTOR W_ERROR(1338)
203 #define WERR_TIME_SKEW W_ERROR(1398)
204 #define WERR_EVENTLOG_FILE_CORRUPT W_ERROR(1500)
205 #define WERR_SERVER_UNAVAILABLE W_ERROR(1722)
206 #define WERR_INVALID_FORM_NAME W_ERROR(1902)
207 #define WERR_INVALID_FORM_SIZE W_ERROR(1903)
208 #define WERR_BUF_TOO_SMALL W_ERROR(2123)
209 #define WERR_JOB_NOT_FOUND W_ERROR(2151)
210 #define WERR_DEST_NOT_FOUND W_ERROR(2152)
211 #define WERR_NOT_LOCAL_DOMAIN W_ERROR(2320)
212 #define WERR_STATUS_MORE_ENTRIES   W_ERROR(0x0105)
213
214 #define WERR_PRINTER_DRIVER_ALREADY_INSTALLED W_ERROR(ERRdriveralreadyinstalled)
215 #define WERR_UNKNOWN_PORT W_ERROR(ERRunknownprinterport)
216 #define WERR_UNKNOWN_PRINTER_DRIVER W_ERROR(ERRunknownprinterdriver)
217 #define WERR_UNKNOWN_PRINTPROCESSOR W_ERROR(ERRunknownprintprocessor)
218 #define WERR_INVALID_SEPARATOR_FILE W_ERROR(ERRinvalidseparatorfile)
219 #define WERR_INVALID_PRIORITY W_ERROR(ERRinvalidjobpriority)
220 #define WERR_INVALID_PRINTER_NAME W_ERROR(ERRinvalidprintername)
221 #define WERR_PRINTER_ALREADY_EXISTS W_ERROR(ERRprinteralreadyexists)
222 #define WERR_INVALID_PRINTER_COMMAND W_ERROR(ERRinvalidprintercommand)
223 #define WERR_INVALID_DATATYPE W_ERROR(ERRinvaliddatatype)
224 #define WERR_INVALID_ENVIRONMENT W_ERROR(ERRinvalidenvironment)
225
226 #define WERR_UNKNOWN_PRINT_MONITOR W_ERROR(ERRunknownprintmonitor)
227 #define WERR_PRINTER_DRIVER_IN_USE W_ERROR(ERRprinterdriverinuse)
228 #define WERR_SPOOL_FILE_NOT_FOUND W_ERROR(ERRspoolfilenotfound)
229 #define WERR_SPL_NO_STARTDOC W_ERROR(ERRnostartdoc)
230 #define WERR_SPL_NO_ADDJOB W_ERROR(ERRnoaddjob)
231 #define WERR_PRINT_PROCESSOR_ALREADY_INSTALLED W_ERROR(ERRprintprocessoralreadyinstalled)
232 #define WERR_PRINT_MONITOR_ALREADY_INSTALLED W_ERROR(ERRprintmonitoralreadyinstalled)
233 #define WERR_INVALID_PRINT_MONITOR W_ERROR(ERRinvalidprintmonitor)
234 #define WERR_PRINT_MONITOR_IN_USE W_ERROR(ERRprintmonitorinuse)
235 #define WERR_PRINTER_HAS_JOBS_QUEUED W_ERROR(ERRprinterhasjobsqueued)
236
237 /* Configuration Manager Errors */
238 /* Basically Win32 errors meanings are specific to the \ntsvcs pipe */
239
240 #define WERR_CM_NO_MORE_HW_PROFILES W_ERROR(35)
241 #define WERR_CM_NO_SUCH_VALUE W_ERROR(37)
242
243
244 /* DFS errors */
245
246 #ifndef NERR_BASE
247 #define NERR_BASE (2100)
248 #endif
249
250 #define WERR_DFS_NO_SUCH_VOL            W_ERROR(NERR_BASE+562)
251 #define WERR_DFS_NO_SUCH_SHARE          W_ERROR(NERR_BASE+565)
252 #define WERR_DFS_NO_SUCH_SERVER         W_ERROR(NERR_BASE+573)
253 #define WERR_DFS_INTERNAL_ERROR         W_ERROR(NERR_BASE+590)
254 #define WERR_DFS_CANT_CREATE_JUNCT      W_ERROR(NERR_BASE+569)
255
256 #define WERR_NET_NAME_NOT_FOUND         W_ERROR(NERR_BASE+210)
257
258
259 #endif /* _DOSERR_H */