summaryrefslogtreecommitdiff
path: root/source4/torture/rpc/rpc.c
blob: 754633e51bb20e70af1b69d3a97456b4d9b455aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* 
   Unix SMB/CIFS implementation.
   SMB torture tester
   Copyright (C) Andrew Tridgell 1997-2003
   Copyright (C) Jelmer Vernooij 2006
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include "includes.h"
#include "auth/credentials/credentials.h"
#include "lib/cmdline/popt_common.h"
#include "librpc/rpc/dcerpc.h"
#include "torture/rpc/rpc.h"
#include "torture/torture.h"
#include "librpc/rpc/dcerpc_table.h"

/* open a rpc connection to the chosen binding string */
_PUBLIC_ NTSTATUS torture_rpc_connection(TALLOC_CTX *parent_ctx, 
				struct dcerpc_pipe **p, 
				const struct dcerpc_interface_table *table)
{
        NTSTATUS status;
	const char *binding = lp_parm_string(-1, "torture", "binding");

	if (!binding) {
		printf("You must specify a ncacn binding string\n");
		return NT_STATUS_INVALID_PARAMETER;
	}

	status = dcerpc_pipe_connect(parent_ctx, 
				     p, binding, table,
				     cmdline_credentials, NULL);
 
	if (!NT_STATUS_IS_OK(status)) {
		printf("Failed to connect to remote server: %s %s\n", binding, nt_errstr(status));
	}

	return status;
}

/* open a rpc connection to a specific transport */
NTSTATUS torture_rpc_connection_transport(TALLOC_CTX *parent_ctx, 
					  struct dcerpc_pipe **p, 
					  const struct dcerpc_interface_table *table,
					  enum dcerpc_transport_t transport)
{
        NTSTATUS status;
	const char *binding = lp_parm_string(-1, "torture", "binding");
	struct dcerpc_binding *b;
	TALLOC_CTX *mem_ctx = talloc_named(parent_ctx, 0, "torture_rpc_connection_smb");

	if (!binding) {
		printf("You must specify a ncacn binding string\n");
		talloc_free(mem_ctx);
		return NT_STATUS_INVALID_PARAMETER;
	}

	status = dcerpc_parse_binding(mem_ctx, binding, &b);
	if (!NT_STATUS_IS_OK(status)) {
		DEBUG(0,("Failed to parse dcerpc binding '%s'\n", binding));
		talloc_free(mem_ctx);
		return status;
	}

	b->transport = transport;

	status = dcerpc_pipe_connect_b(mem_ctx, p, b, table,
				       cmdline_credentials, NULL);
					   
	if (NT_STATUS_IS_OK(status)) {
		*p = talloc_reference(parent_ctx, *p);
	} else {
		*p = NULL;
	}
	talloc_free(mem_ctx);
        return status;
}

NTSTATUS torture_rpc_init(void)
{
	dcerpc_init();

	dcerpc_table_init();

	register_torture_op("RPC-LSA", torture_rpc_lsa);
	register_torture_op("RPC-LSALOOKUP", torture_rpc_lsa_lookup);
	register_torture_op("RPC-LSA-GETUSER", torture_rpc_lsa_get_user);
	register_torture_op("RPC-SECRETS", torture_rpc_lsa_secrets);
	register_torture_op("RPC-ECHO", torture_rpc_echo);
	register_torture_op("RPC-DFS", torture_rpc_dfs);
	register_torture_op("RPC-SPOOLSS", torture_rpc_spoolss);
	register_torture_op("RPC-SAMR", torture_rpc_samr);
	register_torture_op("RPC-SAMR-USERS", torture_rpc_samr_users);
	register_torture_op("RPC-SAMR-PASSWORDS", torture_rpc_samr_passwords);
	register_torture_op("RPC-UNIXINFO", torture_rpc_unixinfo);
	register_torture_op("RPC-NETLOGON", torture_rpc_netlogon);
	register_torture_op("RPC-SAMLOGON", torture_rpc_samlogon);
	register_torture_op("RPC-SAMSYNC", torture_rpc_samsync);
	register_torture_op("RPC-SCHANNEL", torture_rpc_schannel);
	register_torture_op("RPC-WKSSVC", torture_rpc_wkssvc);
	register_torture_op("RPC-SRVSVC", torture_rpc_srvsvc);
	register_torture_op("RPC-SVCCTL", torture_rpc_svcctl);
	register_torture_op("RPC-ATSVC", torture_rpc_atsvc);
	register_torture_op("RPC-EVENTLOG", torture_rpc_eventlog);
	register_torture_op("RPC-EPMAPPER", torture_rpc_epmapper);
	register_torture_op("RPC-WINREG", torture_rpc_winreg);
	register_torture_op("RPC-INITSHUTDOWN", torture_rpc_initshutdown);
	register_torture_op("RPC-OXIDRESOLVE", torture_rpc_oxidresolve);
	register_torture_op("RPC-REMACT", torture_rpc_remact);
	register_torture_op("RPC-MGMT", torture_rpc_mgmt);
	register_torture_op("RPC-SCANNER", torture_rpc_scanner);
	register_torture_op("RPC-AUTOIDL", torture_rpc_autoidl);
	register_torture_op("RPC-COUNTCALLS", torture_rpc_countcalls);
	register_torture_op("RPC-MULTIBIND", torture_multi_bind);
	register_torture_op("RPC-AUTHCONTEXT", torture_bind_authcontext);
	register_torture_op("RPC-BINDSAMBA3", torture_bind_samba3);
	register_torture_op("RPC-NETLOGSAMBA3", torture_netlogon_samba3);
	register_torture_op("RPC-SAMBA3SESSIONKEY", torture_samba3_sessionkey);
	register_torture_op("RPC-SAMBA3-SRVSVC", torture_samba3_rpc_srvsvc);
	register_torture_op("RPC-SAMBA3-SHARESEC",
			    torture_samba3_rpc_sharesec);
	register_torture_op("RPC-SAMBA3-GETUSERNAME",
			    torture_samba3_rpc_getusername);
	register_torture_op("RPC-SAMBA3-LSA", torture_samba3_rpc_lsa);
	register_torture_op("RPC-SAMBA3-SPOOLSS", torture_samba3_rpc_spoolss);
	register_torture_op("RPC-SAMBA3-WKSSVC", torture_samba3_rpc_wkssvc);
	register_torture_op("RPC-SAMBA3-WINREG", torture_samba3_rpc_winreg);
	register_torture_op("RPC-DRSUAPI", torture_rpc_drsuapi);
	register_torture_op("RPC-CRACKNAMES", torture_rpc_drsuapi_cracknames);
	register_torture_op("RPC-ROT", torture_rpc_rot);
	register_torture_op("RPC-DSSETUP", torture_rpc_dssetup);
	register_torture_op("RPC-ALTERCONTEXT", torture_rpc_alter_context);
	register_torture_op("RPC-JOIN", torture_rpc_join);
	register_torture_op("RPC-DSSYNC", torture_rpc_dssync);
	register_torture_op("BENCH-RPC", torture_bench_rpc);
	register_torture_op("RPC-ASYNCBIND", torture_async_bind);

	return NT_STATUS_OK;
}