2004-09-28 02:06:27 +04:00
/*
Unix SMB / CIFS implementation .
test suite for oxidresolve operations
Copyright ( C ) Jelmer Vernooij 2004
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 0213 9 , USA .
*/
# include "includes.h"
2006-01-03 16:41:17 +03:00
# include "torture/torture.h"
2006-03-15 02:35:30 +03:00
# include "librpc/gen_ndr/ndr_oxidresolver_c.h"
# include "librpc/gen_ndr/ndr_remact_c.h"
2006-03-16 03:23:11 +03:00
# include "librpc/gen_ndr/epmapper.h"
2006-03-14 18:02:05 +03:00
# include "torture/rpc/rpc.h"
2006-03-16 03:23:11 +03:00
# include "librpc/gen_ndr/ndr_dcom.h"
2004-11-02 20:38:11 +03:00
2005-07-19 03:58:59 +04:00
# define CLSID_IMAGEDOC "02B01C80-E03D-101A-B294-00DD010F2BF9"
2005-01-27 09:16:59 +03:00
static int test_RemoteActivation ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx , uint64_t * oxid , struct GUID * oid )
2004-11-02 20:38:11 +03:00
{
struct RemoteActivation r ;
NTSTATUS status ;
struct GUID iids [ 2 ] ;
2005-02-10 08:09:35 +03:00
uint16_t protseq [ 3 ] = { EPM_PROTOCOL_TCP , EPM_PROTOCOL_NCALRPC , EPM_PROTOCOL_UUID } ;
2004-11-02 20:38:11 +03:00
ZERO_STRUCT ( r . in ) ;
r . in . this . version . MajorVersion = 5 ;
r . in . this . version . MinorVersion = 1 ;
2004-11-25 23:03:46 +03:00
r . in . this . cid = GUID_random ( ) ;
2005-07-19 03:58:59 +04:00
GUID_from_string ( CLSID_IMAGEDOC , & r . in . Clsid ) ;
2004-11-02 20:38:11 +03:00
r . in . ClientImpLevel = RPC_C_IMP_LEVEL_IDENTIFY ;
r . in . num_protseqs = 3 ;
r . in . protseq = protseq ;
r . in . Interfaces = 1 ;
2006-03-26 04:59:17 +04:00
iids [ 0 ] = dcerpc_table_IUnknown . syntax_id . uuid ;
2004-11-02 20:38:11 +03:00
r . in . pIIDs = iids ;
2006-09-19 01:52:00 +04:00
r . out . pOxid = oxid ;
r . out . ipidRemUnknown = oid ;
2004-11-02 20:38:11 +03:00
status = dcerpc_RemoteActivation ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_ERR ( status ) ) {
fprintf ( stderr , " RemoteActivation: %s \n " , nt_errstr ( status ) ) ;
return 0 ;
}
if ( ! W_ERROR_IS_OK ( r . out . result ) ) {
fprintf ( stderr , " RemoteActivation: %s \n " , win_errstr ( r . out . result ) ) ;
return 0 ;
}
2006-09-24 06:05:37 +04:00
if ( ! W_ERROR_IS_OK ( * r . out . hr ) ) {
2006-09-19 01:52:00 +04:00
fprintf ( stderr , " RemoteActivation: %s \n " , win_errstr ( * r . out . hr ) ) ;
2004-11-02 20:38:11 +03:00
return 0 ;
}
if ( ! W_ERROR_IS_OK ( r . out . results [ 0 ] ) ) {
fprintf ( stderr , " RemoteActivation: %s \n " , win_errstr ( r . out . results [ 0 ] ) ) ;
return 0 ;
}
return 1 ;
}
2004-09-28 02:06:27 +04:00
2005-01-27 09:16:59 +03:00
static int test_SimplePing ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx , uint64_t setid )
2004-09-28 02:06:27 +04:00
{
struct SimplePing r ;
NTSTATUS status ;
2004-10-31 04:21:14 +03:00
r . in . SetId = & setid ;
2004-09-28 02:06:27 +04:00
status = dcerpc_SimplePing ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_ERR ( status ) ) {
fprintf ( stderr , " SimplePing: %s \n " , nt_errstr ( status ) ) ;
return 0 ;
}
if ( ! W_ERROR_IS_OK ( r . out . result ) ) {
fprintf ( stderr , " SimplePing: %s \n " , win_errstr ( r . out . result ) ) ;
return 0 ;
}
return 1 ;
}
2005-01-27 09:16:59 +03:00
static int test_ComplexPing ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx , uint64_t * setid , struct GUID oid )
2004-10-31 04:21:14 +03:00
{
struct ComplexPing r ;
NTSTATUS status ;
* setid = 0 ;
ZERO_STRUCT ( r . in ) ;
r . in . SequenceNum = 0 ;
r . in . SetId = setid ;
2004-11-02 20:38:11 +03:00
r . in . cAddToSet = 1 ;
r . in . AddToSet = & oid ;
2004-10-31 04:21:14 +03:00
status = dcerpc_ComplexPing ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_ERR ( status ) ) {
fprintf ( stderr , " ComplexPing: %s \n " , nt_errstr ( status ) ) ;
return 0 ;
}
if ( ! W_ERROR_IS_OK ( r . out . result ) ) {
fprintf ( stderr , " ComplexPing: %s \n " , win_errstr ( r . out . result ) ) ;
return 0 ;
}
return 1 ;
}
2004-09-28 02:06:27 +04:00
static int test_ServerAlive ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx )
{
struct ServerAlive r ;
NTSTATUS status ;
status = dcerpc_ServerAlive ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_ERR ( status ) ) {
fprintf ( stderr , " ServerAlive: %s \n " , nt_errstr ( status ) ) ;
return 0 ;
}
if ( ! W_ERROR_IS_OK ( r . out . result ) ) {
fprintf ( stderr , " ServerAlive: %s \n " , win_errstr ( r . out . result ) ) ;
return 0 ;
}
return 1 ;
}
2005-01-27 09:16:59 +03:00
static int test_ResolveOxid ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx , uint64_t oxid )
2004-11-02 20:38:11 +03:00
{
struct ResolveOxid r ;
NTSTATUS status ;
2005-02-10 08:09:35 +03:00
uint16_t protseq [ 2 ] = { EPM_PROTOCOL_TCP , EPM_PROTOCOL_SMB } ;
2004-11-02 20:38:11 +03:00
2004-11-02 22:52:51 +03:00
r . in . pOxid = oxid ;
2004-11-02 20:38:11 +03:00
r . in . cRequestedProtseqs = 2 ;
r . in . arRequestedProtseqs = protseq ;
status = dcerpc_ResolveOxid ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_ERR ( status ) ) {
fprintf ( stderr , " ResolveOxid: %s \n " , nt_errstr ( status ) ) ;
return 0 ;
}
if ( ! W_ERROR_IS_OK ( r . out . result ) ) {
fprintf ( stderr , " ResolveOxid: %s \n " , win_errstr ( r . out . result ) ) ;
return 0 ;
}
return 1 ;
}
2005-01-27 09:16:59 +03:00
static int test_ResolveOxid2 ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx , uint64_t oxid )
2004-11-02 20:38:11 +03:00
{
struct ResolveOxid2 r ;
NTSTATUS status ;
2005-02-10 08:09:35 +03:00
uint16_t protseq [ 2 ] = { EPM_PROTOCOL_TCP , EPM_PROTOCOL_SMB } ;
2004-11-02 20:38:11 +03:00
2004-11-03 16:33:30 +03:00
r . in . pOxid = oxid ;
2004-11-02 20:38:11 +03:00
r . in . cRequestedProtseqs = 2 ;
r . in . arRequestedProtseqs = protseq ;
status = dcerpc_ResolveOxid2 ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_ERR ( status ) ) {
fprintf ( stderr , " ResolveOxid2: %s \n " , nt_errstr ( status ) ) ;
return 0 ;
}
if ( ! W_ERROR_IS_OK ( r . out . result ) ) {
fprintf ( stderr , " ResolveOxid2: %s \n " , win_errstr ( r . out . result ) ) ;
return 0 ;
}
2006-09-19 01:52:00 +04:00
printf ( " Remote server versions: %d, %d \n " , r . out . ComVersion - > MajorVersion , r . out . ComVersion - > MinorVersion ) ;
2004-11-02 20:38:11 +03:00
return 1 ;
}
2004-09-28 02:06:27 +04:00
static int test_ServerAlive2 ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx )
{
struct ServerAlive2 r ;
NTSTATUS status ;
status = dcerpc_ServerAlive2 ( p , mem_ctx , & r ) ;
if ( NT_STATUS_IS_ERR ( status ) ) {
fprintf ( stderr , " ServerAlive2: %s \n " , nt_errstr ( status ) ) ;
return 0 ;
}
if ( ! W_ERROR_IS_OK ( r . out . result ) ) {
fprintf ( stderr , " ServerAlive2: %s \n " , win_errstr ( r . out . result ) ) ;
return 0 ;
}
return 1 ;
}
2006-03-25 19:01:28 +03:00
BOOL torture_rpc_oxidresolve ( struct torture_context * torture )
2004-09-28 02:06:27 +04:00
{
NTSTATUS status ;
2004-11-02 20:38:11 +03:00
struct dcerpc_pipe * p , * premact ;
2004-09-28 02:06:27 +04:00
TALLOC_CTX * mem_ctx ;
BOOL ret = True ;
2005-01-27 09:16:59 +03:00
uint64_t setid ;
uint64_t oxid ;
2004-11-02 20:38:11 +03:00
struct GUID oid ;
2004-09-28 02:06:27 +04:00
mem_ctx = talloc_init ( " torture_rpc_oxidresolve " ) ;
2005-03-22 11:00:45 +03:00
status = torture_rpc_connection ( mem_ctx ,
& premact ,
2005-12-27 17:28:01 +03:00
& dcerpc_table_IRemoteActivation ) ;
2004-11-02 20:38:11 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2005-03-22 11:00:45 +03:00
talloc_free ( mem_ctx ) ;
2004-11-02 20:38:11 +03:00
return False ;
}
2005-03-22 11:00:45 +03:00
status = torture_rpc_connection ( mem_ctx ,
& p ,
2005-12-27 17:28:01 +03:00
& dcerpc_table_IOXIDResolver ) ;
2004-09-28 02:06:27 +04:00
2005-03-12 20:12:52 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2005-03-22 11:00:45 +03:00
talloc_free ( mem_ctx ) ;
2004-09-28 02:06:27 +04:00
return False ;
2005-03-12 20:12:52 +03:00
}
2004-09-28 02:06:27 +04:00
2004-10-31 04:21:14 +03:00
if ( ! test_ServerAlive ( p , mem_ctx ) )
2004-09-28 02:06:27 +04:00
ret = False ;
2005-03-12 20:12:52 +03:00
if ( ! test_ServerAlive2 ( p , mem_ctx ) )
2004-10-31 04:21:14 +03:00
ret = False ;
2005-03-12 20:12:52 +03:00
if ( ! test_RemoteActivation ( premact , mem_ctx , & oxid , & oid ) )
return False ;
if ( ! test_ComplexPing ( p , mem_ctx , & setid , oid ) )
2004-09-28 02:06:27 +04:00
ret = False ;
2005-03-12 20:12:52 +03:00
if ( ! test_SimplePing ( p , mem_ctx , setid ) )
2004-09-28 02:06:27 +04:00
ret = False ;
2004-11-02 20:38:11 +03:00
if ( ! test_ResolveOxid ( p , mem_ctx , oxid ) )
ret = False ;
if ( ! test_ResolveOxid2 ( p , mem_ctx , oxid ) )
ret = False ;
2005-01-27 10:08:20 +03:00
talloc_free ( mem_ctx ) ;
2004-09-28 02:06:27 +04:00
return ret ;
}