From 3294bf59aad7be3c9a003a8b555ea305b1ba3fe8 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 22 Nov 2005 13:14:04 +0000 Subject: r11850: added a test suite for the SMB2 find calls (This used to be commit 3ac32d802bba96e5cbcebc4b536258eb0981a9e4) --- source4/torture/smb2/config.mk | 3 +- source4/torture/smb2/find.c | 212 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 214 insertions(+), 1 deletion(-) create mode 100644 source4/torture/smb2/find.c (limited to 'source4/torture/smb2') diff --git a/source4/torture/smb2/config.mk b/source4/torture/smb2/config.mk index bcd256a22b..a0a6997fe4 100644 --- a/source4/torture/smb2/config.mk +++ b/source4/torture/smb2/config.mk @@ -7,7 +7,8 @@ ADD_OBJ_FILES = \ scan.o \ util.o \ getinfo.o \ - setinfo.o + setinfo.o \ + find.o REQUIRED_SUBSYSTEMS = \ LIBCLI_SMB2 # End SUBSYSTEM TORTURE_SMB2 diff --git a/source4/torture/smb2/find.c b/source4/torture/smb2/find.c new file mode 100644 index 0000000000..7ead3e34aa --- /dev/null +++ b/source4/torture/smb2/find.c @@ -0,0 +1,212 @@ +/* + Unix SMB/CIFS implementation. + + SMB2 find test suite + + Copyright (C) Andrew Tridgell 2005 + + 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 "libcli/smb2/smb2.h" +#include "libcli/smb2/smb2_calls.h" +#include "librpc/gen_ndr/security.h" + +static struct { + const char *name; + uint16_t level; + NTSTATUS status; + union smb_search_data data; +} levels[] = { +#define LEVEL(x) #x, x + { LEVEL(SMB2_FIND_ID_BOTH_DIRECTORY_INFO) }, + { LEVEL(SMB2_FIND_DIRECTORY_INFO) }, + { LEVEL(SMB2_FIND_FULL_DIRECTORY_INFO) }, + { LEVEL(SMB2_FIND_NAME_INFO) }, + { LEVEL(SMB2_FIND_BOTH_DIRECTORY_INFO) }, + { LEVEL(SMB2_FIND_ID_FULL_DIRECTORY_INFO) }, +}; + +#define FNAME "smb2-find.dat" + +#define CHECK_VALUE(call_name, stype, field) do { \ + union smb_search_data *d = find_level("SMB2_FIND_" #call_name); \ + if (io.all_info2.out.field != d->stype.field) { \ + printf("(%s) %s/%s should be 0x%llx - 0x%llx\n", __location__, \ + #call_name, #field, \ + (uint64_t)io.all_info2.out.field, (uint64_t)d->stype.field); \ + ret = False; \ + }} while (0) + +#define CHECK_STRING(call_name, stype, field1, field2) do { \ + union smb_search_data *d = find_level("SMB2_FIND_" #call_name); \ + if (strcmp(io.all_info2.out.field2.s, d->stype.field1.s) != 0) { \ + printf("(%s) %s/%s should be '%s' - '%s'\n", __location__, \ + #call_name, #field2, \ + io.all_info2.out.field2.s, d->stype.field1.s); \ + ret = False; \ + }} while (0) + +#define CHECK_CONST_STRING(call_name, stype, field, str) do { \ + union smb_search_data *d = find_level("SMB2_FIND_" #call_name); \ + if (strcmp(str, d->stype.field.s) != 0) { \ + printf("(%s) %s/%s should be '%s' - '%s'\n", __location__, \ + #call_name, #field, \ + str, d->stype.field.s); \ + ret = False; \ + }} while (0) + +static union smb_search_data *find_level(const char *name) +{ + int i; + for (i=0;i