summaryrefslogtreecommitdiff
path: root/source4/torture/raw
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-03-15 14:08:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:57:26 -0500
commitae92d63ce1c552ce71f1d4cd28ddfa12fab3cffc (patch)
tree3720be8ad8f2f4051c19c570cdf39d97577677f6 /source4/torture/raw
parent9eb691c4c5aa4435fe5ecb0a68fac07a567afa18 (diff)
downloadsamba-ae92d63ce1c552ce71f1d4cd28ddfa12fab3cffc.tar.gz
samba-ae92d63ce1c552ce71f1d4cd28ddfa12fab3cffc.tar.bz2
samba-ae92d63ce1c552ce71f1d4cd28ddfa12fab3cffc.zip
r14446: demonstrate the notifies on files are not allowed
metze (This used to be commit 74868726ae4fd8010c2e10d2f300b9725ca7ab33)
Diffstat (limited to 'source4/torture/raw')
-rw-r--r--source4/torture/raw/notify.c108
1 files changed, 92 insertions, 16 deletions
diff --git a/source4/torture/raw/notify.c b/source4/torture/raw/notify.c
index 9bbb0d78c1..b87f1bddac 100644
--- a/source4/torture/raw/notify.c
+++ b/source4/torture/raw/notify.c
@@ -52,30 +52,20 @@
/*
- basic testing of change notify
+ basic testing of change notify on directories
*/
-BOOL torture_raw_notify(void)
+static BOOL test_notify_dir(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
{
- struct smbcli_state *cli;
BOOL ret = True;
- TALLOC_CTX *mem_ctx;
NTSTATUS status;
union smb_notify notify;
union smb_open io;
int i, count, fnum, fnum2;
struct smbcli_request *req, *req2;
extern int torture_numops;
-
- if (!torture_open_connection(&cli)) {
- return False;
- }
-
- mem_ctx = talloc_init("torture_raw_notify");
-
- if (!torture_setup_dir(cli, BASEDIR)) {
- return False;
- }
+ printf("TESTING CHANGE NOTIFY ON DIRECTRIES\n");
+
/*
get a handle on the directory
*/
@@ -100,9 +90,10 @@ BOOL torture_raw_notify(void)
CHECK_STATUS(status, NT_STATUS_OK);
fnum2 = io.ntcreatex.out.file.fnum;
- /* ask for a change notify */
+ /* ask for a change notify,
+ on file or directory name changes */
notify.notify.in.buffer_size = 1000;
- notify.notify.in.completion_filter = 0x3;
+ notify.notify.in.completion_filter = FILE_NOTIFY_CHANGE_NAME;
notify.notify.in.file.fnum = fnum;
notify.notify.in.recursive = True;
@@ -239,6 +230,91 @@ BOOL torture_raw_notify(void)
done:
smb_raw_exit(cli->session);
+ return ret;
+}
+
+/*
+ basic testing of change notify on files
+*/
+static BOOL test_notify_file(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
+{
+ NTSTATUS status;
+ BOOL ret = True;
+ union smb_open io;
+ union smb_close cl;
+ union smb_notify notify;
+ struct smbcli_request *req;
+ int fnum;
+ const char *fname = BASEDIR "\\file.txt";
+
+ printf("TESTING CHANGE NOTIFY ON FILES\n");
+
+ io.generic.level = RAW_OPEN_NTCREATEX;
+ io.ntcreatex.in.root_fid = 0;
+ io.ntcreatex.in.flags = 0;
+ io.ntcreatex.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
+ io.ntcreatex.in.create_options = 0;
+ io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;
+ io.ntcreatex.in.share_access = NTCREATEX_SHARE_ACCESS_READ | NTCREATEX_SHARE_ACCESS_WRITE;
+ io.ntcreatex.in.alloc_size = 0;
+ io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;
+ io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;
+ io.ntcreatex.in.security_flags = 0;
+ io.ntcreatex.in.fname = fname;
+ status = smb_raw_open(cli->tree, mem_ctx, &io);
+ CHECK_STATUS(status, NT_STATUS_OK);
+ fnum = io.ntcreatex.out.file.fnum;
+
+ /* ask for a change notify,
+ on file or directory name changes */
+ notify.notify.in.file.fnum = fnum;
+ notify.notify.in.buffer_size = 1000;
+ notify.notify.in.completion_filter = FILE_NOTIFY_CHANGE_STREAM_NAME;
+ notify.notify.in.recursive = False;
+
+ printf("testing if notifies on file handles are invalid (should be)\n");
+
+ req = smb_raw_changenotify_send(cli->tree, &notify);
+ status = smb_raw_changenotify_recv(req, mem_ctx, &notify);
+ CHECK_STATUS(status, NT_STATUS_INVALID_PARAMETER);
+
+ cl.close.level = RAW_CLOSE_CLOSE;
+ cl.close.in.file.fnum = fnum;
+ cl.close.in.write_time = 0;
+ status = smb_raw_close(cli->tree, &cl);
+ CHECK_STATUS(status, NT_STATUS_OK);
+
+ status = smbcli_unlink(cli->tree, fname);
+ CHECK_STATUS(status, NT_STATUS_OK);
+
+done:
+ smb_raw_exit(cli->session);
+ return ret;
+}
+
+/*
+ basic testing of change notify
+*/
+BOOL torture_raw_notify(void)
+{
+ struct smbcli_state *cli;
+ BOOL ret = True;
+ TALLOC_CTX *mem_ctx;
+
+ if (!torture_open_connection(&cli)) {
+ return False;
+ }
+
+ mem_ctx = talloc_init("torture_raw_notify");
+
+ if (!torture_setup_dir(cli, BASEDIR)) {
+ return False;
+ }
+
+ ret &= test_notify_dir(cli, mem_ctx);
+ ret &= test_notify_file(cli, mem_ctx);
+
+ smb_raw_exit(cli->session);
smbcli_deltree(cli->tree, BASEDIR);
torture_close_connection(cli);
talloc_free(mem_ctx);