2000-07-03 04:26:37 +00:00
/*
2002-01-30 06:08:46 +00:00
Unix SMB / CIFS implementation .
2000-07-03 04:26:37 +00:00
SMB parameters and setup
2005-03-24 18:05:31 +00:00
Copyright ( C ) Gerald ( Jerry ) Carter 2005.
2000-07-03 04:26:37 +00:00
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
2000-07-03 04:26: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/>.
2000-07-03 04:26:37 +00:00
*/
# ifndef _RPC_CLIENT_H
# define _RPC_CLIENT_H
2006-09-11 19:33:27 +00:00
/* autogenerated client stubs */
2006-09-15 22:49:27 +00:00
# include "librpc/gen_ndr/cli_echo.h"
2006-09-11 19:33:27 +00:00
# include "librpc/gen_ndr/cli_lsa.h"
2006-09-21 23:57:32 +00:00
# include "librpc/gen_ndr/cli_svcctl.h"
2006-09-20 16:46:55 +00:00
# include "librpc/gen_ndr/cli_wkssvc.h"
2007-10-10 15:34:30 -05:00
# include "librpc/gen_ndr/cli_eventlog.h"
# include "librpc/gen_ndr/cli_dfs.h"
# include "librpc/gen_ndr/cli_initshutdown.h"
# include "librpc/gen_ndr/cli_winreg.h"
# include "librpc/gen_ndr/cli_srvsvc.h"
2008-01-17 10:35:55 +01:00
# include "librpc/gen_ndr/cli_samr.h"
# include "librpc/gen_ndr/cli_netlogon.h"
2008-01-25 13:26:10 +01:00
# include "librpc/gen_ndr/cli_dssetup.h"
2006-09-11 19:33:27 +00:00
2005-06-08 22:10:34 +00:00
/* macro to expand cookie-cutter code in cli_xxx() using rpc_api_pipe_req() */
2005-09-30 17:13:37 +00:00
2006-01-11 19:18:40 +00:00
# define CLI_DO_RPC_INTERNAL( pcli, ctx, p_idx, opnum, q_in, r_out, \
q_ps , r_ps , q_io_fn , r_io_fn , default_error , copy_sess_key ) \
2005-09-30 17:13:37 +00:00
{ \
SMB_ASSERT ( pcli - > pipe_idx = = p_idx ) ; \
if ( ! prs_init ( & q_ps , RPC_MAX_PDU_FRAG_LEN , ctx , MARSHALL ) ) { \
return NT_STATUS_NO_MEMORY ; \
} \
if ( ! prs_init ( & r_ps , 0 , ctx , UNMARSHALL ) ) { \
prs_mem_free ( & q_ps ) ; \
return NT_STATUS_NO_MEMORY ; \
} \
2006-01-11 19:18:40 +00:00
if ( copy_sess_key ) prs_set_session_key ( & q_ps , ( const char * ) pcli - > dc - > sess_key ) ; \
2005-03-24 18:05:31 +00:00
if ( q_io_fn ( " " , & q_in , & q_ps , 0 ) ) { \
2005-09-30 17:13:37 +00:00
NTSTATUS _smb_pipe_stat_ = rpc_api_pipe_req ( pcli , opnum , & q_ps , & r_ps ) ; \
if ( ! NT_STATUS_IS_OK ( _smb_pipe_stat_ ) ) { \
prs_mem_free ( & q_ps ) ; \
prs_mem_free ( & r_ps ) ; \
return _smb_pipe_stat_ ; \
} \
2006-01-11 19:18:40 +00:00
if ( copy_sess_key ) prs_set_session_key ( & r_ps , ( const char * ) pcli - > dc - > sess_key ) ; \
2005-09-30 17:13:37 +00:00
if ( ! r_io_fn ( " " , & r_out , & r_ps , 0 ) ) { \
prs_mem_free ( & q_ps ) ; \
prs_mem_free ( & r_ps ) ; \
return default_error ; \
2005-03-24 18:05:31 +00:00
} \
2005-09-30 17:13:37 +00:00
} else { \
prs_mem_free ( & q_ps ) ; \
prs_mem_free ( & r_ps ) ; \
return default_error ; \
2005-03-24 18:05:31 +00:00
} \
prs_mem_free ( & q_ps ) ; \
prs_mem_free ( & r_ps ) ; \
}
2000-07-03 04:26:37 +00:00
2006-01-11 19:18:40 +00:00
# define CLI_DO_RPC_COPY_SESS_KEY( pcli, ctx, p_idx, opnum, q_in, r_out, \
q_ps , r_ps , q_io_fn , r_io_fn , default_error ) \
{ \
CLI_DO_RPC_INTERNAL ( pcli , ctx , p_idx , opnum , q_in , r_out , \
q_ps , r_ps , q_io_fn , r_io_fn , default_error , True ) ; \
}
# define CLI_DO_RPC( pcli, ctx, p_idx, opnum, q_in, r_out, \
q_ps , r_ps , q_io_fn , r_io_fn , default_error ) \
{ \
CLI_DO_RPC_INTERNAL ( pcli , ctx , p_idx , opnum , q_in , r_out , \
q_ps , r_ps , q_io_fn , r_io_fn , default_error , False ) ; \
}
2005-09-30 17:13:37 +00:00
/* Arrrgg. Same but with WERRORS. Needed for registry code. */
2005-06-08 22:10:34 +00:00
2005-09-30 17:13:37 +00:00
# define CLI_DO_RPC_WERR( pcli, ctx, p_idx, opnum, q_in, r_out, \
2005-06-08 22:10:34 +00:00
q_ps , r_ps , q_io_fn , r_io_fn , default_error ) \
2005-09-30 17:13:37 +00:00
{ \
SMB_ASSERT ( pcli - > pipe_idx = = p_idx ) ; \
if ( ! prs_init ( & q_ps , RPC_MAX_PDU_FRAG_LEN , ctx , MARSHALL ) ) { \
return WERR_NOMEM ; \
} \
if ( ! prs_init ( & r_ps , 0 , ctx , UNMARSHALL ) ) { \
prs_mem_free ( & q_ps ) ; \
return WERR_NOMEM ; \
} \
2005-06-08 22:10:34 +00:00
if ( q_io_fn ( " " , & q_in , & q_ps , 0 ) ) { \
2005-09-30 17:13:37 +00:00
NTSTATUS _smb_pipe_stat_ = rpc_api_pipe_req ( pcli , opnum , & q_ps , & r_ps ) ; \
if ( ! NT_STATUS_IS_OK ( _smb_pipe_stat_ ) ) { \
prs_mem_free ( & q_ps ) ; \
prs_mem_free ( & r_ps ) ; \
return ntstatus_to_werror ( _smb_pipe_stat_ ) ; \
} \
if ( ! r_io_fn ( " " , & r_out , & r_ps , 0 ) ) { \
prs_mem_free ( & q_ps ) ; \
prs_mem_free ( & r_ps ) ; \
return default_error ; \
2005-06-08 22:10:34 +00:00
} \
2005-09-30 17:13:37 +00:00
} else { \
prs_mem_free ( & q_ps ) ; \
prs_mem_free ( & r_ps ) ; \
return default_error ; \
2005-06-08 22:10:34 +00:00
} \
prs_mem_free ( & q_ps ) ; \
prs_mem_free ( & r_ps ) ; \
}
2000-07-03 04:26:37 +00:00
# endif /* _RPC_CLIENT_H */