| 1 | /*
|
|---|
| 2 | Unix SMB/CIFS implementation.
|
|---|
| 3 | test suite for remoteactivation operations
|
|---|
| 4 |
|
|---|
| 5 | Copyright (C) Jelmer Vernooij 2004
|
|---|
| 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 | #include "includes.h"
|
|---|
| 22 | #include "torture/torture.h"
|
|---|
| 23 | #include "librpc/gen_ndr/ndr_remact_c.h"
|
|---|
| 24 | #include "librpc/gen_ndr/ndr_epmapper_c.h"
|
|---|
| 25 | #include "torture/rpc/rpc.h"
|
|---|
| 26 |
|
|---|
| 27 | #define CLSID_IMAGEDOC "02B01C80-E03D-101A-B294-00DD010F2BF9"
|
|---|
| 28 | #define DCERPC_IUNKNOWN_UUID "00000000-0000-0000-c000-000000000046"
|
|---|
| 29 | #define DCERPC_ICLASSFACTORY_UUID "00000001-0000-0000-c000-000000000046"
|
|---|
| 30 |
|
|---|
| 31 | static bool test_RemoteActivation(struct torture_context *tctx,
|
|---|
| 32 | struct dcerpc_pipe *p)
|
|---|
| 33 | {
|
|---|
| 34 | struct RemoteActivation r;
|
|---|
| 35 | NTSTATUS status;
|
|---|
| 36 | struct GUID iids[1];
|
|---|
| 37 | uint16_t protseq[3] = { EPM_PROTOCOL_TCP, EPM_PROTOCOL_NCALRPC, EPM_PROTOCOL_UUID };
|
|---|
| 38 |
|
|---|
| 39 | ZERO_STRUCT(r.in);
|
|---|
| 40 | r.in.this_object.version.MajorVersion = 5;
|
|---|
| 41 | r.in.this_object.version.MinorVersion = 1;
|
|---|
| 42 | r.in.this_object.cid = GUID_random();
|
|---|
| 43 | GUID_from_string(CLSID_IMAGEDOC, &r.in.Clsid);
|
|---|
| 44 | r.in.ClientImpLevel = RPC_C_IMP_LEVEL_IDENTIFY;
|
|---|
| 45 | r.in.num_protseqs = 3;
|
|---|
| 46 | r.in.protseq = protseq;
|
|---|
| 47 | r.in.Interfaces = 1;
|
|---|
| 48 | GUID_from_string(DCERPC_IUNKNOWN_UUID, &iids[0]);
|
|---|
| 49 | r.in.pIIDs = iids;
|
|---|
| 50 |
|
|---|
| 51 | status = dcerpc_RemoteActivation(p, tctx, &r);
|
|---|
| 52 | torture_assert_ntstatus_ok(tctx, status, "RemoteActivation");
|
|---|
| 53 |
|
|---|
| 54 | torture_assert_werr_ok(tctx, r.out.result, "RemoteActivation");
|
|---|
| 55 |
|
|---|
| 56 | torture_assert_werr_ok(tctx, *r.out.hr, "RemoteActivation");
|
|---|
| 57 |
|
|---|
| 58 | torture_assert_werr_ok(tctx, r.out.results[0], "RemoteActivation");
|
|---|
| 59 |
|
|---|
| 60 | GUID_from_string(DCERPC_ICLASSFACTORY_UUID, &iids[0]);
|
|---|
| 61 | r.in.Interfaces = 1;
|
|---|
| 62 | r.in.Mode = MODE_GET_CLASS_OBJECT;
|
|---|
| 63 |
|
|---|
| 64 | status = dcerpc_RemoteActivation(p, tctx, &r);
|
|---|
| 65 | torture_assert_ntstatus_ok(tctx, status,
|
|---|
| 66 | "RemoteActivation(GetClassObject)");
|
|---|
| 67 |
|
|---|
| 68 | torture_assert_werr_ok(tctx, r.out.result,
|
|---|
| 69 | "RemoteActivation(GetClassObject)");
|
|---|
| 70 |
|
|---|
| 71 | torture_assert_werr_ok(tctx, *r.out.hr, "RemoteActivation(GetClassObject)");
|
|---|
| 72 |
|
|---|
| 73 | torture_assert_werr_ok(tctx, r.out.results[0],
|
|---|
| 74 | "RemoteActivation(GetClassObject)");
|
|---|
| 75 |
|
|---|
| 76 | return true;
|
|---|
| 77 | }
|
|---|
| 78 |
|
|---|
| 79 | struct torture_suite *torture_rpc_remact(TALLOC_CTX *mem_ctx)
|
|---|
| 80 | {
|
|---|
| 81 | struct torture_suite *suite = torture_suite_create(mem_ctx, "REMACT");
|
|---|
| 82 | struct torture_rpc_tcase *tcase;
|
|---|
| 83 |
|
|---|
| 84 | tcase = torture_suite_add_rpc_iface_tcase(suite, "remact", &ndr_table_IRemoteActivation);
|
|---|
| 85 |
|
|---|
| 86 | torture_rpc_tcase_add_test(tcase, "RemoteActivation", test_RemoteActivation);
|
|---|
| 87 |
|
|---|
| 88 | return suite;
|
|---|
| 89 | }
|
|---|