2005-10-16 02:01:15 +04:00
/*
Unix SMB / CIFS implementation .
Command backend for wbinfo - n
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_stream.h"
2005-10-19 17:45:44 +04:00
# include "smbd/service_task.h"
2005-10-16 02:01:15 +04:00
struct cmd_lookupname_state {
struct composite_context * ctx ;
const char * name ;
struct wb_sid_object * result ;
} ;
2005-10-19 17:45:44 +04:00
static struct composite_context * lookupname_send_req ( struct wbsrv_domain * domain , void * p ) ;
2005-10-16 02:01:15 +04:00
static NTSTATUS lookupname_recv_req ( struct composite_context * ctx , void * p ) ;
2005-10-19 17:45:44 +04:00
struct composite_context * wb_cmd_lookupname_send ( struct wbsrv_service * service ,
const char * dom_name ,
2005-10-16 02:01:15 +04:00
const char * name )
{
struct cmd_lookupname_state * state ;
state = talloc ( NULL , struct cmd_lookupname_state ) ;
2005-10-19 17:45:44 +04:00
state - > name = talloc_asprintf ( state , " %s \\ %s " , dom_name , name ) ;
if ( state - > name = = NULL ) goto failed ;
state - > ctx = wb_domain_request_send ( state , service ,
service - > primary_sid ,
lookupname_send_req ,
lookupname_recv_req ,
state ) ;
if ( state - > ctx = = NULL ) goto failed ;
2005-10-16 02:01:15 +04:00
state - > ctx - > private_data = state ;
return state - > ctx ;
2005-10-19 17:45:44 +04:00
failed :
talloc_free ( state ) ;
return NULL ;
2005-10-16 02:01:15 +04:00
}
2005-10-19 17:45:44 +04:00
static struct composite_context * lookupname_send_req ( struct wbsrv_domain * domain ,
void * p )
2005-10-16 02:01:15 +04:00
{
struct cmd_lookupname_state * state =
talloc_get_type ( p , struct cmd_lookupname_state ) ;
2005-10-19 17:45:44 +04:00
return wb_lsa_lookupnames_send ( domain - > lsa_pipe ,
domain - > lsa_policy ,
2005-10-16 02:01:15 +04:00
1 , & state - > name ) ;
}
static NTSTATUS lookupname_recv_req ( struct composite_context * ctx , void * p )
{
struct cmd_lookupname_state * state =
talloc_get_type ( p , struct cmd_lookupname_state ) ;
struct wb_sid_object * * sids ;
NTSTATUS status ;
status = wb_lsa_lookupnames_recv ( ctx , state , & sids ) ;
if ( NT_STATUS_IS_OK ( status ) ) {
state - > result = sids [ 0 ] ;
}
return status ;
}
NTSTATUS wb_cmd_lookupname_recv ( struct composite_context * c ,
TALLOC_CTX * mem_ctx ,
struct wb_sid_object * * sid )
{
struct cmd_lookupname_state * state =
talloc_get_type ( c - > private_data , struct cmd_lookupname_state ) ;
NTSTATUS status = composite_wait ( c ) ;
if ( NT_STATUS_IS_OK ( status ) ) {
* sid = talloc_steal ( mem_ctx , state - > result ) ;
}
talloc_free ( state ) ;
return status ;
}
2005-10-19 17:45:44 +04:00
NTSTATUS wb_cmd_lookupname ( struct wbsrv_service * service ,
const char * dom_name ,
const char * name ,
2005-10-16 02:01:15 +04:00
TALLOC_CTX * mem_ctx , struct wb_sid_object * * sid )
{
struct composite_context * c =
2005-10-31 23:12:22 +03:00
wb_cmd_lookupname_send ( service , dom_name , name ) ;
2005-10-16 02:01:15 +04:00
return wb_cmd_lookupname_recv ( c , mem_ctx , sid ) ;
}