r14464: Don't include ndr_BASENAME.h files unless strictly required, instead
[garming/samba-autobuild/.git] / source4 / torture / rpc / remact.c
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 2 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, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23 #include "torture/torture.h"
24 #include "librpc/gen_ndr/ndr_remact.h"
25 #include "librpc/gen_ndr/ndr_remact_c.h"
26 #include "librpc/gen_ndr/ndr_epmapper.h"
27 #include "librpc/gen_ndr/ndr_epmapper_c.h"
28 #include "librpc/gen_ndr/ndr_dcom.h"
29 #include "torture/rpc/rpc.h"
30
31 #define CLSID_IMAGEDOC "02B01C80-E03D-101A-B294-00DD010F2BF9"
32
33 static int test_RemoteActivation(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
34 {
35         struct RemoteActivation r;
36         NTSTATUS status;
37         struct GUID iids[1];
38         uint16_t protseq[3] = { EPM_PROTOCOL_TCP, EPM_PROTOCOL_NCALRPC, EPM_PROTOCOL_UUID };
39
40         ZERO_STRUCT(r.in);
41         r.in.this.version.MajorVersion = 5;
42         r.in.this.version.MinorVersion = 1;
43         r.in.this.cid = GUID_random();
44         GUID_from_string(CLSID_IMAGEDOC, &r.in.Clsid);
45         r.in.ClientImpLevel = RPC_C_IMP_LEVEL_IDENTIFY;
46         r.in.num_protseqs = 3;
47         r.in.protseq = protseq;
48         r.in.Interfaces = 1;
49         GUID_from_string(DCERPC_IUNKNOWN_UUID, &iids[0]);
50         r.in.pIIDs = iids;
51
52         status = dcerpc_RemoteActivation(p, mem_ctx, &r);
53         if(NT_STATUS_IS_ERR(status)) {
54                 printf("RemoteActivation: %s\n", nt_errstr(status));
55                 return 0;
56         }
57
58         if(!W_ERROR_IS_OK(r.out.result)) {
59                 printf("RemoteActivation: %s\n", win_errstr(r.out.result));
60                 return 0;
61         }
62
63         if(!W_ERROR_IS_OK(r.out.hr)) {
64                 printf("RemoteActivation: %s\n", win_errstr(r.out.hr));
65                 return 0;
66         }
67
68         if(!W_ERROR_IS_OK(r.out.results[0])) {
69                 printf("RemoteActivation: %s\n", win_errstr(r.out.results[0]));
70                 return 0;
71         }
72
73         GUID_from_string(DCERPC_ICLASSFACTORY_UUID, &iids[0]);
74         r.in.Interfaces = 1;
75         r.in.Mode = MODE_GET_CLASS_OBJECT;
76
77         status = dcerpc_RemoteActivation(p, mem_ctx, &r);
78         if(NT_STATUS_IS_ERR(status)) {
79                 printf("RemoteActivation(GetClassObject): %s\n", nt_errstr(status));
80                 return 0;
81         }
82
83         if(!W_ERROR_IS_OK(r.out.result)) {
84                 printf("RemoteActivation(GetClassObject): %s\n", win_errstr(r.out.result));
85                 return 0;
86         }
87
88         if(!W_ERROR_IS_OK(r.out.hr)) {
89                 printf("RemoteActivation(GetClassObject): %s\n", win_errstr(r.out.hr));
90                 return 0;
91         }
92
93         if(!W_ERROR_IS_OK(r.out.results[0])) {
94                 printf("RemoteActivation(GetClassObject): %s\n", win_errstr(r.out.results[0]));
95                 return 0;
96         }
97
98         return 1;
99 }
100
101 BOOL torture_rpc_remact(void)
102 {
103         NTSTATUS status;
104         struct dcerpc_pipe *p;
105         TALLOC_CTX *mem_ctx;
106         BOOL ret = True;
107
108         mem_ctx = talloc_init("torture_rpc_remact");
109
110         status = torture_rpc_connection(mem_ctx,
111                                         &p, 
112                                         &dcerpc_table_IRemoteActivation);
113
114         if (!NT_STATUS_IS_OK(status)) {
115                 talloc_free(mem_ctx);
116                 return False;
117         }
118
119         if(!test_RemoteActivation(p, mem_ctx))
120                 ret = False;
121
122         talloc_free(mem_ctx);
123
124         return ret;
125 }