r14542: Remove librpc, libndr and libnbt from includes.h
[samba.git] / source / 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         return status;
48 }
49
50 /* open a rpc connection to a specific transport */
51 NTSTATUS torture_rpc_connection_transport(TALLOC_CTX *parent_ctx, 
52                                           struct dcerpc_pipe **p, 
53                                           const struct dcerpc_interface_table *table,
54                                           enum dcerpc_transport_t transport)
55 {
56         NTSTATUS status;
57         const char *binding = lp_parm_string(-1, "torture", "binding");
58         struct dcerpc_binding *b;
59         TALLOC_CTX *mem_ctx = talloc_named(parent_ctx, 0, "torture_rpc_connection_smb");
60
61         if (!binding) {
62                 printf("You must specify a ncacn binding string\n");
63                 talloc_free(mem_ctx);
64                 return NT_STATUS_INVALID_PARAMETER;
65         }
66
67         status = dcerpc_parse_binding(mem_ctx, binding, &b);
68         if (!NT_STATUS_IS_OK(status)) {
69                 DEBUG(0,("Failed to parse dcerpc binding '%s'\n", binding));
70                 talloc_free(mem_ctx);
71                 return status;
72         }
73
74         b->transport = transport;
75
76         status = dcerpc_pipe_connect_b(mem_ctx, p, b, table,
77                                        cmdline_credentials, NULL);
78                                            
79         if (NT_STATUS_IS_OK(status)) {
80                 *p = talloc_reference(parent_ctx, *p);
81         } else {
82                 *p = NULL;
83         }
84         talloc_free(mem_ctx);
85         return status;
86 }
87
88 NTSTATUS torture_rpc_init(void)
89 {
90         dcerpc_init();
91
92         dcerpc_table_init();
93
94     register_torture_op("RPC-LSA", torture_rpc_lsa, 0);
95     register_torture_op("RPC-LSALOOKUP", torture_rpc_lsa_lookup, 0);
96     register_torture_op("RPC-SECRETS", torture_rpc_lsa_secrets, 0);
97     register_torture_op("RPC-ECHO", torture_rpc_echo, 0);
98     register_torture_op("RPC-DFS", torture_rpc_dfs, 0);
99     register_torture_op("RPC-SPOOLSS", torture_rpc_spoolss, 0);
100     register_torture_op("RPC-SAMR", torture_rpc_samr, 0);
101     register_torture_op("RPC-UNIXINFO", torture_rpc_unixinfo, 0);
102     register_torture_op("RPC-NETLOGON", torture_rpc_netlogon, 0);
103     register_torture_op("RPC-SAMLOGON", torture_rpc_samlogon, 0);
104     register_torture_op("RPC-SAMSYNC", torture_rpc_samsync, 0);
105     register_torture_op("RPC-SCHANNEL", torture_rpc_schannel, 0);
106     register_torture_op("RPC-WKSSVC", torture_rpc_wkssvc, 0);
107     register_torture_op("RPC-SRVSVC", torture_rpc_srvsvc, 0);
108     register_torture_op("RPC-SVCCTL", torture_rpc_svcctl, 0);
109     register_torture_op("RPC-ATSVC", torture_rpc_atsvc, 0);
110     register_torture_op("RPC-EVENTLOG", torture_rpc_eventlog, 0);
111     register_torture_op("RPC-EPMAPPER", torture_rpc_epmapper, 0);
112     register_torture_op("RPC-WINREG", torture_rpc_winreg, 0);
113     register_torture_op("RPC-INITSHUTDOWN", torture_rpc_initshutdown, 0);
114     register_torture_op("RPC-OXIDRESOLVE", torture_rpc_oxidresolve, 0);
115     register_torture_op("RPC-REMACT", torture_rpc_remact, 0);
116     register_torture_op("RPC-MGMT", torture_rpc_mgmt, 0);
117     register_torture_op("RPC-SCANNER", torture_rpc_scanner, 0);
118     register_torture_op("RPC-AUTOIDL", torture_rpc_autoidl, 0);
119     register_torture_op("RPC-COUNTCALLS", torture_rpc_countcalls, 0);
120         register_torture_op("RPC-MULTIBIND", torture_multi_bind, 0);
121         register_torture_op("RPC-DRSUAPI", torture_rpc_drsuapi, 0);
122         register_torture_op("RPC-CRACKNAMES", torture_rpc_drsuapi_cracknames, 0);
123         register_torture_op("RPC-ROT", torture_rpc_rot, 0);
124         register_torture_op("RPC-DSSETUP", torture_rpc_dssetup, 0);
125     register_torture_op("RPC-ALTERCONTEXT", torture_rpc_alter_context, 0);
126     register_torture_op("RPC-JOIN", torture_rpc_join, 0);
127     register_torture_op("RPC-DSSYNC", torture_rpc_dssync, 0);
128         register_torture_op("BENCH-RPC", torture_bench_rpc, 0);
129
130         return NT_STATUS_OK;
131 }