51bf346a962e49e9287ed2ac00d2f0ed7d3a5431
[samba.git] / source4 / torture / rpc / dfs.c
1 /* 
2    Unix SMB/CIFS implementation.
3    test suite for rpc dfs operations
4
5    Copyright (C) Andrew Tridgell 2003
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23 #include "torture/torture.h"
24 #include "torture/rpc/rpc.h"
25 #include "librpc/gen_ndr/ndr_dfs_c.h"
26
27 static BOOL test_GetManagerVersion(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, enum dfs_ManagerVersion *version)
28 {
29         NTSTATUS status;
30         struct dfs_GetManagerVersion r;
31
32         r.out.version = version;
33
34         status = dcerpc_dfs_GetManagerVersion(p, mem_ctx, &r);
35         if (!NT_STATUS_IS_OK(status)) {
36                 printf("GetManagerVersion failed - %s\n", nt_errstr(status));
37                 return False;
38         }
39
40         return True;
41 }
42
43 static BOOL test_InfoLevel(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, uint16_t level,
44                            const char *root)
45 {
46         NTSTATUS status;
47         struct dfs_GetInfo r;
48         
49         r.in.path = root;
50         r.in.server = NULL;
51         r.in.share = NULL;
52         r.in.level = level;
53
54         printf("Testing GetInfo level %u on '%s'\n", level, root);
55
56         status = dcerpc_dfs_GetInfo(p, mem_ctx, &r);
57         if (!NT_STATUS_IS_OK(status)) {
58                 printf("Info failed - %s\n", nt_errstr(status));
59                 return False;
60         }
61
62         return True;
63 }
64
65 static BOOL test_Info(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, const char *root)
66 {
67         BOOL ret = True;
68         uint16_t levels[] = {1, 2, 3, 4, 100, 101, 102, 200, 300};
69         int i;
70         for (i=0;i<ARRAY_SIZE(levels);i++) {
71                 if (!test_InfoLevel(p, mem_ctx, levels[i], root)) {
72                         ret = False;
73                 }
74         }
75         return ret;
76 }
77
78 static BOOL test_EnumLevel(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, uint16_t level)
79 {
80         NTSTATUS status;
81         struct dfs_Enum r;
82         uint32_t total=0;
83         struct dfs_EnumStruct e;
84         struct dfs_Info1 s;
85         struct dfs_EnumArray1 e1;
86         BOOL ret = True;
87         
88         r.in.level = level;
89         r.in.bufsize = (uint32_t)-1;
90         r.in.total = &total;
91         r.in.info = &e;
92
93         e.level = r.in.level;
94         e.e.info1 = &e1;
95         e.e.info1->count = 0;
96         e.e.info1->s = &s;
97         s.path = NULL;
98         
99         status = dcerpc_dfs_Enum(p, mem_ctx, &r);
100         if (!NT_STATUS_IS_OK(status)) {
101                 printf("Enum failed - %s\n", nt_errstr(status));
102                 return False;
103         }
104
105         if (level == 1 && r.out.total) {
106                 int i;
107                 for (i=0;i<*r.out.total;i++) {
108                         const char *root = r.out.info->e.info1->s[i].path;
109                         if (!test_Info(p, mem_ctx, root)) {
110                                 ret = False;
111                         }
112                 }
113                 
114         }
115
116         return ret;
117 }
118
119
120 static BOOL test_Enum(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
121 {
122         BOOL ret = True;
123         uint16_t levels[] = {1, 2, 3, 4, 200, 300};
124         int i;
125         for (i=0;i<ARRAY_SIZE(levels);i++) {
126                 if (!test_EnumLevel(p, mem_ctx, levels[i])) {
127                         ret = False;
128                 }
129         }
130         return ret;
131 }
132
133 #if 0
134 static BOOL test_Add(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
135 {
136         NTSTATUS status;
137         struct dfs_Add add;
138         struct dfs_Remove rem;
139         
140         add.in.path = "\\\\win2003\\2nd root\\test";
141         add.in.server = "win2003";
142         add.in.share = "e$";
143         add.in.comment = "a test comment";
144         add.in.flags = 1;
145
146         status = dcerpc_dfs_Add(p, mem_ctx, &add);
147         if (!NT_STATUS_IS_OK(status)) {
148                 printf("Add failed - %s\n", nt_errstr(status));
149                 return False;
150         }
151
152         rem.in.path = add.in.path;
153         rem.in.server = add.in.server;
154         rem.in.share = add.in.share;
155         
156         status = dcerpc_dfs_Remove(p, mem_ctx, &rem);
157         if (!NT_STATUS_IS_OK(status)) {
158                 printf("Add failed - %s\n", nt_errstr(status));
159                 return False;
160         }
161
162         return True;
163 }
164 #endif
165
166 BOOL torture_rpc_dfs(struct torture_context *torture)
167 {
168         NTSTATUS status;
169         struct dcerpc_pipe *p;
170         TALLOC_CTX *mem_ctx;
171         BOOL ret = True;
172         enum dfs_ManagerVersion version;
173
174         mem_ctx = talloc_init("torture_rpc_dfs");
175
176         status = torture_rpc_connection(mem_ctx, 
177                                         &p, 
178                                         &dcerpc_table_netdfs);
179         if (!NT_STATUS_IS_OK(status)) {
180                 return False;
181         }
182
183         if (!test_GetManagerVersion(p, mem_ctx, &version)) {
184                 ret = False;
185         }
186
187 #if 0
188         if (!test_Add(p, mem_ctx)) {
189                 ret = False;
190         }
191 #endif
192
193         if (!test_Enum(p, mem_ctx)) {
194                 ret = False;
195         }
196
197         talloc_free(mem_ctx);
198
199         return ret;
200 }