libcli/cldap: make use of samba_tevent_context_init()
[Samba/gebeck_regimport.git] / source4 / torture / rpc / mgmt.c
blob1b6083256835b3ad58cc93dda5afcbda1a97f18c
1 /*
2 Unix SMB/CIFS implementation.
3 test suite for mgmt rpc operations
5 Copyright (C) Andrew Tridgell 2003
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 "librpc/gen_ndr/ndr_mgmt_c.h"
23 #include "auth/gensec/gensec.h"
24 #include "librpc/ndr/ndr_table.h"
25 #include "torture/rpc/torture_rpc.h"
26 #include "param/param.h"
30 ask the server what interface IDs are available on this endpoint
32 bool test_inq_if_ids(struct torture_context *tctx,
33 struct dcerpc_binding_handle *b,
34 TALLOC_CTX *mem_ctx,
35 bool (*per_id_test)(struct torture_context *,
36 const struct ndr_interface_table *iface,
37 TALLOC_CTX *mem_ctx,
38 struct ndr_syntax_id *id),
39 const void *priv)
41 NTSTATUS status;
42 struct mgmt_inq_if_ids r;
43 struct rpc_if_id_vector_t *vector;
44 int i;
46 vector = talloc(mem_ctx, struct rpc_if_id_vector_t);
47 r.out.if_id_vector = &vector;
49 status = dcerpc_mgmt_inq_if_ids_r(b, mem_ctx, &r);
50 if (!NT_STATUS_IS_OK(status)) {
51 printf("inq_if_ids failed - %s\n", nt_errstr(status));
52 return false;
55 if (!W_ERROR_IS_OK(r.out.result)) {
56 printf("inq_if_ids gave error code %s\n", win_errstr(r.out.result));
57 return false;
60 if (!vector) {
61 printf("inq_if_ids gave NULL if_id_vector\n");
62 return false;
65 for (i=0;i<vector->count;i++) {
66 struct ndr_syntax_id *id = vector->if_id[i].id;
67 if (!id) continue;
69 printf("\tuuid %s version 0x%08x '%s'\n",
70 GUID_string(mem_ctx, &id->uuid),
71 id->if_version,
72 ndr_interface_name(&id->uuid, id->if_version));
74 if (per_id_test) {
75 per_id_test(tctx, priv, mem_ctx, id);
79 return true;
82 static bool test_inq_stats(struct dcerpc_binding_handle *b,
83 TALLOC_CTX *mem_ctx)
85 NTSTATUS status;
86 struct mgmt_inq_stats r;
87 struct mgmt_statistics statistics;
89 r.in.max_count = MGMT_STATS_ARRAY_MAX_SIZE;
90 r.in.unknown = 0;
91 r.out.statistics = &statistics;
93 status = dcerpc_mgmt_inq_stats_r(b, mem_ctx, &r);
94 if (!NT_STATUS_IS_OK(status)) {
95 printf("inq_stats failed - %s\n", nt_errstr(status));
96 return false;
99 if (statistics.count != MGMT_STATS_ARRAY_MAX_SIZE) {
100 printf("Unexpected array size %d\n", statistics.count);
101 return false;
104 printf("\tcalls_in %6d calls_out %6d\n\tpkts_in %6d pkts_out %6d\n",
105 statistics.statistics[MGMT_STATS_CALLS_IN],
106 statistics.statistics[MGMT_STATS_CALLS_OUT],
107 statistics.statistics[MGMT_STATS_PKTS_IN],
108 statistics.statistics[MGMT_STATS_PKTS_OUT]);
110 return true;
113 static bool test_inq_princ_name(struct dcerpc_binding_handle *b,
114 TALLOC_CTX *mem_ctx)
116 NTSTATUS status;
117 struct mgmt_inq_princ_name r;
118 int i;
119 bool ret = false;
121 for (i=0;i<100;i++) {
122 r.in.authn_proto = i; /* DCERPC_AUTH_TYPE_* */
123 r.in.princ_name_size = 100;
125 status = dcerpc_mgmt_inq_princ_name_r(b, mem_ctx, &r);
126 if (!NT_STATUS_IS_OK(status)) {
127 continue;
129 if (W_ERROR_IS_OK(r.out.result)) {
130 const char *name = gensec_get_name_by_authtype(NULL, i);
131 ret = true;
132 if (name) {
133 printf("\tprinciple name for proto %u (%s) is '%s'\n",
134 i, name, r.out.princ_name);
135 } else {
136 printf("\tprinciple name for proto %u is '%s'\n",
137 i, r.out.princ_name);
142 if (!ret) {
143 printf("\tno principle names?\n");
146 return true;
149 static bool test_is_server_listening(struct dcerpc_binding_handle *b,
150 TALLOC_CTX *mem_ctx)
152 NTSTATUS status;
153 struct mgmt_is_server_listening r;
154 r.out.status = talloc(mem_ctx, uint32_t);
156 status = dcerpc_mgmt_is_server_listening_r(b, mem_ctx, &r);
157 if (!NT_STATUS_IS_OK(status)) {
158 printf("is_server_listening failed - %s\n", nt_errstr(status));
159 return false;
162 if (*r.out.status != 0 || r.out.result == 0) {
163 printf("\tserver is NOT listening\n");
164 } else {
165 printf("\tserver is listening\n");
168 return true;
171 static bool test_stop_server_listening(struct dcerpc_binding_handle *b,
172 TALLOC_CTX *mem_ctx)
174 NTSTATUS status;
175 struct mgmt_stop_server_listening r;
177 status = dcerpc_mgmt_stop_server_listening_r(b, mem_ctx, &r);
178 if (!NT_STATUS_IS_OK(status)) {
179 printf("stop_server_listening failed - %s\n", nt_errstr(status));
180 return false;
183 if (!W_ERROR_IS_OK(r.out.result)) {
184 printf("\tserver refused to stop listening - %s\n", win_errstr(r.out.result));
185 } else {
186 printf("\tserver allowed a stop_server_listening request\n");
187 return false;
190 return true;
194 bool torture_rpc_mgmt(struct torture_context *torture)
196 NTSTATUS status;
197 struct dcerpc_pipe *p;
198 TALLOC_CTX *mem_ctx, *loop_ctx;
199 bool ret = true;
200 const struct ndr_interface_list *l;
201 struct dcerpc_binding *b;
203 mem_ctx = talloc_init("torture_rpc_mgmt");
205 status = torture_rpc_binding(torture, &b);
206 if (!NT_STATUS_IS_OK(status)) {
207 talloc_free(mem_ctx);
208 return false;
211 for (l=ndr_table_list();l;l=l->next) {
212 struct dcerpc_binding_handle *bh;
214 loop_ctx = talloc_named(mem_ctx, 0, "torture_rpc_mgmt loop context");
216 /* some interfaces are not mappable */
217 if (l->table->num_calls == 0 ||
218 strcmp(l->table->name, "mgmt") == 0) {
219 talloc_free(loop_ctx);
220 continue;
223 printf("\nTesting pipe '%s'\n", l->table->name);
225 status = dcerpc_epm_map_binding(loop_ctx, b, l->table, NULL, torture->lp_ctx);
226 if (!NT_STATUS_IS_OK(status)) {
227 printf("Failed to map port for uuid %s\n",
228 GUID_string(loop_ctx, &l->table->syntax_id.uuid));
229 talloc_free(loop_ctx);
230 continue;
233 lpcfg_set_cmdline(torture->lp_ctx, "torture:binding", dcerpc_binding_string(loop_ctx, b));
235 status = torture_rpc_connection(torture, &p, &ndr_table_mgmt);
236 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
237 printf("Interface not available - skipping\n");
238 talloc_free(loop_ctx);
239 continue;
241 bh = p->binding_handle;
243 if (!NT_STATUS_IS_OK(status)) {
244 talloc_free(loop_ctx);
245 ret = false;
246 continue;
249 if (!test_is_server_listening(bh, loop_ctx)) {
250 ret = false;
253 if (!test_stop_server_listening(bh, loop_ctx)) {
254 ret = false;
257 if (!test_inq_stats(bh, loop_ctx)) {
258 ret = false;
261 if (!test_inq_princ_name(bh, loop_ctx)) {
262 ret = false;
265 if (!test_inq_if_ids(torture, bh, loop_ctx, NULL, NULL)) {
266 ret = false;
271 return ret;