r5037: got rid of all of the TALLOC_DEPRECATED stuff. My apologies for the
[ira/wip.git] / source4 / torture / rpc / dfs.c
1 /* 
2    Unix SMB/CIFS implementation.
3    test suite for lsa 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 "librpc/gen_ndr/ndr_dfs.h"
24
25
26 static BOOL test_GetManagerVersion(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
27 {
28         NTSTATUS status;
29         struct dfs_GetManagerVersion r;
30         uint32_t exist = 0;
31
32         r.out.exist_flag = ∃
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.unknown = &total;
92         r.in.info = &e;
93
94         e.level = r.in.level;
95         e.e.info1 = &e1;
96         e.e.info1->count = 0;
97         e.e.info1->s = &s;
98         s.path = NULL;
99         
100         status = dcerpc_dfs_Enum(p, mem_ctx, &r);
101         if (!NT_STATUS_IS_OK(status)) {
102                 printf("Enum failed - %s\n", nt_errstr(status));
103                 return False;
104         }
105
106         if (level == 1 && r.out.total) {
107                 int i;
108                 for (i=0;i<*r.out.total;i++) {
109                         const char *root = r.out.info->e.info1->s[i].path;
110                         if (!test_Info(p, mem_ctx, root)) {
111                                 ret = False;
112                         }
113                 }
114                 
115         }
116
117         return ret;
118 }
119
120
121 static BOOL test_Enum(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
122 {
123         BOOL ret = True;
124         uint16_t levels[] = {1, 2, 3, 4, 200, 300};
125         int i;
126         for (i=0;i<ARRAY_SIZE(levels);i++) {
127                 if (!test_EnumLevel(p, mem_ctx, levels[i])) {
128                         ret = False;
129                 }
130         }
131         return ret;
132 }
133
134 #if 0
135 static BOOL test_Add(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
136 {
137         NTSTATUS status;
138         struct dfs_Add add;
139         struct dfs_Remove rem;
140         
141         add.in.path = "\\\\win2003\\2nd root\\test";
142         add.in.server = "win2003";
143         add.in.share = "e$";
144         add.in.comment = "a test comment";
145         add.in.flags = 1;
146
147         status = dcerpc_dfs_Add(p, mem_ctx, &add);
148         if (!NT_STATUS_IS_OK(status)) {
149                 printf("Add failed - %s\n", nt_errstr(status));
150                 return False;
151         }
152
153         rem.in.path = add.in.path;
154         rem.in.server = add.in.server;
155         rem.in.share = add.in.share;
156         
157         status = dcerpc_dfs_Remove(p, mem_ctx, &rem);
158         if (!NT_STATUS_IS_OK(status)) {
159                 printf("Add failed - %s\n", nt_errstr(status));
160                 return False;
161         }
162
163         return True;
164 }
165 #endif
166
167 BOOL torture_rpc_dfs(void)
168 {
169         NTSTATUS status;
170         struct dcerpc_pipe *p;
171         TALLOC_CTX *mem_ctx;
172         BOOL ret = True;
173
174         mem_ctx = talloc_init("torture_rpc_dfs");
175
176         status = torture_rpc_connection(&p, 
177                                         DCERPC_NETDFS_NAME,
178                                         DCERPC_NETDFS_UUID,
179                                         DCERPC_NETDFS_VERSION);
180         if (!NT_STATUS_IS_OK(status)) {
181                 return False;
182         }
183
184         if (!test_GetManagerVersion(p, mem_ctx)) {
185                 ret = False;
186         }
187
188 #if 0
189         if (!test_Add(p, mem_ctx)) {
190                 ret = False;
191         }
192 #endif
193
194         if (!test_Enum(p, mem_ctx)) {
195                 ret = False;
196         }
197
198         talloc_free(mem_ctx);
199
200         torture_rpc_close(p);
201
202         return ret;
203 }