2 * Unix SMB/CIFS implementation.
4 * RPC Pipe client routines
6 * Copyright (c) 2005 Jeremy Allison
7 * Copyright (c) 2010 Simo Sorce
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, see <http://www.gnu.org/licenses/>.
26 #include "rpc_client/rpc_client.h"
28 /* The following definitions come from rpc_client/cli_pipe.c */
30 struct tevent_req
*rpc_api_pipe_req_send(TALLOC_CTX
*mem_ctx
,
31 struct event_context
*ev
,
32 struct rpc_pipe_client
*cli
,
36 NTSTATUS
rpc_api_pipe_req_recv(struct tevent_req
*req
,
38 DATA_BLOB
*reply_pdu
);
40 struct tevent_req
*rpc_pipe_bind_send(TALLOC_CTX
*mem_ctx
,
41 struct event_context
*ev
,
42 struct rpc_pipe_client
*cli
,
43 struct pipe_auth_data
*auth
);
45 NTSTATUS
rpc_pipe_bind_recv(struct tevent_req
*req
);
47 NTSTATUS
rpc_pipe_bind(struct rpc_pipe_client
*cli
,
48 struct pipe_auth_data
*auth
);
50 unsigned int rpccli_set_timeout(struct rpc_pipe_client
*cli
,
51 unsigned int timeout
);
53 bool rpccli_is_connected(struct rpc_pipe_client
*rpc_cli
);
55 NTSTATUS
rpccli_ncalrpc_bind_data(TALLOC_CTX
*mem_ctx
,
56 struct pipe_auth_data
**presult
);
58 NTSTATUS
rpccli_anon_bind_data(TALLOC_CTX
*mem_ctx
,
59 struct pipe_auth_data
**presult
);
61 NTSTATUS
rpccli_schannel_bind_data(TALLOC_CTX
*mem_ctx
,
63 enum dcerpc_AuthLevel auth_level
,
64 struct netlogon_creds_CredentialState
*creds
,
65 struct pipe_auth_data
**presult
);
67 NTSTATUS
rpc_pipe_open_tcp(TALLOC_CTX
*mem_ctx
,
69 const struct ndr_syntax_id
*abstract_syntax
,
70 struct rpc_pipe_client
**presult
);
72 NTSTATUS
rpc_pipe_open_ncalrpc(TALLOC_CTX
*mem_ctx
, const char *socket_path
,
73 const struct ndr_syntax_id
*abstract_syntax
,
74 struct rpc_pipe_client
**presult
);
76 struct dcerpc_binding_handle
*rpccli_bh_create(struct rpc_pipe_client
*c
);
78 NTSTATUS
cli_rpc_pipe_open_noauth(struct cli_state
*cli
,
79 const struct ndr_syntax_id
*interface
,
80 struct rpc_pipe_client
**presult
);
82 NTSTATUS
cli_rpc_pipe_open_noauth_transport(struct cli_state
*cli
,
83 enum dcerpc_transport_t transport
,
84 const struct ndr_syntax_id
*interface
,
85 struct rpc_pipe_client
**presult
);
87 NTSTATUS
cli_rpc_pipe_open_ntlmssp(struct cli_state
*cli
,
88 const struct ndr_syntax_id
*interface
,
89 enum dcerpc_transport_t transport
,
90 enum dcerpc_AuthLevel auth_level
,
94 struct rpc_pipe_client
**presult
);
96 NTSTATUS
cli_rpc_pipe_open_spnego_ntlmssp(struct cli_state
*cli
,
97 const struct ndr_syntax_id
*interface
,
98 enum dcerpc_transport_t transport
,
99 enum dcerpc_AuthLevel auth_level
,
101 const char *username
,
102 const char *password
,
103 struct rpc_pipe_client
**presult
);
105 NTSTATUS
cli_rpc_pipe_open_schannel_with_key(struct cli_state
*cli
,
106 const struct ndr_syntax_id
*interface
,
107 enum dcerpc_transport_t transport
,
108 enum dcerpc_AuthLevel auth_level
,
110 struct netlogon_creds_CredentialState
**pdc
,
111 struct rpc_pipe_client
**presult
);
113 NTSTATUS
cli_rpc_pipe_open_ntlmssp_auth_schannel(struct cli_state
*cli
,
114 const struct ndr_syntax_id
*interface
,
115 enum dcerpc_transport_t transport
,
116 enum dcerpc_AuthLevel auth_level
,
118 const char *username
,
119 const char *password
,
120 struct rpc_pipe_client
**presult
);
122 NTSTATUS
cli_rpc_pipe_open_schannel(struct cli_state
*cli
,
123 const struct ndr_syntax_id
*interface
,
124 enum dcerpc_transport_t transport
,
125 enum dcerpc_AuthLevel auth_level
,
127 struct rpc_pipe_client
**presult
);
129 NTSTATUS
cli_rpc_pipe_open_krb5(struct cli_state
*cli
,
130 const struct ndr_syntax_id
*interface
,
131 enum dcerpc_transport_t transport
,
132 enum dcerpc_AuthLevel auth_level
,
133 const char *service_princ
,
134 const char *username
,
135 const char *password
,
136 struct rpc_pipe_client
**presult
);
138 NTSTATUS
cli_rpc_pipe_open_spnego_krb5(struct cli_state
*cli
,
139 const struct ndr_syntax_id
*interface
,
140 enum dcerpc_transport_t transport
,
141 enum dcerpc_AuthLevel auth_level
,
143 const char *username
,
144 const char *password
,
145 struct rpc_pipe_client
**presult
);
147 NTSTATUS
cli_get_session_key(TALLOC_CTX
*mem_ctx
,
148 struct rpc_pipe_client
*cli
,
149 DATA_BLOB
*session_key
);
151 /* The following definitions come from rpc_client/cli_pipe_schannel.c */
153 NTSTATUS
get_schannel_session_key(struct cli_state
*cli
,
156 struct rpc_pipe_client
**presult
);
158 #endif /* _CLI_PIPE_H */
160 /* vim: set ts=8 sw=8 noet cindent ft=c.doxygen: */