wmi-1.3.16 from opsview.com
This commit is contained in:
@@ -0,0 +1,422 @@
|
||||
/*
|
||||
Unix SMB/CIFS implementation.
|
||||
unlink 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
|
||||
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 02139, USA.
|
||||
*/
|
||||
|
||||
#include "includes.h"
|
||||
#include "torture/torture.h"
|
||||
#include "system/filesys.h"
|
||||
#include "libcli/raw/libcliraw.h"
|
||||
#include "libcli/libcli.h"
|
||||
#include "torture/util.h"
|
||||
|
||||
#define CHECK_STATUS(status, correct) do { \
|
||||
if (!NT_STATUS_EQUAL(status, correct)) { \
|
||||
printf("(%s) Incorrect status %s - should be %s\n", \
|
||||
__location__, nt_errstr(status), nt_errstr(correct)); \
|
||||
ret = False; \
|
||||
goto done; \
|
||||
}} while (0)
|
||||
|
||||
#define BASEDIR "\\testunlink"
|
||||
|
||||
/*
|
||||
test unlink ops
|
||||
*/
|
||||
static BOOL test_unlink(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
|
||||
{
|
||||
union smb_unlink io;
|
||||
NTSTATUS status;
|
||||
BOOL ret = True;
|
||||
const char *fname = BASEDIR "\\test.txt";
|
||||
|
||||
if (!torture_setup_dir(cli, BASEDIR)) {
|
||||
return False;
|
||||
}
|
||||
|
||||
printf("Trying non-existant file\n");
|
||||
io.unlink.in.pattern = fname;
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_NOT_FOUND);
|
||||
|
||||
smbcli_close(cli->tree, smbcli_open(cli->tree, fname, O_RDWR|O_CREAT, DENY_NONE));
|
||||
|
||||
io.unlink.in.pattern = fname;
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
|
||||
printf("Trying a hidden file\n");
|
||||
smbcli_close(cli->tree, smbcli_open(cli->tree, fname, O_RDWR|O_CREAT, DENY_NONE));
|
||||
torture_set_file_attribute(cli->tree, fname, FILE_ATTRIBUTE_HIDDEN);
|
||||
|
||||
io.unlink.in.pattern = fname;
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_NO_SUCH_FILE);
|
||||
|
||||
io.unlink.in.pattern = fname;
|
||||
io.unlink.in.attrib = FILE_ATTRIBUTE_HIDDEN;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
|
||||
io.unlink.in.pattern = fname;
|
||||
io.unlink.in.attrib = FILE_ATTRIBUTE_HIDDEN;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_NOT_FOUND);
|
||||
|
||||
printf("Trying a directory\n");
|
||||
io.unlink.in.pattern = BASEDIR;
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_FILE_IS_A_DIRECTORY);
|
||||
|
||||
io.unlink.in.pattern = BASEDIR;
|
||||
io.unlink.in.attrib = FILE_ATTRIBUTE_DIRECTORY;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_FILE_IS_A_DIRECTORY);
|
||||
|
||||
printf("Trying a bad path\n");
|
||||
io.unlink.in.pattern = "..";
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OBJECT_PATH_SYNTAX_BAD);
|
||||
|
||||
io.unlink.in.pattern = "\\..";
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OBJECT_PATH_SYNTAX_BAD);
|
||||
|
||||
io.unlink.in.pattern = BASEDIR "\\..\\..";
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OBJECT_PATH_SYNTAX_BAD);
|
||||
|
||||
io.unlink.in.pattern = BASEDIR "\\..";
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_FILE_IS_A_DIRECTORY);
|
||||
|
||||
printf("Trying wildcards\n");
|
||||
smbcli_close(cli->tree, smbcli_open(cli->tree, fname, O_RDWR|O_CREAT, DENY_NONE));
|
||||
io.unlink.in.pattern = BASEDIR "\\t*.t";
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_NO_SUCH_FILE);
|
||||
|
||||
io.unlink.in.pattern = BASEDIR "\\z*";
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_NO_SUCH_FILE);
|
||||
|
||||
io.unlink.in.pattern = BASEDIR "\\z*";
|
||||
io.unlink.in.attrib = FILE_ATTRIBUTE_DIRECTORY;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_NO_SUCH_FILE);
|
||||
|
||||
io.unlink.in.pattern = BASEDIR "\\*";
|
||||
io.unlink.in.attrib = FILE_ATTRIBUTE_DIRECTORY;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_INVALID);
|
||||
|
||||
io.unlink.in.pattern = BASEDIR "\\?";
|
||||
io.unlink.in.attrib = FILE_ATTRIBUTE_DIRECTORY;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_INVALID);
|
||||
|
||||
io.unlink.in.pattern = BASEDIR "\\t*";
|
||||
io.unlink.in.attrib = FILE_ATTRIBUTE_DIRECTORY;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
|
||||
smbcli_close(cli->tree, smbcli_open(cli->tree, fname, O_RDWR|O_CREAT, DENY_NONE));
|
||||
|
||||
io.unlink.in.pattern = BASEDIR "\\*.dat";
|
||||
io.unlink.in.attrib = FILE_ATTRIBUTE_DIRECTORY;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_NO_SUCH_FILE);
|
||||
|
||||
io.unlink.in.pattern = BASEDIR "\\*.tx?";
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_NO_SUCH_FILE);
|
||||
|
||||
|
||||
done:
|
||||
smb_raw_exit(cli->session);
|
||||
smbcli_deltree(cli->tree, BASEDIR);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
test delete on close
|
||||
*/
|
||||
static BOOL test_delete_on_close(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
|
||||
{
|
||||
union smb_open op;
|
||||
union smb_unlink io;
|
||||
struct smb_rmdir dio;
|
||||
NTSTATUS status;
|
||||
BOOL ret = True;
|
||||
int fnum, fnum2;
|
||||
const char *fname = BASEDIR "\\test.txt";
|
||||
const char *dname = BASEDIR "\\test.dir";
|
||||
const char *inside = BASEDIR "\\test.dir\\test.txt";
|
||||
union smb_setfileinfo sfinfo;
|
||||
|
||||
if (!torture_setup_dir(cli, BASEDIR)) {
|
||||
return False;
|
||||
}
|
||||
|
||||
dio.in.path = dname;
|
||||
|
||||
io.unlink.in.pattern = fname;
|
||||
io.unlink.in.attrib = 0;
|
||||
status = smb_raw_unlink(cli->tree, &io);
|
||||
CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_NOT_FOUND);
|
||||
|
||||
printf("Testing with delete_on_close 0\n");
|
||||
fnum = create_complex_file(cli, mem_ctx, fname);
|
||||
|
||||
sfinfo.disposition_info.level = RAW_SFILEINFO_DISPOSITION_INFO;
|
||||
sfinfo.disposition_info.in.file.fnum = fnum;
|
||||
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");
|
||||
fnum = create_complex_file(cli, mem_ctx, fname);
|
||||
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_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");
|
||||
status = create_directory_handle(cli->tree, dname, &fnum);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
|
||||
sfinfo.disposition_info.level = RAW_SFILEINFO_DISPOSITION_INFO;
|
||||
sfinfo.disposition_info.in.file.fnum = fnum;
|
||||
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");
|
||||
status = create_directory_handle(cli->tree, dname, &fnum);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
|
||||
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_OK);
|
||||
|
||||
smbcli_close(cli->tree, fnum);
|
||||
|
||||
status = smb_raw_rmdir(cli->tree, &dio);
|
||||
CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_NOT_FOUND);
|
||||
|
||||
|
||||
printf("Testing with non-empty directory delete_on_close\n");
|
||||
status = create_directory_handle(cli->tree, dname, &fnum);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
|
||||
fnum2 = create_complex_file(cli, mem_ctx, inside);
|
||||
|
||||
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);
|
||||
|
||||
sfinfo.disposition_info.in.file.fnum = fnum2;
|
||||
status = smb_raw_setfileinfo(cli->tree, &sfinfo);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
|
||||
sfinfo.disposition_info.in.file.fnum = fnum;
|
||||
status = smb_raw_setfileinfo(cli->tree, &sfinfo);
|
||||
CHECK_STATUS(status, NT_STATUS_DIRECTORY_NOT_EMPTY);
|
||||
|
||||
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);
|
||||
|
||||
printf("Testing open dir with delete_on_close\n");
|
||||
status = create_directory_handle(cli->tree, dname, &fnum);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
|
||||
smbcli_close(cli->tree, fnum);
|
||||
fnum2 = create_complex_file(cli, mem_ctx, inside);
|
||||
smbcli_close(cli->tree, fnum2);
|
||||
|
||||
op.generic.level = RAW_OPEN_NTCREATEX;
|
||||
op.ntcreatex.in.root_fid = 0;
|
||||
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;
|
||||
|
||||
status = smb_raw_open(cli->tree, mem_ctx, &op);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
fnum = op.ntcreatex.out.file.fnum;
|
||||
|
||||
smbcli_close(cli->tree, fnum);
|
||||
|
||||
status = smb_raw_rmdir(cli->tree, &dio);
|
||||
CHECK_STATUS(status, NT_STATUS_DIRECTORY_NOT_EMPTY);
|
||||
|
||||
smbcli_deltree(cli->tree, dname);
|
||||
|
||||
printf("Testing double open dir with second delete_on_close\n");
|
||||
status = create_directory_handle(cli->tree, dname, &fnum);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
smbcli_close(cli->tree, fnum);
|
||||
|
||||
fnum2 = create_complex_file(cli, mem_ctx, inside);
|
||||
smbcli_close(cli->tree, fnum2);
|
||||
|
||||
op.generic.level = RAW_OPEN_NTCREATEX;
|
||||
op.ntcreatex.in.root_fid = 0;
|
||||
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;
|
||||
|
||||
status = smb_raw_open(cli->tree, mem_ctx, &op);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
fnum2 = op.ntcreatex.out.file.fnum;
|
||||
|
||||
smbcli_close(cli->tree, fnum2);
|
||||
|
||||
status = smb_raw_rmdir(cli->tree, &dio);
|
||||
CHECK_STATUS(status, NT_STATUS_DIRECTORY_NOT_EMPTY);
|
||||
|
||||
smbcli_deltree(cli->tree, dname);
|
||||
|
||||
printf("Testing pre-existing open dir with second delete_on_close\n");
|
||||
status = create_directory_handle(cli->tree, dname, &fnum);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
|
||||
smbcli_close(cli->tree, fnum);
|
||||
|
||||
fnum = create_complex_file(cli, mem_ctx, inside);
|
||||
smbcli_close(cli->tree, fnum);
|
||||
|
||||
/* we have a dir with a file in it, no handles open */
|
||||
|
||||
op.generic.level = RAW_OPEN_NTCREATEX;
|
||||
op.ntcreatex.in.root_fid = 0;
|
||||
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;
|
||||
|
||||
status = smb_raw_open(cli->tree, mem_ctx, &op);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
fnum = op.ntcreatex.out.file.fnum;
|
||||
|
||||
/* open without delete on close */
|
||||
op.ntcreatex.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
|
||||
status = smb_raw_open(cli->tree, mem_ctx, &op);
|
||||
CHECK_STATUS(status, NT_STATUS_OK);
|
||||
fnum2 = op.ntcreatex.out.file.fnum;
|
||||
|
||||
/* close 2nd file handle */
|
||||
smbcli_close(cli->tree, fnum2);
|
||||
|
||||
status = smb_raw_rmdir(cli->tree, &dio);
|
||||
CHECK_STATUS(status, NT_STATUS_DIRECTORY_NOT_EMPTY);
|
||||
|
||||
|
||||
smbcli_close(cli->tree, fnum);
|
||||
|
||||
status = smb_raw_rmdir(cli->tree, &dio);
|
||||
CHECK_STATUS(status, NT_STATUS_DIRECTORY_NOT_EMPTY);
|
||||
|
||||
done:
|
||||
smb_raw_exit(cli->session);
|
||||
smbcli_deltree(cli->tree, BASEDIR);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
basic testing of unlink calls
|
||||
*/
|
||||
BOOL torture_raw_unlink(struct torture_context *torture)
|
||||
{
|
||||
struct smbcli_state *cli;
|
||||
BOOL ret = True;
|
||||
TALLOC_CTX *mem_ctx;
|
||||
|
||||
if (!torture_open_connection(&cli, 0)) {
|
||||
return False;
|
||||
}
|
||||
|
||||
mem_ctx = talloc_init("torture_raw_unlink");
|
||||
|
||||
ret &= test_unlink(cli, mem_ctx);
|
||||
ret &= test_delete_on_close(cli, mem_ctx);
|
||||
|
||||
torture_close_connection(cli);
|
||||
talloc_free(mem_ctx);
|
||||
return ret;
|
||||
}
|
||||
Reference in New Issue
Block a user