2 Unix SMB/CIFS implementation.
3 client error handling routines
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Jelmer Vernooij 2003
6 Copyright (C) Jeremy Allison 2006
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 /*****************************************************
25 RAP error codes - a small start but will be extended.
27 XXX: Perhaps these should move into a common function because they're
28 duplicated in clirap2.c
30 *******************************************************/
36 {5, "RAP5: User has insufficient privilege" },
37 {50, "RAP50: Not supported by server" },
38 {65, "RAP65: Access denied" },
39 {86, "RAP86: The specified password is invalid" },
40 {2220, "RAP2220: Group does not exist" },
41 {2221, "RAP2221: User does not exist" },
42 {2226, "RAP2226: Operation only permitted on a Primary Domain Controller" },
43 {2237, "RAP2237: User is not in group" },
44 {2242, "RAP2242: The password of this user has expired." },
45 {2243, "RAP2243: The password of this user cannot change." },
46 {2244, "RAP2244: This password cannot be used now (password history conflict)." },
47 {2245, "RAP2245: The password is shorter than required." },
48 {2246, "RAP2246: The password of this user is too recent to change."},
50 /* these really shouldn't be here ... */
51 {0x80, "Not listening on called name"},
52 {0x81, "Not listening for calling name"},
53 {0x82, "Called name not present"},
54 {0x83, "Called name present, but insufficient resources"},
59 /****************************************************************************
60 Return a description of an SMB error.
61 ****************************************************************************/
63 static const char *cli_smb_errstr(struct cli_state
*cli
)
65 return smb_dos_errstr(cli
->inbuf
);
68 /****************************************************************************
69 Convert a socket error into an NTSTATUS.
70 ****************************************************************************/
72 static NTSTATUS
cli_smb_rw_error_to_ntstatus(struct cli_state
*cli
)
74 switch(cli
->smb_rw_error
) {
76 return NT_STATUS_IO_TIMEOUT
;
78 return NT_STATUS_END_OF_FILE
;
79 /* What we shoud really do for read/write errors is convert from errno. */
82 return NT_STATUS_INVALID_NETWORK_RESPONSE
;
84 return NT_STATUS_UNEXPECTED_NETWORK_ERROR
;
86 return NT_STATUS_INVALID_PARAMETER
;
90 return NT_STATUS_UNSUCCESSFUL
;
93 /***************************************************************************
94 Return an error message - either an NT error, SMB error or a RAP error.
95 Note some of the NT errors are actually warnings or "informational" errors
96 in which case they can be safely ignored.
97 ****************************************************************************/
99 const char *cli_errstr(struct cli_state
*cli
)
101 static fstring cli_error_message
;
102 uint32 flgs2
= SVAL(cli
->inbuf
,smb_flg2
), errnum
;
106 if (!cli
->initialised
) {
107 fstrcpy(cli_error_message
, "[Programmer's error] cli_errstr called on unitialized cli_stat struct!\n");
108 return cli_error_message
;
111 /* Was it server socket error ? */
112 if (cli
->fd
== -1 && cli
->smb_rw_error
) {
113 switch(cli
->smb_rw_error
) {
115 slprintf(cli_error_message
, sizeof(cli_error_message
) - 1,
116 "Call timed out: server did not respond after %d milliseconds",
120 slprintf(cli_error_message
, sizeof(cli_error_message
) - 1,
121 "Call returned zero bytes (EOF)" );
124 slprintf(cli_error_message
, sizeof(cli_error_message
) - 1,
125 "Read error: %s", strerror(errno
) );
128 slprintf(cli_error_message
, sizeof(cli_error_message
) - 1,
129 "Write error: %s", strerror(errno
) );
132 slprintf(cli_error_message
, sizeof(cli_error_message
) - 1,
133 "Server packet had invalid SMB signature!");
136 slprintf(cli_error_message
, sizeof(cli_error_message
) - 1,
137 "Unknown error code %d\n", cli
->smb_rw_error
);
140 return cli_error_message
;
143 /* Case #1: RAP error */
144 if (cli
->rap_error
) {
145 for (i
= 0; rap_errmap
[i
].message
!= NULL
; i
++) {
146 if (rap_errmap
[i
].err
== cli
->rap_error
) {
147 return rap_errmap
[i
].message
;
151 slprintf(cli_error_message
, sizeof(cli_error_message
) - 1, "RAP code %d",
154 return cli_error_message
;
157 /* Case #2: 32-bit NT errors */
158 if (flgs2
& FLAGS2_32_BIT_ERROR_CODES
) {
159 NTSTATUS status
= NT_STATUS(IVAL(cli
->inbuf
,smb_rcls
));
161 return nt_errstr(status
);
164 cli_dos_error(cli
, &errclass
, &errnum
);
166 /* Case #3: SMB error */
168 return cli_smb_errstr(cli
);
172 /****************************************************************************
173 Return the 32-bit NT status code from the last packet.
174 ****************************************************************************/
176 NTSTATUS
cli_nt_error(struct cli_state
*cli
)
178 int flgs2
= SVAL(cli
->inbuf
,smb_flg2
);
180 /* Deal with socket errors first. */
181 if (cli
->fd
== -1 && cli
->smb_rw_error
) {
182 return cli_smb_rw_error_to_ntstatus(cli
);
185 if (!(flgs2
& FLAGS2_32_BIT_ERROR_CODES
)) {
186 int e_class
= CVAL(cli
->inbuf
,smb_rcls
);
187 int code
= SVAL(cli
->inbuf
,smb_err
);
188 return dos_to_ntstatus(e_class
, code
);
191 return NT_STATUS(IVAL(cli
->inbuf
,smb_rcls
));
195 /****************************************************************************
196 Return the DOS error from the last packet - an error class and an error
198 ****************************************************************************/
200 void cli_dos_error(struct cli_state
*cli
, uint8
*eclass
, uint32
*ecode
)
204 if(!cli
->initialised
) {
208 /* Deal with socket errors first. */
209 if (cli
->fd
== -1 && cli
->smb_rw_error
) {
210 NTSTATUS status
= cli_smb_rw_error_to_ntstatus(cli
);
211 ntstatus_to_dos( status
, eclass
, ecode
);
215 flgs2
= SVAL(cli
->inbuf
,smb_flg2
);
217 if (flgs2
& FLAGS2_32_BIT_ERROR_CODES
) {
218 NTSTATUS ntstatus
= NT_STATUS(IVAL(cli
->inbuf
, smb_rcls
));
219 ntstatus_to_dos(ntstatus
, eclass
, ecode
);
223 *eclass
= CVAL(cli
->inbuf
,smb_rcls
);
224 *ecode
= SVAL(cli
->inbuf
,smb_err
);
227 /* Return a UNIX errno from a NT status code */
228 static const struct {
232 {NT_STATUS_ACCESS_VIOLATION
, EACCES
},
233 {NT_STATUS_INVALID_HANDLE
, EBADF
},
234 {NT_STATUS_ACCESS_DENIED
, EACCES
},
235 {NT_STATUS_OBJECT_NAME_NOT_FOUND
, ENOENT
},
236 {NT_STATUS_SHARING_VIOLATION
, EBUSY
},
237 {NT_STATUS_OBJECT_PATH_INVALID
, ENOTDIR
},
238 {NT_STATUS_OBJECT_NAME_COLLISION
, EEXIST
},
239 {NT_STATUS_PATH_NOT_COVERED
, ENOENT
},
240 {NT_STATUS_UNSUCCESSFUL
, EINVAL
},
241 {NT_STATUS_NOT_IMPLEMENTED
, ENOSYS
},
242 {NT_STATUS_IN_PAGE_ERROR
, EFAULT
},
243 {NT_STATUS_BAD_NETWORK_NAME
, ENOENT
},
245 {NT_STATUS_PAGEFILE_QUOTA
, EDQUOT
},
246 {NT_STATUS_QUOTA_EXCEEDED
, EDQUOT
},
247 {NT_STATUS_REGISTRY_QUOTA_LIMIT
, EDQUOT
},
248 {NT_STATUS_LICENSE_QUOTA_EXCEEDED
, EDQUOT
},
251 {NT_STATUS_TIMER_NOT_CANCELED
, ETIME
},
253 {NT_STATUS_INVALID_PARAMETER
, EINVAL
},
254 {NT_STATUS_NO_SUCH_DEVICE
, ENODEV
},
255 {NT_STATUS_NO_SUCH_FILE
, ENOENT
},
257 {NT_STATUS_END_OF_FILE
, ENODATA
},
260 {NT_STATUS_NO_MEDIA_IN_DEVICE
, ENOMEDIUM
},
261 {NT_STATUS_NO_MEDIA
, ENOMEDIUM
},
263 {NT_STATUS_NONEXISTENT_SECTOR
, ESPIPE
},
264 {NT_STATUS_NO_MEMORY
, ENOMEM
},
265 {NT_STATUS_CONFLICTING_ADDRESSES
, EADDRINUSE
},
266 {NT_STATUS_NOT_MAPPED_VIEW
, EINVAL
},
267 {NT_STATUS_UNABLE_TO_FREE_VM
, EADDRINUSE
},
268 {NT_STATUS_ACCESS_DENIED
, EACCES
},
269 {NT_STATUS_BUFFER_TOO_SMALL
, ENOBUFS
},
270 {NT_STATUS_WRONG_PASSWORD
, EACCES
},
271 {NT_STATUS_LOGON_FAILURE
, EACCES
},
272 {NT_STATUS_INVALID_WORKSTATION
, EACCES
},
273 {NT_STATUS_INVALID_LOGON_HOURS
, EACCES
},
274 {NT_STATUS_PASSWORD_EXPIRED
, EACCES
},
275 {NT_STATUS_ACCOUNT_DISABLED
, EACCES
},
276 {NT_STATUS_DISK_FULL
, ENOSPC
},
277 {NT_STATUS_INVALID_PIPE_STATE
, EPIPE
},
278 {NT_STATUS_PIPE_BUSY
, EPIPE
},
279 {NT_STATUS_PIPE_DISCONNECTED
, EPIPE
},
280 {NT_STATUS_PIPE_NOT_AVAILABLE
, ENOSYS
},
281 {NT_STATUS_FILE_IS_A_DIRECTORY
, EISDIR
},
282 {NT_STATUS_NOT_SUPPORTED
, ENOSYS
},
283 {NT_STATUS_NOT_A_DIRECTORY
, ENOTDIR
},
284 {NT_STATUS_DIRECTORY_NOT_EMPTY
, ENOTEMPTY
},
285 {NT_STATUS_NETWORK_UNREACHABLE
, ENETUNREACH
},
286 {NT_STATUS_HOST_UNREACHABLE
, EHOSTUNREACH
},
287 {NT_STATUS_CONNECTION_ABORTED
, ECONNABORTED
},
288 {NT_STATUS_CONNECTION_REFUSED
, ECONNREFUSED
},
289 {NT_STATUS_TOO_MANY_LINKS
, EMLINK
},
290 {NT_STATUS_NETWORK_BUSY
, EBUSY
},
291 {NT_STATUS_DEVICE_DOES_NOT_EXIST
, ENODEV
},
293 {NT_STATUS_DLL_NOT_FOUND
, ELIBACC
},
295 {NT_STATUS_PIPE_BROKEN
, EPIPE
},
296 {NT_STATUS_REMOTE_NOT_LISTENING
, ECONNREFUSED
},
297 {NT_STATUS_NETWORK_ACCESS_DENIED
, EACCES
},
298 {NT_STATUS_TOO_MANY_OPENED_FILES
, EMFILE
},
300 {NT_STATUS_DEVICE_PROTOCOL_ERROR
, EPROTO
},
302 {NT_STATUS_FLOAT_OVERFLOW
, ERANGE
},
303 {NT_STATUS_FLOAT_UNDERFLOW
, ERANGE
},
304 {NT_STATUS_INTEGER_OVERFLOW
, ERANGE
},
305 {NT_STATUS_MEDIA_WRITE_PROTECTED
, EROFS
},
306 {NT_STATUS_PIPE_CONNECTED
, EISCONN
},
307 {NT_STATUS_MEMORY_NOT_ALLOCATED
, EFAULT
},
308 {NT_STATUS_FLOAT_INEXACT_RESULT
, ERANGE
},
309 {NT_STATUS_ILL_FORMED_PASSWORD
, EACCES
},
310 {NT_STATUS_PASSWORD_RESTRICTION
, EACCES
},
311 {NT_STATUS_ACCOUNT_RESTRICTION
, EACCES
},
312 {NT_STATUS_PORT_CONNECTION_REFUSED
, ECONNREFUSED
},
313 {NT_STATUS_NAME_TOO_LONG
, ENAMETOOLONG
},
314 {NT_STATUS_REMOTE_DISCONNECT
, ESHUTDOWN
},
315 {NT_STATUS_CONNECTION_DISCONNECTED
, ECONNABORTED
},
316 {NT_STATUS_CONNECTION_RESET
, ENETRESET
},
318 {NT_STATUS_IP_ADDRESS_CONFLICT1
, ENOTUNIQ
},
319 {NT_STATUS_IP_ADDRESS_CONFLICT2
, ENOTUNIQ
},
321 {NT_STATUS_PORT_MESSAGE_TOO_LONG
, EMSGSIZE
},
322 {NT_STATUS_PROTOCOL_UNREACHABLE
, ENOPROTOOPT
},
323 {NT_STATUS_ADDRESS_ALREADY_EXISTS
, EADDRINUSE
},
324 {NT_STATUS_PORT_UNREACHABLE
, EHOSTUNREACH
},
325 {NT_STATUS_IO_TIMEOUT
, ETIMEDOUT
},
326 {NT_STATUS_RETRY
, EAGAIN
},
328 {NT_STATUS_DUPLICATE_NAME
, ENOTUNIQ
},
331 {NT_STATUS_NET_WRITE_FAULT
, ECOMM
},
334 {NT_STATUS_NOT_SAME_DEVICE
, EXDEV
},
339 /****************************************************************************
340 The following mappings need tidying up and moving into libsmb/errormap.c...
341 ****************************************************************************/
343 static int cli_errno_from_nt(NTSTATUS status
)
346 DEBUG(10,("cli_errno_from_nt: 32 bit codes: code=%08x\n", NT_STATUS_V(status
)));
348 /* Status codes without this bit set are not errors */
350 if (!(NT_STATUS_V(status
) & 0xc0000000)) {
354 for (i
=0;nt_errno_map
[i
].error
;i
++) {
355 if (NT_STATUS_V(nt_errno_map
[i
].status
) ==
356 NT_STATUS_V(status
)) return nt_errno_map
[i
].error
;
359 /* for all other cases - a default code */
363 /* Return a UNIX errno appropriate for the error received in the last
366 int cli_errno(struct cli_state
*cli
)
370 if (cli_is_nt_error(cli
)) {
371 status
= cli_nt_error(cli
);
372 return cli_errno_from_nt(status
);
375 if (cli_is_dos_error(cli
)) {
379 cli_dos_error(cli
, &eclass
, &ecode
);
380 status
= dos_to_ntstatus(eclass
, ecode
);
381 return cli_errno_from_nt(status
);
385 * Yuck! A special case for this Vista error. Since its high-order
386 * byte isn't 0xc0, it doesn't match cli_is_nt_error() above.
388 status
= cli_nt_error(cli
);
389 if (NT_STATUS_V(status
) == NT_STATUS_V(NT_STATUS_INACCESSIBLE_SYSTEM_SHORTCUT
)) {
393 /* for other cases */
397 /* Return true if the last packet was in error */
399 BOOL
cli_is_error(struct cli_state
*cli
)
401 uint32 flgs2
= SVAL(cli
->inbuf
,smb_flg2
), rcls
= 0;
403 /* A socket error is always an error. */
404 if (cli
->fd
== -1 && cli
->smb_rw_error
!= 0) {
408 if (flgs2
& FLAGS2_32_BIT_ERROR_CODES
) {
409 /* Return error is error bits are set */
410 rcls
= IVAL(cli
->inbuf
, smb_rcls
);
411 return (rcls
& 0xF0000000) == 0xC0000000;
414 /* Return error if error class in non-zero */
416 rcls
= CVAL(cli
->inbuf
, smb_rcls
);
420 /* Return true if the last error was an NT error */
422 BOOL
cli_is_nt_error(struct cli_state
*cli
)
424 uint32 flgs2
= SVAL(cli
->inbuf
,smb_flg2
);
426 /* A socket error is always an NT error. */
427 if (cli
->fd
== -1 && cli
->smb_rw_error
!= 0) {
431 return cli_is_error(cli
) && (flgs2
& FLAGS2_32_BIT_ERROR_CODES
);
434 /* Return true if the last error was a DOS error */
436 BOOL
cli_is_dos_error(struct cli_state
*cli
)
438 uint32 flgs2
= SVAL(cli
->inbuf
,smb_flg2
);
440 /* A socket error is always a DOS error. */
441 if (cli
->fd
== -1 && cli
->smb_rw_error
!= 0) {
445 return cli_is_error(cli
) && !(flgs2
& FLAGS2_32_BIT_ERROR_CODES
);
448 /* Return the last error always as an NTSTATUS. */
450 NTSTATUS
cli_get_nt_error(struct cli_state
*cli
)
452 if (cli_is_nt_error(cli
)) {
453 return cli_nt_error(cli
);
454 } else if (cli_is_dos_error(cli
)) {
457 cli_dos_error(cli
, &eclass
, &ecode
);
458 return dos_to_ntstatus(eclass
, ecode
);
460 /* Something went wrong, we don't know what. */
461 return NT_STATUS_UNSUCCESSFUL
;
465 /* Push an error code into the inbuf to be returned on the next
468 void cli_set_nt_error(struct cli_state
*cli
, NTSTATUS status
)
470 SSVAL(cli
->inbuf
,smb_flg2
, SVAL(cli
->inbuf
,smb_flg2
)|FLAGS2_32_BIT_ERROR_CODES
);
471 SIVAL(cli
->inbuf
, smb_rcls
, NT_STATUS_V(status
));