⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 read.c

📁 samba最新软件
💻 C
📖 第 1 页 / 共 2 页
字号:
/*    Unix SMB/CIFS implementation.   test suite for various read operations   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 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 "torture/torture.h"#include "libcli/raw/libcliraw.h"#include "libcli/raw/raw_proto.h"#include "system/time.h"#include "system/filesys.h"#include "libcli/libcli.h"#include "torture/util.h"#include "param/param.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 CHECK_VALUE(v, correct) do { \	if ((v) != (correct)) { \		printf("(%s) Incorrect value %s=%ld - should be %ld\n", \		       __location__, #v, (long)v, (long)correct); \		ret = false; \		goto done; \	}} while (0)#define CHECK_BUFFER(buf, seed, len) do { \	if (!check_buffer(buf, seed, len, __LINE__)) { \		ret = false; \		goto done; \	}} while (0)#define BASEDIR "\\testread"/*  setup a random buffer based on a seed*/static void setup_buffer(uint8_t *buf, uint_t seed, int len){	int i;	srandom(seed);	for (i=0;i<len;i++) buf[i] = random();}/*  check a random buffer based on a seed*/static bool check_buffer(uint8_t *buf, uint_t seed, int len, int line){	int i;	srandom(seed);	for (i=0;i<len;i++) {		uint8_t v = random();		if (buf[i] != v) {			printf("Buffer incorrect at line %d! ofs=%d v1=0x%x v2=0x%x\n", 			       line, i, buf[i], v);			return false;		}	}	return true;}/*  test read ops*/static bool test_read(struct torture_context *tctx, struct smbcli_state *cli){	union smb_read io;	NTSTATUS status;	bool ret = true;	int fnum;	uint8_t *buf;	const int maxsize = 90000;	const char *fname = BASEDIR "\\test.txt";	const char *test_data = "TEST DATA";	uint_t seed = time(NULL);	buf = talloc_zero_array(tctx, uint8_t, maxsize);	if (!torture_setup_dir(cli, BASEDIR)) {		return false;	}	printf("Testing RAW_READ_READ\n");	io.generic.level = RAW_READ_READ;		fnum = smbcli_open(cli->tree, fname, O_RDWR|O_CREAT, DENY_NONE);	if (fnum == -1) {		printf("Failed to create %s - %s\n", fname, smbcli_errstr(cli->tree));		ret = false;		goto done;	}	printf("Trying empty file read\n");	io.read.in.file.fnum = fnum;	io.read.in.count = 1;	io.read.in.offset = 0;	io.read.in.remaining = 0;	io.read.out.data = buf;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.read.out.nread, 0);	printf("Trying zero file read\n");	io.read.in.count = 0;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.read.out.nread, 0);	printf("Trying bad fnum\n");	io.read.in.file.fnum = fnum+1;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_INVALID_HANDLE);	io.read.in.file.fnum = fnum;	smbcli_write(cli->tree, fnum, 0, test_data, 0, strlen(test_data));	printf("Trying small read\n");	io.read.in.file.fnum = fnum;	io.read.in.offset = 0;	io.read.in.remaining = 0;	io.read.in.count = strlen(test_data);	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.read.out.nread, strlen(test_data));	if (memcmp(buf, test_data, strlen(test_data)) != 0) {		ret = false;		printf("incorrect data at %d!? (%s:%s)\n", __LINE__, test_data, buf);		goto done;	}	printf("Trying short read\n");	io.read.in.offset = 1;	io.read.in.count = strlen(test_data);	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.read.out.nread, strlen(test_data)-1);	if (memcmp(buf, test_data+1, strlen(test_data)-1) != 0) {		ret = false;		printf("incorrect data at %d!? (%s:%s)\n", __LINE__, test_data+1, buf);		goto done;	}	if (cli->transport->negotiate.capabilities & CAP_LARGE_FILES) {		printf("Trying max offset\n");		io.read.in.offset = ~0;		io.read.in.count = strlen(test_data);		status = smb_raw_read(cli->tree, &io);		CHECK_STATUS(status, NT_STATUS_OK);		CHECK_VALUE(io.read.out.nread, 0);	}	setup_buffer(buf, seed, maxsize);	smbcli_write(cli->tree, fnum, 0, buf, 0, maxsize);	memset(buf, 0, maxsize);	printf("Trying large read\n");	io.read.in.offset = 0;	io.read.in.count = ~0;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_BUFFER(buf, seed, io.read.out.nread);	printf("Trying locked region\n");	cli->session->pid++;	if (NT_STATUS_IS_ERR(smbcli_lock(cli->tree, fnum, 103, 1, 0, WRITE_LOCK))) {		printf("Failed to lock file at %d\n", __LINE__);		ret = false;		goto done;	}	cli->session->pid--;	memset(buf, 0, maxsize);	io.read.in.offset = 0;	io.read.in.count = ~0;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_FILE_LOCK_CONFLICT);	done:	smbcli_close(cli->tree, fnum);	smb_raw_exit(cli->session);	smbcli_deltree(cli->tree, BASEDIR);	return ret;}/*  test lockread ops*/static bool test_lockread(struct torture_context *tctx, 						  struct smbcli_state *cli){	union smb_read io;	NTSTATUS status;	bool ret = true;	int fnum;	uint8_t *buf;	const int maxsize = 90000;	const char *fname = BASEDIR "\\test.txt";	const char *test_data = "TEST DATA";	uint_t seed = time(NULL);	buf = talloc_zero_array(tctx, uint8_t, maxsize);	if (!torture_setup_dir(cli, BASEDIR)) {		return false;	}	printf("Testing RAW_READ_LOCKREAD\n");	io.generic.level = RAW_READ_LOCKREAD;		fnum = smbcli_open(cli->tree, fname, O_RDWR|O_CREAT, DENY_NONE);	if (fnum == -1) {		printf("Failed to create %s - %s\n", fname, smbcli_errstr(cli->tree));		ret = false;		goto done;	}	printf("Trying empty file read\n");	io.lockread.in.file.fnum = fnum;	io.lockread.in.count = 1;	io.lockread.in.offset = 1;	io.lockread.in.remaining = 0;	io.lockread.out.data = buf;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.lockread.out.nread, 0);	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_LOCK_NOT_GRANTED);	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_FILE_LOCK_CONFLICT);	printf("Trying zero file read\n");	io.lockread.in.count = 0;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	smbcli_unlock(cli->tree, fnum, 1, 1);	printf("Trying bad fnum\n");	io.lockread.in.file.fnum = fnum+1;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_INVALID_HANDLE);	io.lockread.in.file.fnum = fnum;	smbcli_write(cli->tree, fnum, 0, test_data, 0, strlen(test_data));	printf("Trying small read\n");	io.lockread.in.file.fnum = fnum;	io.lockread.in.offset = 0;	io.lockread.in.remaining = 0;	io.lockread.in.count = strlen(test_data);	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_LOCK_NOT_GRANTED);	smbcli_unlock(cli->tree, fnum, 1, 0);	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.lockread.out.nread, strlen(test_data));	if (memcmp(buf, test_data, strlen(test_data)) != 0) {		ret = false;		printf("incorrect data at %d!? (%s:%s)\n", __LINE__, test_data, buf);		goto done;	}	printf("Trying short read\n");	io.lockread.in.offset = 1;	io.lockread.in.count = strlen(test_data);	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_LOCK_NOT_GRANTED);	smbcli_unlock(cli->tree, fnum, 0, strlen(test_data));	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.lockread.out.nread, strlen(test_data)-1);	if (memcmp(buf, test_data+1, strlen(test_data)-1) != 0) {		ret = false;		printf("incorrect data at %d!? (%s:%s)\n", __LINE__, test_data+1, buf);		goto done;	}	if (cli->transport->negotiate.capabilities & CAP_LARGE_FILES) {		printf("Trying max offset\n");		io.lockread.in.offset = ~0;		io.lockread.in.count = strlen(test_data);		status = smb_raw_read(cli->tree, &io);		CHECK_STATUS(status, NT_STATUS_OK);		CHECK_VALUE(io.lockread.out.nread, 0);	}	setup_buffer(buf, seed, maxsize);	smbcli_write(cli->tree, fnum, 0, buf, 0, maxsize);	memset(buf, 0, maxsize);	printf("Trying large read\n");	io.lockread.in.offset = 0;	io.lockread.in.count = ~0;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_LOCK_NOT_GRANTED);	smbcli_unlock(cli->tree, fnum, 1, strlen(test_data));	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_BUFFER(buf, seed, io.lockread.out.nread);	smbcli_unlock(cli->tree, fnum, 0, 0xFFFF);	printf("Trying locked region\n");	cli->session->pid++;	if (NT_STATUS_IS_ERR(smbcli_lock(cli->tree, fnum, 103, 1, 0, WRITE_LOCK))) {		printf("Failed to lock file at %d\n", __LINE__);		ret = false;		goto done;	}	cli->session->pid--;	memset(buf, 0, maxsize);	io.lockread.in.offset = 0;	io.lockread.in.count = ~0;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_FILE_LOCK_CONFLICT);	done:	smbcli_close(cli->tree, fnum);	smbcli_deltree(cli->tree, BASEDIR);	return ret;}/*  test readx ops*/static bool test_readx(struct torture_context *tctx, struct smbcli_state *cli){	union smb_read io;	NTSTATUS status;	bool ret = true;	int fnum;	uint8_t *buf;	const int maxsize = 90000;	const char *fname = BASEDIR "\\test.txt";	const char *test_data = "TEST DATA";	uint_t seed = time(NULL);	buf = talloc_zero_array(tctx, uint8_t, maxsize);	if (!torture_setup_dir(cli, BASEDIR)) {		return false;	}	printf("Testing RAW_READ_READX\n");		fnum = smbcli_open(cli->tree, fname, O_RDWR|O_CREAT, DENY_NONE);	if (fnum == -1) {		printf("Failed to create %s - %s\n", fname, smbcli_errstr(cli->tree));		ret = false;		goto done;	}	printf("Trying empty file read\n");	io.generic.level = RAW_READ_READX;	io.readx.in.file.fnum = fnum;	io.readx.in.mincnt = 1;	io.readx.in.maxcnt = 1;	io.readx.in.offset = 0;	io.readx.in.remaining = 0;	io.readx.in.read_for_execute = false;	io.readx.out.data = buf;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.readx.out.nread, 0);	CHECK_VALUE(io.readx.out.remaining, 0xFFFF);	CHECK_VALUE(io.readx.out.compaction_mode, 0);	printf("Trying zero file read\n");	io.readx.in.mincnt = 0;	io.readx.in.maxcnt = 0;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.readx.out.nread, 0);	CHECK_VALUE(io.readx.out.remaining, 0xFFFF);	CHECK_VALUE(io.readx.out.compaction_mode, 0);	printf("Trying bad fnum\n");	io.readx.in.file.fnum = fnum+1;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_INVALID_HANDLE);	io.readx.in.file.fnum = fnum;	smbcli_write(cli->tree, fnum, 0, test_data, 0, strlen(test_data));	printf("Trying small read\n");	io.readx.in.file.fnum = fnum;	io.readx.in.offset = 0;	io.readx.in.remaining = 0;	io.readx.in.read_for_execute = false;	io.readx.in.mincnt = strlen(test_data);	io.readx.in.maxcnt = strlen(test_data);	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.readx.out.nread, strlen(test_data));	CHECK_VALUE(io.readx.out.remaining, 0xFFFF);	CHECK_VALUE(io.readx.out.compaction_mode, 0);	if (memcmp(buf, test_data, strlen(test_data)) != 0) {		ret = false;		printf("incorrect data at %d!? (%s:%s)\n", __LINE__, test_data, buf);		goto done;	}	printf("Trying short read\n");	io.readx.in.offset = 1;	io.readx.in.mincnt = strlen(test_data);	io.readx.in.maxcnt = strlen(test_data);	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.readx.out.nread, strlen(test_data)-1);	CHECK_VALUE(io.readx.out.remaining, 0xFFFF);	CHECK_VALUE(io.readx.out.compaction_mode, 0);	if (memcmp(buf, test_data+1, strlen(test_data)-1) != 0) {		ret = false;		printf("incorrect data at %d!? (%s:%s)\n", __LINE__, test_data+1, buf);		goto done;	}	if (cli->transport->negotiate.capabilities & CAP_LARGE_FILES) {		printf("Trying max offset\n");		io.readx.in.offset = 0xffffffff;		io.readx.in.mincnt = strlen(test_data);		io.readx.in.maxcnt = strlen(test_data);		status = smb_raw_read(cli->tree, &io);		CHECK_STATUS(status, NT_STATUS_OK);		CHECK_VALUE(io.readx.out.nread, 0);		CHECK_VALUE(io.readx.out.remaining, 0xFFFF);		CHECK_VALUE(io.readx.out.compaction_mode, 0);	}	printf("Trying mincnt past EOF\n");	memset(buf, 0, maxsize);	io.readx.in.offset = 0;	io.readx.in.mincnt = 100;	io.readx.in.maxcnt = 110;	status = smb_raw_read(cli->tree, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_VALUE(io.readx.out.remaining, 0xFFFF);	CHECK_VALUE(io.readx.out.compaction_mode, 0);	CHECK_VALUE(io.readx.out.nread, strlen(test_data));	if (memcmp(buf, test_data, strlen(test_data)) != 0) {		ret = false;		printf("incorrect data at %d!? (%s:%s)\n", __LINE__, test_data, buf);		goto done;	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -