2010-07-17 15:22:26 -04:00
/*
2010-06-18 11:00:38 -04:00
* RPC Server helper headers
2010-07-17 15:22:26 -04:00
* Almost completely rewritten by ( C ) Jeremy Allison 2005 - 2010
* Copyright ( C ) Simo Sorce < idra @ samba . org > - 2010
*
* 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 3 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 , see < http : //www.gnu.org/licenses/>.
*/
# ifndef _RPC_SERVER_H_
# define _RPC_SERVER_H_
2019-03-15 14:31:57 +01:00
# include "librpc/rpc/rpc_common.h" /* For enum dcerpc_transport_t */
2019-02-27 14:01:11 +01:00
# include "librpc/rpc/dcesrv_core.h"
2021-10-06 12:20:17 +02:00
# include "rpc_pipes.h"
2019-02-27 14:01:11 +01:00
2019-02-18 18:25:48 +01:00
struct auth_session_info ;
2019-01-25 09:50:15 +01:00
struct cli_credentials ;
2011-05-02 13:19:51 +02:00
2019-12-05 11:45:54 +01:00
typedef void ( * dcerpc_ncacn_termination_fn ) ( struct dcesrv_connection * ,
void * ) ;
2011-03-14 12:29:49 +01:00
2019-02-18 18:25:48 +01:00
struct dcerpc_ncacn_conn {
2021-04-07 07:00:23 +00:00
struct dcerpc_ncacn_conn * prev , * next ;
2019-02-18 18:25:48 +01:00
int sock ;
2021-10-06 12:20:17 +02:00
struct pipes_struct p ;
2019-02-18 18:48:57 +01:00
dcerpc_ncacn_termination_fn termination_fn ;
void * termination_data ;
2019-02-18 18:25:48 +01:00
2019-02-27 23:44:16 +01:00
struct dcesrv_endpoint * endpoint ;
2019-02-18 18:25:48 +01:00
char * remote_client_name ;
char * local_server_name ;
} ;
2010-07-28 09:46:43 +02:00
void set_incoming_fault ( struct pipes_struct * p ) ;
2013-12-10 13:59:06 +01:00
void process_complete_pdu ( struct pipes_struct * p , struct ncacn_packet * pkt ) ;
2021-01-12 17:53:57 +01:00
2021-01-29 18:16:08 +01:00
NTSTATUS dcesrv_auth_gensec_prepare (
TALLOC_CTX * mem_ctx ,
struct dcesrv_call_state * call ,
struct gensec_security * * out ,
void * private_data ) ;
void dcesrv_log_successful_authz (
struct dcesrv_call_state * call ,
void * private_data ) ;
NTSTATUS dcesrv_assoc_group_find (
struct dcesrv_call_state * call ,
void * private_data ) ;
2019-01-25 09:50:15 +01:00
2019-02-27 21:36:22 +01:00
NTSTATUS dcesrv_endpoint_by_ncacn_np_name ( struct dcesrv_context * dce_ctx ,
const char * endpoint ,
struct dcesrv_endpoint * * out ) ;
2019-02-27 23:28:25 +01:00
struct pipes_struct * dcesrv_get_pipes_struct ( struct dcesrv_connection * conn ) ;
2019-12-05 11:45:54 +01:00
void dcesrv_transport_terminate_connection ( struct dcesrv_connection * dce_conn ,
const char * reason ) ;
2010-07-17 15:22:26 -04:00
# endif /* _PRC_SERVER_H_ */