2005-09-30 21:13:37 +04:00
/*
Unix SMB / CIFS implementation .
RPC pipe client
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-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2005-09-30 21:13:37 +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 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2005-09-30 21:13:37 +04:00
*/
# include "includes.h"
# include "rpcclient.h"
2011-01-18 18:29:16 +03:00
# include "../librpc/gen_ndr/ndr_lsa_c.h"
2010-05-18 20:26:16 +04:00
# include "rpc_client/cli_lsarpc.h"
2010-05-28 04:18:21 +04:00
# include "../librpc/gen_ndr/ndr_samr.h"
2010-07-31 02:47:20 +04:00
# include "../librpc/gen_ndr/winreg.h"
2005-09-30 21:13:37 +04:00
static NTSTATUS cmd_testme ( struct rpc_pipe_client * cli , TALLOC_CTX * mem_ctx ,
int argc , const char * * argv )
{
struct rpc_pipe_client * lsa_pipe = NULL , * samr_pipe = NULL ;
2011-01-18 18:29:16 +03:00
NTSTATUS status = NT_STATUS_UNSUCCESSFUL , result ;
2009-03-19 00:49:41 +03:00
struct policy_handle pol ;
2011-01-18 18:29:16 +03:00
struct dcerpc_binding_handle * b ;
2005-09-30 21:13:37 +04:00
d_printf ( " testme \n " ) ;
2013-09-13 13:06:30 +04:00
status = cli_rpc_pipe_open_noauth ( rpcclient_cli_state ,
2013-05-24 15:29:28 +04:00
& ndr_table_lsarpc ,
2008-07-20 13:04:31 +04:00
& lsa_pipe ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
goto done ;
}
2005-09-30 21:13:37 +04:00
2013-09-13 13:06:30 +04:00
status = cli_rpc_pipe_open_noauth ( rpcclient_cli_state ,
2013-05-24 15:29:28 +04:00
& ndr_table_samr ,
2008-07-20 13:04:31 +04:00
& samr_pipe ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
goto done ;
}
2005-09-30 21:13:37 +04:00
2011-01-18 18:29:16 +03:00
b = lsa_pipe - > binding_handle ;
2005-09-30 21:13:37 +04:00
status = rpccli_lsa_open_policy ( lsa_pipe , mem_ctx , False ,
2009-04-15 03:30:12 +04:00
KEY_QUERY_VALUE , & pol ) ;
2005-09-30 21:13:37 +04:00
if ( ! NT_STATUS_IS_OK ( status ) )
goto done ;
2011-01-18 18:29:16 +03:00
status = dcerpc_lsa_Close ( b , mem_ctx , & pol , & result ) ;
2005-09-30 21:13:37 +04:00
if ( ! NT_STATUS_IS_OK ( status ) )
goto done ;
2011-01-18 18:29:16 +03:00
if ( ! NT_STATUS_IS_OK ( result ) ) {
status = result ;
goto done ;
}
2005-09-30 21:13:37 +04:00
done :
2008-04-20 15:51:46 +04:00
TALLOC_FREE ( lsa_pipe ) ;
TALLOC_FREE ( samr_pipe ) ;
2005-09-30 21:13:37 +04:00
return status ;
}
/* List of commands exported by this module */
struct cmd_set test_commands [ ] = {
{ " TESTING " } ,
{ " testme " , RPC_RTYPE_NTSTATUS , cmd_testme , NULL ,
2009-11-08 21:38:09 +03:00
NULL , NULL , " Sample test " , " testme " } ,
2005-09-30 21:13:37 +04:00
{ NULL }
} ;