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
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-08-13 05:53:07 +04:00
( 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
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-08-13 05:53:07 +04:00
*/
# include "includes.h"
2011-10-18 13:47:05 +04:00
# include "../libcli/smb/smb_constants.h"
2005-12-28 18:38:36 +03:00
# include "libcli/raw/libcliraw.h"
2008-04-02 06:53:27 +04:00
# include "libcli/raw/raw_proto.h"
2006-01-03 18:40:05 +03:00
# include "libcli/libcli.h"
2006-03-17 20:59:58 +03:00
# include "torture/util.h"
2011-03-19 02:42:42 +03:00
# include "torture/raw/proto.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 ) ) ; \
2007-10-07 02:28:14 +04:00
ret = false ; \
2003-08-13 05:53:07 +04:00
goto done ; \
} } while ( 0 )
/* test some ioctls */
2007-10-07 02:28:14 +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 ;
2007-10-07 02:28:14 +04:00
bool ret = true ;
2003-08-13 05:53:07 +04:00
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 ) ) ;
2007-10-07 02:28:14 +04:00
ret = false ;
2003-08-13 05:53:07 +04:00
goto done ;
}
2004-10-26 12:41:12 +04:00
printf ( " Trying 0xFFFF \n " ) ;
ctl . ioctl . level = RAW_IOCTL_IOCTL ;
2006-03-13 01:48:25 +03:00
ctl . ioctl . in . file . fnum = fnum ;
2004-10-26 12:41:12 +04:00
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 ;
2006-03-13 01:48:25 +03:00
ctl . ioctl . in . file . fnum = fnum ;
2003-12-04 05:03:06 +03:00
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 " ) ;
2006-03-13 01:48:25 +03:00
ctl . ioctl . in . file . 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 */
2007-10-07 02:28:14 +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 ;
2007-10-07 02:28:14 +04:00
bool ret = true ;
2003-08-13 05:53:07 +04:00
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 ) ) ;
2007-10-07 02:28:14 +04:00
ret = false ;
2003-08-13 05:53:07 +04:00
goto done ;
}
2010-09-16 01:02:43 +04:00
printf ( " Trying FSCTL_FIND_FILES_BY_SID \n " ) ;
nt . ioctl . level = RAW_IOCTL_NTIOCTL ;
nt . ntioctl . in . function = FSCTL_FIND_FILES_BY_SID ;
nt . ntioctl . in . file . fnum = fnum ;
nt . ntioctl . in . fsctl = true ;
nt . ntioctl . in . filter = 0 ;
nt . ntioctl . in . max_data = 0 ;
nt . ntioctl . in . blob = data_blob ( NULL , 1024 ) ;
/* definitely not a sid... */
generate_random_buffer ( nt . ntioctl . in . blob . data ,
nt . ntioctl . in . blob . length ) ;
nt . ntioctl . in . blob . data [ 1 ] = 15 + 1 ;
status = smb_raw_ioctl ( cli - > tree , mem_ctx , & nt ) ;
if ( ! NT_STATUS_EQUAL ( status , NT_STATUS_INVALID_PARAMETER ) & &
2010-09-16 11:53:36 +04:00
! NT_STATUS_EQUAL ( status , NT_STATUS_NOT_IMPLEMENTED ) & &
! NT_STATUS_EQUAL ( status , NT_STATUS_NOT_SUPPORTED ) ) {
2010-09-16 01:02:43 +04:00
printf ( " Got unexpected error code: %s \n " ,
nt_errstr ( status ) ) ;
ret = false ;
goto done ;
}
2003-08-13 05:53:07 +04:00
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 ;
2006-03-13 01:48:25 +03:00
nt . ntioctl . in . file . fnum = fnum ;
2007-10-07 02:28:14 +04:00
nt . ntioctl . in . fsctl = true ;
2003-12-04 05:03:06 +03:00
nt . ntioctl . in . filter = 0 ;
2006-05-17 13:52:14 +04:00
nt . ntioctl . in . max_data = 0 ;
2006-05-16 20:50:50 +04:00
nt . ntioctl . in . blob = data_blob ( NULL , 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 ) ;
2005-10-12 10:03:28 +04:00
printf ( " trying batch oplock \n " ) ;
nt . ioctl . level = RAW_IOCTL_NTIOCTL ;
2006-05-17 13:52:14 +04:00
nt . ntioctl . in . function = FSCTL_REQUEST_BATCH_OPLOCK ;
2006-03-13 01:48:25 +03:00
nt . ntioctl . in . file . fnum = fnum ;
2007-10-07 02:28:14 +04:00
nt . ntioctl . in . fsctl = true ;
2005-10-12 10:03:28 +04:00
nt . ntioctl . in . filter = 0 ;
2006-05-17 13:52:14 +04:00
nt . ntioctl . in . max_data = 0 ;
2006-05-16 20:50:50 +04:00
nt . ntioctl . in . blob = data_blob ( NULL , 0 ) ;
2005-10-12 10:03:28 +04:00
status = smb_raw_ioctl ( cli - > tree , mem_ctx , & nt ) ;
if ( NT_STATUS_IS_OK ( status ) ) {
printf ( " Server supports batch oplock upgrades on open files \n " ) ;
} else {
printf ( " Server does not support batch oplock upgrades on open files \n " ) ;
}
2003-08-13 05:53:07 +04:00
printf ( " Trying bad handle \n " ) ;
2006-03-13 01:48:25 +03:00
nt . ntioctl . in . file . fnum = fnum + 1 ;
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_INVALID_HANDLE ) ;
#if 0
2006-03-13 01:48:25 +03:00
nt . ntioctl . in . file . 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
*/
2007-08-28 16:54:27 +04:00
bool torture_raw_ioctl ( struct torture_context * torture ,
2007-09-07 19:08:14 +04:00
struct smbcli_state * cli )
2003-08-13 05:53:07 +04:00
{
2007-08-28 16:54:27 +04:00
bool ret = true ;
2003-08-13 05:53:07 +04:00
2004-11-12 12:37:59 +03:00
if ( ! torture_setup_dir ( cli , BASEDIR ) ) {
2007-10-07 02:28:14 +04:00
return false ;
2003-08-13 05:53:07 +04:00
}
2007-08-28 16:54:27 +04:00
ret & = test_ioctl ( cli , torture ) ;
ret & = test_fsctl ( cli , torture ) ;
2003-08-13 05:53:07 +04:00
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
return ret ;
}