- add 'print' to the DCERPC binding strings
[samba.git] / source / torture / rpc / winreg.c
1 /* 
2    Unix SMB/CIFS implementation.
3    test suite for winreg rpc operations
4
5    Copyright (C) Tim Potter 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
24 static void init_winreg_String(struct winreg_String *name, const char *s)
25 {
26         name->name = s;
27         if (s) {
28                 name->name_len = 2 * (strlen_m(s) + 1);
29                 name->name_size = name->name_len;
30         } else {
31                 name->name_len = 0;
32                 name->name_size = 0;
33         }
34 }
35
36 static BOOL test_GetVersion(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 
37                             struct policy_handle *handle)
38 {
39         NTSTATUS status;
40         struct winreg_GetVersion r;
41
42         printf("\ntesting GetVersion\n");
43
44         r.in.handle = handle;
45
46         status = dcerpc_winreg_GetVersion(p, mem_ctx, &r);
47
48         if (!NT_STATUS_IS_OK(status)) {
49                 printf("GetVersion failed - %s\n", nt_errstr(status));
50                 return False;
51         }
52
53         return True;
54 }
55
56 static BOOL test_CloseKey(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 
57                           struct policy_handle *handle)
58 {
59         NTSTATUS status;
60         struct winreg_CloseKey r;
61
62         printf("\ntesting CloseKey\n");
63
64         r.in.handle = r.out.handle = handle;
65
66         status = dcerpc_winreg_CloseKey(p, mem_ctx, &r);
67
68         if (!NT_STATUS_IS_OK(status)) {
69                 printf("CloseKey failed - %s\n", nt_errstr(status));
70                 return False;
71         }
72
73         return True;
74 }
75
76 static BOOL test_FlushKey(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 
77                           struct policy_handle *handle)
78 {
79         NTSTATUS status;
80         struct winreg_FlushKey r;
81
82         printf("\ntesting FlushKey\n");
83
84         r.in.handle = handle;
85
86         status = dcerpc_winreg_FlushKey(p, mem_ctx, &r);
87
88         if (!NT_STATUS_IS_OK(status)) {
89                 printf("FlushKey failed - %s\n", nt_errstr(status));
90                 return False;
91         }
92
93         return True;
94 }
95
96 static BOOL test_OpenKey(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 
97                          struct policy_handle *hive_handle,
98                          char *keyname, struct policy_handle *key_handle)
99 {
100         NTSTATUS status;
101         struct winreg_OpenKey r;
102
103         printf("\ntesting OpenKey\n");
104
105         r.in.handle = hive_handle;
106         init_winreg_String(&r.in.keyname, keyname);
107         r.in.unknown = 0x00000000;
108         r.in.access_mask = 0x02000000;
109         r.out.handle = key_handle;
110
111         status = dcerpc_winreg_OpenKey(p, mem_ctx, &r);
112
113         if (!W_ERROR_IS_OK(r.out.result)) {
114                 printf("OpenKey failed - %s\n", win_errstr(r.out.result));
115                 return False;
116         }
117
118         return True;
119 }
120
121 static BOOL test_DeleteKey(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 
122                            struct policy_handle *handle, char *key)
123 {
124         NTSTATUS status;
125         struct winreg_DeleteKey r;
126
127         printf("\ntesting DeleteKey\n");
128
129         r.in.handle = handle;
130         init_winreg_String(&r.in.key, key);     
131
132         status = dcerpc_winreg_DeleteKey(p, mem_ctx, &r);
133
134         if (!NT_STATUS_IS_OK(status)) {
135                 printf("DeleteKey failed - %s\n", nt_errstr(status));
136                 return False;
137         }
138
139         return True;
140 }
141
142 static BOOL test_QueryInfoKey(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
143                               struct policy_handle *handle, char *class)
144 {
145         NTSTATUS status;
146         struct winreg_QueryInfoKey r;
147
148         printf("\ntesting QueryInfoKey\n");
149
150         r.in.handle = handle;
151         init_winreg_String(&r.in.class, class);
152         
153         status = dcerpc_winreg_QueryInfoKey(p, mem_ctx, &r);
154
155         if (!W_ERROR_IS_OK(r.out.result)) {
156                 printf("QueryInfoKey failed - %s\n", win_errstr(r.out.result));
157                 return False;
158         }
159
160         return True;
161 }
162
163 static BOOL test_key(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 
164                      struct policy_handle *handle, int depth);
165
166 static BOOL test_EnumKey(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 
167                          struct policy_handle *handle, int depth)
168 {
169         struct winreg_EnumKey r;
170         struct winreg_EnumKeyNameRequest keyname;
171         struct winreg_String classname;
172         struct winreg_Time tm;
173         NTSTATUS status;
174
175         r.in.handle = handle;
176         r.in.enum_index = 0;
177         r.in.key_name_len = r.out.key_name_len = 0;
178         r.in.unknown = r.out.unknown = 0x0414;
179         keyname.unknown = 0x0000020a;
180         init_winreg_String(&keyname.key_name, NULL);
181         init_winreg_String(&classname, NULL);
182         r.in.in_name = &keyname;
183         r.in.class = &classname;
184         tm.low = tm.high = 0x7fffffff;
185         r.in.last_changed_time = &tm;
186
187         do {
188                 status = dcerpc_winreg_EnumKey(p, mem_ctx, &r);
189
190                 if (NT_STATUS_IS_OK(status) && W_ERROR_IS_OK(r.out.result)) {
191                         struct policy_handle key_handle;
192
193                         if (!test_OpenKey(
194                                     p, mem_ctx, handle, r.out.out_name->name,
195                                     &key_handle)) {
196                                 printf("OpenKey(%s) failed - %s\n",
197                                        r.out.out_name->name, 
198                                        win_errstr(r.out.result));
199                                 goto next_key;
200                         }
201
202                         test_key(p, mem_ctx, &key_handle, depth + 1);
203                 }
204
205         next_key:
206
207                 r.in.enum_index++;
208
209         } while (W_ERROR_IS_OK(r.out.result));
210
211         return True;
212 }
213
214 static BOOL test_EnumValue(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 
215                            struct policy_handle *handle)
216 {
217         struct winreg_EnumValue r;
218         struct winreg_EnumValueName name;
219         struct winreg_Uint8buf value;
220         struct winreg_Uint16buf buf;
221         uint32 type, requested_len, returned_len;
222         NTSTATUS status;
223
224         r.in.handle = handle;
225         r.in.enum_index = 0;
226
227         buf.max_len = 0x7fff;
228         buf.offset = 0;
229         buf.len = 0;
230         buf.buffer = NULL;
231
232         name.len = 0;
233         name.max_len = buf.max_len * 2;
234         name.buf = &buf;
235
236         r.in.name = r.out.name = &name;
237         
238         type = 0;
239         r.in.type = &type;
240
241         value.max_len = 0xffff;
242         value.offset = 0;
243         value.len = 0;
244         value.buffer = NULL;
245
246         r.in.value = &value;
247
248         requested_len = value.max_len;
249         r.in.requested_len = &requested_len;
250         returned_len = 0;
251         r.in.returned_len = &returned_len;
252
253         do {
254
255                 status = dcerpc_winreg_EnumValue(p, mem_ctx, &r);
256                 r.in.enum_index++;
257         } while (W_ERROR_IS_OK(r.out.result));
258                         
259         return True;
260 }
261
262 static BOOL test_OpenHKLM(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
263                           struct policy_handle *handle)
264 {
265         NTSTATUS status;
266         struct winreg_OpenHKLM r;
267         struct winreg_OpenUnknown unknown;
268         BOOL ret = True;
269
270         printf("\ntesting OpenHKLM\n");
271
272         unknown.unknown0 = 0x84e0;
273         unknown.unknown1 = 0x0000;
274         r.in.unknown = &unknown;
275         r.in.access_required = SEC_RIGHTS_MAXIMUM_ALLOWED;
276         r.out.handle = handle;
277
278         status = dcerpc_winreg_OpenHKLM(p, mem_ctx, &r);
279
280         if (!NT_STATUS_IS_OK(status)) {
281                 printf("OpenHKLM failed - %s\n", nt_errstr(status));
282                 return False;
283         }
284
285         return ret;
286 }
287
288 static BOOL test_OpenHKU(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
289                          struct policy_handle *handle)
290 {
291         NTSTATUS status;
292         struct winreg_OpenHKU r;
293         struct winreg_OpenUnknown unknown;
294         BOOL ret = True;
295
296         printf("\ntesting OpenHKU\n");
297
298         unknown.unknown0 = 0x84e0;
299         unknown.unknown1 = 0x0000;
300         r.in.unknown = &unknown;
301         r.in.access_required = SEC_RIGHTS_MAXIMUM_ALLOWED;
302         r.out.handle = handle;
303
304         status = dcerpc_winreg_OpenHKU(p, mem_ctx, &r);
305
306         if (!NT_STATUS_IS_OK(status)) {
307                 printf("OpenHKU failed - %s\n", nt_errstr(status));
308                 return False;
309         }
310
311         return ret;
312 }
313
314 static BOOL test_OpenHKCR(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
315                           struct policy_handle *handle)
316 {
317         NTSTATUS status;
318         struct winreg_OpenHKCR r;
319         struct winreg_OpenUnknown unknown;
320         BOOL ret = True;
321
322         printf("\ntesting OpenHKCR\n");
323
324         unknown.unknown0 = 0x84e0;
325         unknown.unknown1 = 0x0000;
326         r.in.unknown = &unknown;
327         r.in.access_required = SEC_RIGHTS_MAXIMUM_ALLOWED;
328         r.out.handle = handle;
329
330         status = dcerpc_winreg_OpenHKCR(p, mem_ctx, &r);
331
332         if (!NT_STATUS_IS_OK(status)) {
333                 printf("OpenHKCR failed - %s\n", nt_errstr(status));
334                 return False;
335         }
336
337         return ret;
338 }
339
340 static BOOL test_OpenHKCU(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
341                           struct policy_handle *handle)
342 {
343         NTSTATUS status;
344         struct winreg_OpenHKCU r;
345         struct winreg_OpenUnknown unknown;
346         BOOL ret = True;
347
348         printf("\ntesting OpenHKCU\n");
349
350         unknown.unknown0 = 0x84e0;
351         unknown.unknown1 = 0x0000;
352         r.in.unknown = &unknown;
353         r.in.access_required = SEC_RIGHTS_MAXIMUM_ALLOWED;
354         r.out.handle = handle;
355
356         status = dcerpc_winreg_OpenHKCU(p, mem_ctx, &r);
357
358         if (!NT_STATUS_IS_OK(status)) {
359                 printf("OpenHKCU failed - %s\n", nt_errstr(status));
360                 return False;
361         }
362
363         return ret;
364 }
365
366 #define MAX_DEPTH 2             /* Only go this far down the tree */
367
368 static BOOL test_key(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 
369                      struct policy_handle *handle, int depth)
370 {
371         if (depth == MAX_DEPTH)
372                 return True;
373
374         if (!test_QueryInfoKey(p, mem_ctx, handle, NULL)) {
375         }
376
377         if (!test_EnumKey(p, mem_ctx, handle, depth)) {
378         }
379
380         if (!test_EnumValue(p, mem_ctx, handle)) {
381         }
382
383         /* Enumerate values */
384
385         test_CloseKey(p, mem_ctx, handle);
386
387         return True;
388 }
389
390 typedef BOOL winreg_open_fn(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
391                             struct policy_handle *handle);
392
393 static BOOL test_Open(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, void *fn)
394 {
395         struct policy_handle handle;
396         winreg_open_fn *open_fn = (winreg_open_fn *)fn;
397
398         if (!open_fn(p, mem_ctx, &handle))
399                 return False;
400
401         if (!test_GetVersion(p, mem_ctx, &handle)) {
402                 printf("GetVersion failed\n");
403                 return False;
404         }
405
406         if (!test_FlushKey(p, mem_ctx, &handle)) {
407                 printf("FlushKey failed\n");
408                 return False;
409         }
410
411         if (!test_DeleteKey(p, mem_ctx, &handle, "spottyfoot")) {
412                 printf("DeleteKey failed\n");
413                 return False;
414         }
415
416         /* The HKCR hive has a very large fanout */
417
418         if (open_fn == test_OpenHKCR) 
419                 return test_key(p, mem_ctx, &handle, MAX_DEPTH - 1);
420
421         return test_key(p, mem_ctx, &handle, 0);
422 }
423
424 BOOL torture_rpc_winreg(int dummy)
425 {
426         NTSTATUS status;
427         struct dcerpc_pipe *p;
428         TALLOC_CTX *mem_ctx;
429         BOOL ret = True;
430         winreg_open_fn *open_fns[] = { test_OpenHKLM, test_OpenHKU,
431                                        test_OpenHKCR, test_OpenHKCU };
432         int i;
433
434         mem_ctx = talloc_init("torture_rpc_winreg");
435
436         status = torture_rpc_connection(&p, 
437                                         DCERPC_WINREG_NAME, 
438                                         DCERPC_WINREG_UUID, 
439                                         DCERPC_WINREG_VERSION);
440
441         if (!NT_STATUS_IS_OK(status)) {
442                 return False;
443         }
444
445         for (i = 0; i < ARRAY_SIZE(open_fns); i++) {
446                 if (!test_Open(p, mem_ctx, open_fns[i]))
447                         ret = False;
448         }
449
450         talloc_destroy(mem_ctx);
451
452         torture_rpc_close(p);
453
454         return ret;
455 }