2003-08-13 05:53:07 +04:00
/*
Unix SMB / CIFS implementation .
ioctl individual test suite
Copyright ( C ) Andrew Tridgell 2003
2003-12-04 05:03:06 +03:00
Copyright ( C ) James J Myers 2003 < myersjj @ samba . org >
2003-08-13 05:53:07 +04:00
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 .
*/
# include "includes.h"
2004-11-02 09:42:15 +03:00
# include "ioctl.h"
2003-08-13 05:53:07 +04:00
# define BASEDIR "\\rawioctl"
# define CHECK_STATUS(status, correct) do { \
if ( ! NT_STATUS_EQUAL ( status , correct ) ) { \
printf ( " (%d) Incorrect status %s - should be %s \n " , \
__LINE__ , nt_errstr ( status ) , nt_errstr ( correct ) ) ; \
ret = False ; \
goto done ; \
} } while ( 0 )
/* test some ioctls */
2004-08-04 17:23:35 +04:00
static BOOL test_ioctl ( struct smbcli_state * cli , TALLOC_CTX * mem_ctx )
2003-08-13 05:53:07 +04:00
{
2003-12-04 05:03:06 +03:00
union smb_ioctl ctl ;
2003-08-13 05:53:07 +04:00
int fnum ;
NTSTATUS status ;
BOOL ret = True ;
const char * fname = BASEDIR " \\ test.dat " ;
printf ( " TESTING IOCTL FUNCTIONS \n " ) ;
fnum = create_complex_file ( cli , mem_ctx , fname ) ;
if ( fnum = = - 1 ) {
2004-08-04 17:23:35 +04:00
printf ( " Failed to create test.dat - %s \n " , smbcli_errstr ( cli - > tree ) ) ;
2003-08-13 05:53:07 +04:00
ret = False ;
goto done ;
}
2004-10-26 12:41:12 +04:00
printf ( " Trying 0xFFFF \n " ) ;
ctl . ioctl . level = RAW_IOCTL_IOCTL ;
ctl . ioctl . in . fnum = fnum ;
ctl . ioctl . in . request = 0xFFFF ;
status = smb_raw_ioctl ( cli - > tree , mem_ctx , & ctl ) ;
2005-07-04 09:24:39 +04:00
CHECK_STATUS ( status , NT_STATUS_DOS ( ERRSRV , ERRerror ) ) ;
2004-10-26 12:41:12 +04:00
2003-08-13 05:53:07 +04:00
printf ( " Trying QUERY_JOB_INFO \n " ) ;
2003-12-04 05:03:06 +03:00
ctl . ioctl . level = RAW_IOCTL_IOCTL ;
ctl . ioctl . in . fnum = fnum ;
ctl . ioctl . in . request = IOCTL_QUERY_JOB_INFO ;
2003-08-13 05:53:07 +04:00
status = smb_raw_ioctl ( cli - > tree , mem_ctx , & ctl ) ;
2005-07-04 09:24:39 +04:00
CHECK_STATUS ( status , NT_STATUS_DOS ( ERRSRV , ERRerror ) ) ;
2003-08-13 05:53:07 +04:00
printf ( " Trying bad handle \n " ) ;
2003-12-04 05:03:06 +03:00
ctl . ioctl . in . fnum = fnum + 1 ;
2003-08-13 05:53:07 +04:00
status = smb_raw_ioctl ( cli - > tree , mem_ctx , & ctl ) ;
2005-07-04 09:24:39 +04:00
CHECK_STATUS ( status , NT_STATUS_DOS ( ERRSRV , ERRerror ) ) ;
2003-08-13 05:53:07 +04:00
done :
2004-08-04 17:23:35 +04:00
smbcli_close ( cli - > tree , fnum ) ;
2003-08-13 05:53:07 +04:00
return ret ;
}
/* test some filesystem control functions */
2004-08-04 17:23:35 +04:00
static BOOL test_fsctl ( struct smbcli_state * cli , TALLOC_CTX * mem_ctx )
2003-08-13 05:53:07 +04:00
{
int fnum ;
NTSTATUS status ;
BOOL ret = True ;
const char * fname = BASEDIR " \\ test.dat " ;
2003-12-04 05:03:06 +03:00
union smb_ioctl nt ;
2003-08-13 05:53:07 +04:00
printf ( " \n TESTING FSCTL FUNCTIONS \n " ) ;
fnum = create_complex_file ( cli , mem_ctx , fname ) ;
if ( fnum = = - 1 ) {
2004-08-04 17:23:35 +04:00
printf ( " Failed to create test.dat - %s \n " , smbcli_errstr ( cli - > tree ) ) ;
2003-08-13 05:53:07 +04:00
ret = False ;
goto done ;
}
printf ( " trying sparse file \n " ) ;
2003-12-04 05:03:06 +03:00
nt . ioctl . level = RAW_IOCTL_NTIOCTL ;
nt . ntioctl . in . function = FSCTL_SET_SPARSE ;
nt . ntioctl . in . fnum = fnum ;
nt . ntioctl . in . fsctl = True ;
nt . ntioctl . in . filter = 0 ;
2003-08-13 05:53:07 +04:00
2003-12-04 05:03:06 +03:00
status = smb_raw_ioctl ( cli - > tree , mem_ctx , & nt ) ;
2003-08-13 05:53:07 +04:00
CHECK_STATUS ( status , NT_STATUS_OK ) ;
printf ( " Trying bad handle \n " ) ;
2003-12-04 05:03:06 +03:00
nt . ntioctl . in . fnum = fnum + 1 ;
status = smb_raw_ioctl ( cli - > tree , mem_ctx , & nt ) ;
2003-08-13 05:53:07 +04:00
CHECK_STATUS ( status , NT_STATUS_INVALID_HANDLE ) ;
#if 0
2003-12-04 05:03:06 +03:00
nt . ntioctl . in . fnum = fnum ;
2003-08-13 05:53:07 +04:00
for ( i = 0 ; i < 100 ; i + + ) {
2003-12-04 05:03:06 +03:00
nt . ntioctl . in . function = FSCTL_FILESYSTEM + ( i < < 2 ) ;
status = smb_raw_ioctl ( cli - > tree , mem_ctx , & nt ) ;
2003-08-13 05:53:07 +04:00
if ( ! NT_STATUS_EQUAL ( status , NT_STATUS_NOT_SUPPORTED ) ) {
printf ( " filesystem fsctl 0x%x - %s \n " ,
i , nt_errstr ( status ) ) ;
}
}
# endif
done :
2004-08-04 17:23:35 +04:00
smbcli_close ( cli - > tree , fnum ) ;
2003-08-13 05:53:07 +04:00
return ret ;
}
/*
basic testing of some ioctl calls
*/
2004-10-28 17:40:50 +04:00
BOOL torture_raw_ioctl ( void )
2003-08-13 05:53:07 +04:00
{
2004-08-04 17:23:35 +04:00
struct smbcli_state * cli ;
2003-08-13 05:53:07 +04:00
BOOL ret = True ;
TALLOC_CTX * mem_ctx ;
if ( ! torture_open_connection ( & cli ) ) {
return False ;
}
mem_ctx = talloc_init ( " torture_raw_ioctl " ) ;
2004-11-12 12:37:59 +03:00
if ( ! torture_setup_dir ( cli , BASEDIR ) ) {
2003-08-13 05:53:07 +04:00
return False ;
}
if ( ! test_ioctl ( cli , mem_ctx ) ) {
ret = False ;
}
if ( ! test_fsctl ( cli , mem_ctx ) ) {
ret = False ;
}
smb_raw_exit ( cli - > session ) ;
2004-08-04 17:23:35 +04:00
smbcli_deltree ( cli - > tree , BASEDIR ) ;
2003-08-13 05:53:07 +04:00
torture_close_connection ( cli ) ;
2005-01-27 10:08:20 +03:00
talloc_free ( mem_ctx ) ;
2003-08-13 05:53:07 +04:00
return ret ;
}