mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
b135f4467f
the remote server's name, or in the absence of a local nbt_server to
communicate with (or without root access), a node status request.
The result is that we are in a better position to use kerberos, as well
as to remove the 'password server' mandatory parameter for the samsync
and samdump commands. (I need this to put these into SWAT).
The only problem I have is that I must create a messaging context, which
requires a server ID. As a client process, I don't expect to get
messages, but it is currently required for replies, so I generate a
random() number. We probably need the servers to accept connections on
streamed sockets too, for client-only tasks that want IRPC.
Because I wanted to test this code, I have put the NET-API-* tests into
our test scripts, to ensure they pass and keep passing. They are good
frontends onto the libnet system, and I see no reason not to test them.
In doing so the NET-API-RPCCONNECT test was simplified to take a
binding string on the command line, removing duplicate code, and
testing the combinations in the scripts instead.
(I have done a bit of work on the list shares code in libnet_share.c
to make it pass 'make test')
In the future, I would like to extend the libcli/findds.c code (based
off volker's winbind/wb_async_helpers.c, which is why it shows up a bit
odd in the patch) to handle getting multiple name replies, sending a
getdc request to each in turn.
(posted to samba-technical for review, and I'll happily update with
any comments)
Andrew Bartlett
(This used to be commit 7ccddfd351
)
91 lines
2.4 KiB
C
91 lines
2.4 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
Test suite for libnet calls.
|
|
|
|
Copyright (C) Rafal Szczesniak 2005
|
|
|
|
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 "lib/cmdline/popt_common.h"
|
|
#include "libnet/libnet.h"
|
|
|
|
|
|
static BOOL test_lsa_connect(struct libnet_context *ctx)
|
|
{
|
|
NTSTATUS status;
|
|
struct libnet_RpcConnect connect;
|
|
connect.level = LIBNET_RPC_CONNECT_BINDING;
|
|
connect.in.binding = lp_parm_string(-1, "torture", "binding");
|
|
connect.in.dcerpc_iface = &dcerpc_table_lsarpc;
|
|
|
|
status = libnet_RpcConnect(ctx, ctx, &connect);
|
|
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
printf("Couldn't connect to rpc service %s on %s: %s\n",
|
|
connect.in.dcerpc_iface->name, connect.in.binding,
|
|
nt_errstr(status));
|
|
|
|
return False;
|
|
}
|
|
|
|
return True;
|
|
}
|
|
|
|
|
|
static BOOL test_samr_connect(struct libnet_context *ctx)
|
|
{
|
|
NTSTATUS status;
|
|
struct libnet_RpcConnect connect;
|
|
connect.level = LIBNET_RPC_CONNECT_BINDING;
|
|
connect.in.binding = lp_parm_string(-1, "torture", "binding");
|
|
connect.in.dcerpc_iface = &dcerpc_table_samr;
|
|
|
|
status = libnet_RpcConnect(ctx, ctx, &connect);
|
|
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
printf("Couldn't connect to rpc service %s on %s: %s\n",
|
|
connect.in.dcerpc_iface->name, connect.in.binding,
|
|
nt_errstr(status));
|
|
|
|
return False;
|
|
}
|
|
|
|
return True;
|
|
}
|
|
|
|
BOOL torture_rpc_connect(void)
|
|
{
|
|
struct libnet_context *ctx;
|
|
|
|
ctx = libnet_context_init(NULL);
|
|
ctx->cred = cmdline_credentials;
|
|
|
|
printf("Testing connection to lsarpc interface\n");
|
|
if (!test_lsa_connect(ctx)) {
|
|
printf("failed to connect lsarpc interface\n");
|
|
return False;
|
|
}
|
|
|
|
printf("Testing connection to SAMR service\n");
|
|
if (!test_samr_connect(ctx)) {
|
|
printf("failed to connect samr interface\n");
|
|
return False;
|
|
}
|
|
|
|
return True;
|
|
}
|