2003-11-13 12:26:53 +03:00
/*
Unix SMB / CIFS implementation .
test suite for lsa dfs 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
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"
2004-11-01 13:30:34 +03:00
# include "librpc/gen_ndr/ndr_dfs.h"
2003-11-13 12:26:53 +03:00
2004-08-13 05:31:11 +04:00
static BOOL test_GetManagerVersion ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx )
2003-11-13 12:26:53 +03:00
{
NTSTATUS status ;
2004-08-13 05:31:11 +04:00
struct dfs_GetManagerVersion r ;
2004-05-25 20:24:13 +04:00
uint32_t exist = 0 ;
2003-11-13 12:26:53 +03:00
r . out . exist_flag = & exist ;
2004-08-13 05:31:11 +04:00
status = dcerpc_dfs_GetManagerVersion ( p , mem_ctx , & r ) ;
2003-11-13 12:26:53 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2004-08-13 05:31:11 +04:00
printf ( " GetManagerVersion failed - %s \n " , nt_errstr ( status ) ) ;
2003-11-13 12:26:53 +03:00
return False ;
}
return True ;
}
2004-05-25 21:24:24 +04:00
static BOOL test_InfoLevel ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx , uint16_t level ,
2003-11-14 16:16:34 +03:00
const char * root )
{
NTSTATUS status ;
struct dfs_GetInfo r ;
r . in . path = root ;
r . in . server = NULL ;
r . in . share = NULL ;
r . in . level = level ;
printf ( " Testing GetInfo level %u on '%s' \n " , level , root ) ;
status = dcerpc_dfs_GetInfo ( p , mem_ctx , & r ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " Info failed - %s \n " , nt_errstr ( status ) ) ;
return False ;
}
return True ;
}
static BOOL test_Info ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx , const char * root )
{
BOOL ret = True ;
2004-05-25 21:24:24 +04:00
uint16_t levels [ ] = { 1 , 2 , 3 , 4 , 100 , 101 , 102 , 200 , 300 } ;
2003-11-14 16:16:34 +03:00
int i ;
for ( i = 0 ; i < ARRAY_SIZE ( levels ) ; i + + ) {
if ( ! test_InfoLevel ( p , mem_ctx , levels [ i ] , root ) ) {
ret = False ;
}
}
return ret ;
}
2004-05-25 21:24:24 +04:00
static BOOL test_EnumLevel ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx , uint16_t level )
2003-11-13 12:26:53 +03:00
{
NTSTATUS status ;
struct dfs_Enum r ;
2004-05-25 20:24:13 +04:00
uint32_t total = 0 ;
2003-11-14 10:20:46 +03:00
struct dfs_EnumStruct e ;
2003-11-14 10:56:43 +03:00
struct dfs_Info1 s ;
2003-11-14 11:27:39 +03:00
struct dfs_EnumArray1 e1 ;
2003-11-14 16:16:34 +03:00
BOOL ret = True ;
2003-11-14 11:27:39 +03:00
r . in . level = level ;
2004-05-25 20:24:13 +04:00
r . in . bufsize = ( uint32_t ) - 1 ;
2003-11-14 10:20:46 +03:00
r . in . total = & total ;
2003-11-14 11:27:39 +03:00
r . in . unknown = & total ;
2003-11-14 10:20:46 +03:00
r . in . info = & e ;
2003-11-14 10:56:43 +03:00
e . level = r . in . level ;
2003-11-14 11:27:39 +03:00
e . e . info1 = & e1 ;
2003-11-14 10:56:43 +03:00
e . e . info1 - > count = 0 ;
e . e . info1 - > s = & s ;
s . path = NULL ;
2003-11-14 10:20:46 +03:00
2003-11-13 12:26:53 +03:00
status = dcerpc_dfs_Enum ( p , mem_ctx , & r ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " Enum failed - %s \n " , nt_errstr ( status ) ) ;
return False ;
}
2003-11-14 16:16:34 +03:00
if ( level = = 1 & & r . out . total ) {
int i ;
for ( i = 0 ; i < * r . out . total ; i + + ) {
const char * root = r . out . info - > e . info1 - > s [ i ] . path ;
if ( ! test_Info ( p , mem_ctx , root ) ) {
ret = False ;
}
}
}
return ret ;
2003-11-13 12:26:53 +03:00
}
2003-11-14 16:16:34 +03:00
2003-11-14 11:27:39 +03:00
static BOOL test_Enum ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx )
{
BOOL ret = True ;
2004-05-25 21:24:24 +04:00
uint16_t levels [ ] = { 1 , 2 , 3 , 4 , 200 , 300 } ;
2003-11-14 11:27:39 +03:00
int i ;
for ( i = 0 ; i < ARRAY_SIZE ( levels ) ; i + + ) {
if ( ! test_EnumLevel ( p , mem_ctx , levels [ i ] ) ) {
ret = False ;
}
}
return ret ;
}
2004-10-28 17:40:50 +04:00
#if 0
2003-11-14 16:16:34 +03:00
static BOOL test_Add ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx )
{
NTSTATUS status ;
struct dfs_Add add ;
struct dfs_Remove rem ;
add . in . path = " \\ \\ win2003 \\ 2nd root \\ test " ;
add . in . server = " win2003 " ;
add . in . share = " e$ " ;
add . in . comment = " a test comment " ;
add . in . flags = 1 ;
status = dcerpc_dfs_Add ( p , mem_ctx , & add ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " Add failed - %s \n " , nt_errstr ( status ) ) ;
return False ;
}
rem . in . path = add . in . path ;
rem . in . server = add . in . server ;
rem . in . share = add . in . share ;
status = dcerpc_dfs_Remove ( p , mem_ctx , & rem ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " Add failed - %s \n " , nt_errstr ( status ) ) ;
return False ;
}
return True ;
}
2004-10-28 17:40:50 +04:00
# endif
2003-11-14 16:16:34 +03:00
2004-10-28 17:40:50 +04:00
BOOL torture_rpc_dfs ( void )
2003-11-13 12:26:53 +03:00
{
NTSTATUS status ;
struct dcerpc_pipe * p ;
TALLOC_CTX * mem_ctx ;
BOOL ret = True ;
mem_ctx = talloc_init ( " torture_rpc_dfs " ) ;
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_netdfs ) ;
2003-11-13 12:26:53 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
return False ;
}
2003-11-18 04:18:24 +03:00
2004-08-13 05:31:11 +04:00
if ( ! test_GetManagerVersion ( p , mem_ctx ) ) {
2003-11-13 12:26:53 +03:00
ret = False ;
}
2003-11-14 16:16:34 +03:00
#if 0
if ( ! test_Add ( p , mem_ctx ) ) {
ret = False ;
}
# endif
2003-11-13 12:26:53 +03:00
if ( ! test_Enum ( p , mem_ctx ) ) {
ret = False ;
}
2005-01-27 10:08:20 +03:00
talloc_free ( mem_ctx ) ;
2003-11-22 11:11:32 +03:00
2003-11-13 12:26:53 +03:00
return ret ;
}