The branch, master has been updated
       via  fe59119 s4-smbtorture: try FSCTL_FIND_FILES_BY_SID with random blob 
data in RAW-IOCTL.
      from  3b87e3e s4-repl: if we are an RODC don't set WRIT_REP in replication

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit fe59119e06d334a06052b4aac71679488f581383
Author: Günther Deschner <g...@samba.org>
Date:   Wed Sep 15 23:02:43 2010 +0200

    s4-smbtorture: try FSCTL_FIND_FILES_BY_SID with random blob data in 
RAW-IOCTL.
    
    Guenther

-----------------------------------------------------------------------

Summary of changes:
 source4/torture/raw/ioctl.c |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/torture/raw/ioctl.c b/source4/torture/raw/ioctl.c
index 87fbfaa..99dc039 100644
--- a/source4/torture/raw/ioctl.c
+++ b/source4/torture/raw/ioctl.c
@@ -98,6 +98,27 @@ static bool test_fsctl(struct smbcli_state *cli, TALLOC_CTX 
*mem_ctx)
                goto done;
        }
 
+       printf("Trying FSCTL_FIND_FILES_BY_SID\n");
+       nt.ioctl.level = RAW_IOCTL_NTIOCTL;
+       nt.ntioctl.in.function = FSCTL_FIND_FILES_BY_SID;
+       nt.ntioctl.in.file.fnum = fnum;
+       nt.ntioctl.in.fsctl = true;
+       nt.ntioctl.in.filter = 0;
+       nt.ntioctl.in.max_data = 0;
+       nt.ntioctl.in.blob = data_blob(NULL, 1024);
+       /* definitely not a sid... */
+       generate_random_buffer(nt.ntioctl.in.blob.data,
+                              nt.ntioctl.in.blob.length);
+       nt.ntioctl.in.blob.data[1] = 15+1;
+       status = smb_raw_ioctl(cli->tree, mem_ctx, &nt);
+       if (!NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER) &&
+           !NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) {
+               printf("Got unexpected error code: %s\n",
+                       nt_errstr(status));
+               ret = false;
+               goto done;
+       }
+
        printf("trying sparse file\n");
        nt.ioctl.level = RAW_IOCTL_NTIOCTL;
        nt.ntioctl.in.function = FSCTL_SET_SPARSE;


-- 
Samba Shared Repository

Reply via email to