2 Unix SMB/CIFS implementation.
3 test suite for rpc bind operations
5 Copyright (C) Guenther Deschner 2010
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, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "torture/rpc/torture_rpc.h"
24 #include "librpc/gen_ndr/ndr_lsa_c.h"
25 #include "librpc/gen_ndr/ndr_epmapper_c.h"
26 #include "lib/cmdline/cmdline.h"
28 static bool test_openpolicy(struct torture_context
*tctx
,
29 struct dcerpc_pipe
*p
)
31 struct dcerpc_binding_handle
*b
= p
->binding_handle
;
32 struct policy_handle
*handle
;
35 test_lsa_OpenPolicy2(b
, tctx
, &handle
),
36 "failed to open policy");
39 test_lsa_Close(b
, tctx
, handle
),
40 "failed to close policy");
45 static bool test_bind(struct torture_context
*tctx
,
46 const void *private_data
)
48 struct dcerpc_binding
*binding
;
49 struct dcerpc_pipe
*p
;
51 const uint32_t *flags
= (const uint32_t *)private_data
;
53 torture_assert_ntstatus_ok(tctx
,
54 torture_rpc_binding(tctx
, &binding
),
55 "failed to parse binding string");
57 status
= dcerpc_binding_set_flags(binding
, *flags
, DCERPC_AUTH_OPTIONS
);
58 torture_assert_ntstatus_ok(tctx
, status
, "set flags");
60 torture_assert_ntstatus_ok(tctx
,
61 dcerpc_pipe_connect_b(tctx
, &p
, binding
,
63 samba_cmdline_get_creds(),
66 "failed to connect pipe");
69 test_openpolicy(tctx
, p
),
70 "failed to test openpolicy");
78 * Verifies a handle created in a connection is available on
79 * a second connection when the same association group is
80 * requested in the bind operation. The LSA interface can't be
81 * used because it runs in preforking mode in the selftests.
82 * Association groups should work when binding to interfaces
83 * running in the same process.
85 static bool test_assoc_group_handles_external(struct torture_context
*tctx
,
86 const void *private_data
)
88 struct dcerpc_binding
*binding1
= NULL
;
89 const struct dcerpc_binding
*bd1
= NULL
;
90 struct dcerpc_binding
*binding2
= NULL
;
91 struct dcerpc_pipe
*p1
= NULL
;
92 struct dcerpc_pipe
*p2
= NULL
;
94 struct epm_LookupHandleFree f
;
95 struct policy_handle handle
;
96 uint32_t assoc_group_id
;
97 uint32_t num_ents
= 0;
101 /* Open first pipe and open a policy handle */
102 torture_assert_ntstatus_ok(tctx
,
103 torture_rpc_binding(tctx
, &binding1
),
104 "failed to parse binding string");
105 dcerpc_binding_set_transport(binding1
, NCACN_IP_TCP
);
106 dcerpc_binding_set_string_option(binding1
, "endpoint", "135");
108 torture_assert_ntstatus_ok(tctx
,
109 dcerpc_pipe_connect_b(tctx
, &p1
, binding1
,
111 samba_cmdline_get_creds(),
114 "failed to connect first pipe");
116 r
.in
.inquiry_type
= RPC_C_EP_ALL_ELTS
;
118 r
.in
.interface_id
= NULL
;
119 r
.in
.vers_option
= RPC_C_VERS_ALL
;
121 r
.in
.entry_handle
= &handle
;
124 r
.out
.entry_handle
= &handle
;
125 r
.out
.num_ents
= &num_ents
;
127 torture_assert_ntstatus_ok(tctx
,
128 dcerpc_epm_Lookup_r(p1
->binding_handle
, tctx
, &r
),
129 "failed EPM Lookup");
130 torture_assert_int_equal(tctx
,
133 "failed EPM Lookup");
135 /* Open second pipe, different association group. Handle not found */
136 torture_assert_ntstatus_ok(tctx
,
137 torture_rpc_binding(tctx
, &binding2
),
138 "failed to parse binding string");
139 dcerpc_binding_set_transport(binding2
, NCACN_IP_TCP
);
140 dcerpc_binding_set_string_option(binding2
, "endpoint", "135");
142 torture_assert_ntstatus_ok(tctx
,
143 dcerpc_pipe_connect_b(tctx
, &p2
, binding2
,
145 samba_cmdline_get_creds(),
148 "failed to connect second pipe");
150 torture_assert_ntstatus_equal(tctx
,
151 dcerpc_epm_Lookup_r(p2
->binding_handle
, tctx
, &r
),
152 NT_STATUS_RPC_SS_CONTEXT_MISMATCH
,
153 "Unexpected EPM Lookup success");
155 /* Open second pipe, same association group. Handle is found */
156 bd1
= dcerpc_binding_handle_get_binding(p1
->binding_handle
);
157 assoc_group_id
= dcerpc_binding_get_assoc_group_id(bd1
);
158 dcerpc_binding_set_assoc_group_id(binding2
, assoc_group_id
);
161 torture_assert_ntstatus_ok(tctx
,
162 dcerpc_pipe_connect_b(tctx
, &p2
, binding2
,
164 samba_cmdline_get_creds(),
167 "failed to connect second pipe");
169 torture_assert_ntstatus_ok(tctx
,
170 dcerpc_epm_Lookup_r(p2
->binding_handle
, tctx
, &r
),
171 "failed EPM Lookup");
173 torture_assert_int_equal(tctx
,
176 "failed EPM Lookup");
179 f
.in
.entry_handle
= &handle
;
180 f
.out
.entry_handle
= &handle
;
182 torture_assert_ntstatus_ok(tctx
,
183 dcerpc_epm_LookupHandleFree_r(p1
->binding_handle
, tctx
, &f
),
184 "failed EPM LookupHandleFree");
186 torture_assert_int_equal(tctx
,
189 "failed EPM LookupHandleFree");
193 TALLOC_FREE(binding2
);
194 TALLOC_FREE(binding1
);
199 static void test_bind_op(struct torture_suite
*suite
,
203 uint32_t *flags_p
= talloc(suite
, uint32_t);
207 torture_suite_add_simple_tcase_const(suite
, name
, test_bind
, flags_p
);
211 struct torture_suite
*torture_rpc_bind(TALLOC_CTX
*mem_ctx
)
213 struct torture_suite
*suite
= torture_suite_create(mem_ctx
, "bind");
215 const char *test_name
;
219 .test_name
= "ntlm,sign",
220 .flags
= DCERPC_AUTH_NTLM
| DCERPC_SIGN
222 .test_name
= "ntlm,sign,seal",
223 .flags
= DCERPC_AUTH_NTLM
| DCERPC_SIGN
| DCERPC_SEAL
225 .test_name
= "spnego,sign",
226 .flags
= DCERPC_AUTH_SPNEGO
| DCERPC_SIGN
228 .test_name
= "spnego,sign,seal",
229 .flags
= DCERPC_AUTH_SPNEGO
| DCERPC_SIGN
| DCERPC_SEAL
234 for (i
=0; i
< ARRAY_SIZE(tests
); i
++) {
235 test_bind_op(suite
, tests
[i
].test_name
, tests
[i
].flags
);
237 for (i
=0; i
< ARRAY_SIZE(tests
); i
++) {
238 test_bind_op(suite
, talloc_asprintf(suite
, "bigendian,%s", tests
[i
].test_name
), tests
[i
].flags
| DCERPC_PUSH_BIGENDIAN
);
241 torture_suite_add_simple_tcase_const(suite
,
242 "assoc_group_handles_external",
243 test_assoc_group_handles_external
,