1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/source4/torture/smb2/dosmode.c
Ralph Boehme ffdb1c3e00 CI: add test "smb2.async_dosmode"
Verifies async-dosmode sync fallback works with shadow_copy2 which returns
ENOSYS for SMB_VFS_GET_DOS_ATTRIBUTES_SEND().

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14957

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
2022-02-28 20:01:36 +00:00

255 lines
7.9 KiB
C

/*
Unix SMB/CIFS implementation.
SMB2 setinfo individual test suite
Copyright (C) Ralph Boehme 2016
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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
#include "system/time.h"
#include "libcli/smb2/smb2.h"
#include "libcli/smb2/smb2_calls.h"
#include "torture/torture.h"
#include "torture/smb2/proto.h"
/*
test dosmode and hidden files
*/
bool torture_smb2_dosmode(struct torture_context *tctx)
{
bool ret = true;
NTSTATUS status;
struct smb2_tree *tree = NULL;
const char *dname = "torture_dosmode";
const char *fname = "torture_dosmode\\file";
const char *hidefile = "torture_dosmode\\hidefile";
const char *dotfile = "torture_dosmode\\.dotfile";
struct smb2_handle h1 = {{0}};
struct smb2_create io;
union smb_setfileinfo sfinfo;
union smb_fileinfo finfo2;
torture_comment(tctx, "Checking dosmode with \"hide files\" "
"and \"hide dot files\"\n");
if (!torture_smb2_connection(tctx, &tree)) {
return false;
}
smb2_deltree(tree, dname);
status = torture_smb2_testdir(tree, dname, &h1);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"torture_smb2_testdir failed");
ZERO_STRUCT(io);
io.in.desired_access = SEC_FLAG_MAXIMUM_ALLOWED;
io.in.file_attributes = FILE_ATTRIBUTE_NORMAL;
io.in.create_disposition = NTCREATEX_DISP_CREATE;
io.in.create_options = 0;
io.in.fname = fname;
status = smb2_create(tree, tctx, &io);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_create failed");
ZERO_STRUCT(sfinfo);
sfinfo.basic_info.in.attrib = FILE_ATTRIBUTE_HIDDEN;
sfinfo.generic.level = RAW_SFILEINFO_BASIC_INFORMATION;
sfinfo.generic.in.file.handle = io.out.file.handle;
status = smb2_setinfo_file(tree, &sfinfo);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_setinfo_filefailed");
ZERO_STRUCT(finfo2);
finfo2.generic.level = RAW_FILEINFO_BASIC_INFORMATION;
finfo2.generic.in.file.handle = io.out.file.handle;
status = smb2_getinfo_file(tree, tctx, &finfo2);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_getinfo_file failed");
torture_assert_int_equal_goto(tctx, finfo2.all_info2.out.attrib & FILE_ATTRIBUTE_HIDDEN,
FILE_ATTRIBUTE_HIDDEN, ret, done,
"FILE_ATTRIBUTE_HIDDEN is not set");
smb2_util_close(tree, io.out.file.handle);
/* This must fail with attribute mismatch */
ZERO_STRUCT(io);
io.in.desired_access = SEC_FLAG_MAXIMUM_ALLOWED;
io.in.file_attributes = FILE_ATTRIBUTE_NORMAL;
io.in.create_disposition = NTCREATEX_DISP_OVERWRITE_IF;
io.in.create_options = 0;
io.in.fname = fname;
status = smb2_create(tree, tctx, &io);
torture_assert_ntstatus_equal_goto(tctx, status, NT_STATUS_ACCESS_DENIED,
ret, done,"smb2_create failed");
/* Create a file in "hide files" */
ZERO_STRUCT(io);
io.in.desired_access = SEC_FLAG_MAXIMUM_ALLOWED;
io.in.file_attributes = FILE_ATTRIBUTE_NORMAL;
io.in.create_disposition = NTCREATEX_DISP_CREATE;
io.in.create_options = 0;
io.in.fname = hidefile;
status = smb2_create(tree, tctx, &io);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_create failed");
ZERO_STRUCT(finfo2);
finfo2.generic.level = RAW_FILEINFO_BASIC_INFORMATION;
finfo2.generic.in.file.handle = io.out.file.handle;
status = smb2_getinfo_file(tree, tctx, &finfo2);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_getinfo_file failed");
torture_assert_int_equal_goto(tctx, finfo2.all_info2.out.attrib & FILE_ATTRIBUTE_HIDDEN,
FILE_ATTRIBUTE_HIDDEN, ret, done,
"FILE_ATTRIBUTE_HIDDEN is not set");
smb2_util_close(tree, io.out.file.handle);
/* Overwrite a file in "hide files", should pass */
ZERO_STRUCT(io);
io.in.desired_access = SEC_FLAG_MAXIMUM_ALLOWED;
io.in.file_attributes = FILE_ATTRIBUTE_NORMAL;
io.in.create_disposition = NTCREATEX_DISP_OVERWRITE_IF;
io.in.create_options = 0;
io.in.fname = hidefile;
status = smb2_create(tree, tctx, &io);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_create failed");
smb2_util_close(tree, io.out.file.handle);
/* Create a "hide dot files" */
ZERO_STRUCT(io);
io.in.desired_access = SEC_FLAG_MAXIMUM_ALLOWED;
io.in.file_attributes = FILE_ATTRIBUTE_NORMAL;
io.in.create_disposition = NTCREATEX_DISP_CREATE;
io.in.create_options = 0;
io.in.fname = dotfile;
status = smb2_create(tree, tctx, &io);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_create failed");
ZERO_STRUCT(finfo2);
finfo2.generic.level = RAW_FILEINFO_BASIC_INFORMATION;
finfo2.generic.in.file.handle = io.out.file.handle;
status = smb2_getinfo_file(tree, tctx, &finfo2);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_getinfo_file failed");
torture_assert_int_equal_goto(tctx, finfo2.all_info2.out.attrib & FILE_ATTRIBUTE_HIDDEN,
FILE_ATTRIBUTE_HIDDEN, ret, done,
"FILE_ATTRIBUTE_HIDDEN is not set");
smb2_util_close(tree, io.out.file.handle);
/* Overwrite a "hide dot files", should pass */
ZERO_STRUCT(io);
io.in.desired_access = SEC_FLAG_MAXIMUM_ALLOWED;
io.in.file_attributes = FILE_ATTRIBUTE_NORMAL;
io.in.create_disposition = NTCREATEX_DISP_OVERWRITE_IF;
io.in.create_options = 0;
io.in.fname = dotfile;
status = smb2_create(tree, tctx, &io);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_create failed");
smb2_util_close(tree, io.out.file.handle);
done:
if (!smb2_util_handle_empty(h1)) {
smb2_util_close(tree, h1);
}
smb2_deltree(tree, dname);
return ret;
}
bool torture_smb2_async_dosmode(struct torture_context *tctx)
{
bool ret = true;
NTSTATUS status;
struct smb2_tree *tree = NULL;
const char *dname = "torture_dosmode";
const char *fname = "torture_dosmode\\file";
struct smb2_handle h = {{0}};
struct smb2_create io;
union smb_setfileinfo sfinfo;
struct smb2_find f;
union smb_search_data *d;
unsigned int count;
if (!torture_smb2_connection(tctx, &tree)) {
return false;
}
smb2_deltree(tree, dname);
status = torture_smb2_testdir(tree, dname, &h);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"torture_smb2_testdir failed");
ZERO_STRUCT(io);
io.in.desired_access = SEC_FLAG_MAXIMUM_ALLOWED;
io.in.file_attributes = FILE_ATTRIBUTE_NORMAL;
io.in.create_disposition = NTCREATEX_DISP_CREATE;
io.in.create_options = 0;
io.in.fname = fname;
status = smb2_create(tree, tctx, &io);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_create failed");
ZERO_STRUCT(sfinfo);
sfinfo.basic_info.in.attrib = FILE_ATTRIBUTE_HIDDEN;
sfinfo.generic.level = RAW_SFILEINFO_BASIC_INFORMATION;
sfinfo.generic.in.file.handle = io.out.file.handle;
status = smb2_setinfo_file(tree, &sfinfo);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done,
"smb2_setinfo_filefailed");
smb2_util_close(tree, io.out.file.handle);
ZERO_STRUCT(f);
f.in.file.handle = h;
f.in.pattern = "file";
f.in.continue_flags = SMB2_CONTINUE_FLAG_RESTART;
f.in.max_response_size = 0x1000;
f.in.level = SMB2_FIND_BOTH_DIRECTORY_INFO;
status = smb2_find_level(tree, tree, &f, &count, &d);
torture_assert_ntstatus_ok_goto(tctx, status, ret, done, "");
smb2_util_close(tree, h);
ZERO_STRUCT(h);
torture_assert_goto(tctx,
d->both_directory_info.attrib & FILE_ATTRIBUTE_HIDDEN,
ret, done,
"FILE_ATTRIBUTE_HIDDEN is not set\n");
done:
if (!smb2_util_handle_empty(h)) {
smb2_util_close(tree, h);
}
smb2_deltree(tree, dname);
return ret;
}