s4-loadparm: 2nd half of lp_ to lpcfg_ conversion
[samba.git] / source4 / torture / libnet / libnet_domain.c
1 /*
2    Unix SMB/CIFS implementation.
3    Test suite for libnet calls.
4
5    Copyright (C) Rafal Szczesniak 2006
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 3 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, see <http://www.gnu.org/licenses/>.
19 */
20
21
22 #include "includes.h"
23 #include "lib/cmdline/popt_common.h"
24 #include "libnet/libnet.h"
25 #include "librpc/gen_ndr/ndr_samr_c.h"
26 #include "librpc/gen_ndr/ndr_lsa_c.h"
27 #include "torture/rpc/torture_rpc.h"
28 #include "param/param.h"
29
30
31 static bool test_opendomain_samr(struct torture_context *tctx,
32                                  struct dcerpc_binding_handle *b, TALLOC_CTX *mem_ctx,
33                                  struct policy_handle *handle, struct lsa_String *domname,
34                                  uint32_t *access_mask, struct dom_sid **sid_p)
35 {
36         struct policy_handle h, domain_handle;
37         struct samr_Connect r1;
38         struct samr_LookupDomain r2;
39         struct dom_sid2 *sid = NULL;
40         struct samr_OpenDomain r3;
41
42         torture_comment(tctx, "connecting\n");
43
44         *access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
45
46         r1.in.system_name = 0;
47         r1.in.access_mask = *access_mask;
48         r1.out.connect_handle = &h;
49
50         torture_assert_ntstatus_ok(tctx,
51                 dcerpc_samr_Connect_r(b, mem_ctx, &r1),
52                 "Connect failed");
53         torture_assert_ntstatus_ok(tctx, r1.out.result,
54                 "Connect failed");
55
56         r2.in.connect_handle = &h;
57         r2.in.domain_name = domname;
58         r2.out.sid = &sid;
59
60         torture_comment(tctx, "domain lookup on %s\n", domname->string);
61
62         torture_assert_ntstatus_ok(tctx,
63                 dcerpc_samr_LookupDomain_r(b, mem_ctx, &r2),
64                 "LookupDomain failed");
65         torture_assert_ntstatus_ok(tctx, r2.out.result,
66                 "LookupDomain failed");
67
68         r3.in.connect_handle = &h;
69         r3.in.access_mask = *access_mask;
70         r3.in.sid = *sid_p = *r2.out.sid;
71         r3.out.domain_handle = &domain_handle;
72
73         torture_comment(tctx, "opening domain\n");
74
75         torture_assert_ntstatus_ok(tctx,
76                 dcerpc_samr_OpenDomain_r(b, mem_ctx, &r3),
77                 "OpenDomain failed");
78         torture_assert_ntstatus_ok(tctx, r3.out.result,
79                 "OpenDomain failed");
80
81         *handle = domain_handle;
82
83         return true;
84 }
85
86
87 static bool test_opendomain_lsa(struct torture_context *tctx,
88                                 struct dcerpc_binding_handle *b, TALLOC_CTX *mem_ctx,
89                                 struct policy_handle *handle, struct lsa_String *domname,
90                                 uint32_t *access_mask)
91 {
92         struct lsa_OpenPolicy2 open;
93         struct lsa_ObjectAttribute attr;
94         struct lsa_QosInfo qos;
95
96         *access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
97
98         ZERO_STRUCT(attr);
99         ZERO_STRUCT(qos);
100
101         qos.len                 = 0;
102         qos.impersonation_level = 2;
103         qos.context_mode        = 1;
104         qos.effective_only      = 0;
105
106         attr.sec_qos = &qos;
107
108         open.in.system_name = domname->string;
109         open.in.attr        = &attr;
110         open.in.access_mask = *access_mask;
111         open.out.handle     = handle;
112
113         torture_assert_ntstatus_ok(tctx,
114                 dcerpc_lsa_OpenPolicy2_r(b, mem_ctx, &open),
115                 "OpenPolicy2 failed");
116         torture_assert_ntstatus_ok(tctx, open.out.result,
117                 "OpenPolicy2 failed");
118
119         return true;
120 }
121
122 bool torture_domain_open_lsa(struct torture_context *torture)
123 {
124         NTSTATUS status;
125         bool ret = true;
126         struct libnet_context *ctx;
127         struct libnet_DomainOpen r;
128         struct lsa_Close lsa_close;
129         struct policy_handle h;
130         const char *domain_name;
131
132         /* we're accessing domain controller so the domain name should be
133            passed (it's going to be resolved to dc name and address) instead
134            of specific server name. */
135         domain_name = lpcfg_workgroup(torture->lp_ctx);
136
137         ctx = libnet_context_init(torture->ev, torture->lp_ctx);
138         if (ctx == NULL) {
139                 torture_comment(torture, "failed to create libnet context\n");
140                 return false;
141         }
142
143         ctx->cred = cmdline_credentials;
144
145         ZERO_STRUCT(r);
146         r.in.type = DOMAIN_LSA;
147         r.in.domain_name = domain_name;
148         r.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
149
150         status = libnet_DomainOpen(ctx, torture, &r);
151         if (!NT_STATUS_IS_OK(status)) {
152                 torture_comment(torture, "failed to open domain on lsa service: %s\n", nt_errstr(status));
153                 ret = false;
154                 goto done;
155         }
156
157         ZERO_STRUCT(lsa_close);
158         lsa_close.in.handle  = &ctx->lsa.handle;
159         lsa_close.out.handle = &h;
160
161         torture_assert_ntstatus_ok(torture,
162                 dcerpc_lsa_Close_r(ctx->lsa.pipe->binding_handle, ctx, &lsa_close),
163                 "failed to close domain on lsa service");
164         torture_assert_ntstatus_ok(torture, lsa_close.out.result,
165                 "failed to close domain on lsa service");
166
167 done:
168         talloc_free(ctx);
169         return ret;
170 }
171
172
173 bool torture_domain_close_lsa(struct torture_context *torture)
174 {
175         bool ret = true;
176         NTSTATUS status;
177         TALLOC_CTX *mem_ctx=NULL;
178         struct libnet_context *ctx;
179         struct lsa_String domain_name;
180         struct dcerpc_binding *binding;
181         uint32_t access_mask;
182         struct policy_handle h;
183         struct dcerpc_pipe *p;
184         struct libnet_DomainClose r;
185
186         status = torture_rpc_binding(torture, &binding);
187         if (!NT_STATUS_IS_OK(status)) {
188                 return false;
189         }
190
191         ctx = libnet_context_init(torture->ev, torture->lp_ctx);
192         if (ctx == NULL) {
193                 torture_comment(torture, "failed to create libnet context\n");
194                 ret = false;
195                 goto done;
196         }
197
198         ctx->cred = cmdline_credentials;
199
200         mem_ctx = talloc_init("torture_domain_close_lsa");
201         status = dcerpc_pipe_connect_b(mem_ctx, &p, binding, &ndr_table_lsarpc,
202                                      cmdline_credentials, torture->ev, torture->lp_ctx);
203         if (!NT_STATUS_IS_OK(status)) {
204                 torture_comment(torture, "failed to connect to server: %s\n", nt_errstr(status));
205                 ret = false;
206                 goto done;
207         }
208
209         domain_name.string = lpcfg_workgroup(torture->lp_ctx);
210
211         if (!test_opendomain_lsa(torture, p->binding_handle, torture, &h, &domain_name, &access_mask)) {
212                 torture_comment(torture, "failed to open domain on lsa service\n");
213                 ret = false;
214                 goto done;
215         }
216
217         ctx->lsa.pipe        = p;
218         ctx->lsa.name        = domain_name.string;
219         ctx->lsa.access_mask = access_mask;
220         ctx->lsa.handle      = h;
221         /* we have to use pipe's event context, otherwise the call will
222            hang indefinitely */
223         ctx->event_ctx       = p->conn->event_ctx;
224
225         ZERO_STRUCT(r);
226         r.in.type = DOMAIN_LSA;
227         r.in.domain_name = domain_name.string;
228
229         status = libnet_DomainClose(ctx, mem_ctx, &r);
230         if (!NT_STATUS_IS_OK(status)) {
231                 ret = false;
232                 goto done;
233         }
234
235 done:
236         talloc_free(mem_ctx);
237         talloc_free(ctx);
238         return ret;
239 }
240
241
242 bool torture_domain_open_samr(struct torture_context *torture)
243 {
244         NTSTATUS status;
245         struct libnet_context *ctx;
246         TALLOC_CTX *mem_ctx;
247         struct policy_handle domain_handle, handle;
248         struct libnet_DomainOpen io;
249         struct samr_Close r;
250         const char *domain_name;
251         bool ret = true;
252
253         mem_ctx = talloc_init("test_domainopen_lsa");
254
255         ctx = libnet_context_init(torture->ev, torture->lp_ctx);
256         ctx->cred = cmdline_credentials;
257
258         /* we're accessing domain controller so the domain name should be
259            passed (it's going to be resolved to dc name and address) instead
260            of specific server name. */
261         domain_name = lpcfg_workgroup(torture->lp_ctx);
262
263         /*
264          * Testing synchronous version
265          */
266         torture_comment(torture, "opening domain\n");
267
268         io.in.type         = DOMAIN_SAMR;
269         io.in.domain_name  = domain_name;
270         io.in.access_mask  = SEC_FLAG_MAXIMUM_ALLOWED;
271
272         status = libnet_DomainOpen(ctx, mem_ctx, &io);
273         if (!NT_STATUS_IS_OK(status)) {
274                 torture_comment(torture, "Composite domain open failed - %s\n", nt_errstr(status));
275                 ret = false;
276                 goto done;
277         }
278
279         domain_handle = ctx->samr.handle;
280
281         r.in.handle   = &domain_handle;
282         r.out.handle  = &handle;
283
284         torture_comment(torture, "closing domain handle\n");
285
286         torture_assert_ntstatus_ok(torture,
287                 dcerpc_samr_Close_r(ctx->samr.pipe->binding_handle, mem_ctx, &r),
288                 "Close failed");
289         torture_assert_ntstatus_ok(torture, r.out.result,
290                 "Close failed");
291
292 done:
293         talloc_free(mem_ctx);
294         talloc_free(ctx);
295
296         return ret;
297 }
298
299
300 bool torture_domain_close_samr(struct torture_context *torture)
301 {
302         bool ret = true;
303         NTSTATUS status;
304         TALLOC_CTX *mem_ctx = NULL;
305         struct libnet_context *ctx;
306         struct lsa_String domain_name;
307         struct dcerpc_binding *binding;
308         uint32_t access_mask;
309         struct policy_handle h;
310         struct dcerpc_pipe *p;
311         struct libnet_DomainClose r;
312         struct dom_sid *sid;
313
314         status = torture_rpc_binding(torture, &binding);
315         if (!NT_STATUS_IS_OK(status)) {
316                 return false;
317         }
318
319         ctx = libnet_context_init(torture->ev, torture->lp_ctx);
320         if (ctx == NULL) {
321                 torture_comment(torture, "failed to create libnet context\n");
322                 ret = false;
323                 goto done;
324         }
325
326         ctx->cred = cmdline_credentials;
327
328         mem_ctx = talloc_init("torture_domain_close_samr");
329         status = dcerpc_pipe_connect_b(mem_ctx, &p, binding, &ndr_table_samr,
330                                      ctx->cred, torture->ev, torture->lp_ctx);
331         if (!NT_STATUS_IS_OK(status)) {
332                 torture_comment(torture, "failed to connect to server: %s\n", nt_errstr(status));
333                 ret = false;
334                 goto done;
335         }
336
337         domain_name.string = talloc_strdup(mem_ctx, lpcfg_workgroup(torture->lp_ctx));
338
339         if (!test_opendomain_samr(torture, p->binding_handle, torture, &h, &domain_name, &access_mask, &sid)) {
340                 torture_comment(torture, "failed to open domain on samr service\n");
341                 ret = false;
342                 goto done;
343         }
344
345         ctx->samr.pipe        = p;
346         ctx->samr.name        = talloc_steal(ctx, domain_name.string);
347         ctx->samr.access_mask = access_mask;
348         ctx->samr.handle      = h;
349         ctx->samr.sid         = talloc_steal(ctx, sid);
350         /* we have to use pipe's event context, otherwise the call will
351            hang indefinitely - this wouldn't be the case if pipe was opened
352            by means of libnet call */
353         ctx->event_ctx       = p->conn->event_ctx;
354
355         ZERO_STRUCT(r);
356         r.in.type = DOMAIN_SAMR;
357         r.in.domain_name = domain_name.string;
358
359         status = libnet_DomainClose(ctx, mem_ctx, &r);
360         if (!NT_STATUS_IS_OK(status)) {
361                 ret = false;
362                 goto done;
363         }
364
365 done:
366         talloc_free(mem_ctx);
367         talloc_free(ctx);
368         return ret;
369 }
370
371
372 bool torture_domain_list(struct torture_context *torture)
373 {
374         bool ret = true;
375         NTSTATUS status;
376         TALLOC_CTX *mem_ctx = NULL;
377         struct dcerpc_binding *binding;
378         struct libnet_context *ctx;
379         struct libnet_DomainList r;
380         int i;
381
382         status = torture_rpc_binding(torture, &binding);
383         if (!NT_STATUS_IS_OK(status)) {
384                 return false;
385         }
386
387         ctx = libnet_context_init(torture->ev, torture->lp_ctx);
388         if (ctx == NULL) {
389                 torture_comment(torture, "failed to create libnet context\n");
390                 ret = false;
391                 goto done;
392         }
393
394         ctx->cred = cmdline_credentials;
395
396         mem_ctx = talloc_init("torture_domain_close_samr");
397
398         /*
399          * querying the domain list using default buffer size
400          */
401
402         ZERO_STRUCT(r);
403         r.in.hostname = binding->host;
404
405         status = libnet_DomainList(ctx, mem_ctx, &r);
406         if (!NT_STATUS_IS_OK(status)) {
407                 ret = false;
408                 goto done;
409         }
410
411         torture_comment(torture, "Received list or domains (everything in one piece):\n");
412
413         for (i = 0; i < r.out.count; i++) {
414                 torture_comment(torture, "Name[%d]: %s\n", i, r.out.domains[i].name);
415         }
416
417         /*
418          * querying the domain list using specified (much smaller) buffer size
419          */
420
421         ctx->samr.buf_size = 32;
422
423         ZERO_STRUCT(r);
424         r.in.hostname = binding->host;
425
426         status = libnet_DomainList(ctx, mem_ctx, &r);
427         if (!NT_STATUS_IS_OK(status)) {
428                 ret = false;
429                 goto done;
430         }
431
432         torture_comment(torture, "Received list or domains (collected in more than one round):\n");
433
434         for (i = 0; i < r.out.count; i++) {
435                 torture_comment(torture, "Name[%d]: %s\n", i, r.out.domains[i].name);
436         }
437
438 done:
439         torture_comment(torture, "\nStatus: %s\n", nt_errstr(status));
440
441         talloc_free(mem_ctx);
442         talloc_free(ctx);
443         return ret;
444 }