2005-09-30 17:13:37 +00: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 19:25:36 +00:00
the Free Software Foundation ; either version 3 of the License , or
2005-09-30 17:13:37 +00: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 00:52:41 +00:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2005-09-30 17:13:37 +00:00
*/
# include "includes.h"
# include "rpcclient.h"
2011-01-18 16:29:16 +01:00
# include "../librpc/gen_ndr/ndr_lsa_c.h"
2010-05-18 18:26:16 +02:00
# include "rpc_client/cli_lsarpc.h"
2010-05-28 02:18:21 +02:00
# include "../librpc/gen_ndr/ndr_samr.h"
2010-07-31 00:47:20 +02:00
# include "../librpc/gen_ndr/winreg.h"
2005-09-30 17:13:37 +00: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 16:29:16 +01:00
NTSTATUS status = NT_STATUS_UNSUCCESSFUL , result ;
2009-03-18 22:49:41 +01:00
struct policy_handle pol ;
2011-01-18 16:29:16 +01:00
struct dcerpc_binding_handle * b ;
2005-09-30 17:13:37 +00:00
d_printf ( " testme \n " ) ;
2013-09-13 11:06:30 +02:00
status = cli_rpc_pipe_open_noauth ( rpcclient_cli_state ,
2013-05-24 13:29:28 +02:00
& ndr_table_lsarpc ,
2008-07-20 11:04:31 +02:00
& lsa_pipe ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
goto done ;
}
2005-09-30 17:13:37 +00:00
2013-09-13 11:06:30 +02:00
status = cli_rpc_pipe_open_noauth ( rpcclient_cli_state ,
2013-05-24 13:29:28 +02:00
& ndr_table_samr ,
2008-07-20 11:04:31 +02:00
& samr_pipe ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
goto done ;
}
2005-09-30 17:13:37 +00:00
2011-01-18 16:29:16 +01:00
b = lsa_pipe - > binding_handle ;
2005-09-30 17:13:37 +00:00
status = rpccli_lsa_open_policy ( lsa_pipe , mem_ctx , False ,
2009-04-15 01:30:12 +02:00
KEY_QUERY_VALUE , & pol ) ;
2005-09-30 17:13:37 +00:00
if ( ! NT_STATUS_IS_OK ( status ) )
goto done ;
2011-01-18 16:29:16 +01:00
status = dcerpc_lsa_Close ( b , mem_ctx , & pol , & result ) ;
2005-09-30 17:13:37 +00:00
if ( ! NT_STATUS_IS_OK ( status ) )
goto done ;
2011-01-18 16:29:16 +01:00
if ( ! NT_STATUS_IS_OK ( result ) ) {
status = result ;
goto done ;
}
2005-09-30 17:13:37 +00:00
done :
2008-04-20 13:51:46 +02:00
TALLOC_FREE ( lsa_pipe ) ;
TALLOC_FREE ( samr_pipe ) ;
2005-09-30 17:13:37 +00: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 19:38:09 +01:00
NULL , NULL , " Sample test " , " testme " } ,
2005-09-30 17:13:37 +00:00
{ NULL }
} ;