2003-11-21 16:14:17 +03:00
/*
Unix SMB / CIFS implementation .
test suite for epmapper rpc operations
Copyright ( C ) Andrew Tridgell 2003
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
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-11-21 16:14:17 +03:00
( 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
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-11-21 16:14:17 +03:00
*/
# include "includes.h"
2006-03-15 02:35:30 +03:00
# include "librpc/gen_ndr/ndr_epmapper_c.h"
2007-08-21 23:35:43 +04:00
# include "librpc/ndr/ndr_table.h"
2008-04-02 06:53:27 +04:00
# include "librpc/rpc/dcerpc_proto.h"
2006-03-14 18:02:05 +03:00
# include "torture/rpc/rpc.h"
2003-11-21 16:14:17 +03:00
2003-11-24 08:28:10 +03:00
/*
display any protocol tower
*/
2004-10-21 15:39:58 +04:00
static void display_tower ( TALLOC_CTX * mem_ctx , struct epm_tower * twr )
2003-11-24 08:28:10 +03:00
{
int i ;
for ( i = 0 ; i < twr - > num_floors ; i + + ) {
2005-02-04 04:32:19 +03:00
printf ( " %s " , epm_floor_string ( mem_ctx , & twr - > floors [ i ] ) ) ;
2003-11-24 08:28:10 +03:00
}
printf ( " \n " ) ;
}
2003-11-24 13:15:17 +03:00
2007-10-07 02:28:14 +04:00
static bool test_Map ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx ,
2003-11-24 13:15:17 +03:00
struct epm_twr_t * twr )
{
NTSTATUS status ;
struct epm_Map r ;
2003-12-16 12:02:58 +03:00
struct GUID uuid ;
2003-11-24 13:15:17 +03:00
struct policy_handle handle ;
2004-10-31 21:40:08 +03:00
int i ;
2007-08-18 10:57:49 +04:00
struct ndr_syntax_id syntax ;
2007-04-04 02:43:35 +04:00
uint32_t num_towers ;
2003-11-24 13:15:17 +03:00
ZERO_STRUCT ( uuid ) ;
ZERO_STRUCT ( handle ) ;
r . in . object = & uuid ;
r . in . map_tower = twr ;
r . in . entry_handle = & handle ;
r . out . entry_handle = & handle ;
r . in . max_towers = 100 ;
2007-04-04 02:43:35 +04:00
r . out . num_towers = & num_towers ;
2003-11-24 13:15:17 +03:00
2006-03-26 04:59:17 +04:00
dcerpc_floor_get_lhs_data ( & twr - > tower . floors [ 0 ] , & syntax ) ;
2003-11-27 10:28:46 +03:00
printf ( " epm_Map results for '%s': \n " ,
2007-08-21 23:35:43 +04:00
ndr_interface_name ( & syntax . uuid , syntax . if_version ) ) ;
2003-11-27 10:28:46 +03:00
2004-10-31 21:40:08 +03:00
twr - > tower . floors [ 2 ] . lhs . protocol = EPM_PROTOCOL_NCACN ;
2005-02-04 04:32:19 +03:00
twr - > tower . floors [ 2 ] . lhs . lhs_data = data_blob ( NULL , 0 ) ;
2004-10-31 21:40:08 +03:00
twr - > tower . floors [ 2 ] . rhs . ncacn . minor_version = 0 ;
twr - > tower . floors [ 3 ] . lhs . protocol = EPM_PROTOCOL_TCP ;
2005-02-04 04:32:19 +03:00
twr - > tower . floors [ 3 ] . lhs . lhs_data = data_blob ( NULL , 0 ) ;
2004-10-31 21:40:08 +03:00
twr - > tower . floors [ 3 ] . rhs . tcp . port = 0 ;
2003-11-27 10:28:46 +03:00
2004-10-31 21:40:08 +03:00
twr - > tower . floors [ 4 ] . lhs . protocol = EPM_PROTOCOL_IP ;
2005-02-04 04:32:19 +03:00
twr - > tower . floors [ 4 ] . lhs . lhs_data = data_blob ( NULL , 0 ) ;
2005-02-01 07:12:44 +03:00
twr - > tower . floors [ 4 ] . rhs . ip . ipaddr = " 0.0.0.0 " ;
2004-10-31 21:40:08 +03:00
status = dcerpc_epm_Map ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_OK ( status ) & & r . out . result = = 0 ) {
2006-11-22 19:55:21 +03:00
for ( i = 0 ; i < * r . out . num_towers ; i + + ) {
2004-10-31 21:40:08 +03:00
if ( r . out . towers [ i ] . twr ) {
display_tower ( mem_ctx , & r . out . towers [ i ] . twr - > tower ) ;
}
2003-11-27 10:28:46 +03:00
}
2004-10-31 21:40:08 +03:00
}
twr - > tower . floors [ 3 ] . lhs . protocol = EPM_PROTOCOL_HTTP ;
2005-02-04 04:32:19 +03:00
twr - > tower . floors [ 3 ] . lhs . lhs_data = data_blob ( NULL , 0 ) ;
2004-10-31 21:40:08 +03:00
twr - > tower . floors [ 3 ] . rhs . http . port = 0 ;
2003-11-24 13:15:17 +03:00
2004-10-31 21:40:08 +03:00
status = dcerpc_epm_Map ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_OK ( status ) & & r . out . result = = 0 ) {
2006-11-22 19:55:21 +03:00
for ( i = 0 ; i < * r . out . num_towers ; i + + ) {
2004-10-31 21:40:08 +03:00
if ( r . out . towers [ i ] . twr ) {
display_tower ( mem_ctx , & r . out . towers [ i ] . twr - > tower ) ;
2003-11-27 10:28:46 +03:00
}
}
}
2004-10-31 21:40:08 +03:00
2004-11-09 01:18:18 +03:00
twr - > tower . floors [ 3 ] . lhs . protocol = EPM_PROTOCOL_UDP ;
2005-02-04 04:32:19 +03:00
twr - > tower . floors [ 3 ] . lhs . lhs_data = data_blob ( NULL , 0 ) ;
2004-11-09 01:18:18 +03:00
twr - > tower . floors [ 3 ] . rhs . http . port = 0 ;
status = dcerpc_epm_Map ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_OK ( status ) & & r . out . result = = 0 ) {
2006-11-22 19:55:21 +03:00
for ( i = 0 ; i < * r . out . num_towers ; i + + ) {
2004-11-09 01:18:18 +03:00
if ( r . out . towers [ i ] . twr ) {
display_tower ( mem_ctx , & r . out . towers [ i ] . twr - > tower ) ;
}
}
}
2004-10-31 21:40:08 +03:00
twr - > tower . floors [ 3 ] . lhs . protocol = EPM_PROTOCOL_SMB ;
2005-02-04 04:32:19 +03:00
twr - > tower . floors [ 3 ] . lhs . lhs_data = data_blob ( NULL , 0 ) ;
2004-10-31 21:40:08 +03:00
twr - > tower . floors [ 3 ] . rhs . smb . unc = " " ;
twr - > tower . floors [ 4 ] . lhs . protocol = EPM_PROTOCOL_NETBIOS ;
2005-02-04 04:32:19 +03:00
twr - > tower . floors [ 4 ] . lhs . lhs_data = data_blob ( NULL , 0 ) ;
2004-10-31 21:40:08 +03:00
twr - > tower . floors [ 4 ] . rhs . netbios . name = " " ;
status = dcerpc_epm_Map ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_OK ( status ) & & r . out . result = = 0 ) {
2006-11-22 19:55:21 +03:00
for ( i = 0 ; i < * r . out . num_towers ; i + + ) {
2004-10-31 21:40:08 +03:00
if ( r . out . towers [ i ] . twr ) {
display_tower ( mem_ctx , & r . out . towers [ i ] . twr - > tower ) ;
}
}
}
/* FIXME: Extend to do other protocols as well (ncacn_unix_stream, ncalrpc) */
2003-11-24 13:15:17 +03:00
2007-10-07 02:28:14 +04:00
return true ;
2003-11-24 13:15:17 +03:00
}
2007-08-28 20:24:18 +04:00
static bool test_Lookup ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2003-11-21 16:14:17 +03:00
{
NTSTATUS status ;
struct epm_Lookup r ;
struct GUID uuid ;
struct rpc_if_id_t iface ;
struct policy_handle handle ;
2007-04-04 02:43:35 +04:00
uint32_t num_ents ;
2003-11-21 16:14:17 +03:00
ZERO_STRUCT ( handle ) ;
r . in . inquiry_type = 0 ;
r . in . object = & uuid ;
r . in . interface_id = & iface ;
r . in . vers_option = 0 ;
r . in . entry_handle = & handle ;
r . out . entry_handle = & handle ;
2003-11-24 08:28:10 +03:00
r . in . max_ents = 10 ;
2007-04-04 02:43:35 +04:00
r . out . num_ents = & num_ents ;
2003-11-21 16:14:17 +03:00
do {
2003-11-24 13:15:17 +03:00
int i ;
2005-01-06 12:24:41 +03:00
ZERO_STRUCT ( uuid ) ;
ZERO_STRUCT ( iface ) ;
2007-08-28 20:24:18 +04:00
status = dcerpc_epm_Lookup ( p , tctx , & r ) ;
2004-08-14 09:53:53 +04:00
if ( ! NT_STATUS_IS_OK ( status ) | | r . out . result ! = 0 ) {
2003-11-24 13:15:17 +03:00
break ;
}
2005-01-06 12:24:41 +03:00
printf ( " epm_Lookup returned %d events GUID %s \n " ,
2007-08-28 20:24:18 +04:00
* r . out . num_ents , GUID_string ( tctx , & handle . uuid ) ) ;
2005-01-06 12:24:41 +03:00
2006-11-22 19:55:21 +03:00
for ( i = 0 ; i < * r . out . num_ents ; i + + ) {
2003-11-24 13:15:17 +03:00
printf ( " \n Found '%s' \n " , r . out . entries [ i ] . annotation ) ;
2007-08-28 20:24:18 +04:00
display_tower ( tctx , & r . out . entries [ i ] . tower - > tower ) ;
2004-10-27 07:15:42 +04:00
if ( r . out . entries [ i ] . tower - > tower . num_floors = = 5 ) {
2007-08-28 20:24:18 +04:00
test_Map ( p , tctx , r . out . entries [ i ] . tower ) ;
2004-10-27 07:15:42 +04:00
}
2003-11-21 16:14:17 +03:00
}
2003-11-24 08:28:10 +03:00
} while ( NT_STATUS_IS_OK ( status ) & &
2004-08-14 09:53:53 +04:00
r . out . result = = 0 & &
2006-11-22 19:55:21 +03:00
* r . out . num_ents = = r . in . max_ents & &
2005-01-06 12:24:41 +03:00
! policy_handle_empty ( & handle ) ) ;
2003-11-21 16:14:17 +03:00
2007-08-28 20:24:18 +04:00
torture_assert_ntstatus_ok ( tctx , status , " Lookup failed " ) ;
2003-11-21 16:14:17 +03:00
2007-08-28 20:24:18 +04:00
return true ;
2003-11-21 16:14:17 +03:00
}
2007-10-07 02:28:14 +04:00
static bool test_Delete ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx , struct epm_entry_t * entries )
2005-01-09 17:24:51 +03:00
{
NTSTATUS status ;
struct epm_Delete r ;
r . in . num_ents = 1 ;
r . in . entries = entries ;
status = dcerpc_epm_Delete ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_ERR ( status ) ) {
printf ( " Delete failed - %s \n " , nt_errstr ( status ) ) ;
2007-10-07 02:28:14 +04:00
return false ;
2005-01-09 17:24:51 +03:00
}
if ( r . out . result ! = 0 ) {
printf ( " Delete failed - %d \n " , r . out . result ) ;
2007-10-07 02:28:14 +04:00
return false ;
2005-01-09 17:24:51 +03:00
}
2007-10-07 02:28:14 +04:00
return true ;
2005-01-09 17:24:51 +03:00
}
2007-08-28 20:24:18 +04:00
static bool test_Insert ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2005-01-09 17:24:51 +03:00
{
NTSTATUS status ;
struct epm_Insert r ;
r5902: A rather large change...
I wanted to add a simple 'workstation' argument to the DCERPC
authenticated binding calls, but this patch kind of grew from there.
With SCHANNEL, the 'workstation' name (the netbios name of the client)
matters, as this is what ties the session between the NETLOGON ops and
the SCHANNEL bind. This changes a lot of files, and these will again
be changed when jelmer does the credentials work.
I also correct some schannel IDL to distinguish between workstation
names and account names. The distinction matters for domain trust
accounts.
Issues in handling this (issues with lifetime of talloc pointers)
caused me to change the 'creds_CredentialsState' and 'struct
dcerpc_binding' pointers to always be talloc()ed pointers.
In the schannel DB, we now store both the domain and computername, and
query on both. This should ensure we fault correctly when the domain
is specified incorrectly in the SCHANNEL bind.
In the RPC-SCHANNEL test, I finally fixed a bug that vl pointed out,
where the comment claimed we re-used a connection, but in fact we made
a new connection.
This was achived by breaking apart some of the
dcerpc_secondary_connection() logic.
The addition of workstation handling was also propogated to NTLMSSP
and GENSEC, for completeness.
The RPC-SAMSYNC test has been cleaned up a little, using a loop over
usernames/passwords rather than manually expanded tests. This will be
expanded further (the code in #if 0 in this patch) to use a newly
created user account for testing.
In making this test pass test_rpc.sh, I found a bug in the RPC-ECHO
server, caused by the removal of [ref] and the assoicated pointer from
the IDL. This has been re-added, until the underlying pidl issues are
solved.
(This used to be commit 824289dcc20908ddec957a4a892a103eec2da9b9)
2005-03-19 11:34:43 +03:00
struct dcerpc_binding * bd ;
2005-01-09 17:24:51 +03:00
r . in . num_ents = 1 ;
2007-08-28 20:24:18 +04:00
r . in . entries = talloc_array ( tctx , struct epm_entry_t , 1 ) ;
2005-01-09 17:24:51 +03:00
ZERO_STRUCT ( r . in . entries [ 0 ] . object ) ;
r . in . entries [ 0 ] . annotation = " smbtorture endpoint " ;
2007-08-28 20:24:18 +04:00
status = dcerpc_parse_binding ( tctx , " ncalrpc:[SMBTORTURE] " , & bd ) ;
torture_assert_ntstatus_ok ( tctx , status ,
" Unable to generate dcerpc_binding struct " ) ;
2005-01-09 17:24:51 +03:00
2007-08-28 20:24:18 +04:00
r . in . entries [ 0 ] . tower = talloc ( tctx , struct epm_twr_t ) ;
2005-01-09 17:24:51 +03:00
2007-08-28 20:24:18 +04:00
status = dcerpc_binding_build_tower ( tctx , bd , & r . in . entries [ 0 ] . tower - > tower ) ;
torture_assert_ntstatus_ok ( tctx , status ,
" Unable to build tower from binding struct " ) ;
2005-01-09 17:24:51 +03:00
r . in . replace = 0 ;
2007-08-28 20:24:18 +04:00
status = dcerpc_epm_Insert ( p , tctx , & r ) ;
torture_assert_ntstatus_ok ( tctx , status , " Insert failed " ) ;
2005-01-09 17:24:51 +03:00
2007-08-28 20:24:18 +04:00
torture_assert ( tctx , r . out . result = = 0 , " Insert failed " ) ;
2005-01-09 17:24:51 +03:00
2007-08-28 20:24:18 +04:00
if ( ! test_Delete ( p , tctx , r . in . entries ) ) {
return false ;
2005-01-09 17:24:51 +03:00
}
2007-08-28 20:24:18 +04:00
return true ;
2005-01-09 17:24:51 +03:00
}
2007-08-28 20:24:18 +04:00
static bool test_InqObject ( struct torture_context * tctx , struct dcerpc_pipe * p )
2005-01-01 01:12:44 +03:00
{
NTSTATUS status ;
struct epm_InqObject r ;
2007-08-28 20:24:18 +04:00
r . in . epm_object = talloc ( tctx , struct GUID ) ;
2007-08-20 01:23:03 +04:00
* r . in . epm_object = ndr_table_epmapper . syntax_id . uuid ;
2005-01-01 01:12:44 +03:00
2007-08-28 20:24:18 +04:00
status = dcerpc_epm_InqObject ( p , tctx , & r ) ;
torture_assert_ntstatus_ok ( tctx , status , " InqObject failed " ) ;
2005-01-01 01:12:44 +03:00
2007-08-28 20:24:18 +04:00
return true ;
2005-01-01 01:12:44 +03:00
}
2007-08-28 20:24:18 +04:00
struct torture_suite * torture_rpc_epmapper ( TALLOC_CTX * mem_ctx )
2003-11-21 16:14:17 +03:00
{
2007-08-28 20:24:18 +04:00
struct torture_suite * suite = torture_suite_create ( mem_ctx , " EPMAPPER " ) ;
struct torture_rpc_tcase * tcase ;
tcase = torture_suite_add_rpc_iface_tcase ( suite , " epmapper " ,
& ndr_table_epmapper ) ;
2003-11-21 16:14:17 +03:00
2007-08-28 20:24:18 +04:00
torture_rpc_tcase_add_test ( tcase , " Lookup " , test_Lookup ) ;
torture_rpc_tcase_add_test ( tcase , " Insert " , test_Insert ) ;
torture_rpc_tcase_add_test ( tcase , " InqObject " , test_InqObject ) ;
2003-11-22 11:11:32 +03:00
2007-08-28 20:24:18 +04:00
return suite ;
2003-11-21 16:14:17 +03:00
}