2003-11-21 00:52:40 +03:00
/*
Unix SMB / CIFS implementation .
test suite for eventlog rpc operations
Copyright ( C ) Tim Potter 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
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"
2003-11-21 06:07:02 +03:00
static void init_eventlog_String ( struct eventlog_String * name , const char * s )
{
name - > name = s ;
name - > name_len = 2 * strlen_m ( s ) ;
name - > name_size = name - > name_len ;
}
2003-11-21 00:52:40 +03:00
BOOL test_CloseEventLog ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx ,
struct policy_handle * handle )
{
NTSTATUS status ;
struct eventlog_CloseEventLog r ;
r . in . handle = r . out . handle = handle ;
printf ( " Testing CloseEventLog \n " ) ;
status = dcerpc_eventlog_CloseEventLog ( p , mem_ctx , & r ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " CloseEventLog failed - %s \n " , nt_errstr ( status ) ) ;
return False ;
}
return True ;
}
static BOOL test_OpenEventLog ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx )
{
NTSTATUS status ;
struct eventlog_OpenEventLog r ;
2003-11-21 06:07:02 +03:00
struct eventlog_OpenUnknown0 unknown0 ;
2003-11-21 00:52:40 +03:00
struct policy_handle handle ;
printf ( " \n testing OpenEventLog \n " ) ;
2003-11-21 06:07:02 +03:00
unknown0 . unknown0 = 0x005c ;
unknown0 . unknown1 = 0x0001 ;
r . in . unknown0 = & unknown0 ;
init_eventlog_String ( & r . in . source , " system " ) ;
init_eventlog_String ( & r . in . unknown1 , NULL ) ;
r . in . unknown2 = 0x00000001 ;
r . in . unknown3 = 0x00000001 ;
2003-11-21 00:52:40 +03:00
status = dcerpc_eventlog_OpenEventLog ( p , mem_ctx , & r ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " OpenEventLog failed - %s \n " , nt_errstr ( status ) ) ;
return False ;
}
if ( ! test_CloseEventLog ( p , mem_ctx , & handle ) )
return False ;
return True ;
}
BOOL torture_rpc_eventlog ( int dummy )
{
NTSTATUS status ;
struct dcerpc_pipe * p ;
TALLOC_CTX * mem_ctx ;
BOOL ret = True ;
mem_ctx = talloc_init ( " torture_rpc_atsvc " ) ;
status = torture_rpc_connection ( & p ,
2003-11-21 06:07:02 +03:00
DCERPC_EVENTLOG_NAME ,
DCERPC_EVENTLOG_UUID ,
DCERPC_EVENTLOG_VERSION ) ;
2003-11-21 00:52:40 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
return False ;
}
p - > flags | = DCERPC_DEBUG_PRINT_BOTH ;
if ( ! test_OpenEventLog ( p , mem_ctx ) ) {
return False ;
}
2003-11-22 11:11:32 +03:00
talloc_destroy ( mem_ctx ) ;
2003-11-21 00:52:40 +03:00
torture_rpc_close ( p ) ;
return ret ;
}