diff options
author | Günther Deschner <gd@samba.org> | 2006-09-20 20:40:45 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:19:06 -0500 |
commit | 5915254bdf0858095b68a763209d083b102fb9d3 (patch) | |
tree | 7d9ec16399580cbc2173325bdb5b49f474f7fd7e /source4 | |
parent | fec00fd6f8f68bc9ebb96c4590fb8bed7d1930b5 (diff) | |
download | samba-5915254bdf0858095b68a763209d083b102fb9d3.tar.gz samba-5915254bdf0858095b68a763209d083b102fb9d3.tar.bz2 samba-5915254bdf0858095b68a763209d083b102fb9d3.zip |
r18741: test dfs_Enum and dfs_EnumEx in the torture test.
Guenther
(This used to be commit de5fe8350d7c5812d4197ad2712275f338e43243)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/rpc/dfs.c | 127 |
1 files changed, 104 insertions, 23 deletions
diff --git a/source4/torture/rpc/dfs.c b/source4/torture/rpc/dfs.c index 51bf346a96..3c6548881b 100644 --- a/source4/torture/rpc/dfs.c +++ b/source4/torture/rpc/dfs.c @@ -40,41 +40,106 @@ static BOOL test_GetManagerVersion(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, e return True; } -static BOOL test_InfoLevel(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, uint16_t level, - const char *root) +static BOOL test_GetInfoLevel(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, uint16_t level, + const char *root) { NTSTATUS status; struct dfs_GetInfo r; - - r.in.path = root; + + printf("Testing GetInfo level %u on '%s'\n", level, root); + + r.in.path = talloc_strdup(mem_ctx, root); r.in.server = NULL; r.in.share = NULL; r.in.level = level; - printf("Testing GetInfo level %u on '%s'\n", level, root); - status = dcerpc_dfs_GetInfo(p, mem_ctx, &r); if (!NT_STATUS_IS_OK(status)) { printf("Info failed - %s\n", nt_errstr(status)); return False; + } else if (!W_ERROR_IS_OK(r.out.result)) { + printf("GetInfo failed - %s\n", win_errstr(r.out.result)); + return False; } return True; } -static BOOL test_Info(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, const char *root) +static BOOL test_GetInfo(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, const char *root) { BOOL ret = True; - uint16_t levels[] = {1, 2, 3, 4, 100, 101, 102, 200, 300}; + /* 103, 104, 105, 106 is only available on Set */ + uint16_t levels[] = {1, 2, 3, 4, 5, 6, 7, 100, 101, 102, 103, 104, 105, 106, 200, 300}; int i; + for (i=0;i<ARRAY_SIZE(levels);i++) { - if (!test_InfoLevel(p, mem_ctx, levels[i], root)) { + if (!test_GetInfoLevel(p, mem_ctx, levels[i], root)) { ret = False; } } return ret; } +static BOOL test_EnumLevelEx(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, uint16_t level, const char *dfs_name) +{ + NTSTATUS status; + struct dfs_EnumEx rex; + uint32_t total=0; + struct dfs_EnumStruct e; + struct dfs_Info1 s; + struct dfs_EnumArray1 e1; + BOOL ret = True; + + rex.in.level = level; + rex.in.bufsize = (uint32_t)-1; + rex.in.total = &total; + rex.in.info = &e; + rex.in.dfs_name = dfs_name; + + e.level = rex.in.level; + e.e.info1 = &e1; + e.e.info1->count = 0; + e.e.info1->s = &s; + s.path = NULL; + + printf("Testing EnumEx level %u on '%s'\n", level, dfs_name); + + status = dcerpc_dfs_EnumEx(p, mem_ctx, &rex); + if (!NT_STATUS_IS_OK(status)) { + printf("EnumEx failed - %s\n", nt_errstr(status)); + return False; + } + + if (level == 1 && rex.out.total) { + int i; + for (i=0;i<*rex.out.total;i++) { + const char *root = talloc_strdup(mem_ctx, rex.out.info->e.info1->s[i].path); + if (!test_GetInfo(p, mem_ctx, root)) { + ret = False; + } + } + } + + if (level == 300 && rex.out.total) { + int i,k; + for (i=0;i<*rex.out.total;i++) { + uint16_t levels[] = {1, 2, 3, 4, 200}; /* 300 */ + const char *root = talloc_strdup(mem_ctx, rex.out.info->e.info300->s[i].dom_root); + for (k=0;k<ARRAY_SIZE(levels);k++) { + if (!test_EnumLevelEx(p, mem_ctx, levels[k], root)) { + ret = False; + } + } + if (!test_GetInfo(p, mem_ctx, root)) { + ret = False; + } + } + } + + return ret; +} + + static BOOL test_EnumLevel(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, uint16_t level) { NTSTATUS status; @@ -96,17 +161,22 @@ static BOOL test_EnumLevel(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, uint16_t e.e.info1->s = &s; s.path = NULL; + printf("Testing Enum level %u\n", level); + status = dcerpc_dfs_Enum(p, mem_ctx, &r); if (!NT_STATUS_IS_OK(status)) { printf("Enum failed - %s\n", nt_errstr(status)); return False; + } else if (!W_ERROR_IS_OK(r.out.result)) { + printf("dfs_Enum failed - %s\n", win_errstr(r.out.result)); + return False; } if (level == 1 && r.out.total) { int i; for (i=0;i<*r.out.total;i++) { const char *root = r.out.info->e.info1->s[i].path; - if (!test_Info(p, mem_ctx, root)) { + if (!test_GetInfo(p, mem_ctx, root)) { ret = False; } } @@ -122,11 +192,28 @@ static BOOL test_Enum(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) BOOL ret = True; uint16_t levels[] = {1, 2, 3, 4, 200, 300}; int i; + for (i=0;i<ARRAY_SIZE(levels);i++) { if (!test_EnumLevel(p, mem_ctx, levels[i])) { ret = False; } } + + return ret; +} + +static BOOL test_EnumEx(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, const char *host) +{ + BOOL ret = True; + uint16_t levels[] = {1, 2, 3, 4, 200, 300}; + int i; + + for (i=0;i<ARRAY_SIZE(levels);i++) { + if (!test_EnumLevelEx(p, mem_ctx, levels[i], host)) { + ret = False; + } + } + return ret; } @@ -165,11 +252,12 @@ static BOOL test_Add(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) BOOL torture_rpc_dfs(struct torture_context *torture) { - NTSTATUS status; - struct dcerpc_pipe *p; + NTSTATUS status; + struct dcerpc_pipe *p; TALLOC_CTX *mem_ctx; BOOL ret = True; enum dfs_ManagerVersion version; + const char *host = lp_parm_string(-1, "torture", "host"); mem_ctx = talloc_init("torture_rpc_dfs"); @@ -180,19 +268,12 @@ BOOL torture_rpc_dfs(struct torture_context *torture) return False; } - if (!test_GetManagerVersion(p, mem_ctx, &version)) { - ret = False; - } - + ret &= test_GetManagerVersion(p, mem_ctx, &version); #if 0 - if (!test_Add(p, mem_ctx)) { - ret = False; - } + ret &= test_Add(p, mem_ctx); #endif - - if (!test_Enum(p, mem_ctx)) { - ret = False; - } + ret &= test_Enum(p, mem_ctx); + ret &= test_EnumEx(p, mem_ctx, host); talloc_free(mem_ctx); |