2000-04-25 18:04:06 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2000-04-25 18:04:06 +04:00
client error handling routines
Copyright ( C ) Andrew Tridgell 1994 - 1998
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
# define NO_SYSLOG
# include "includes.h"
/*****************************************************
RAP error codes - a small start but will be extended .
2002-01-22 08:11:28 +03:00
XXX : Perhaps these should move into a common function because they ' re
duplicated in clirap2 . c
2000-04-25 18:04:06 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-10-29 11:12:44 +03:00
static const struct
2000-04-25 18:04:06 +04:00
{
int err ;
char * message ;
} rap_errmap [ ] =
{
2002-01-22 08:11:28 +03:00
{ 5 , " RAP5: User has insufficient privilege " } ,
{ 50 , " RAP50: Not supported by server " } ,
{ 65 , " RAP65: Access denied " } ,
{ 86 , " RAP86: The specified password is invalid " } ,
{ 2220 , " RAP2220: Group does not exist " } ,
{ 2221 , " RAP2221: User does not exist " } ,
{ 2226 , " RAP2226: Operation only permitted on a Primary Domain Controller " } ,
{ 2237 , " RAP2237: User is not in group " } ,
{ 2242 , " RAP2242: The password of this user has expired. " } ,
{ 2243 , " RAP2243: The password of this user cannot change. " } ,
{ 2244 , " RAP2244: This password cannot be used now (password history conflict). " } ,
{ 2245 , " RAP2245: The password is shorter than required. " } ,
{ 2246 , " RAP2246: The password of this user is too recent to change. " } ,
2000-04-25 18:04:06 +04:00
/* these really shouldn't be here ... */
{ 0x80 , " Not listening on called name " } ,
{ 0x81 , " Not listening for calling name " } ,
{ 0x82 , " Called name not present " } ,
{ 0x83 , " Called name present, but insufficient resources " } ,
{ 0 , NULL }
} ;
/****************************************************************************
return a description of an SMB error
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static char * cli_smb_errstr ( struct cli_state * cli )
{
2001-09-05 15:32:59 +04:00
return smb_dos_errstr ( cli - > inbuf ) ;
2000-04-25 18:04:06 +04:00
}
2001-08-10 10:00:33 +04:00
/***************************************************************************
Return an error message - either an NT error , SMB error or a RAP error .
Note some of the NT errors are actually warnings or " informational " errors
in which case they can be safely ignored .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-04-25 18:04:06 +04:00
char * cli_errstr ( struct cli_state * cli )
{
2001-11-26 10:53:33 +03:00
static fstring cli_error_message ;
2001-08-10 10:00:33 +04:00
uint32 flgs2 = SVAL ( cli - > inbuf , smb_flg2 ) , errnum ;
2001-12-10 22:48:43 +03:00
uint8 errclass ;
int i ;
2002-02-13 19:44:49 +03:00
if ( ! cli - > initialised ) {
fstrcpy ( cli_error_message , " [Programmer's error] cli_errstr called on unitialized cli_stat struct! \n " ) ;
return cli_error_message ;
}
2001-12-10 22:48:43 +03:00
/* Case #1: RAP error */
if ( cli - > rap_error ) {
for ( i = 0 ; rap_errmap [ i ] . message ! = NULL ; i + + ) {
if ( rap_errmap [ i ] . err = = cli - > rap_error ) {
return rap_errmap [ i ] . message ;
}
2001-12-10 22:18:56 +03:00
}
2001-12-10 22:48:43 +03:00
slprintf ( cli_error_message , sizeof ( cli_error_message ) - 1 , " RAP code %d " ,
cli - > rap_error ) ;
2000-04-25 18:04:06 +04:00
2001-12-10 22:48:43 +03:00
return cli_error_message ;
}
2000-04-25 18:04:06 +04:00
2001-12-10 22:48:43 +03:00
/* Case #2: 32-bit NT errors */
if ( flgs2 & FLAGS2_32_BIT_ERROR_CODES ) {
NTSTATUS status = NT_STATUS ( IVAL ( cli - > inbuf , smb_rcls ) ) ;
2001-08-10 10:00:33 +04:00
2002-03-17 07:36:35 +03:00
return nt_errstr ( status ) ;
2001-12-10 22:48:43 +03:00
}
2000-04-25 18:04:06 +04:00
2001-12-10 22:48:43 +03:00
cli_dos_error ( cli , & errclass , & errnum ) ;
2000-04-25 18:04:06 +04:00
2001-12-10 22:48:43 +03:00
/* Case #3: SMB error */
2001-08-10 10:00:33 +04:00
2001-12-10 22:48:43 +03:00
return cli_smb_errstr ( cli ) ;
2000-04-25 18:04:06 +04:00
}
2001-08-27 12:19:43 +04:00
/* Return the 32-bit NT status code from the last packet */
2001-08-27 21:52:23 +04:00
NTSTATUS cli_nt_error ( struct cli_state * cli )
2001-08-10 10:00:33 +04:00
{
int flgs2 = SVAL ( cli - > inbuf , smb_flg2 ) ;
2000-04-25 18:04:06 +04:00
2001-08-10 10:00:33 +04:00
if ( ! ( flgs2 & FLAGS2_32_BIT_ERROR_CODES ) ) {
2001-08-27 12:19:43 +04:00
int class = CVAL ( cli - > inbuf , smb_rcls ) ;
int code = SVAL ( cli - > inbuf , smb_err ) ;
return dos_to_ntstatus ( class , code ) ;
2001-08-10 10:00:33 +04:00
}
2001-08-27 21:52:23 +04:00
return NT_STATUS ( IVAL ( cli - > inbuf , smb_rcls ) ) ;
2001-08-10 10:00:33 +04:00
}
2001-08-27 12:19:43 +04:00
2001-08-10 10:00:33 +04:00
/* Return the DOS error from the last packet - an error class and an error
code . */
2001-08-27 12:19:43 +04:00
void cli_dos_error ( struct cli_state * cli , uint8 * eclass , uint32 * ecode )
2000-04-25 18:04:06 +04:00
{
int flgs2 ;
char rcls ;
int code ;
2001-08-27 12:19:43 +04:00
if ( ! cli - > initialised ) return ;
2000-04-25 18:04:06 +04:00
flgs2 = SVAL ( cli - > inbuf , smb_flg2 ) ;
if ( flgs2 & FLAGS2_32_BIT_ERROR_CODES ) {
2001-08-27 21:52:23 +04:00
NTSTATUS ntstatus = NT_STATUS ( IVAL ( cli - > inbuf , smb_rcls ) ) ;
2001-08-27 12:19:43 +04:00
ntstatus_to_dos ( ntstatus , eclass , ecode ) ;
2001-08-10 10:00:33 +04:00
return ;
}
2000-04-25 18:04:06 +04:00
rcls = CVAL ( cli - > inbuf , smb_rcls ) ;
code = SVAL ( cli - > inbuf , smb_err ) ;
2001-08-10 10:00:33 +04:00
2000-04-25 18:04:06 +04:00
if ( eclass ) * eclass = rcls ;
2001-08-27 12:19:43 +04:00
if ( ecode ) * ecode = code ;
2001-08-10 10:00:33 +04:00
}
2000-04-25 18:04:06 +04:00
2001-08-10 10:00:33 +04:00
/* Return a UNIX errno from a dos error class, error number tuple */
2002-09-25 19:19:00 +04:00
static int cli_errno_from_dos ( uint8 eclass , uint32 num )
2001-08-10 10:00:33 +04:00
{
if ( eclass = = ERRDOS ) {
switch ( num ) {
2000-04-25 18:04:06 +04:00
case ERRbadfile : return ENOENT ;
case ERRbadpath : return ENOTDIR ;
case ERRnoaccess : return EACCES ;
case ERRfilexists : return EEXIST ;
case ERRrename : return EEXIST ;
case ERRbadshare : return EBUSY ;
case ERRlock : return EBUSY ;
2001-08-10 10:00:33 +04:00
case ERRinvalidname : return ENOENT ;
2001-01-29 07:52:12 +03:00
case ERRnosuchshare : return ENODEV ;
2000-04-25 18:04:06 +04:00
}
}
2001-08-10 10:00:33 +04:00
if ( eclass = = ERRSRV ) {
switch ( num ) {
2001-01-29 07:52:12 +03:00
case ERRbadpw : return EPERM ;
2000-04-25 18:04:06 +04:00
case ERRaccess : return EACCES ;
case ERRnoresource : return ENOMEM ;
case ERRinvdevice : return ENODEV ;
case ERRinvnetname : return ENODEV ;
}
}
2001-08-10 10:00:33 +04:00
2000-04-25 18:04:06 +04:00
/* for other cases */
return EINVAL ;
}
2001-08-10 10:00:33 +04:00
/* Return a UNIX errno from a NT status code */
2001-08-27 21:52:23 +04:00
static struct {
NTSTATUS status ;
int error ;
} nt_errno_map [ ] = {
{ NT_STATUS_ACCESS_VIOLATION , EACCES } ,
{ NT_STATUS_NO_SUCH_FILE , ENOENT } ,
{ NT_STATUS_NO_SUCH_DEVICE , ENODEV } ,
{ NT_STATUS_INVALID_HANDLE , EBADF } ,
{ NT_STATUS_NO_MEMORY , ENOMEM } ,
{ NT_STATUS_ACCESS_DENIED , EACCES } ,
{ NT_STATUS_OBJECT_NAME_NOT_FOUND , ENOENT } ,
{ NT_STATUS_SHARING_VIOLATION , EBUSY } ,
{ NT_STATUS_OBJECT_PATH_INVALID , ENOTDIR } ,
{ NT_STATUS_OBJECT_NAME_COLLISION , EEXIST } ,
{ NT_STATUS_PATH_NOT_COVERED , ENOENT } ,
{ NT_STATUS ( 0 ) , 0 }
} ;
2002-09-25 19:19:00 +04:00
static int cli_errno_from_nt ( NTSTATUS status )
2001-08-10 10:00:33 +04:00
{
2001-08-27 21:52:23 +04:00
int i ;
DEBUG ( 10 , ( " cli_errno_from_nt: 32 bit codes: code=%08x \n " , NT_STATUS_V ( status ) ) ) ;
2001-08-10 10:00:33 +04:00
/* Status codes without this bit set are not errors */
2001-08-27 21:52:23 +04:00
if ( ! ( NT_STATUS_V ( status ) & 0xc0000000 ) )
2001-08-10 10:00:33 +04:00
return 0 ;
2001-08-27 21:52:23 +04:00
for ( i = 0 ; nt_errno_map [ i ] . error ; i + + ) {
if ( NT_STATUS_V ( nt_errno_map [ i ] . status ) = =
NT_STATUS_V ( status ) ) return nt_errno_map [ i ] . error ;
}
2001-08-10 10:00:33 +04:00
/* for all other cases - a default code */
return EINVAL ;
}
/* Return a UNIX errno appropriate for the error received in the last
packet . */
int cli_errno ( struct cli_state * cli )
{
2001-08-27 21:52:23 +04:00
NTSTATUS status ;
2001-08-10 10:00:33 +04:00
2001-08-28 05:28:01 +04:00
if ( cli_is_dos_error ( cli ) ) {
2001-08-10 10:00:33 +04:00
uint8 eclass ;
uint32 ecode ;
cli_dos_error ( cli , & eclass , & ecode ) ;
return cli_errno_from_dos ( eclass , ecode ) ;
}
status = cli_nt_error ( cli ) ;
return cli_errno_from_nt ( status ) ;
}
/* Return true if the last packet was in error */
BOOL cli_is_error ( struct cli_state * cli )
{
uint32 flgs2 = SVAL ( cli - > inbuf , smb_flg2 ) , rcls = 0 ;
2001-08-21 07:04:41 +04:00
if ( flgs2 & FLAGS2_32_BIT_ERROR_CODES ) {
/* Return error is error bits are set */
2001-08-10 10:00:33 +04:00
rcls = IVAL ( cli - > inbuf , smb_rcls ) ;
2001-08-21 07:04:41 +04:00
return ( rcls & 0xF0000000 ) = = 0xC0000000 ;
}
/* Return error if error class in non-zero */
2001-08-10 10:00:33 +04:00
2001-08-21 07:04:41 +04:00
rcls = CVAL ( cli - > inbuf , smb_rcls ) ;
return rcls ! = 0 ;
2001-08-10 10:00:33 +04:00
}
/* Return true if the last error was an NT error */
BOOL cli_is_nt_error ( struct cli_state * cli )
{
uint32 flgs2 = SVAL ( cli - > inbuf , smb_flg2 ) ;
return cli_is_error ( cli ) & & ( flgs2 & FLAGS2_32_BIT_ERROR_CODES ) ;
}
/* Return true if the last error was a DOS error */
BOOL cli_is_dos_error ( struct cli_state * cli )
{
uint32 flgs2 = SVAL ( cli - > inbuf , smb_flg2 ) ;
return cli_is_error ( cli ) & & ! ( flgs2 & FLAGS2_32_BIT_ERROR_CODES ) ;
}