2005-10-16 02:01:15 +04:00
/*
Unix SMB / CIFS implementation .
Command backend for wbinfo - - getdcname
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-10-16 02:01:15 +04: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-10-16 02:01:15 +04:00
*/
# include "includes.h"
# include "libcli/composite/composite.h"
# include "winbind/wb_server.h"
2005-10-19 17:45:44 +04:00
# include "smbd/service_task.h"
2005-10-16 02:01:15 +04:00
2006-03-15 02:35:30 +03:00
# include "librpc/gen_ndr/ndr_netlogon_c.h"
2005-10-16 02:01:15 +04:00
struct cmd_getdcname_state {
struct composite_context * ctx ;
const char * domain_name ;
struct netr_GetAnyDCName g ;
} ;
2005-11-05 12:34:07 +03:00
static void getdcname_recv_domain ( struct composite_context * ctx ) ;
2010-03-09 15:49:20 +03:00
static void getdcname_recv_dcname ( struct tevent_req * subreq ) ;
2005-10-16 02:01:15 +04:00
2005-11-05 12:34:07 +03:00
struct composite_context * wb_cmd_getdcname_send ( TALLOC_CTX * mem_ctx ,
struct wbsrv_service * service ,
2005-10-19 17:45:44 +04:00
const char * domain_name )
2005-10-16 02:01:15 +04:00
{
2005-11-05 12:34:07 +03:00
struct composite_context * result , * ctx ;
2005-10-16 02:01:15 +04:00
struct cmd_getdcname_state * state ;
2007-04-30 20:52:30 +04:00
result = composite_create ( mem_ctx , service - > task - > event_ctx ) ;
2005-11-05 12:34:07 +03:00
if ( result = = NULL ) goto failed ;
state = talloc ( result , struct cmd_getdcname_state ) ;
if ( state = = NULL ) goto failed ;
state - > ctx = result ;
result - > private_data = state ;
2005-10-19 17:45:44 +04:00
state - > domain_name = talloc_strdup ( state , domain_name ) ;
2005-11-05 12:34:07 +03:00
if ( state - > domain_name = = NULL ) goto failed ;
ctx = wb_sid2domain_send ( state , service , service - > primary_sid ) ;
if ( ctx = = NULL ) goto failed ;
ctx - > async . fn = getdcname_recv_domain ;
ctx - > async . private_data = state ;
return result ;
failed :
talloc_free ( result ) ;
return NULL ;
2005-10-16 02:01:15 +04:00
}
2005-11-05 12:34:07 +03:00
static void getdcname_recv_domain ( struct composite_context * ctx )
2005-10-16 02:01:15 +04:00
{
struct cmd_getdcname_state * state =
2005-11-05 12:34:07 +03:00
talloc_get_type ( ctx - > async . private_data ,
struct cmd_getdcname_state ) ;
struct wbsrv_domain * domain ;
2010-03-09 15:49:20 +03:00
struct tevent_req * subreq ;
2005-11-05 12:34:07 +03:00
state - > ctx - > status = wb_sid2domain_recv ( ctx , & domain ) ;
if ( ! composite_is_ok ( state - > ctx ) ) return ;
2005-10-16 02:01:15 +04:00
state - > g . in . logon_server = talloc_asprintf (
state , " \\ \\ %s " ,
2005-10-19 17:45:44 +04:00
dcerpc_server_name ( domain - > netlogon_pipe ) ) ;
2005-10-16 02:01:15 +04:00
state - > g . in . domainname = state - > domain_name ;
2008-10-28 03:27:12 +03:00
state - > g . out . dcname = talloc ( state , const char * ) ;
2005-10-16 02:01:15 +04:00
2010-03-09 15:49:20 +03:00
subreq = dcerpc_netr_GetAnyDCName_r_send ( state ,
state - > ctx - > event_ctx ,
domain - > netlogon_pipe - > binding_handle ,
& state - > g ) ;
if ( composite_nomem ( subreq , state - > ctx ) ) return ;
2005-11-05 12:34:07 +03:00
2010-03-09 15:49:20 +03:00
tevent_req_set_callback ( subreq , getdcname_recv_dcname , state ) ;
2005-10-16 02:01:15 +04:00
}
2010-03-09 15:49:20 +03:00
static void getdcname_recv_dcname ( struct tevent_req * subreq )
2005-10-16 02:01:15 +04:00
{
struct cmd_getdcname_state * state =
2010-03-09 15:49:20 +03:00
tevent_req_callback_data ( subreq ,
struct cmd_getdcname_state ) ;
2005-10-16 02:01:15 +04:00
2010-03-09 15:49:20 +03:00
state - > ctx - > status = dcerpc_netr_GetAnyDCName_r_recv ( subreq , state ) ;
TALLOC_FREE ( subreq ) ;
2005-11-05 12:34:07 +03:00
if ( ! composite_is_ok ( state - > ctx ) ) return ;
state - > ctx - > status = werror_to_ntstatus ( state - > g . out . result ) ;
if ( ! composite_is_ok ( state - > ctx ) ) return ;
2005-10-16 02:01:15 +04:00
2005-11-05 12:34:07 +03:00
composite_done ( state - > ctx ) ;
2005-10-16 02:01:15 +04:00
}
NTSTATUS wb_cmd_getdcname_recv ( struct composite_context * c ,
TALLOC_CTX * mem_ctx ,
const char * * dcname )
{
struct cmd_getdcname_state * state =
talloc_get_type ( c - > private_data , struct cmd_getdcname_state ) ;
NTSTATUS status = composite_wait ( c ) ;
2010-04-26 22:19:36 +04:00
if ( NT_STATUS_EQUAL ( status , NT_STATUS_NO_SUCH_DOMAIN ) ) {
/* special case: queried DC is PDC */
state - > g . out . dcname = & state - > g . in . logon_server ;
status = NT_STATUS_OK ;
}
2005-10-16 02:01:15 +04:00
if ( NT_STATUS_IS_OK ( status ) ) {
2008-10-28 03:23:04 +03:00
const char * p = * ( state - > g . out . dcname ) ;
2005-10-16 02:01:15 +04:00
if ( * p = = ' \\ ' ) p + = 1 ;
if ( * p = = ' \\ ' ) p + = 1 ;
* dcname = talloc_strdup ( mem_ctx , p ) ;
if ( * dcname = = NULL ) {
status = NT_STATUS_NO_MEMORY ;
}
}
talloc_free ( state ) ;
return status ;
}