A new utility to test VFS system and modules
authorSimo Sorce <idra@samba.org>
Sun, 18 Aug 2002 18:04:00 +0000 (18:04 +0000)
committerSimo Sorce <idra@samba.org>
Sun, 18 Aug 2002 18:04:00 +0000 (18:04 +0000)
Just now it is acommandline tool like smbclient and rpcclient that is able to
perform operations on the file system passing through the vfs layer

It is not complete yet, some functions have simply faked up data, but module
loading works yet and basic operations too.

Thanks to Eric Lorimer for helping out with the initial setup.

Simo.
(This used to be commit 42ae5eb82657d4905bdaf247286f95599380afbb)

source3/Makefile.in
source3/configure
source3/configure.in
source3/smbd/vfs.c
source3/torture/cmd_vfs.c [new file with mode: 0644]
source3/torture/vfstest.c [new file with mode: 0644]
source3/torture/vfstest.h [new file with mode: 0644]

index 2db6d550113c5d2feeaa0d0fc803ed0cadb689f8..656557dd51b3e17cd6084b7157598d73c0b49eab 100644 (file)
@@ -106,7 +106,7 @@ LPROGS = $(WINBIND_PAM_PROGS) $(WINBIND_LPROGS)
 
 PROGS = $(PROGS1) $(PROGS2) $(MPROGS) bin/nmblookup bin/pdbedit bin/smbgroupedit
 TORTURE_PROGS = bin/smbtorture bin/msgtest bin/masktest bin/locktest \
-       bin/locktest2 bin/nsstest
+       bin/locktest2 bin/nsstest bin/vfstest
 SHLIBS = @LIBSMBCLIENT@
 
 SCRIPTS = $(srcdir)/script/smbtar $(srcdir)/script/addtosmbpass $(srcdir)/script/convert_smbpasswd \
@@ -236,21 +236,32 @@ AUTH_OBJ = auth/auth.o auth/auth_sam.o auth/auth_server.o auth/auth_domain.o \
 
 MANGLE_OBJ = smbd/mangle.o smbd/mangle_hash.o smbd/mangle_map.o smbd/mangle_hash2.o
 
-SMBD_OBJ1 = smbd/server.o smbd/files.o smbd/chgpasswd.o smbd/connection.o \
-           smbd/utmp.o smbd/session.o \
-            smbd/dfree.o smbd/dir.o smbd/password.o smbd/conn.o smbd/fileio.o \
-            smbd/ipc.o smbd/lanman.o smbd/negprot.o \
-            smbd/message.o smbd/nttrans.o smbd/pipes.o \
-            smbd/reply.o smbd/sesssetup.o smbd/trans2.o smbd/uid.o \
-           smbd/dosmode.o smbd/filename.o smbd/open.o smbd/close.o \
-           smbd/blocking.o smbd/sec_ctx.o \
-           smbd/vfs.o smbd/vfs-wrap.o smbd/statcache.o \
-            smbd/posix_acls.o lib/sysacls.o \
-           smbd/process.o smbd/service.o smbd/error.o \
-           printing/printfsp.o lib/util_seaccess.o smbd/srvstr.o \
-            smbd/build_options.o \
-           smbd/change_trust_pw.o \
-           $(MANGLE_OBJ)
+SMBD_OBJ_MAIN = smbd/server.o
+
+SMBD_OBJ_SRV = smbd/files.o smbd/chgpasswd.o smbd/connection.o \
+              smbd/utmp.o smbd/session.o \
+               smbd/dfree.o smbd/dir.o smbd/password.o smbd/conn.o smbd/fileio.o \
+               smbd/ipc.o smbd/lanman.o smbd/negprot.o \
+               smbd/message.o smbd/nttrans.o smbd/pipes.o \
+               smbd/reply.o smbd/sesssetup.o smbd/trans2.o smbd/uid.o \
+              smbd/dosmode.o smbd/filename.o smbd/open.o smbd/close.o \
+              smbd/blocking.o smbd/sec_ctx.o \
+              smbd/vfs.o smbd/vfs-wrap.o smbd/statcache.o \
+               smbd/posix_acls.o lib/sysacls.o \
+              smbd/process.o smbd/service.o smbd/error.o \
+              printing/printfsp.o lib/util_seaccess.o smbd/srvstr.o \
+               smbd/build_options.o \
+              smbd/change_trust_pw.o \
+              $(MANGLE_OBJ)
+
+SMBD_OBJ_BASE = $(SMBD_OBJ_SRV) $(MSDFS_OBJ) $(PARAM_OBJ) $(LIBSMB_OBJ) $(UBIQX_OBJ) \
+               $(RPC_SERVER_OBJ) $(RPC_PARSE_OBJ) $(SECRETS_OBJ) \
+               $(LOCKING_OBJ) $(PASSDB_OBJ) $(PRINTING_OBJ) $(PROFILE_OBJ) \
+               $(LIB_OBJ) $(PRINTBACKEND_OBJ) $(QUOTAOBJS) $(OPLOCK_OBJ) \
+               $(NOTIFY_OBJ) $(GROUPDB_OBJ) $(AUTH_OBJ) \
+               $(LIBMSRPC_OBJ) $(LIBMSRPC_SERVER_OBJ) \
+               $(LIBADS_OBJ) $(LIBADS_SERVER_OBJ) \
+               $(LIB_SMBD_OBJ)
 
 
 PRINTING_OBJ = printing/pcap.o printing/print_svid.o \
@@ -261,15 +272,7 @@ PRINTBACKEND_OBJ = printing/printing.o printing/nt_printing.o printing/notify.o
 
 MSDFS_OBJ = msdfs/msdfs.o 
 
-SMBD_OBJ = $(SMBD_OBJ1) $(MSDFS_OBJ) $(PARAM_OBJ) $(LIBSMB_OBJ) $(UBIQX_OBJ) \
-           $(RPC_SERVER_OBJ) $(RPC_PARSE_OBJ) $(SECRETS_OBJ) \
-           $(LOCKING_OBJ) $(PASSDB_OBJ) $(PRINTING_OBJ) $(PROFILE_OBJ) \
-          $(LIB_OBJ) $(PRINTBACKEND_OBJ) $(QUOTAOBJS) $(OPLOCK_OBJ) \
-          $(NOTIFY_OBJ) $(GROUPDB_OBJ) $(AUTH_OBJ) \
-          $(LIBMSRPC_OBJ) $(LIBMSRPC_SERVER_OBJ) \
-          $(LIBADS_OBJ) $(LIBADS_SERVER_OBJ) \
-          $(LIB_SMBD_OBJ)
-
+SMBD_OBJ = $(SMBD_OBJ_MAIN) $(SMBD_OBJ_BASE)
 
 NMBD_OBJ1 = nmbd/asyncdns.o nmbd/nmbd.o nmbd/nmbd_become_dmb.o \
             nmbd/nmbd_become_lmb.o nmbd/nmbd_browserdb.o \
@@ -414,6 +417,8 @@ LOCKTEST_OBJ = torture/locktest.o $(LOCKING_OBJ) $(LIBSMB_OBJ) $(PARAM_OBJ) \
 NSSTEST_OBJ = torture/nsstest.o $(LIBSMB_OBJ) $(PARAM_OBJ) \
                  $(UBIQX_OBJ) $(LIB_OBJ)
 
+VFSTEST_OBJ = torture/cmd_vfs.o torture/vfstest.o $(SMBD_OBJ_BASE) $(READLINE_OBJ)
+
 LOCKTEST2_OBJ = torture/locktest2.o $(LOCKING_OBJ) $(LIBSMB_OBJ) $(PARAM_OBJ) \
                  $(UBIQX_OBJ) $(LIB_OBJ)
 
@@ -438,7 +443,8 @@ DEBUG2HTML_OBJ = utils/debug2html.o ubiqx/debugparse.o
 SMBFILTER_OBJ = utils/smbfilter.o $(LIBSMB_OBJ) $(PARAM_OBJ) \
                  $(UBIQX_OBJ) $(LIB_OBJ)
 
-PROTO_OBJ = $(SMBD_OBJ1) $(NMBD_OBJ1) $(SWAT_OBJ1) $(LIB_OBJ) $(LIBSMB_OBJ) \
+PROTO_OBJ = $(SMBD_OBJ_MAIN) \
+           $(SMBD_OBJ_SRV) $(NMBD_OBJ1) $(SWAT_OBJ1) $(LIB_OBJ) $(LIBSMB_OBJ) \
            $(SMBWRAPPER_OBJ1) $(SMBTORTURE_OBJ1) $(RPCCLIENT_OBJ1) \
            $(LIBMSRPC_OBJ) $(LIBMSRPC_SERVER_OBJ) $(RPC_CLIENT_OBJ) \
            $(RPC_SERVER_OBJ) $(RPC_PARSE_OBJ) \
@@ -719,6 +725,10 @@ bin/nsstest: $(NSSTEST_OBJ) bin/.dummy
        @echo Linking $@
        @$(CC) $(FLAGS) -o $@ $(NSSTEST_OBJ) $(LDFLAGS) $(LIBS)
 
+bin/vfstest: $(VFSTEST_OBJ) bin/.dummy
+       @echo Linking $@
+       @$(CC) $(FLAGS) -o $@ $(VFSTEST_OBJ) $(LDFLAGS) $(TERMLDFLAGS) $(TERMLIBS) $(DYNEXP) $(LIBS)
+
 bin/locktest2: $(LOCKTEST2_OBJ) bin/.dummy
        @echo Linking $@
        @$(CC) $(FLAGS) -o $@ $(LOCKTEST2_OBJ) $(LDFLAGS) $(LIBS)
index 06694c8e64a87c6c042a806bde5c704b2e26af9d..cec3161ccc74f912d8ffeaeb8654aab50550287e 100755 (executable)
@@ -14082,7 +14082,7 @@ done
 ac_given_srcdir=$srcdir
 ac_given_INSTALL="$INSTALL"
 
-trap 'rm -fr `echo "include/stamp-h Makefile script/findsmb ../examples/VFS/Makefile ../examples/VFS/block/Makefile include/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
+trap 'rm -fr `echo "include/stamp-h Makefile script/findsmb ../examples/VFS/Makefile ../examples/VFS/block/Makefile ../examples/pdb/mysql/Makefile ../examples/pdb/xml/Makefile include/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
 EOF
 cat >> $CONFIG_STATUS <<EOF
 
@@ -14216,7 +14216,7 @@ EOF
 
 cat >> $CONFIG_STATUS <<EOF
 
-CONFIG_FILES=\${CONFIG_FILES-"include/stamp-h Makefile script/findsmb ../examples/VFS/Makefile ../examples/VFS/block/Makefile"}
+CONFIG_FILES=\${CONFIG_FILES-"include/stamp-h Makefile script/findsmb ../examples/VFS/Makefile ../examples/VFS/block/Makefile ../examples/pdb/mysql/Makefile ../examples/pdb/xml/Makefile"}
 EOF
 cat >> $CONFIG_STATUS <<\EOF
 for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
index db34c266c584a72442e06b518b066e1e8da48638..e907697d255a1d06867446f66f37c9b840c3b12e 100644 (file)
@@ -2797,7 +2797,7 @@ AC_TRY_RUN([#include "${srcdir-.}/tests/summary.c"],
 builddir=`pwd`
 AC_SUBST(builddir)
 
-AC_OUTPUT(include/stamp-h Makefile script/findsmb ../examples/VFS/Makefile ../examples/VFS/block/Makefile)
+AC_OUTPUT(include/stamp-h Makefile script/findsmb ../examples/VFS/Makefile ../examples/VFS/block/Makefile ../examples/pdb/mysql/Makefile ../examples/pdb/xml/Makefile)
 
 #################################################
 # Print very concise instructions on building/use
index a2291eba08f9f20ea68370442482dfbc6ca39037..686499288d72dafbf82fb799a7947e87568d933f 100644 (file)
@@ -138,7 +138,7 @@ static void vfs_init_default(connection_struct *conn)
   initialise custom vfs hooks
 ****************************************************************************/
 
-static BOOL vfs_init_custom(connection_struct *conn, const char *vfs_object)
+BOOL vfs_init_custom(connection_struct *conn, const char *vfs_object)
 {
        int vfs_version = -1;
        vfs_op_tuple *ops, *(*init_fptr)(int *, const struct vfs_ops *, struct smb_vfs_handle_struct *);
diff --git a/source3/torture/cmd_vfs.c b/source3/torture/cmd_vfs.c
new file mode 100644 (file)
index 0000000..3657d3f
--- /dev/null
@@ -0,0 +1,872 @@
+/* 
+   Unix SMB/CIFS implementation.
+   VFS module functions
+
+   Copyright (C) Simo Sorce 2002
+   Copyright (C) Eric Lorimer 2002
+
+   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 "vfstest.h"
+
+static char *null_string = "";
+
+static NTSTATUS cmd_load_module(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       struct smb_vfs_handle_struct *handle;
+       
+       if (argc != 2) {
+               printf("Usage: load <module path>\n");
+               return NT_STATUS_OK;
+       }
+       vfs->conn->vfs_private = NULL;
+       handle = (struct smb_vfs_handle_struct *) smb_xmalloc(sizeof(smb_vfs_handle_struct));
+       handle->handle = NULL;
+       DLIST_ADD(vfs->conn->vfs_private, handle)
+       if (!vfs_init_custom(vfs->conn, argv[1])) {
+               DEBUG(0, ("load: error=-1 (vfs_init_custom failed for %s)\n", argv[1]));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+       printf("load: ok\n");
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_populate(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       char c;
+       size_t size;
+       if (argc != 3) {
+               printf("Usage: populate <char> <size>\n");
+               return NT_STATUS_OK;
+       }
+       c = argv[1][0];
+       size = atoi(argv[2]);
+       vfs->data = (char *)talloc(mem_ctx, size);
+       if (vfs->data == NULL) {
+               printf("read: error=-1 (not enough memory)");
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+       memset(vfs->data, c, size);
+       vfs->data_size = size;
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_show_data(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       size_t offset;
+       size_t len;
+       if (argc != 1 && argc != 3) {
+               printf("Usage: showdata [<offset> <len>]\n");
+               return NT_STATUS_OK;
+       }
+       if (vfs->data == NULL || vfs->data_size == 0) {
+               printf("show_data: error=-1 (buffer empty)\n");
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       if (argc == 3) {
+               offset = atoi(argv[1]);
+               len = atoi(argv[2]);
+       } else {
+               offset = 0;
+               len = vfs->data_size;
+       }
+       if ((offset + len) > vfs->data_size) {
+               printf("show_data: error=-1 (not enough data in buffer)\n");
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+       dump_data(0, (char *)(vfs->data) + offset, len);
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_connect(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       vfs->conn->vfs_ops.connect(vfs->conn, lp_servicename(vfs->conn->service), "vfstest");
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_disconnect(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       vfs->conn->vfs_ops.disconnect(vfs->conn);
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_disk_free(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       SMB_BIG_UINT diskfree, bsize, dfree, dsize;
+       if (argc != 2) {
+               printf("Usage: disk_free <path>\n");
+               return NT_STATUS_OK;
+       }
+
+       diskfree = vfs->conn->vfs_ops.disk_free(vfs->conn, argv[1], False, &bsize, &dfree, &dsize);
+       printf("disk_free: %ld, bsize = %ld, dfree = %ld, dsize = %ld\n", diskfree, bsize, dfree, dsize);
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_opendir(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       if (argc != 2) {
+               printf("Usage: opendir <fname>\n");
+               return NT_STATUS_OK;
+       }
+
+       vfs->currentdir = vfs->conn->vfs_ops.opendir(vfs->conn, argv[1]);
+       if (vfs->currentdir == NULL) {
+               printf("opendir error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("opendir: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_readdir(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       struct dirent *dent;
+
+       if (vfs->currentdir == NULL) {
+               printf("readdir: error=-1 (no open directory)\n");
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       dent = vfs->conn->vfs_ops.readdir(vfs->conn, vfs->currentdir);
+       if (dent == NULL) {
+               printf("readdir: NULL\n");
+               return NT_STATUS_OK;
+       }
+
+       printf("readdir: %s\n", dent->d_name);
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_mkdir(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       if (argc != 2) {
+               printf("Usage: mkdir <path>\n");
+               return NT_STATUS_OK;
+       }
+
+       if (vfs->conn->vfs_ops.mkdir(vfs->conn, argv[1], 00755) == -1) {
+               printf("mkdir error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+       
+       printf("mkdir: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_closedir(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int ret;
+       
+       if (vfs->currentdir == NULL) {
+               printf("closedir: failure (no directory open)\n");
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       ret = vfs->conn->vfs_ops.closedir(vfs->conn, vfs->currentdir);
+       if (ret == -1) {
+               printf("closedir failure: %s\n", strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("closedir: ok\n");
+       vfs->currentdir = NULL;
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_open(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int flags, mode, fd;
+
+       flags = O_RDWR | O_CREAT;
+       mode = 00400;
+
+       if (argc != 2) {
+               printf("Usage: open <filename>\n");
+               return NT_STATUS_OK;
+       }
+
+       fd = vfs->conn->vfs_ops.open(vfs->conn, argv[1], flags, mode);
+       if (fd == -1) {
+               printf("open: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       vfs->files[fd] = (struct files_struct *)malloc(sizeof(struct files_struct));
+       vfs->files[fd]->fsp_name = strdup(argv[1]);
+       vfs->files[fd]->fd = fd;
+       vfs->files[fd]->conn = vfs->conn;
+       printf("open: fd=%d\n", fd);
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_pathfunc(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int ret = -1;
+       struct func_entry *fptr;
+       struct func_entry func_table[] = {
+               { "rmdir",              vfs->conn->vfs_ops.rmdir },
+               { "unlink",             vfs->conn->vfs_ops.unlink },
+               { "chdir",              vfs->conn->vfs_ops.chdir },
+               { NULL }
+       };
+
+       if (argc != 2) {
+               printf("Usage: %s <path>\n", argv[0]);
+               return NT_STATUS_OK;
+       }
+
+       for (fptr=func_table; *fptr->name; fptr++)
+               if (strcmp(fptr->name, argv[0]) == 0 )
+                       ret = fptr->fn(vfs->conn, argv[1]);
+
+       if (ret == -1) {
+               printf("%s: error=%d (%s)\n", argv[0], errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("%s: ok\n", argv[0]);
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_close(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int fd, ret;
+
+       if (argc != 2) {
+               printf("Usage: close <fd>\n");
+               return NT_STATUS_OK;
+       }
+
+       fd = atoi(argv[1]);
+       if (vfs->files[fd] == NULL) {
+               printf("close: error=-1 (invalid file descriptor)\n");
+               return NT_STATUS_OK;
+       }
+
+       ret = vfs->conn->vfs_ops.close(vfs->files[fd], fd);
+       if (ret == -1 )
+               printf("close: error=%d (%s)\n", errno, strerror(errno));
+       else
+               printf("close: ok\n");
+
+       SAFE_FREE(vfs->files[fd]->fsp_name);
+       SAFE_FREE(vfs->files[fd]);
+       vfs->files[fd] = NULL;
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_read(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int fd;
+       size_t size, rsize;
+
+       if (argc != 3) {
+               printf("Usage: read <fd> <size>\n");
+               return NT_STATUS_OK;
+       }
+
+       /* do some error checking on these */
+       fd = atoi(argv[1]);
+       size = atoi(argv[2]);
+       vfs->data = (char *)talloc(mem_ctx, size);
+       if (vfs->data == NULL) {
+               printf("read: error=-1 (not enough memory)");
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+       vfs->data_size = size;
+       
+       rsize = 0;
+       while (rsize < size) {
+               int isize;
+               isize = vfs->conn->vfs_ops.read(vfs->files[fd], fd, vfs->data, size);
+               if (isize == -1) {
+                       printf("read: error=%d (%s)\n", errno, strerror(errno));
+                       return NT_STATUS_UNSUCCESSFUL;
+               }
+               rsize += isize;
+       }
+
+       printf("read: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_write(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int fd, size, wsize;
+
+       if (argc != 3) {
+               printf("Usage: write <fd> <size>\n");
+               return NT_STATUS_OK;
+       }
+
+       /* some error checking should go here */
+       fd = atoi(argv[1]);
+       size = atoi(argv[2]);
+       if (vfs->data == NULL) {
+               printf("write: error=-1 (buffer empty, please populate it before writing)");
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       if (vfs->data_size < size) {
+               printf("write: error=-1 (buffer too small, please put some more data in)");
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       wsize = vfs->conn->vfs_ops.write(vfs->files[fd], fd, vfs->data, size);
+
+       if (wsize == -1) {
+               printf("write: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("write: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_lseek(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int fd, offset, whence;
+       SMB_OFF_T pos;
+
+       if (argc != 4) {
+               printf("Usage: lseek <fd> <offset> <whence>\n...where whence is 1 => SEEK_SET, 2 => SEEK_CUR, 3 => SEEK_END\n");
+               return NT_STATUS_OK;
+       }
+
+       fd = atoi(argv[1]);
+       offset = atoi(argv[2]);
+       whence = atoi(argv[3]);
+       switch (whence) {
+               case 1:         whence = SEEK_SET; break;
+               case 2:         whence = SEEK_CUR; break;
+               default:        whence = SEEK_END;
+       }
+
+       pos = vfs->conn->vfs_ops.lseek(vfs->files[fd], fd, offset, whence);
+       if (pos == (SMB_OFF_T)-1) {
+               printf("lseek: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("lseek: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_rename(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int ret;
+       if (argc != 3) {
+               printf("Usage: rename <old> <new>\n");
+               return NT_STATUS_OK;
+       }
+
+       ret = vfs->conn->vfs_ops.rename(vfs->conn, argv[1], argv[2]);
+       if (ret == -1) {
+               printf("rename: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("rename: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_fsync(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int ret, fd;
+       if (argc != 2) {
+               printf("Usage: fsync <fd>\n");
+               return NT_STATUS_OK;
+       }
+
+       fd = atoi(argv[1]);
+       ret = vfs->conn->vfs_ops.fsync(vfs->files[fd], fd);
+       if (ret == -1) {
+               printf("fsync: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("fsync: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_stat(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int ret;
+       char *user;
+       char *group;
+       struct passwd *pwd;
+       struct group *grp;
+       SMB_STRUCT_STAT st;
+
+       if (argc != 2) {
+               printf("Usage: stat <fname>\n");
+               return NT_STATUS_OK;
+       }
+
+       ret = vfs->conn->vfs_ops.stat(vfs->conn, argv[1], &st);
+       if (ret == -1) {
+               printf("stat: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       pwd = sys_getpwuid(st.st_uid);
+       if (pwd != NULL) user = strdup(pwd->pw_name);
+       else user = null_string;
+       grp = sys_getgrgid(st.st_gid);
+       if (grp != NULL) group = strdup(grp->gr_name);
+       else group = null_string;
+
+       printf("stat: ok\n");
+       printf("  File: %s", argv[1]);
+       if (S_ISREG(st.st_mode)) printf("  Regular File\n");
+       else if (S_ISDIR(st.st_mode)) printf("  Directory\n");
+       else if (S_ISCHR(st.st_mode)) printf("  Character Device\n");
+       else if (S_ISBLK(st.st_mode)) printf("  Block Device\n");
+       else if (S_ISFIFO(st.st_mode)) printf("  Fifo\n");
+       else if (S_ISLNK(st.st_mode)) printf("  Symbolic Link\n");
+       else if (S_ISSOCK(st.st_mode)) printf("  Socket\n");
+       printf("  Size: %10d", st.st_size);
+       printf(" Blocks: %9d", st.st_blocks);
+       printf(" IO Block: %d\n", st.st_blksize);
+       printf("  Device: 0x%.10x", st.st_dev);
+       printf(" Inode: %10d", st.st_ino);
+       printf(" Links: %10d\n", st.st_nlink);
+       printf("  Access: %05d     ", (st.st_mode) & 0x7fff);
+       printf(" Uid: %5d/%.16s Gid: %5d/%.16s\n", st.st_uid, user, st.st_gid, group);
+       printf("  Access: %s", ctime(&(st.st_atime)));
+       printf("  Modify: %s", ctime(&(st.st_mtime)));
+       printf("  Change: %s", ctime(&(st.st_ctime)));
+       if (user != null_string) SAFE_FREE(user);
+       if (group!= null_string) SAFE_FREE(group);
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_fstat(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int fd;
+       char *user;
+       char *group;
+       struct passwd *pwd;
+       struct group *grp;
+       SMB_STRUCT_STAT st;
+
+       if (argc != 2) {
+               printf("Usage: fstat <fd>\n");
+               return NT_STATUS_OK;
+       }
+
+       fd = atoi(argv[1]);
+       if (fd < 0 || fd > 1024) {
+               printf("fstat: error=%d (file descriptor out of range)\n", EBADF);
+               return NT_STATUS_OK;
+       }
+
+       if (vfs->files[fd] == NULL) {
+               printf("fstat: error=%d (invalid file descriptor)\n", EBADF);
+               return NT_STATUS_OK;
+       }
+
+       if (vfs->conn->vfs_ops.fstat(vfs->files[fd], fd, &st) == -1) {
+               printf("fstat: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       pwd = sys_getpwuid(st.st_uid);
+       if (pwd != NULL) user = strdup(pwd->pw_name);
+       else user = null_string;
+       grp = sys_getgrgid(st.st_gid);
+       if (grp != NULL) group = strdup(grp->gr_name);
+       else group = null_string;
+
+       printf("fstat: ok\n");
+       if (S_ISREG(st.st_mode)) printf("  Regular File\n");
+       else if (S_ISDIR(st.st_mode)) printf("  Directory\n");
+       else if (S_ISCHR(st.st_mode)) printf("  Character Device\n");
+       else if (S_ISBLK(st.st_mode)) printf("  Block Device\n");
+       else if (S_ISFIFO(st.st_mode)) printf("  Fifo\n");
+       else if (S_ISLNK(st.st_mode)) printf("  Symbolic Link\n");
+       else if (S_ISSOCK(st.st_mode)) printf("  Socket\n");
+       printf("  Size: %10d", st.st_size);
+       printf(" Blocks: %9d", st.st_blocks);
+       printf(" IO Block: %d\n", st.st_blksize);
+       printf("  Device: 0x%10x", st.st_dev);
+       printf(" Inode: %10d", st.st_ino);
+       printf(" Links: %10d\n", st.st_nlink);
+       printf("  Access: %05d     ", (st.st_mode) & 0x7fff);
+       printf(" Uid: %5d/%.16s Gid: %5d/%.16s\n", st.st_uid, user, st.st_gid, group);
+       printf("  Access: %s", ctime(&(st.st_atime)));
+       printf("  Modify: %s", ctime(&(st.st_mtime)));
+       printf("  Change: %s", ctime(&(st.st_ctime)));
+       if (user != null_string) SAFE_FREE(user);
+       if (group!= null_string) SAFE_FREE(group);
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_lstat(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       char *user;
+       char *group;
+       struct passwd *pwd;
+       struct group *grp;
+       SMB_STRUCT_STAT st;
+
+       if (argc != 2) {
+               printf("Usage: lstat <path>\n");
+               return NT_STATUS_OK;
+       }
+
+       if (vfs->conn->vfs_ops.lstat(vfs->conn, argv[1], &st) == -1) {
+               printf("lstat: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       pwd = sys_getpwuid(st.st_uid);
+       if (pwd != NULL) user = strdup(pwd->pw_name);
+       else user = null_string;
+       grp = sys_getgrgid(st.st_gid);
+       if (grp != NULL) group = strdup(grp->gr_name);
+       else group = null_string;
+
+       printf("lstat: ok\n");
+       if (S_ISREG(st.st_mode)) printf("  Regular File\n");
+       else if (S_ISDIR(st.st_mode)) printf("  Directory\n");
+       else if (S_ISCHR(st.st_mode)) printf("  Character Device\n");
+       else if (S_ISBLK(st.st_mode)) printf("  Block Device\n");
+       else if (S_ISFIFO(st.st_mode)) printf("  Fifo\n");
+       else if (S_ISLNK(st.st_mode)) printf("  Symbolic Link\n");
+       else if (S_ISSOCK(st.st_mode)) printf("  Socket\n");
+       printf("  Size: %10d", st.st_size);
+       printf(" Blocks: %9d", st.st_blocks);
+       printf(" IO Block: %d\n", st.st_blksize);
+       printf("  Device: 0x%10x", st.st_dev);
+       printf(" Inode: %10d", st.st_ino);
+       printf(" Links: %10d\n", st.st_nlink);
+       printf("  Access: %05d     ", (st.st_mode) & 0x7fff);
+       printf(" Uid: %5d/%.16s Gid: %5d/%.16s\n", st.st_uid, user, st.st_gid, group);
+       printf("  Access: %s", ctime(&(st.st_atime)));
+       printf("  Modify: %s", ctime(&(st.st_mtime)));
+       printf("  Change: %s", ctime(&(st.st_ctime)));
+       if (user != null_string) SAFE_FREE(user);
+       if (group!= null_string) SAFE_FREE(group);
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_chmod(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       mode_t mode;
+       if (argc != 3) {
+               printf("Usage: chmod <path> <mode>\n");
+               return NT_STATUS_OK;
+       }
+
+       mode = atoi(argv[2]);
+       if (vfs->conn->vfs_ops.chmod(vfs->conn, argv[1], mode) == -1) {
+               printf("chmod: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("chmod: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_fchmod(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int fd;
+       mode_t mode;
+       if (argc != 3) {
+               printf("Usage: fchmod <fd> <mode>\n");
+               return NT_STATUS_OK;
+       }
+
+       fd = atoi(argv[1]);
+       mode = atoi(argv[2]);
+       if (fd < 0 || fd > 1024) {
+               printf("fchmod: error=%d (file descriptor out of range)\n", EBADF);
+               return NT_STATUS_OK;
+       }
+       if (vfs->files[fd] == NULL) {
+               printf("fchmod: error=%d (invalid file descriptor)\n", EBADF);
+               return NT_STATUS_OK;
+       }
+
+       if (vfs->conn->vfs_ops.fchmod(vfs->files[fd], fd, mode) == -1) {
+               printf("fchmod: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("fchmod: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_chown(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       uid_t uid;
+       gid_t gid;
+       if (argc != 4) {
+               printf("Usage: chown <path> <uid> <gid>\n");
+               return NT_STATUS_OK;
+       }
+
+       uid = atoi(argv[2]);
+       gid = atoi(argv[3]);
+       if (vfs->conn->vfs_ops.chown(vfs->conn, argv[1], uid, gid) == -1) {
+               printf("chown: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("chown: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_fchown(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       uid_t uid;
+       gid_t gid;
+       int fd;
+       if (argc != 4) {
+               printf("Usage: fchown <fd> <uid> <gid>\n");
+               return NT_STATUS_OK;
+       }
+
+       uid = atoi(argv[2]);
+       gid = atoi(argv[3]);
+       fd = atoi(argv[1]);
+       if (fd < 0 || fd > 1024) {
+               printf("fchown: faliure=%d (file descriptor out of range)\n", EBADF);
+               return NT_STATUS_OK;
+       }
+       if (vfs->files[fd] == NULL) {
+               printf("fchown: error=%d (invalid file descriptor)\n", EBADF);
+               return NT_STATUS_OK;
+       }
+       if (vfs->conn->vfs_ops.fchown(vfs->files[fd], fd, uid, gid) == -1) {
+               printf("fchown error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("fchown: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_getwd(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       char buf[PATH_MAX];
+       if (vfs->conn->vfs_ops.getwd(vfs->conn, buf) == NULL) {
+               printf("getwd: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("getwd: %s\n", buf);
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_utime(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       struct utimbuf times;
+       if (argc != 4) {
+               printf("Usage: utime <path> <access> <modify>\n");
+               return NT_STATUS_OK;
+       }
+       times.actime = atoi(argv[2]);
+       times.modtime = atoi(argv[3]);
+       if (vfs->conn->vfs_ops.utime(vfs->conn, argv[1], &times) != 0) {
+               printf("utime: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("utime: ok\n");
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_ftruncate(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       int fd;
+       SMB_OFF_T off;
+       if (argc != 3) {
+               printf("Usage: ftruncate <fd> <length>\n");
+               return NT_STATUS_OK;
+       }
+
+       fd = atoi(argv[1]);
+       off = atoi(argv[2]);
+       if (fd < 0 || fd > 1024) {
+               printf("ftruncate: error=%d (file descriptor out of range)\n", EBADF);
+               return NT_STATUS_OK;
+       }
+       if (vfs->files[fd] == NULL) {
+               printf("ftruncate: error=%d (invalid file descriptor)\n", EBADF);
+               return NT_STATUS_OK;
+       }
+
+       if (vfs->conn->vfs_ops.ftruncate(vfs->files[fd], fd, off) == -1) {
+               printf("ftruncate: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("ftruncate: ok\n");
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_lock(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       printf("lock: Not yet implemented!\n");
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_symlink(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       if (argc != 3) {
+               printf("Usage: symlink <path> <link>\n");
+               return NT_STATUS_OK;
+       }
+
+       if (vfs->conn->vfs_ops.symlink(vfs->conn, argv[1], argv[2]) == -1) {
+               printf("symlink: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("symlink: ok\n");
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_readlink(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       char buffer[PATH_MAX];
+       int size;
+
+       if (argc != 2) {
+               printf("Usage: readlink <path>\n");
+               return NT_STATUS_OK;
+       }
+
+       if ((size = vfs->conn->vfs_ops.readlink(vfs->conn, argv[1], buffer, PATH_MAX)) == -1) {
+               printf("readlink: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       buffer[size] = '\0';
+       printf("readlink: %s\n", buffer);
+       return NT_STATUS_OK;
+}
+
+
+static NTSTATUS cmd_link(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       if (argc != 3) {
+               printf("Usage: link <path> <link>\n");
+               return NT_STATUS_OK;
+       }
+
+       if (vfs->conn->vfs_ops.link(vfs->conn, argv[1], argv[2]) == -1) {
+               printf("link: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("link: ok\n");
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_mknod(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       printf("lock: Not yet implemented!\n");
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_realpath(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       char respath[PATH_MAX];
+       
+       if (argc != 2) {
+               printf("Usage: realpath <path>\n");
+               return NT_STATUS_OK;
+       }
+
+       if (vfs->conn->vfs_ops.realpath(vfs->conn, argv[1], respath) == NULL) {
+               printf("realpath: error=%d (%s)\n", errno, strerror(errno));
+               return NT_STATUS_UNSUCCESSFUL;
+       }
+
+       printf("realpath: ok\n");
+       return NT_STATUS_OK;
+}
+
+struct cmd_set vfs_commands[] = {
+
+       { "VFS Commands" },
+
+       { "load", cmd_load_module, "Load a module", "load <module.so>" },
+       { "populate", cmd_populate, "Populate a data buffer", "populate <char> <size>" },
+       { "showdata", cmd_show_data, "Show data currently in data buffer", "show_data [<offset> <len>]"},
+       { "connect",   cmd_connect,   "VFS connect()",    "connect" },
+       { "disconnect",   cmd_disconnect,   "VFS disconnect()",    "disconnect" },
+       { "disk_free",   cmd_disk_free,   "VFS disk_free()",    "disk_free <path>" },
+       { "opendir",   cmd_opendir,   "VFS opendir()",    "opendir <fname>" },
+       { "readdir",   cmd_readdir,   "VFS readdir()",    "readdir" },
+       { "mkdir",   cmd_mkdir,   "VFS mkdir()",    "mkdir <path>" },
+       { "rmdir",   cmd_pathfunc,   "VFS rmdir()",    "rmdir <path>" },
+       { "closedir",   cmd_closedir,   "VFS closedir()",    "closedir" },
+       { "open",   cmd_open,   "VFS open()",    "open <fname>" },
+       { "close",   cmd_close,   "VFS close()",    "close <fd>" },
+       { "read",   cmd_read,   "VFS read()",    "read <fd> <size>" },
+       { "write",   cmd_write,   "VFS write()",    "write <fd> <size>" },
+       { "lseek",   cmd_lseek,   "VFS lseek()",    "lseek <fd> <offset> <whence>" },
+       { "rename",   cmd_rename,   "VFS rename()",    "rename <old> <new>" },
+       { "fsync",   cmd_fsync,   "VFS fsync()",    "fsync <fd>" },
+       { "stat",   cmd_stat,   "VFS stat()",    "stat <fname>" },
+       { "fstat",   cmd_fstat,   "VFS fstat()",    "fstat <fd>" },
+       { "lstat",   cmd_lstat,   "VFS lstat()",    "lstat <fname>" },
+       { "unlink",   cmd_pathfunc,   "VFS unlink()",    "unlink <fname>" },
+       { "chmod",   cmd_chmod,   "VFS chmod()",    "chmod <path> <mode>" },
+       { "fchmod",   cmd_fchmod,   "VFS fchmod()",    "fchmod <fd> <mode>" },
+       { "chown",   cmd_chown,   "VFS chown()",    "chown <path> <uid> <gid>" },
+       { "fchown",   cmd_fchown,   "VFS fchown()",    "fchown <fd> <uid> <gid>" },
+       { "chdir",   cmd_pathfunc,   "VFS chdir()",    "chdir <path>" },
+       { "getwd",   cmd_getwd,   "VFS getwd()",    "getwd" },
+       { "utime",   cmd_utime,   "VFS utime()",    "utime <path> <access> <modify>" },
+       { "ftruncate",   cmd_ftruncate,   "VFS ftruncate()",    "ftruncate <fd> <length>" },
+       { "lock",   cmd_lock,   "VFS lock()",    "lock: Not yet implemented!" },
+       { "symlink",   cmd_symlink,   "VFS symlink()",    "symlink <old> <new>" },
+       { "readlink",   cmd_readlink,   "VFS readlink()",    "readlink <path>" },
+       { "link",   cmd_link,   "VFS link()",    "link <oldpath> <newpath>" },
+       { "mknod",   cmd_mknod,   "VFS mknod()",    "mknod: Not yet implemented!" },
+       { "realpath",   cmd_realpath,   "VFS realpath()",    "realpath <path>" },
+       { NULL }
+};
diff --git a/source3/torture/vfstest.c b/source3/torture/vfstest.c
new file mode 100644 (file)
index 0000000..18d4514
--- /dev/null
@@ -0,0 +1,551 @@
+/* 
+   Unix SMB/CIFS implementation.
+   VFS module tester
+
+   Copyright (C) Simo Sorce 2002
+   Copyright (C) Eric Lorimer 2002
+
+   Most of this code was ripped off of rpcclient.
+   Copyright (C) Tim Potter 2000-2001
+
+   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 "vfstest.h"
+
+/* List to hold groups of commands */
+static struct cmd_list {
+       struct cmd_list *prev, *next;
+       struct cmd_set *cmd_set;
+} *cmd_list;
+
+TALLOC_CTX *global_ctx;
+
+/****************************************************************************
+handle completion of commands for readline
+****************************************************************************/
+static char **completion_fn(char *text, int start, int end)
+{
+#define MAX_COMPLETIONS 100
+       char **matches;
+       int i, count=0;
+       struct cmd_list *commands = cmd_list;
+
+#if 0  /* JERRY */
+       /* FIXME!!!  -- what to do when completing argument? */
+       /* for words not at the start of the line fallback 
+          to filename completion */
+       if (start) 
+               return NULL;
+#endif
+
+       /* make sure we have a list of valid commands */
+       if (!commands) 
+               return NULL;
+
+       matches = (char **)malloc(sizeof(matches[0])*MAX_COMPLETIONS);
+       if (!matches) return NULL;
+
+       matches[count++] = strdup(text);
+       if (!matches[0]) return NULL;
+
+       while (commands && count < MAX_COMPLETIONS-1) 
+       {
+               if (!commands->cmd_set)
+                       break;
+               
+               for (i=0; commands->cmd_set[i].name; i++)
+               {
+                       if ((strncmp(text, commands->cmd_set[i].name, strlen(text)) == 0) &&
+                               commands->cmd_set[i].fn) 
+                       {
+                               matches[count] = strdup(commands->cmd_set[i].name);
+                               if (!matches[count]) 
+                                       return NULL;
+                               count++;
+                       }
+               }
+               
+               commands = commands->next;
+               
+       }
+
+       if (count == 2) {
+               SAFE_FREE(matches[0]);
+               matches[0] = strdup(matches[1]);
+       }
+       matches[count] = NULL;
+       return matches;
+}
+
+static char* next_command (char** cmdstr)
+{
+       static pstring          command;
+       char                    *p;
+       
+       if (!cmdstr || !(*cmdstr))
+               return NULL;
+       
+       p = strchr_m(*cmdstr, ';');
+       if (p)
+               *p = '\0';
+       pstrcpy(command, *cmdstr);
+       *cmdstr = p;
+       
+       return command;
+}
+
+
+/* Display help on commands */
+static NTSTATUS cmd_help(struct vfs_state *vfs, TALLOC_CTX *mem_ctx,
+                        int argc, char **argv)
+{
+       struct cmd_list *tmp;
+       struct cmd_set *tmp_set;
+
+       /* Usage */
+       if (argc > 2) {
+               printf("Usage: %s [command]\n", argv[0]);
+               return NT_STATUS_OK;
+       }
+
+       /* Help on one command */
+
+       if (argc == 2) {
+               for (tmp = cmd_list; tmp; tmp = tmp->next) {
+                       
+                       tmp_set = tmp->cmd_set;
+
+                       while(tmp_set->name) {
+                               if (strequal(argv[1], tmp_set->name)) {
+                                       if (tmp_set->usage &&
+                                           tmp_set->usage[0])
+                                               printf("%s\n", tmp_set->usage);
+                                       else
+                                               printf("No help for %s\n", tmp_set->name);
+
+                                       return NT_STATUS_OK;
+                               }
+
+                               tmp_set++;
+                       }
+               }
+
+               printf("No such command: %s\n", argv[1]);
+               return NT_STATUS_OK;
+       }
+
+       /* List all commands */
+
+       for (tmp = cmd_list; tmp; tmp = tmp->next) {
+
+               tmp_set = tmp->cmd_set;
+
+               while(tmp_set->name) {
+
+                       printf("%15s\t\t%s\n", tmp_set->name,
+                              tmp_set->description ? tmp_set->description:
+                              "");
+
+                       tmp_set++;
+               }
+       }
+
+       return NT_STATUS_OK;
+}
+
+/* Change the debug level */
+static NTSTATUS cmd_debuglevel(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       if (argc > 2) {
+               printf("Usage: %s [debuglevel]\n", argv[0]);
+               return NT_STATUS_OK;
+       }
+
+       if (argc == 2) {
+               DEBUGLEVEL = atoi(argv[1]);
+       }
+
+       printf("debuglevel is %d\n", DEBUGLEVEL);
+
+       return NT_STATUS_OK;
+}
+
+static NTSTATUS cmd_freemem(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       /* Cleanup */
+       talloc_destroy(global_ctx);
+       global_ctx = NULL;
+       vfs->data = NULL;
+       vfs->data_size = NULL;
+}
+
+static NTSTATUS cmd_quit(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, char **argv)
+{
+       /* Cleanup */
+       talloc_destroy(global_ctx);
+
+       exit(0);
+       return NT_STATUS_OK; /* NOTREACHED */
+}
+
+static struct cmd_set vfstest_commands[] = {
+
+       { "GENERAL OPTIONS" },
+
+       { "help",       cmd_help,       "Get help on commands", "[command]" },
+       { "?",          cmd_help,       "Get help on commands", "[command]" },
+       { "debuglevel", cmd_debuglevel, "Set debug level", "level" },
+       { "freemem",    cmd_freemem,    "Free currently allocated buffers", "freemem" },
+       { "exit",       cmd_quit,       "Exit program", "" },
+       { "quit",       cmd_quit,       "Exit program", "" },
+
+       { NULL }
+};
+
+static struct cmd_set separator_command[] = {
+       { "---------------", NULL,      "----------------------" },
+       { NULL }
+};
+
+
+extern struct cmd_set vfs_commands[];
+static struct cmd_set *vfstest_command_list[] = {
+       vfstest_commands,
+       vfs_commands,
+       NULL
+};
+
+static void add_command_set(struct cmd_set *cmd_set)
+{
+       struct cmd_list *entry;
+
+       if (!(entry = (struct cmd_list *)malloc(sizeof(struct cmd_list)))) {
+               DEBUG(0, ("out of memory\n"));
+               return;
+       }
+
+       ZERO_STRUCTP(entry);
+
+       entry->cmd_set = cmd_set;
+       DLIST_ADD(cmd_list, entry);
+}
+
+static NTSTATUS do_cmd(struct vfs_state *vfs, struct cmd_set *cmd_entry, char *cmd)
+{
+       char *p = cmd, **argv = NULL;
+       NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
+       pstring buf;
+       int argc = 0, i;
+
+       /* Count number of arguments first time through the loop then
+          allocate memory and strdup them. */
+
+ again:
+       while(next_token(&p, buf, " ", sizeof(buf))) {
+               if (argv) {
+                       argv[argc] = strdup(buf);
+               }
+               
+               argc++;
+       }
+                               
+       if (!argv) {
+
+               /* Create argument list */
+
+               argv = (char **)malloc(sizeof(char *) * argc);
+               memset(argv, 0, sizeof(char *) * argc);
+
+               if (!argv) {
+                       fprintf(stderr, "out of memory\n");
+                       result = NT_STATUS_NO_MEMORY;
+                       goto done;
+               }
+                                       
+               p = cmd;
+               argc = 0;
+                                       
+               goto again;
+       }
+
+       /* Call the function */
+
+       if (cmd_entry->fn) {
+
+               if (global_ctx == NULL) {
+                       /* Create mem_ctx */
+                       if (!(global_ctx = talloc_init())) {
+                               DEBUG(0, ("talloc_init() failed\n"));
+                               goto done;
+                       }
+               }
+
+               /* Run command */
+               result = cmd_entry->fn(vfs, global_ctx, argc, argv);
+
+       } else {
+               fprintf (stderr, "Invalid command\n");
+               goto done;
+       }
+
+ done:
+                                               
+       /* Cleanup */
+
+       if (argv) {
+               for (i = 0; i < argc; i++)
+                       SAFE_FREE(argv[i]);
+       
+               SAFE_FREE(argv);
+       }
+       
+       return result;
+}
+
+/* Process a command entered at the prompt or as part of -c */
+static NTSTATUS process_cmd(struct vfs_state *vfs, char *cmd)
+{
+       struct cmd_list *temp_list;
+       BOOL found = False;
+       pstring buf;
+       char *p = cmd;
+       NTSTATUS result = NT_STATUS_OK;
+       int len = 0;
+
+       if (cmd[strlen(cmd) - 1] == '\n')
+               cmd[strlen(cmd) - 1] = '\0';
+
+       if (!next_token(&p, buf, " ", sizeof(buf))) {
+               return NT_STATUS_OK;
+       }
+
+       /* strip the trainly \n if it exsists */
+       len = strlen(buf);
+       if (buf[len-1] == '\n')
+               buf[len-1] = '\0';
+
+       /* Search for matching commands */
+
+       for (temp_list = cmd_list; temp_list; temp_list = temp_list->next) {
+               struct cmd_set *temp_set = temp_list->cmd_set;
+
+               while(temp_set->name) {
+                       if (strequal(buf, temp_set->name)) {
+                               found = True;
+                               result = do_cmd(vfs, temp_set, cmd);
+
+                               goto done;
+                       }
+                       temp_set++;
+               }
+       }
+
+ done:
+       if (!found && buf[0]) {
+               printf("command not found: %s\n", buf);
+               return NT_STATUS_OK;
+       }
+
+       if (!NT_STATUS_IS_OK(result)) {
+               printf("result was %s\n", nt_errstr(result));
+       }
+
+       return result;
+}
+
+void exit_server(char *reason)
+{
+       DEBUG(3,("Server exit (%s)\n", (reason ? reason : "")));
+       exit(0);
+}
+
+static int server_fd = -1;
+int last_message = -1;
+
+int smbd_server_fd(void)
+{
+               return server_fd;
+}
+
+BOOL reload_services(BOOL test)
+{
+       return True;
+}
+
+/* Print usage information */
+static void usage(void)
+{
+       printf("Usage: vfstest [options]\n");
+
+       printf("\t-c or --command \"command string\"   execute semicolon separated cmds\n");
+       printf("\t-d or --debug debuglevel         set the debuglevel\n");
+       printf("\t-l or --logfile logfile           logfile to use instead of stdout\n");
+       printf("\t-h or --help                 Print this help message.\n");
+       printf("\n");
+}
+
+/* Main function */
+
+int main(int argc, char *argv[])
+{
+       extern pstring          global_myname;
+       static int              got_pass = 0;
+       BOOL                    interactive = True;
+       int                     opt;
+       int                     olddebug;
+       static char             *cmdstr = "";
+       const char *server;
+       struct cli_state        *cli;
+       fstring                 password="",
+                               username="",
+                               domain="";
+       static char             *opt_authfile=NULL,
+                               *opt_username=NULL,
+                               *opt_domain=NULL,
+                               *opt_configfile=NULL,
+                               *opt_logfile=NULL;
+       static int              opt_debuglevel;
+       pstring                 logfile;
+       struct cmd_set          **cmd_set;
+       struct in_addr          server_ip;
+       NTSTATUS                nt_status;
+       extern BOOL             AllowDebugChange;
+       static struct vfs_state vfs;
+       int i;
+
+
+       /* make sure the vars that get altered (4th field) are in
+          a fixed location or certain compilers complain */
+       poptContext pc;
+       struct poptOption long_options[] = {
+/*             {"conf",        's', POPT_ARG_STRING,   &opt_configfile, 's'},*/
+               {"debug",       'd', POPT_ARG_INT,      &opt_debuglevel, 'd'},
+               {"debuglevel",  'd', POPT_ARG_INT,      &opt_debuglevel, 'd'},
+/*             {"user",        'U', POPT_ARG_STRING,   &opt_username, 'U'},*/
+               {"command",     'c', POPT_ARG_STRING,   &cmdstr},
+               {"logfile",     'l', POPT_ARG_STRING,   &opt_logfile, 'l'},
+               {"help",        'h', POPT_ARG_NONE,     0, 'h'},
+               { 0, 0, 0, 0}
+       };
+
+
+       setlinebuf(stdout);
+
+       DEBUGLEVEL = 1;
+       AllowDebugChange = False;
+
+       pc = poptGetContext("vfstest", argc, (const char **) argv,
+                           long_options, 0);
+       
+       while((opt = poptGetNextOpt(pc)) != -1) {
+               switch (opt) {
+               case 'l':
+                       slprintf(logfile, sizeof(logfile) - 1, "%s.client", 
+                                opt_logfile);
+                       lp_set_logfile(logfile);
+                       interactive = False;
+                       break;
+                       
+               case 'd':
+                       DEBUGLEVEL = opt_debuglevel;
+                       break;
+                       
+                       /*
+               case 'U': {
+                       char *lp;
+
+                       pstrcpy(username,opt_username);
+
+                       if ((lp=strchr_m(username,'%'))) {
+                               *lp = 0;
+                               pstrcpy(password,lp+1);
+                               got_pass = 1;
+                               memset(strchr_m(opt_username,'%') + 1, 'X',
+                                      strlen(password));
+                       }
+                       break;
+               }
+               */
+                       
+               case 'h':
+               default:
+                       usage();
+                       exit(1);
+               }
+       }
+
+
+       poptFreeContext(pc);
+
+       /* the following functions are part of the Samba debugging
+          facilities.  See lib/debug.c */
+       setup_logging("vfstest", interactive);
+       if (!interactive) 
+               reopen_logs();
+       
+       /* Load command lists */
+
+       cmd_set = vfstest_command_list;
+
+       while(*cmd_set) {
+               add_command_set(*cmd_set);
+               add_command_set(separator_command);
+               cmd_set++;
+       }
+
+       /* some basic initialization stuff */
+       vfs.conn = (struct connection_struct *)malloc(sizeof(struct connection_struct));
+       vfs.conn->user = "vfstest";
+       for (i=0; i < 1024; i++)
+               vfs.files[i] = NULL;
+
+       /* Do anything specified with -c */
+       if (cmdstr[0]) {
+               char    *cmd;
+               char    *p = cmdstr;
+               while((cmd=next_command(&p)) != NULL) {
+                       process_cmd(&vfs, cmd);
+               }
+               
+               return 0;
+       }
+
+       /* Initialize VFS */
+       vfs.conn->vfs_private = NULL;
+       smbd_vfs_init(vfs.conn);
+
+       /* Loop around accepting commands */
+
+       while(1) {
+               pstring prompt;
+               char *line;
+
+               slprintf(prompt, sizeof(prompt) - 1, "vfstest $> ");
+
+               line = smb_readline(prompt, NULL, completion_fn);
+
+               if (line == NULL)
+                       break;
+
+               if (line[0] != '\n')
+                       process_cmd(&vfs, line);
+       }
+       
+       free(vfs.conn);
+       return 0;
+}
diff --git a/source3/torture/vfstest.h b/source3/torture/vfstest.h
new file mode 100644 (file)
index 0000000..b086faa
--- /dev/null
@@ -0,0 +1,45 @@
+/* 
+   Unix SMB/CIFS implementation.
+   VFS module tester
+
+   Copyright (C) Simo Sorce 2002
+   Copyright (C) Eric Lorimer 2002
+
+   Most of this code was ripped off of rpcclient.
+   Copyright (C) Tim Potter 2000-2001
+
+   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.
+*/
+
+struct func_entry {
+       char *name;
+       int (*fn)(struct connection_struct *conn, const char *path);
+};
+
+struct vfs_state {
+       struct connection_struct *conn;
+       struct files_struct *files[1024];
+       DIR *currentdir;
+       void *data;
+       size_t data_size;
+};
+
+struct cmd_set {
+       char *name;
+       NTSTATUS (*fn)(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, 
+                       char **argv);
+       char *description;
+       char *usage;
+};