2003-08-13 01:53:07 +00:00
/*
Unix SMB / CIFS implementation .
seek test suite
Copyright ( C ) Andrew Tridgell 2003
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 02:07:03 +00:00
the Free Software Foundation ; either version 3 of the License , or
2003-08-13 01:53:07 +00: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 02:07:03 +00:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-08-13 01:53:07 +00:00
*/
# include "includes.h"
2005-02-10 05:09:35 +00:00
# include "system/filesys.h"
2006-01-03 15:40:05 +00:00
# include "libcli/libcli.h"
2006-03-17 17:59:58 +00:00
# include "torture/util.h"
2003-08-13 01:53:07 +00:00
# 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-06 22:28:14 +00:00
ret = false ; \
2003-08-13 01:53:07 +00:00
goto done ; \
} } while ( 0 )
# define CHECK_VALUE(v, correct) do { \
if ( ( v ) ! = ( correct ) ) { \
printf ( " (%d) Incorrect value %s=%d - should be %d \n " , \
2003-08-13 20:19:23 +00:00
__LINE__ , # v , ( int ) v , ( int ) correct ) ; \
2007-10-06 22:28:14 +00:00
ret = false ; \
2003-08-13 01:53:07 +00:00
goto done ; \
} } while ( 0 )
# define BASEDIR "\\testseek"
/*
test seek ops
*/
2007-10-06 22:28:14 +00:00
static bool test_seek ( struct smbcli_state * cli , TALLOC_CTX * mem_ctx )
2003-08-13 01:53:07 +00:00
{
2006-03-10 20:49:20 +00:00
union smb_seek io ;
2003-08-13 01:53:07 +00:00
union smb_fileinfo finfo ;
2003-08-13 20:19:23 +00:00
union smb_setfileinfo sfinfo ;
2003-08-13 01:53:07 +00:00
NTSTATUS status ;
2007-10-06 22:28:14 +00:00
bool ret = true ;
2003-08-13 20:19:23 +00:00
int fnum , fnum2 ;
2003-08-13 01:53:07 +00:00
const char * fname = BASEDIR " \\ test.txt " ;
2004-12-04 13:56:25 +00:00
uint8_t c [ 2 ] ;
2003-08-13 01:53:07 +00:00
2004-11-12 09:37:59 +00:00
if ( ! torture_setup_dir ( cli , BASEDIR ) ) {
2007-10-06 22:28:14 +00:00
return false ;
2003-08-13 01:53:07 +00:00
}
2004-08-04 13:23:35 +00:00
fnum = smbcli_open ( cli - > tree , fname , O_RDWR | O_CREAT | O_TRUNC , DENY_NONE ) ;
2003-08-13 01:53:07 +00:00
if ( fnum = = - 1 ) {
2004-08-04 13:23:35 +00:00
printf ( " Failed to open test.txt - %s \n " , smbcli_errstr ( cli - > tree ) ) ;
2007-10-06 22:28:14 +00:00
ret = false ;
2003-08-13 01:53:07 +00:00
goto done ;
}
finfo . generic . level = RAW_FILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
finfo . position_information . in . file . fnum = fnum ;
2003-08-13 01:53:07 +00:00
printf ( " Trying bad handle \n " ) ;
2006-03-12 22:48:25 +00:00
io . lseek . in . file . fnum = fnum + 1 ;
2006-03-10 20:49:20 +00:00
io . lseek . in . mode = SEEK_MODE_START ;
io . lseek . in . offset = 0 ;
2003-08-13 01:53:07 +00:00
status = smb_raw_seek ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_INVALID_HANDLE ) ;
printf ( " Trying simple seek \n " ) ;
2006-03-12 22:48:25 +00:00
io . lseek . in . file . fnum = fnum ;
2006-03-10 20:49:20 +00:00
io . lseek . in . mode = SEEK_MODE_START ;
io . lseek . in . offset = 17 ;
2003-08-13 01:53:07 +00:00
status = smb_raw_seek ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-10 20:49:20 +00:00
CHECK_VALUE ( io . lseek . out . offset , 17 ) ;
2003-08-13 01:53:07 +00:00
status = smb_raw_fileinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . position_information . out . position , 0 ) ;
printf ( " Trying relative seek \n " ) ;
2006-03-12 22:48:25 +00:00
io . lseek . in . file . fnum = fnum ;
2006-03-10 20:49:20 +00:00
io . lseek . in . mode = SEEK_MODE_CURRENT ;
io . lseek . in . offset = - 3 ;
2003-08-13 01:53:07 +00:00
status = smb_raw_seek ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-10 20:49:20 +00:00
CHECK_VALUE ( io . lseek . out . offset , 14 ) ;
2003-08-13 01:53:07 +00:00
printf ( " Trying end seek \n " ) ;
2006-03-12 22:48:25 +00:00
io . lseek . in . file . fnum = fnum ;
2006-03-10 20:49:20 +00:00
io . lseek . in . mode = SEEK_MODE_END ;
io . lseek . in . offset = 0 ;
2003-08-13 01:53:07 +00:00
status = smb_raw_seek ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
finfo . generic . level = RAW_FILEINFO_ALL_INFO ;
2006-03-12 22:48:25 +00:00
finfo . all_info . in . file . fnum = fnum ;
2003-08-13 01:53:07 +00:00
status = smb_raw_fileinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-10 20:49:20 +00:00
CHECK_VALUE ( io . lseek . out . offset , finfo . all_info . out . size ) ;
2003-08-13 01:53:07 +00:00
printf ( " Trying max seek \n " ) ;
2006-03-12 22:48:25 +00:00
io . lseek . in . file . fnum = fnum ;
2006-03-10 20:49:20 +00:00
io . lseek . in . mode = SEEK_MODE_START ;
io . lseek . in . offset = - 1 ;
2003-08-13 01:53:07 +00:00
status = smb_raw_seek ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-10 20:49:20 +00:00
CHECK_VALUE ( io . lseek . out . offset , 0xffffffff ) ;
2003-08-13 01:53:07 +00:00
2003-08-14 21:11:06 +00:00
printf ( " Testing position information change \n " ) ;
finfo . generic . level = RAW_FILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
finfo . position_information . in . file . fnum = fnum ;
2003-08-14 21:11:06 +00:00
status = smb_raw_fileinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . position_information . out . position , 0 ) ;
2003-08-13 01:53:07 +00:00
printf ( " Trying max overflow \n " ) ;
2006-03-12 22:48:25 +00:00
io . lseek . in . file . fnum = fnum ;
2006-03-10 20:49:20 +00:00
io . lseek . in . mode = SEEK_MODE_CURRENT ;
io . lseek . in . offset = 1000 ;
2003-08-13 01:53:07 +00:00
status = smb_raw_seek ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-10 20:49:20 +00:00
CHECK_VALUE ( io . lseek . out . offset , 999 ) ;
2003-08-13 01:53:07 +00:00
2003-08-14 21:11:06 +00:00
printf ( " Testing position information change \n " ) ;
finfo . generic . level = RAW_FILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
finfo . position_information . in . file . fnum = fnum ;
2003-08-14 21:11:06 +00:00
status = smb_raw_fileinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . position_information . out . position , 0 ) ;
2003-12-04 02:03:06 +00:00
printf ( " trying write to update offset \n " ) ;
2003-08-14 01:03:56 +00:00
ZERO_STRUCT ( c ) ;
2004-08-04 13:23:35 +00:00
if ( smbcli_write ( cli - > tree , fnum , 0 , c , 0 , 2 ) ! = 2 ) {
printf ( " Write failed - %s \n " , smbcli_errstr ( cli - > tree ) ) ;
2007-10-06 22:28:14 +00:00
ret = false ;
2003-08-14 01:03:56 +00:00
goto done ;
}
2003-08-14 21:11:06 +00:00
printf ( " Testing position information change \n " ) ;
finfo . generic . level = RAW_FILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
finfo . position_information . in . file . fnum = fnum ;
2003-08-14 21:11:06 +00:00
status = smb_raw_fileinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . position_information . out . position , 0 ) ;
2006-03-12 22:48:25 +00:00
io . lseek . in . file . fnum = fnum ;
2006-03-10 20:49:20 +00:00
io . lseek . in . mode = SEEK_MODE_CURRENT ;
io . lseek . in . offset = 0 ;
2003-08-14 01:03:56 +00:00
status = smb_raw_seek ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-10 20:49:20 +00:00
CHECK_VALUE ( io . lseek . out . offset , 2 ) ;
2003-08-14 01:03:56 +00:00
2004-08-04 13:23:35 +00:00
if ( smbcli_read ( cli - > tree , fnum , c , 0 , 1 ) ! = 1 ) {
printf ( " Read failed - %s \n " , smbcli_errstr ( cli - > tree ) ) ;
2007-10-06 22:28:14 +00:00
ret = false ;
2003-08-14 01:03:56 +00:00
goto done ;
}
2003-08-14 21:11:06 +00:00
printf ( " Testing position information change \n " ) ;
finfo . generic . level = RAW_FILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
finfo . position_information . in . file . fnum = fnum ;
2003-08-14 21:11:06 +00:00
status = smb_raw_fileinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . position_information . out . position , 1 ) ;
2003-08-14 01:03:56 +00:00
status = smb_raw_seek ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-10 20:49:20 +00:00
CHECK_VALUE ( io . lseek . out . offset , 1 ) ;
2003-08-14 01:03:56 +00:00
2003-08-13 20:19:23 +00:00
printf ( " Testing position information \n " ) ;
2004-08-04 13:23:35 +00:00
fnum2 = smbcli_open ( cli - > tree , fname , O_RDWR , DENY_NONE ) ;
2003-08-13 20:19:23 +00:00
if ( fnum2 = = - 1 ) {
2004-08-04 13:23:35 +00:00
printf ( " 2nd open failed - %s \n " , smbcli_errstr ( cli - > tree ) ) ;
2007-10-06 22:28:14 +00:00
ret = false ;
2003-08-13 20:19:23 +00:00
goto done ;
}
sfinfo . generic . level = RAW_SFILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
sfinfo . position_information . in . file . fnum = fnum2 ;
2003-08-13 20:19:23 +00:00
sfinfo . position_information . in . position = 25 ;
status = smb_raw_setfileinfo ( cli - > tree , & sfinfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
finfo . generic . level = RAW_FILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
finfo . position_information . in . file . fnum = fnum2 ;
2003-08-13 20:19:23 +00:00
status = smb_raw_fileinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . position_information . out . position , 25 ) ;
finfo . generic . level = RAW_FILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
finfo . position_information . in . file . fnum = fnum ;
2003-08-13 20:19:23 +00:00
status = smb_raw_fileinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2003-08-14 01:03:56 +00:00
CHECK_VALUE ( finfo . position_information . out . position , 1 ) ;
2003-08-13 20:22:37 +00:00
printf ( " position_information via paths \n " ) ;
sfinfo . generic . level = RAW_SFILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
sfinfo . position_information . in . file . path = fname ;
2003-08-13 20:22:37 +00:00
sfinfo . position_information . in . position = 32 ;
status = smb_raw_setpathinfo ( cli - > tree , & sfinfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
finfo . generic . level = RAW_FILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
finfo . position_information . in . file . fnum = fnum2 ;
2003-08-13 20:22:37 +00:00
status = smb_raw_fileinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . position_information . out . position , 25 ) ;
finfo . generic . level = RAW_FILEINFO_POSITION_INFORMATION ;
2006-03-12 22:48:25 +00:00
finfo . position_information . in . file . path = fname ;
2003-08-13 20:22:37 +00:00
status = smb_raw_pathinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . position_information . out . position , 0 ) ;
2003-08-13 20:19:23 +00:00
2003-08-13 01:53:07 +00:00
done :
smb_raw_exit ( cli - > session ) ;
2004-08-04 13:23:35 +00:00
smbcli_deltree ( cli - > tree , BASEDIR ) ;
2003-08-13 01:53:07 +00:00
return ret ;
}
/*
basic testing of seek calls
*/
2007-08-28 12:54:27 +00:00
bool torture_raw_seek ( struct torture_context * torture , struct smbcli_state * cli )
2003-08-13 01:53:07 +00:00
{
2007-08-28 12:54:27 +00:00
bool ret = true ;
2003-08-13 01:53:07 +00:00
2007-08-28 12:54:27 +00:00
ret & = test_seek ( cli , torture ) ;
2003-08-13 01:53:07 +00:00
return ret ;
}