r15394: Put initial code for testing async dcerpc binding. Currently
[sfrench/samba-autobuild/.git] / source4 / torture / rpc / rpc.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB torture tester
4    Copyright (C) Andrew Tridgell 1997-2003
5    Copyright (C) Jelmer Vernooij 2006
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 "auth/credentials/credentials.h"
24 #include "lib/cmdline/popt_common.h"
25 #include "librpc/rpc/dcerpc.h"
26 #include "torture/rpc/rpc.h"
27 #include "torture/torture.h"
28 #include "librpc/rpc/dcerpc_table.h"
29
30 /* open a rpc connection to the chosen binding string */
31 _PUBLIC_ NTSTATUS torture_rpc_connection(TALLOC_CTX *parent_ctx, 
32                                 struct dcerpc_pipe **p, 
33                                 const struct dcerpc_interface_table *table)
34 {
35         NTSTATUS status;
36         const char *binding = lp_parm_string(-1, "torture", "binding");
37
38         if (!binding) {
39                 printf("You must specify a ncacn binding string\n");
40                 return NT_STATUS_INVALID_PARAMETER;
41         }
42
43         status = dcerpc_pipe_connect(parent_ctx, 
44                                      p, binding, table,
45                                      cmdline_credentials, NULL);
46  
47         if (!NT_STATUS_IS_OK(status)) {
48                 printf("Failed to connect to remote server: %s %s\n", binding, nt_errstr(status));
49         }
50
51         return status;
52 }
53
54 /* open a rpc connection to a specific transport */
55 NTSTATUS torture_rpc_connection_transport(TALLOC_CTX *parent_ctx, 
56                                           struct dcerpc_pipe **p, 
57                                           const struct dcerpc_interface_table *table,
58                                           enum dcerpc_transport_t transport)
59 {
60         NTSTATUS status;
61         const char *binding = lp_parm_string(-1, "torture", "binding");
62         struct dcerpc_binding *b;
63         TALLOC_CTX *mem_ctx = talloc_named(parent_ctx, 0, "torture_rpc_connection_smb");
64
65         if (!binding) {
66                 printf("You must specify a ncacn binding string\n");
67                 talloc_free(mem_ctx);
68                 return NT_STATUS_INVALID_PARAMETER;
69         }
70
71         status = dcerpc_parse_binding(mem_ctx, binding, &b);
72         if (!NT_STATUS_IS_OK(status)) {
73                 DEBUG(0,("Failed to parse dcerpc binding '%s'\n", binding));
74                 talloc_free(mem_ctx);
75                 return status;
76         }
77
78         b->transport = transport;
79
80         status = dcerpc_pipe_connect_b(mem_ctx, p, b, table,
81                                        cmdline_credentials, NULL);
82                                            
83         if (NT_STATUS_IS_OK(status)) {
84                 *p = talloc_reference(parent_ctx, *p);
85         } else {
86                 *p = NULL;
87         }
88         talloc_free(mem_ctx);
89         return status;
90 }
91
92 NTSTATUS torture_rpc_init(void)
93 {
94         dcerpc_init();
95
96         dcerpc_table_init();
97
98         register_torture_op("RPC-LSA", torture_rpc_lsa, 0);
99         register_torture_op("RPC-LSALOOKUP", torture_rpc_lsa_lookup, 0);
100         register_torture_op("RPC-SECRETS", torture_rpc_lsa_secrets, 0);
101         register_torture_op("RPC-ECHO", torture_rpc_echo, 0);
102         register_torture_op("RPC-DFS", torture_rpc_dfs, 0);
103         register_torture_op("RPC-SPOOLSS", torture_rpc_spoolss, 0);
104         register_torture_op("RPC-SAMR", torture_rpc_samr, 0);
105         register_torture_op("RPC-UNIXINFO", torture_rpc_unixinfo, 0);
106         register_torture_op("RPC-NETLOGON", torture_rpc_netlogon, 0);
107         register_torture_op("RPC-SAMLOGON", torture_rpc_samlogon, 0);
108         register_torture_op("RPC-SAMSYNC", torture_rpc_samsync, 0);
109         register_torture_op("RPC-SCHANNEL", torture_rpc_schannel, 0);
110         register_torture_op("RPC-WKSSVC", torture_rpc_wkssvc, 0);
111         register_torture_op("RPC-SRVSVC", torture_rpc_srvsvc, 0);
112         register_torture_op("RPC-SVCCTL", torture_rpc_svcctl, 0);
113         register_torture_op("RPC-ATSVC", torture_rpc_atsvc, 0);
114         register_torture_op("RPC-EVENTLOG", torture_rpc_eventlog, 0);
115         register_torture_op("RPC-EPMAPPER", torture_rpc_epmapper, 0);
116         register_torture_op("RPC-WINREG", torture_rpc_winreg, 0);
117         register_torture_op("RPC-INITSHUTDOWN", torture_rpc_initshutdown, 0);
118         register_torture_op("RPC-OXIDRESOLVE", torture_rpc_oxidresolve, 0);
119         register_torture_op("RPC-REMACT", torture_rpc_remact, 0);
120         register_torture_op("RPC-MGMT", torture_rpc_mgmt, 0);
121         register_torture_op("RPC-SCANNER", torture_rpc_scanner, 0);
122         register_torture_op("RPC-AUTOIDL", torture_rpc_autoidl, 0);
123         register_torture_op("RPC-COUNTCALLS", torture_rpc_countcalls, 0);
124         register_torture_op("RPC-MULTIBIND", torture_multi_bind, 0);
125         register_torture_op("RPC-DRSUAPI", torture_rpc_drsuapi, 0);
126         register_torture_op("RPC-CRACKNAMES", torture_rpc_drsuapi_cracknames, 0);
127         register_torture_op("RPC-ROT", torture_rpc_rot, 0);
128         register_torture_op("RPC-DSSETUP", torture_rpc_dssetup, 0);
129         register_torture_op("RPC-ALTERCONTEXT", torture_rpc_alter_context, 0);
130         register_torture_op("RPC-JOIN", torture_rpc_join, 0);
131         register_torture_op("RPC-DSSYNC", torture_rpc_dssync, 0);
132         register_torture_op("BENCH-RPC", torture_bench_rpc, 0);
133         register_torture_op("RPC-ASYNCBIND", torture_async_bind, 0);
134
135         return NT_STATUS_OK;
136 }