2 Unix SMB/CIFS implementation.
3 test suite for oxidresolve operations
5 Copyright (C) Jelmer Vernooij 2004
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/>.
22 #include "librpc/gen_ndr/ndr_oxidresolver_c.h"
23 #include "librpc/gen_ndr/ndr_remact_c.h"
24 #include "librpc/gen_ndr/epmapper.h"
25 #include "torture/rpc/torture_rpc.h"
27 #define CLSID_IMAGEDOC "02B01C80-E03D-101A-B294-00DD010F2BF9"
29 const struct GUID IUnknown_uuid
= {
30 0x00000000,0x0000,0x0000,{0xc0,0x00},{0x00,0x00,0x00,0x00,0x00,0x46}
33 static bool test_RemoteActivation(struct torture_context
*tctx
,
34 uint64_t *oxid
, struct GUID
*oid
)
36 struct RemoteActivation r
;
39 uint16_t protseq
[3] = { EPM_PROTOCOL_TCP
, EPM_PROTOCOL_NCALRPC
, EPM_PROTOCOL_UUID
};
40 struct dcerpc_pipe
*p
;
41 struct dcerpc_binding_handle
*b
;
43 status
= torture_rpc_connection(tctx
, &p
,
44 &ndr_table_IRemoteActivation
);
46 if (!NT_STATUS_IS_OK(status
)) {
49 b
= p
->binding_handle
;
52 r
.in
.this_object
.version
.MajorVersion
= 5;
53 r
.in
.this_object
.version
.MinorVersion
= 1;
54 r
.in
.this_object
.cid
= GUID_random();
55 GUID_from_string(CLSID_IMAGEDOC
, &r
.in
.Clsid
);
56 r
.in
.ClientImpLevel
= RPC_C_IMP_LEVEL_IDENTIFY
;
57 r
.in
.num_protseqs
= 3;
58 r
.in
.protseq
= protseq
;
60 iids
[0] = IUnknown_uuid
;
63 r
.out
.ipidRemUnknown
= oid
;
65 status
= dcerpc_RemoteActivation_r(b
, tctx
, &r
);
66 if(NT_STATUS_IS_ERR(status
)) {
67 fprintf(stderr
, "RemoteActivation: %s\n", nt_errstr(status
));
71 if(!W_ERROR_IS_OK(r
.out
.result
)) {
72 fprintf(stderr
, "RemoteActivation: %s\n", win_errstr(r
.out
.result
));
76 if(!W_ERROR_IS_OK(*r
.out
.hr
)) {
77 fprintf(stderr
, "RemoteActivation: %s\n", win_errstr(*r
.out
.hr
));
81 if(!W_ERROR_IS_OK(r
.out
.results
[0])) {
82 fprintf(stderr
, "RemoteActivation: %s\n", win_errstr(r
.out
.results
[0]));
89 static bool test_SimplePing(struct torture_context
*tctx
,
90 struct dcerpc_pipe
*p
)
95 struct dcerpc_binding_handle
*b
= p
->binding_handle
;
99 status
= dcerpc_SimplePing_r(b
, tctx
, &r
);
100 torture_assert_ntstatus_ok(tctx
, status
, "SimplePing");
101 torture_assert_werr_ok(tctx
, r
.out
.result
, "SimplePing");
106 static bool test_ComplexPing(struct torture_context
*tctx
,
107 struct dcerpc_pipe
*p
)
109 struct ComplexPing r
;
114 struct dcerpc_binding_handle
*b
= p
->binding_handle
;
116 if (!test_RemoteActivation(tctx
, &oxid
, &oid
))
122 r
.in
.SequenceNum
= 0;
125 r
.in
.AddToSet
= &oid
;
127 status
= dcerpc_ComplexPing_r(b
, tctx
, &r
);
128 if(NT_STATUS_IS_ERR(status
)) {
129 fprintf(stderr
, "ComplexPing: %s\n", nt_errstr(status
));
133 if(!W_ERROR_IS_OK(r
.out
.result
)) {
134 fprintf(stderr
, "ComplexPing: %s\n", win_errstr(r
.out
.result
));
143 static bool test_ServerAlive(struct torture_context
*tctx
,
144 struct dcerpc_pipe
*p
)
146 struct ServerAlive r
;
148 struct dcerpc_binding_handle
*b
= p
->binding_handle
;
150 status
= dcerpc_ServerAlive_r(b
, tctx
, &r
);
151 torture_assert_ntstatus_ok(tctx
, status
, "ServerAlive");
152 torture_assert_werr_ok(tctx
, r
.out
.result
, "ServerAlive");
157 static bool test_ResolveOxid(struct torture_context
*tctx
,
158 struct dcerpc_pipe
*p
)
160 struct ResolveOxid r
;
162 uint16_t protseq
[2] = { EPM_PROTOCOL_TCP
, EPM_PROTOCOL_SMB
};
165 struct dcerpc_binding_handle
*b
= p
->binding_handle
;
167 if (!test_RemoteActivation(tctx
, &oxid
, &oid
))
171 r
.in
.cRequestedProtseqs
= 2;
172 r
.in
.arRequestedProtseqs
= protseq
;
174 status
= dcerpc_ResolveOxid_r(b
, tctx
, &r
);
175 torture_assert_ntstatus_ok(tctx
, status
, "ResolveOxid");
176 torture_assert_werr_ok(tctx
, r
.out
.result
, "ResolveOxid");
181 static bool test_ResolveOxid2(struct torture_context
*tctx
,
182 struct dcerpc_pipe
*p
)
184 struct ResolveOxid2 r
;
186 uint16_t protseq
[2] = { EPM_PROTOCOL_TCP
, EPM_PROTOCOL_SMB
};
189 struct dcerpc_binding_handle
*b
= p
->binding_handle
;
191 if (!test_RemoteActivation(tctx
, &oxid
, &oid
))
195 r
.in
.cRequestedProtseqs
= 2;
196 r
.in
.arRequestedProtseqs
= protseq
;
198 status
= dcerpc_ResolveOxid2_r(b
, tctx
, &r
);
199 torture_assert_ntstatus_ok(tctx
, status
, "ResolveOxid2");
201 torture_assert_werr_ok(tctx
, r
.out
.result
, "ResolveOxid2");
203 torture_comment(tctx
, "Remote server versions: %d, %d\n", r
.out
.ComVersion
->MajorVersion
, r
.out
.ComVersion
->MinorVersion
);
208 static bool test_ServerAlive2(struct torture_context
*tctx
,
209 struct dcerpc_pipe
*p
)
211 struct ServerAlive2 r
;
213 struct dcerpc_binding_handle
*b
= p
->binding_handle
;
215 status
= dcerpc_ServerAlive2_r(b
, tctx
, &r
);
216 torture_assert_ntstatus_ok(tctx
, status
, "ServerAlive2");
217 torture_assert_werr_ok(tctx
, r
.out
.result
, "ServerAlive2");
222 struct torture_suite
*torture_rpc_oxidresolve(TALLOC_CTX
*mem_ctx
)
224 struct torture_suite
*suite
= torture_suite_create(mem_ctx
, "oxidresolve");
225 struct torture_rpc_tcase
*tcase
;
227 tcase
= torture_suite_add_rpc_iface_tcase(suite
, "oxidresolver",
228 &ndr_table_IOXIDResolver
);
230 torture_rpc_tcase_add_test(tcase
, "ServerAlive", test_ServerAlive
);
232 torture_rpc_tcase_add_test(tcase
, "ServerAlive2", test_ServerAlive2
);
234 torture_rpc_tcase_add_test(tcase
, "ComplexPing", test_ComplexPing
);
236 torture_rpc_tcase_add_test(tcase
, "SimplePing", test_SimplePing
);
238 torture_rpc_tcase_add_test(tcase
, "ResolveOxid", test_ResolveOxid
);
240 torture_rpc_tcase_add_test(tcase
, "ResolveOxid2", test_ResolveOxid2
);