mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
ba968d6684
I still need to figure out what causes the rest to fail...
Andrew Bartlett
(This used to be commit aa34bd46cb
)
144 lines
5.3 KiB
C
144 lines
5.3 KiB
C
/*
|
|
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-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;
|
|
}
|