2005-10-19 17:45:44 +04:00
/*
Unix SMB / CIFS implementation .
Command backend for wbinfo - m
Copyright ( C ) Volker Lendecke 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 0213 9 , USA .
*/
# include "includes.h"
# include "libcli/composite/composite.h"
# include "winbind/wb_server.h"
# include "smbd/service_task.h"
2006-03-15 02:35:30 +03:00
# include "librpc/gen_ndr/ndr_lsa_c.h"
2005-10-19 17:45:44 +04:00
/* List trusted domains. To avoid the trouble with having to wait for other
* conflicting requests waiting for the lsa pipe we ' re opening our own lsa
* pipe here . */
struct cmd_list_trustdom_state {
struct composite_context * ctx ;
struct dcerpc_pipe * lsa_pipe ;
struct policy_handle * lsa_policy ;
int num_domains ;
2005-10-20 01:53:03 +04:00
struct wb_dom_info * * domains ;
2005-10-19 17:45:44 +04:00
uint32_t resume_handle ;
2005-10-20 01:53:03 +04:00
struct lsa_DomainList domainlist ;
2005-10-19 17:45:44 +04:00
struct lsa_EnumTrustDom r ;
} ;
static void cmd_list_trustdoms_recv_domain ( struct composite_context * ctx ) ;
static void cmd_list_trustdoms_recv_lsa ( struct composite_context * ctx ) ;
static void cmd_list_trustdoms_recv_doms ( struct rpc_request * req ) ;
2005-11-05 12:34:07 +03:00
struct composite_context * wb_cmd_list_trustdoms_send ( TALLOC_CTX * mem_ctx ,
struct wbsrv_service * service )
2005-10-19 17:45:44 +04:00
{
struct composite_context * result , * ctx ;
struct cmd_list_trustdom_state * state ;
2005-11-05 12:34:07 +03:00
result = talloc_zero ( mem_ctx , struct composite_context ) ;
2005-10-19 17:45:44 +04:00
if ( result = = NULL ) goto failed ;
result - > state = COMPOSITE_STATE_IN_PROGRESS ;
result - > async . fn = NULL ;
result - > event_ctx = service - > task - > event_ctx ;
state = talloc ( result , struct cmd_list_trustdom_state ) ;
if ( state = = NULL ) goto failed ;
state - > ctx = result ;
result - > private_data = state ;
2005-11-05 12:34:07 +03:00
ctx = wb_sid2domain_send ( state , service , service - > primary_sid ) ;
2005-10-19 17:45:44 +04:00
if ( ctx = = NULL ) goto failed ;
ctx - > async . fn = cmd_list_trustdoms_recv_domain ;
ctx - > async . private_data = state ;
return result ;
failed :
talloc_free ( result ) ;
return NULL ;
}
static void cmd_list_trustdoms_recv_domain ( struct composite_context * ctx )
{
struct cmd_list_trustdom_state * state =
talloc_get_type ( ctx - > async . private_data ,
struct cmd_list_trustdom_state ) ;
struct wbsrv_domain * domain ;
struct smbcli_tree * tree ;
state - > ctx - > status = wb_sid2domain_recv ( ctx , & domain ) ;
if ( ! composite_is_ok ( state - > ctx ) ) return ;
2005-10-20 01:53:03 +04:00
tree = dcerpc_smb_tree ( domain - > lsa_pipe - > conn ) ;
if ( composite_nomem ( tree , state - > ctx ) ) return ;
2005-10-19 17:45:44 +04:00
2005-11-05 12:34:07 +03:00
ctx = wb_init_lsa_send ( state , tree , domain - > lsa_auth_type ,
2005-10-19 17:45:44 +04:00
domain - > schannel_creds ) ;
composite_continue ( state - > ctx , ctx , cmd_list_trustdoms_recv_lsa ,
state ) ;
}
static void cmd_list_trustdoms_recv_lsa ( struct composite_context * ctx )
{
struct cmd_list_trustdom_state * state =
talloc_get_type ( ctx - > async . private_data ,
struct cmd_list_trustdom_state ) ;
struct rpc_request * req ;
state - > ctx - > status = wb_init_lsa_recv ( ctx , state ,
& state - > lsa_pipe ,
& state - > lsa_policy ) ;
if ( ! composite_is_ok ( state - > ctx ) ) return ;
2005-10-20 01:53:03 +04:00
state - > num_domains = 0 ;
state - > domains = NULL ;
state - > domainlist . count = 0 ;
state - > domainlist . domains = NULL ;
2005-10-19 17:45:44 +04:00
state - > resume_handle = 0 ;
2005-10-20 01:53:03 +04:00
state - > r . in . handle = state - > lsa_policy ;
2005-10-19 17:45:44 +04:00
state - > r . in . resume_handle = & state - > resume_handle ;
state - > r . in . max_size = 1000 ;
state - > r . out . resume_handle = & state - > resume_handle ;
2005-10-20 01:53:03 +04:00
state - > r . out . domains = & state - > domainlist ;
2005-10-19 17:45:44 +04:00
req = dcerpc_lsa_EnumTrustDom_send ( state - > lsa_pipe , state , & state - > r ) ;
composite_continue_rpc ( state - > ctx , req , cmd_list_trustdoms_recv_doms ,
state ) ;
}
static void cmd_list_trustdoms_recv_doms ( struct rpc_request * req )
{
2005-10-20 01:53:03 +04:00
struct cmd_list_trustdom_state * state =
talloc_get_type ( req - > async . private ,
struct cmd_list_trustdom_state ) ;
int i , old_num_domains ;
state - > ctx - > status = dcerpc_ndr_request_recv ( req ) ;
if ( ! composite_is_ok ( state - > ctx ) ) return ;
state - > ctx - > status = state - > r . out . result ;
if ( ! NT_STATUS_IS_OK ( state - > ctx - > status ) & &
! NT_STATUS_EQUAL ( state - > ctx - > status , NT_STATUS_NO_MORE_ENTRIES ) & &
! NT_STATUS_EQUAL ( state - > ctx - > status , STATUS_MORE_ENTRIES ) ) {
composite_error ( state - > ctx , state - > ctx - > status ) ;
return ;
}
old_num_domains = state - > num_domains ;
state - > num_domains + = state - > r . out . domains - > count ;
state - > domains = talloc_realloc ( state , state - > domains ,
struct wb_dom_info * ,
state - > num_domains ) ;
if ( composite_nomem ( state - > domains , state - > ctx ) ) return ;
for ( i = 0 ; i < state - > r . out . domains - > count ; i + + ) {
int j = i + old_num_domains ;
state - > domains [ j ] = talloc ( state - > domains ,
struct wb_dom_info ) ;
if ( composite_nomem ( state - > domains [ i ] , state - > ctx ) ) return ;
state - > domains [ j ] - > name = talloc_steal (
state - > domains [ j ] ,
state - > r . out . domains - > domains [ i ] . name . string ) ;
state - > domains [ j ] - > sid = talloc_steal (
state - > domains [ j ] ,
state - > r . out . domains - > domains [ i ] . sid ) ;
}
if ( NT_STATUS_IS_OK ( state - > ctx - > status ) ) {
composite_done ( state - > ctx ) ;
return ;
}
state - > domainlist . count = 0 ;
state - > domainlist . domains = NULL ;
state - > r . in . handle = state - > lsa_policy ;
state - > r . in . resume_handle = & state - > resume_handle ;
state - > r . in . max_size = 1000 ;
state - > r . out . resume_handle = & state - > resume_handle ;
state - > r . out . domains = & state - > domainlist ;
2005-10-19 17:45:44 +04:00
2005-10-20 01:53:03 +04:00
req = dcerpc_lsa_EnumTrustDom_send ( state - > lsa_pipe , state , & state - > r ) ;
composite_continue_rpc ( state - > ctx , req , cmd_list_trustdoms_recv_doms ,
state ) ;
}
NTSTATUS wb_cmd_list_trustdoms_recv ( struct composite_context * ctx ,
TALLOC_CTX * mem_ctx ,
int * num_domains ,
struct wb_dom_info * * * domains )
{
NTSTATUS status = composite_wait ( ctx ) ;
if ( NT_STATUS_IS_OK ( status ) ) {
struct cmd_list_trustdom_state * state =
talloc_get_type ( ctx - > private_data ,
struct cmd_list_trustdom_state ) ;
* num_domains = state - > num_domains ;
* domains = talloc_steal ( mem_ctx , state - > domains ) ;
}
talloc_free ( ctx ) ;
return status ;
2005-10-19 17:45:44 +04:00
}