Bring printing in HEAD inline with 2.2.x and app-head.
[ira/wip.git] / source3 / include / doserr.h
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    DOS error code constants
5    Copyright (C) Andrew Tridgell              1992-2000
6    Copyright (C) John H Terpstra              1996-2000
7    Copyright (C) Luke Kenneth Casson Leighton 1996-2000
8    Copyright (C) Paul Ashton                  1998-2000
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 ERRrename 183
68 #define ERRbadpipe 230 /* Named pipe invalid */
69 #define ERRpipebusy 231 /* All instances of pipe are busy */
70 #define ERRpipeclosing 232 /* named pipe close in progress */
71 #define ERRnotconnected 233 /* No process on other end of named pipe */
72 #define ERRmoredata 234 /* More data to be returned */
73 #define ERRnomoreitems 259
74 #define ERRbaddirectory 267 /* Invalid directory name in a path. */
75 #define ERReasnotsupported 282 /* Extended attributes */
76 #define ERRlogonfailure 1326 /* Unknown username or bad password */
77 #define ERRbuftoosmall 2123
78 #define ERRunknownipc 2142
79 #define ERRnosuchprintjob 2151
80 #define ERRinvgroup 2455
81
82 /* here's a special one from observing NT */
83 #define ERRnoipc 66 /* don't support ipc */
84
85 /* These errors seem to be only returned by the NT printer driver system */
86
87 #define ERRunknownprinterdriver 1797 /* ERROR_UNKNOWN_PRINTER_DRIVER */
88 #define ERRinvalidprintername 1801 /* ERROR_INVALID_PRINTER_NAME */
89 #define ERRprinteralreadyexists 1802 /* ERROR_PRINTER_ALREADY_EXISTS */
90 #define ERRinvaliddatatype 1804 /* ERROR_INVALID_DATATYPE */
91 #define ERRinvalidenvironment 1805 /* ERROR_INVALID_ENVIRONMENT */
92 #define ERRprinterdriverinuse 3001 /* ERROR_PRINTER_DRIVER_IN_USE */
93
94 /* Error codes for the ERRSRV class */
95
96 #define ERRerror 1 /* Non specific error code */
97 #define ERRbadpw 2 /* Bad password */
98 #define ERRbadtype 3 /* reserved */
99 #define ERRaccess 4 /* No permissions to do the requested operation */
100 #define ERRinvnid 5 /* tid invalid */
101 #define ERRinvnetname 6 /* Invalid servername */
102 #define ERRinvdevice 7 /* Invalid device */
103 #define ERRqfull 49 /* Print queue full */
104 #define ERRqtoobig 50 /* Queued item too big */
105 #define ERRinvpfid 52 /* Invalid print file in smb_fid */
106 #define ERRsmbcmd 64 /* Unrecognised command */
107 #define ERRsrverror 65 /* smb server internal error */
108 #define ERRfilespecs 67 /* fid and pathname invalid combination */
109 #define ERRbadlink 68 /* reserved */
110 #define ERRbadpermits 69 /* Access specified for a file is not valid */
111 #define ERRbadpid 70 /* reserved */
112 #define ERRsetattrmode 71 /* attribute mode invalid */
113 #define ERRpaused 81 /* Message server paused */
114 #define ERRmsgoff 82 /* Not receiving messages */
115 #define ERRnoroom 83 /* No room for message */
116 #define ERRrmuns 87 /* too many remote usernames */
117 #define ERRtimeout 88 /* operation timed out */
118 #define ERRnoresource  89 /* No resources currently available for request. */
119 #define ERRtoomanyuids 90 /* too many userids */
120 #define ERRbaduid 91 /* bad userid */
121 #define ERRuseMPX 250 /* temporarily unable to use raw mode, use MPX mode */
122 #define ERRuseSTD 251 /* temporarily unable to use raw mode, use standard mode */
123 #define ERRcontMPX 252 /* resume MPX mode */
124 #define ERRbadPW /* reserved */
125 #define ERRnosupport 0xFFFF
126 #define ERRunknownsmb 22 /* from NT 3.5 response */
127
128 /* Error codes for the ERRHRD class */
129
130 #define ERRnowrite 19 /* read only media */
131 #define ERRbadunit 20 /* Unknown device */
132 #define ERRnotready 21 /* Drive not ready */
133 #define ERRbadcmd 22 /* Unknown command */
134 #define ERRdata 23 /* Data (CRC) error */
135 #define ERRbadreq 24 /* Bad request structure length */
136 #define ERRseek 25
137 #define ERRbadmedia 26
138 #define ERRbadsector 27
139 #define ERRnopaper 28
140 #define ERRwrite 29 /* write fault */
141 #define ERRread 30 /* read fault */
142 #define ERRgeneral 31 /* General hardware failure */
143 #define ERRwrongdisk 34
144 #define ERRFCBunavail 35
145 #define ERRsharebufexc 36 /* share buffer exceeded */
146 #define ERRdiskfull 39
147
148
149 /* these are win32 error codes. There are only a few places where
150    these matter for Samba, primarily in the NT printing code */
151 #define WERR_OK W_ERROR(0)
152 #define WERR_BADFILE W_ERROR(2)
153 #define WERR_ACCESS_DENIED W_ERROR(5)
154 #define WERR_BADFID W_ERROR(6)
155 #define WERR_BADFUNC W_ERROR(1)
156 #define WERR_INSUFFICIENT_BUFFER W_ERROR(122)
157 #define WERR_NO_SUCH_SHARE W_ERROR(67)
158 #define WERR_ALREADY_EXISTS W_ERROR(80)
159 #define WERR_INVALID_PARAM W_ERROR(87)
160 #define WERR_NOT_SUPPORTED W_ERROR(50)
161 #define WERR_BAD_PASSWORD W_ERROR(86)
162 #define WERR_NOMEM W_ERROR(8)
163 #define WERR_INVALID_NAME W_ERROR(123)
164 #define WERR_UNKNOWN_LEVEL W_ERROR(124)
165 #define WERR_NO_MORE_ITEMS W_ERROR(259)
166 #define WERR_MORE_DATA W_ERROR(234)
167 #define WERR_UNKNOWN_PRINTER_DRIVER W_ERROR(1797)
168 #define WERR_INVALID_PRINTER_NAME W_ERROR(1801)
169 #define WERR_PRINTER_ALREADY_EXISTS W_ERROR(1802)
170 #define WERR_INVALID_DATATYPE W_ERROR(1804)
171 #define WERR_INVALID_ENVIRONMENT W_ERROR(1805)
172 #define WERR_BUF_TOO_SMALL W_ERROR(2123)
173 #define WERR_JOB_NOT_FOUND W_ERROR(2151)
174 #define WERR_DEST_NOT_FOUND W_ERROR(2152)
175 #define WERR_NOT_LOCAL_DOMAIN W_ERROR(2320)
176 #define WERR_PRINTER_DRIVER_IN_USE W_ERROR(3001)
177 #define WERR_STATUS_MORE_ENTRIES   W_ERROR(0x0105)
178
179 /* DFS errors */
180
181 #ifndef NERR_BASE
182 #define NERR_BASE (2100)
183 #endif
184
185 #define WERR_DFS_NO_SUCH_VOL            W_ERROR(NERR_BASE+562)
186 #define WERR_DFS_NO_SUCH_SHARE          W_ERROR(NERR_BASE+565)
187 #define WERR_DFS_NO_SUCH_SERVER         W_ERROR(NERR_BASE+573)
188 #define WERR_DFS_INTERNAL_ERROR         W_ERROR(NERR_BASE+590)
189 #define WERR_DFS_CANT_CREATE_JUNCT      W_ERROR(NERR_BASE+569)
190
191 #endif /* _DOSERR_H */