2005-11-06 02:46:57 +03:00
/*
Unix SMB / CIFS implementation .
Get a struct wb_dom_info for a domain using DNS , netbios , possibly cldap
etc .
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
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2005-11-06 02:46:57 +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/>.
2005-11-06 02:46:57 +03:00
*/
# include "includes.h"
# include "libcli/composite/composite.h"
2006-03-07 14:07:23 +03:00
# include "libcli/resolve/resolve.h"
2006-04-02 16:02:01 +04:00
# include "libcli/security/security.h"
2005-11-06 02:46:57 +03:00
# include "winbind/wb_server.h"
# include "smbd/service_task.h"
2007-05-25 15:59:52 +04:00
# include "libcli/finddcs.h"
2007-09-08 16:42:09 +04:00
# include "param/param.h"
2005-11-06 02:46:57 +03:00
struct get_dom_info_state {
struct composite_context * ctx ;
struct wb_dom_info * info ;
} ;
static void get_dom_info_recv_addrs ( struct composite_context * ctx ) ;
struct composite_context * wb_get_dom_info_send ( TALLOC_CTX * mem_ctx ,
struct wbsrv_service * service ,
const char * domain_name ,
const struct dom_sid * sid )
{
struct composite_context * result , * ctx ;
struct get_dom_info_state * state ;
2007-07-16 15:27:29 +04:00
struct dom_sid * dom_sid ;
2007-04-30 01:40:48 +04:00
result = composite_create ( mem_ctx , service - > task - > event_ctx ) ;
2005-11-06 02:46:57 +03:00
if ( result = = NULL ) goto failed ;
state = talloc ( result , struct get_dom_info_state ) ;
if ( state = = NULL ) goto failed ;
state - > ctx = result ;
result - > private_data = state ;
state - > info = talloc_zero ( state , struct wb_dom_info ) ;
if ( state - > info = = NULL ) goto failed ;
2007-07-16 15:27:29 +04:00
state - > info - > name = talloc_strdup ( state - > info , domain_name ) ;
if ( state - > info - > name = = NULL ) goto failed ;
state - > info - > sid = dom_sid_dup ( state - > info , sid ) ;
if ( state - > info - > sid = = NULL ) goto failed ;
dom_sid = dom_sid_dup ( mem_ctx , sid ) ;
if ( dom_sid = = NULL ) goto failed ;
2005-11-06 02:46:57 +03:00
2007-12-07 15:30:23 +03:00
ctx = finddcs_send ( mem_ctx , lp_netbios_name ( service - > task - > lp_ctx ) ,
2007-12-14 00:46:37 +03:00
lp_nbt_port ( service - > task - > lp_ctx ) ,
2007-12-07 15:30:23 +03:00
domain_name , NBT_NAME_LOGON ,
2007-12-03 23:25:17 +03:00
dom_sid ,
2007-12-10 20:41:19 +03:00
lp_resolve_context ( service - > task - > lp_ctx ) ,
2007-09-28 05:17:46 +04:00
service - > task - > event_ctx ,
2007-05-25 15:59:52 +04:00
service - > task - > msg_ctx ) ;
2005-11-06 02:46:57 +03:00
if ( ctx = = NULL ) goto failed ;
2007-05-25 15:59:52 +04:00
composite_continue ( state - > ctx , ctx , get_dom_info_recv_addrs , state ) ;
2005-11-06 02:46:57 +03:00
return result ;
failed :
talloc_free ( result ) ;
return NULL ;
}
static void get_dom_info_recv_addrs ( struct composite_context * ctx )
{
struct get_dom_info_state * state =
talloc_get_type ( ctx - > async . private_data ,
struct get_dom_info_state ) ;
2007-05-25 15:59:52 +04:00
state - > ctx - > status = finddcs_recv ( ctx , state - > info ,
& state - > info - > num_dcs ,
& state - > info - > dcs ) ;
2005-11-06 02:46:57 +03:00
if ( ! composite_is_ok ( state - > ctx ) ) return ;
composite_done ( state - > ctx ) ;
}
NTSTATUS wb_get_dom_info_recv ( struct composite_context * ctx ,
TALLOC_CTX * mem_ctx ,
struct wb_dom_info * * result )
{
NTSTATUS status = composite_wait ( ctx ) ;
if ( NT_STATUS_IS_OK ( status ) ) {
struct get_dom_info_state * state =
talloc_get_type ( ctx - > private_data ,
struct get_dom_info_state ) ;
* result = talloc_steal ( mem_ctx , state - > info ) ;
}
talloc_free ( ctx ) ;
return status ;
}
NTSTATUS wb_get_dom_info ( TALLOC_CTX * mem_ctx ,
struct wbsrv_service * service ,
const char * domain_name ,
const struct dom_sid * sid ,
struct wb_dom_info * * result )
{
struct composite_context * ctx =
wb_get_dom_info_send ( mem_ctx , service , domain_name , sid ) ;
return wb_get_dom_info_recv ( ctx , mem_ctx , result ) ;
}