ECLIPSE + PyDev Project
[Samba/kamenim.git] / source4 / torture / libnet / domain.c
blob0ba72df4e47531681adffbe6d09c6bdeb45777f2
1 /*
2 Unix SMB/CIFS implementation.
3 Test suite for libnet calls.
5 Copyright (C) Rafal Szczesniak 2005
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.
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.
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/>.
21 #include "includes.h"
22 #include "torture/rpc/rpc.h"
23 #include "libnet/libnet.h"
24 #include "librpc/gen_ndr/ndr_samr_c.h"
25 #include "param/param.h"
27 static bool test_domainopen(struct libnet_context *net_ctx, TALLOC_CTX *mem_ctx,
28 struct lsa_String *domname,
29 struct policy_handle *domain_handle)
31 NTSTATUS status;
32 struct libnet_DomainOpen io;
34 printf("opening domain\n");
36 io.in.domain_name = talloc_strdup(mem_ctx, domname->string);
37 io.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
39 status = libnet_DomainOpen(net_ctx, mem_ctx, &io);
40 if (!NT_STATUS_IS_OK(status)) {
41 printf("Composite domain open failed - %s\n", nt_errstr(status));
42 return false;
45 *domain_handle = io.out.domain_handle;
46 return true;
50 static bool test_cleanup(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
51 struct policy_handle *domain_handle)
53 NTSTATUS status;
54 struct samr_Close r;
55 struct policy_handle handle;
57 r.in.handle = domain_handle;
58 r.out.handle = &handle;
60 printf("closing domain handle\n");
62 status = dcerpc_samr_Close(p, mem_ctx, &r);
63 if (!NT_STATUS_IS_OK(status)) {
64 printf("Close failed - %s\n", nt_errstr(status));
65 return false;
68 return true;
72 bool torture_domainopen(struct torture_context *torture)
74 NTSTATUS status;
75 struct libnet_context *net_ctx;
76 TALLOC_CTX *mem_ctx;
77 bool ret = true;
78 struct policy_handle h;
79 struct lsa_String name;
81 mem_ctx = talloc_init("test_domain_open");
83 net_ctx = libnet_context_init(torture->ev, torture->lp_ctx);
85 status = torture_rpc_connection(torture,
86 &net_ctx->samr.pipe,
87 &ndr_table_samr);
89 if (!NT_STATUS_IS_OK(status)) {
90 return false;
93 name.string = lp_workgroup(torture->lp_ctx);
96 * Testing synchronous version
98 if (!test_domainopen(net_ctx, mem_ctx, &name, &h)) {
99 ret = false;
100 goto done;
103 if (!test_cleanup(net_ctx->samr.pipe, mem_ctx, &h)) {
104 ret = false;
105 goto done;
108 done:
109 talloc_free(mem_ctx);
111 return ret;