2024-05-31 22:28:50 +03:00
/*
2003-08-13 05:53:07 +04:00
Unix SMB / CIFS implementation .
unlink test suite
Copyright ( C ) Andrew Tridgell 2003
2024-05-31 22:28:50 +03:00
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 .
2024-05-31 22:28:50 +03:00
2003-08-13 05:53:07 +04:00
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 .
2024-05-31 22:28:50 +03:00
2003-08-13 05:53:07 +04:00
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"
2006-01-03 16:41:17 +03:00
# include "torture/torture.h"
2005-02-10 08:09:35 +03:00
# include "system/filesys.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 CHECK_STATUS(status, correct) do { \
if ( ! NT_STATUS_EQUAL ( status , correct ) ) { \
2004-10-25 09:26:23 +04:00
printf ( " (%s) Incorrect status %s - should be %s \n " , \
__location__ , 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 )
# define BASEDIR "\\testunlink"
/*
test unlink ops
*/
2007-08-28 16:54:27 +04:00
static bool test_unlink ( struct torture_context * tctx , struct smbcli_state * cli )
2003-08-13 05:53:07 +04:00
{
2006-03-10 23:49:20 +03:00
union smb_unlink io ;
2003-08-13 05:53:07 +04:00
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.txt " ;
2012-05-18 09:43:31 +04:00
torture_assert ( tctx , torture_setup_dir ( cli , BASEDIR ) , " Failed to setup up test directory: " BASEDIR ) ;
2003-08-13 05:53:07 +04:00
2012-06-11 19:58:02 +04:00
printf ( " Trying non-existent file \n " ) ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = fname ;
io . unlink . in . attrib = 0 ;
2003-08-13 05:53:07 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_NOT_FOUND ) ;
2004-08-04 17:23:35 +04:00
smbcli_close ( cli - > tree , smbcli_open ( cli - > tree , fname , O_RDWR | O_CREAT , DENY_NONE ) ) ;
2003-08-13 05:53:07 +04:00
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = fname ;
io . unlink . in . attrib = 0 ;
2003-08-13 05:53:07 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
printf ( " Trying a hidden file \n " ) ;
2004-08-04 17:23:35 +04:00
smbcli_close ( cli - > tree , smbcli_open ( cli - > tree , fname , O_RDWR | O_CREAT , DENY_NONE ) ) ;
2003-08-13 05:53:07 +04:00
torture_set_file_attribute ( cli - > tree , fname , FILE_ATTRIBUTE_HIDDEN ) ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = fname ;
io . unlink . in . attrib = 0 ;
2003-08-13 05:53:07 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_NO_SUCH_FILE ) ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = fname ;
io . unlink . in . attrib = FILE_ATTRIBUTE_HIDDEN ;
2003-08-13 05:53:07 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = fname ;
io . unlink . in . attrib = FILE_ATTRIBUTE_HIDDEN ;
2004-10-27 02:44:28 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_NOT_FOUND ) ;
2003-08-13 05:53:07 +04:00
printf ( " Trying a directory \n " ) ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = BASEDIR ;
io . unlink . in . attrib = 0 ;
2003-08-13 05:53:07 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_FILE_IS_A_DIRECTORY ) ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = BASEDIR ;
io . unlink . in . attrib = FILE_ATTRIBUTE_DIRECTORY ;
2003-08-13 05:53:07 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_FILE_IS_A_DIRECTORY ) ;
printf ( " Trying a bad path \n " ) ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = " .. " ;
io . unlink . in . attrib = 0 ;
2003-08-13 05:53:07 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_PATH_SYNTAX_BAD ) ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = " \\ .. " ;
io . unlink . in . attrib = 0 ;
2003-08-13 06:04:44 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_PATH_SYNTAX_BAD ) ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = BASEDIR " \\ .. \\ .. " ;
io . unlink . in . attrib = 0 ;
2004-10-26 09:33:23 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_PATH_SYNTAX_BAD ) ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = BASEDIR " \\ .. " ;
io . unlink . in . attrib = 0 ;
2003-08-13 06:04:44 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_FILE_IS_A_DIRECTORY ) ;
2003-08-13 05:53:07 +04:00
done :
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 ;
}
2005-07-01 16:47:10 +04:00
/*
2024-05-31 22:28:50 +03:00
test delete on close
2005-07-01 16:47:10 +04:00
*/
2024-05-31 22:28:50 +03:00
static bool test_delete_on_close ( struct torture_context * tctx ,
2007-08-28 16:54:27 +04:00
struct smbcli_state * cli )
2005-07-01 16:47:10 +04:00
{
2005-08-03 21:10:26 +04:00
union smb_open op ;
2006-03-10 23:49:20 +03:00
union smb_unlink io ;
2005-07-01 16:47:10 +04:00
struct smb_rmdir dio ;
NTSTATUS status ;
2007-10-07 02:28:14 +04:00
bool ret = true ;
2005-08-03 20:50:12 +04:00
int fnum , fnum2 ;
2005-07-01 16:47:10 +04:00
const char * fname = BASEDIR " \\ test.txt " ;
const char * dname = BASEDIR " \\ test.dir " ;
2005-08-03 20:50:12 +04:00
const char * inside = BASEDIR " \\ test.dir \\ test.txt " ;
2005-07-01 16:47:10 +04:00
union smb_setfileinfo sfinfo ;
2012-05-18 09:43:31 +04:00
torture_assert ( tctx , torture_setup_dir ( cli , BASEDIR ) , " Failed to setup up test directory: " BASEDIR ) ;
2005-07-01 16:47:10 +04:00
dio . in . path = dname ;
2006-03-10 23:49:20 +03:00
io . unlink . in . pattern = fname ;
io . unlink . in . attrib = 0 ;
2005-07-01 16:47:10 +04:00
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_NOT_FOUND ) ;
printf ( " Testing with delete_on_close 0 \n " ) ;
2007-08-28 16:54:27 +04:00
fnum = create_complex_file ( cli , tctx , fname ) ;
2005-07-01 16:47:10 +04:00
2005-08-05 19:34:01 +04:00
sfinfo . disposition_info . level = RAW_SFILEINFO_DISPOSITION_INFO ;
2006-03-13 01:48:25 +03:00
sfinfo . disposition_info . in . file . fnum = fnum ;
2005-07-01 16:47:10 +04:00
sfinfo . disposition_info . in . delete_on_close = 0 ;
status = smb_raw_setfileinfo ( cli - > tree , & sfinfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
smbcli_close ( cli - > tree , fnum ) ;
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
printf ( " Testing with delete_on_close 1 \n " ) ;
2007-08-28 16:54:27 +04:00
fnum = create_complex_file ( cli , tctx , fname ) ;
2006-03-13 01:48:25 +03:00
sfinfo . disposition_info . in . file . fnum = fnum ;
2005-07-01 16:47:10 +04:00
sfinfo . disposition_info . in . delete_on_close = 1 ;
status = smb_raw_setfileinfo ( cli - > tree , & sfinfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
smbcli_close ( cli - > tree , fnum ) ;
status = smb_raw_unlink ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_NOT_FOUND ) ;
printf ( " Testing with directory and delete_on_close 0 \n " ) ;
2005-08-03 21:50:00 +04:00
status = create_directory_handle ( cli - > tree , dname , & fnum ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2005-07-01 16:47:10 +04:00
2005-08-05 19:34:01 +04:00
sfinfo . disposition_info . level = RAW_SFILEINFO_DISPOSITION_INFO ;
2006-03-13 01:48:25 +03:00
sfinfo . disposition_info . in . file . fnum = fnum ;
2005-07-01 16:47:10 +04:00
sfinfo . disposition_info . in . delete_on_close = 0 ;
status = smb_raw_setfileinfo ( cli - > tree , & sfinfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
smbcli_close ( cli - > tree , fnum ) ;
status = smb_raw_rmdir ( cli - > tree , & dio ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
printf ( " Testing with directory delete_on_close 1 \n " ) ;
2005-08-03 21:50:00 +04:00
status = create_directory_handle ( cli - > tree , dname , & fnum ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2024-05-31 22:28:50 +03:00
2006-03-13 01:48:25 +03:00
sfinfo . disposition_info . in . file . fnum = fnum ;
2005-07-01 16:47:10 +04:00
sfinfo . disposition_info . in . delete_on_close = 1 ;
status = smb_raw_setfileinfo ( cli - > tree , & sfinfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
smbcli_close ( cli - > tree , fnum ) ;
status = smb_raw_rmdir ( cli - > tree , & dio ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_NOT_FOUND ) ;
2005-08-03 20:50:12 +04:00
2007-12-03 02:28:22 +03:00
if ( ! torture_setting_bool ( tctx , " samba3 " , false ) ) {
2005-08-03 20:50:12 +04:00
2007-01-02 16:48:42 +03:00
/*
* Known deficiency , also skipped in base - delete .
*/
2005-08-03 20:50:12 +04:00
2007-01-02 16:48:42 +03:00
printf ( " Testing with non-empty directory delete_on_close \n " ) ;
status = create_directory_handle ( cli - > tree , dname , & fnum ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2005-08-03 20:50:12 +04:00
2007-08-28 16:54:27 +04:00
fnum2 = create_complex_file ( cli , tctx , inside ) ;
2005-08-03 20:50:12 +04:00
2007-01-02 16:48:42 +03:00
sfinfo . disposition_info . in . file . fnum = fnum ;
sfinfo . disposition_info . in . delete_on_close = 1 ;
status = smb_raw_setfileinfo ( cli - > tree , & sfinfo ) ;
CHECK_STATUS ( status , NT_STATUS_DIRECTORY_NOT_EMPTY ) ;
2005-08-03 20:50:12 +04:00
2007-01-02 16:48:42 +03:00
sfinfo . disposition_info . in . file . fnum = fnum2 ;
status = smb_raw_setfileinfo ( cli - > tree , & sfinfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2005-08-03 20:50:12 +04:00
2007-01-02 16:48:42 +03:00
sfinfo . disposition_info . in . file . fnum = fnum ;
status = smb_raw_setfileinfo ( cli - > tree , & sfinfo ) ;
CHECK_STATUS ( status , NT_STATUS_DIRECTORY_NOT_EMPTY ) ;
2005-08-03 20:50:12 +04:00
2007-01-02 16:48:42 +03:00
smbcli_close ( cli - > tree , fnum2 ) ;
status = smb_raw_setfileinfo ( cli - > tree , & sfinfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
smbcli_close ( cli - > tree , fnum ) ;
status = smb_raw_rmdir ( cli - > tree , & dio ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_NOT_FOUND ) ;
}
2005-08-03 20:50:12 +04:00
2005-08-03 21:10:26 +04:00
printf ( " Testing open dir with delete_on_close \n " ) ;
2005-08-03 21:50:00 +04:00
status = create_directory_handle ( cli - > tree , dname , & fnum ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2024-05-31 22:28:50 +03:00
2005-08-03 21:10:26 +04:00
smbcli_close ( cli - > tree , fnum ) ;
2007-08-28 16:54:27 +04:00
fnum2 = create_complex_file ( cli , tctx , inside ) ;
2005-08-03 21:10:26 +04:00
smbcli_close ( cli - > tree , fnum2 ) ;
op . generic . level = RAW_OPEN_NTCREATEX ;
2009-10-15 11:26:19 +04:00
op . ntcreatex . in . root_fid . fnum = 0 ;
2005-08-03 21:10:26 +04:00
op . ntcreatex . in . flags = 0 ;
op . ntcreatex . in . access_mask = SEC_RIGHTS_FILE_ALL ;
op . ntcreatex . in . create_options = NTCREATEX_OPTIONS_DIRECTORY | NTCREATEX_OPTIONS_DELETE_ON_CLOSE ;
op . ntcreatex . in . file_attr = FILE_ATTRIBUTE_NORMAL ;
op . ntcreatex . in . share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE ;
op . ntcreatex . in . alloc_size = 0 ;
op . ntcreatex . in . open_disposition = NTCREATEX_DISP_OPEN ;
op . ntcreatex . in . impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS ;
op . ntcreatex . in . security_flags = 0 ;
op . ntcreatex . in . fname = dname ;
2007-08-28 16:54:27 +04:00
status = smb_raw_open ( cli - > tree , tctx , & op ) ;
2005-08-03 21:10:26 +04:00
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-13 01:48:25 +03:00
fnum = op . ntcreatex . out . file . fnum ;
2005-08-03 21:10:26 +04:00
smbcli_close ( cli - > tree , fnum ) ;
status = smb_raw_rmdir ( cli - > tree , & dio ) ;
CHECK_STATUS ( status , NT_STATUS_DIRECTORY_NOT_EMPTY ) ;
2005-08-03 21:50:00 +04:00
smbcli_deltree ( cli - > tree , dname ) ;
2005-08-03 21:10:26 +04:00
printf ( " Testing double open dir with second delete_on_close \n " ) ;
2005-08-03 21:50:00 +04:00
status = create_directory_handle ( cli - > tree , dname , & fnum ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
smbcli_close ( cli - > tree , fnum ) ;
2024-05-31 22:28:50 +03:00
2007-08-28 16:54:27 +04:00
fnum2 = create_complex_file ( cli , tctx , inside ) ;
2005-08-03 21:10:26 +04:00
smbcli_close ( cli - > tree , fnum2 ) ;
op . generic . level = RAW_OPEN_NTCREATEX ;
2009-10-15 11:26:19 +04:00
op . ntcreatex . in . root_fid . fnum = 0 ;
2005-08-03 21:10:26 +04:00
op . ntcreatex . in . flags = 0 ;
op . ntcreatex . in . access_mask = SEC_RIGHTS_FILE_ALL ;
op . ntcreatex . in . create_options = NTCREATEX_OPTIONS_DIRECTORY | NTCREATEX_OPTIONS_DELETE_ON_CLOSE ;
op . ntcreatex . in . file_attr = FILE_ATTRIBUTE_NORMAL ;
op . ntcreatex . in . share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE ;
op . ntcreatex . in . alloc_size = 0 ;
op . ntcreatex . in . open_disposition = NTCREATEX_DISP_OPEN ;
op . ntcreatex . in . impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS ;
op . ntcreatex . in . security_flags = 0 ;
op . ntcreatex . in . fname = dname ;
2007-08-28 16:54:27 +04:00
status = smb_raw_open ( cli - > tree , tctx , & op ) ;
2005-08-03 21:10:26 +04:00
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-13 01:48:25 +03:00
fnum2 = op . ntcreatex . out . file . fnum ;
2005-08-03 21:10:26 +04:00
smbcli_close ( cli - > tree , fnum2 ) ;
status = smb_raw_rmdir ( cli - > tree , & dio ) ;
CHECK_STATUS ( status , NT_STATUS_DIRECTORY_NOT_EMPTY ) ;
2005-08-03 21:50:00 +04:00
smbcli_deltree ( cli - > tree , dname ) ;
2005-08-03 21:10:26 +04:00
printf ( " Testing pre-existing open dir with second delete_on_close \n " ) ;
2005-08-03 21:50:00 +04:00
status = create_directory_handle ( cli - > tree , dname , & fnum ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2024-05-31 22:28:50 +03:00
2005-08-03 21:10:26 +04:00
smbcli_close ( cli - > tree , fnum ) ;
2007-08-28 16:54:27 +04:00
fnum = create_complex_file ( cli , tctx , inside ) ;
2005-08-03 21:10:26 +04:00
smbcli_close ( cli - > tree , fnum ) ;
/* we have a dir with a file in it, no handles open */
op . generic . level = RAW_OPEN_NTCREATEX ;
2009-10-15 11:26:19 +04:00
op . ntcreatex . in . root_fid . fnum = 0 ;
2005-08-03 21:10:26 +04:00
op . ntcreatex . in . flags = 0 ;
op . ntcreatex . in . access_mask = SEC_RIGHTS_FILE_ALL ;
op . ntcreatex . in . create_options = NTCREATEX_OPTIONS_DIRECTORY | NTCREATEX_OPTIONS_DELETE_ON_CLOSE ;
op . ntcreatex . in . file_attr = FILE_ATTRIBUTE_NORMAL ;
op . ntcreatex . in . share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE | NTCREATEX_SHARE_ACCESS_DELETE ;
op . ntcreatex . in . alloc_size = 0 ;
op . ntcreatex . in . open_disposition = NTCREATEX_DISP_OPEN ;
op . ntcreatex . in . impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS ;
op . ntcreatex . in . security_flags = 0 ;
op . ntcreatex . in . fname = dname ;
2007-08-28 16:54:27 +04:00
status = smb_raw_open ( cli - > tree , tctx , & op ) ;
2005-08-03 21:10:26 +04:00
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-13 01:48:25 +03:00
fnum = op . ntcreatex . out . file . fnum ;
2005-08-03 21:10:26 +04:00
/* open without delete on close */
op . ntcreatex . in . create_options = NTCREATEX_OPTIONS_DIRECTORY ;
2007-08-28 16:54:27 +04:00
status = smb_raw_open ( cli - > tree , tctx , & op ) ;
2005-08-03 21:10:26 +04:00
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-13 01:48:25 +03:00
fnum2 = op . ntcreatex . out . file . fnum ;
2005-08-03 21:10:26 +04:00
/* close 2nd file handle */
smbcli_close ( cli - > tree , fnum2 ) ;
status = smb_raw_rmdir ( cli - > tree , & dio ) ;
CHECK_STATUS ( status , NT_STATUS_DIRECTORY_NOT_EMPTY ) ;
2024-05-31 22:28:50 +03:00
2005-08-03 21:10:26 +04:00
smbcli_close ( cli - > tree , fnum ) ;
status = smb_raw_rmdir ( cli - > tree , & dio ) ;
CHECK_STATUS ( status , NT_STATUS_DIRECTORY_NOT_EMPTY ) ;
2024-05-31 22:28:50 +03:00
2005-07-01 16:47:10 +04:00
done :
smb_raw_exit ( cli - > session ) ;
smbcli_deltree ( cli - > tree , BASEDIR ) ;
return ret ;
}
2009-09-28 21:43:44 +04:00
struct unlink_defer_cli_state {
struct torture_context * tctx ;
struct smbcli_state * cli1 ;
} ;
/*
* A handler function for oplock break requests . Ack it as a break to none
*/
static bool oplock_handler_ack_to_none ( struct smbcli_transport * transport ,
uint16_t tid , uint16_t fnum ,
uint8_t level , void * private_data )
{
struct unlink_defer_cli_state * ud_cli_state =
( struct unlink_defer_cli_state * ) private_data ;
union smb_setfileinfo sfinfo ;
bool ret ;
struct smbcli_request * req = NULL ;
torture_comment ( ud_cli_state - > tctx , " delete the file before sending "
" the ack. " ) ;
/* cli1: set delete on close */
sfinfo . disposition_info . level = RAW_SFILEINFO_DISPOSITION_INFO ;
sfinfo . disposition_info . in . file . fnum = fnum ;
sfinfo . disposition_info . in . delete_on_close = 1 ;
req = smb_raw_setfileinfo_send ( ud_cli_state - > cli1 - > tree , & sfinfo ) ;
2011-11-22 01:06:00 +04:00
if ( ! req ) {
torture_comment ( ud_cli_state - > tctx , " smb_raw_setfileinfo_send "
" failed. " ) ;
}
2009-09-28 21:43:44 +04:00
smbcli_close ( ud_cli_state - > cli1 - > tree , fnum ) ;
torture_comment ( ud_cli_state - > tctx , " Acking the oplock to NONE \n " ) ;
ret = smbcli_oplock_ack ( ud_cli_state - > cli1 - > tree , fnum ,
OPLOCK_BREAK_TO_NONE ) ;
2009-11-21 19:23:31 +03:00
2009-09-28 21:43:44 +04:00
return ret ;
}
static bool test_unlink_defer ( struct torture_context * tctx ,
struct smbcli_state * cli1 ,
struct smbcli_state * cli2 )
{
const char * fname = BASEDIR " \\ test_unlink_defer.dat " ;
NTSTATUS status ;
bool ret = true ;
union smb_open io ;
union smb_unlink unl ;
struct unlink_defer_cli_state ud_cli_state = { } ;
if ( ! torture_setup_dir ( cli1 , BASEDIR ) ) {
return false ;
}
/* cleanup */
smbcli_unlink ( cli1 - > tree , fname ) ;
ud_cli_state . tctx = tctx ;
ud_cli_state . cli1 = cli1 ;
smbcli_oplock_handler ( cli1 - > transport , oplock_handler_ack_to_none ,
& ud_cli_state ) ;
io . generic . level = RAW_OPEN_NTCREATEX ;
2009-10-17 23:56:15 +04:00
io . ntcreatex . in . root_fid . fnum = 0 ;
2009-09-28 21:43:44 +04:00
io . ntcreatex . in . access_mask = SEC_RIGHTS_FILE_ALL ;
io . ntcreatex . in . alloc_size = 0 ;
io . ntcreatex . in . file_attr = FILE_ATTRIBUTE_NORMAL ;
io . ntcreatex . in . share_access = NTCREATEX_SHARE_ACCESS_READ |
NTCREATEX_SHARE_ACCESS_WRITE |
NTCREATEX_SHARE_ACCESS_DELETE ;
io . ntcreatex . in . open_disposition = NTCREATEX_DISP_OPEN_IF ;
io . ntcreatex . in . create_options = 0 ;
io . ntcreatex . in . impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS ;
io . ntcreatex . in . security_flags = 0 ;
io . ntcreatex . in . fname = fname ;
/* cli1: open file with a batch oplock. */
io . ntcreatex . in . flags = NTCREATEX_FLAGS_EXTENDED |
NTCREATEX_FLAGS_REQUEST_OPLOCK |
NTCREATEX_FLAGS_REQUEST_BATCH_OPLOCK ;
status = smb_raw_open ( cli1 - > tree , tctx , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
/* cli2: Try to unlink it, but block on the oplock */
torture_comment ( tctx , " Try an unlink (should defer the open \n " ) ;
unl . unlink . in . pattern = fname ;
unl . unlink . in . attrib = 0 ;
status = smb_raw_unlink ( cli2 - > tree , & unl ) ;
done :
smb_raw_exit ( cli1 - > session ) ;
smb_raw_exit ( cli2 - > session ) ;
smbcli_deltree ( cli1 - > tree , BASEDIR ) ;
return ret ;
}
2024-05-31 22:28:50 +03:00
/*
2003-08-13 05:53:07 +04:00
basic testing of unlink calls
*/
2007-08-28 16:54:27 +04:00
struct torture_suite * torture_raw_unlink ( TALLOC_CTX * mem_ctx )
2003-08-13 05:53:07 +04:00
{
2010-12-11 05:26:31 +03:00
struct torture_suite * suite = torture_suite_create ( mem_ctx , " unlink " ) ;
2003-08-13 05:53:07 +04:00
2007-08-28 16:54:27 +04:00
torture_suite_add_1smb_test ( suite , " unlink " , test_unlink ) ;
torture_suite_add_1smb_test ( suite , " delete_on_close " , test_delete_on_close ) ;
2010-12-11 05:26:31 +03:00
torture_suite_add_2smb_test ( suite , " unlink-defer " , test_unlink_defer ) ;
2003-08-13 05:53:07 +04:00
2007-08-28 16:54:27 +04:00
return suite ;
2003-08-13 05:53:07 +04:00
}