2 Unix SMB/CIFS implementation.
4 DCERPC client side interface structures
6 Copyright (C) Tim Potter 2003
7 Copyright (C) Andrew Tridgell 2003-2005
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/>.
23 /* This is a public header file that is installed as part of Samba.
24 * If you remove any functions or change their signature, update
25 * the so version number. */
27 #ifndef __S4_DCERPC_H__
28 #define __S4_DCERPC_H__
30 #include "../lib/util/data_blob.h"
31 #include "librpc/gen_ndr/dcerpc.h"
32 #include "../librpc/ndr/libndr.h"
33 #include "../librpc/rpc/rpc_common.h"
35 struct tevent_context
;
37 struct dcerpc_binding_handle
;
38 struct tstream_context
;
41 this defines a generic security context for signed/sealed dcerpc pipes.
43 struct dcecli_connection
;
44 struct gensec_settings
;
45 struct dcecli_security
{
46 struct dcerpc_auth
*auth_info
;
47 struct gensec_security
*generic_state
;
49 /* get the session key */
50 NTSTATUS (*session_key
)(struct dcecli_connection
*, DATA_BLOB
*);
54 this holds the information that is not specific to a particular rpc context_id
57 struct dcecli_connection
{
59 uint32_t srv_max_xmit_frag
;
60 uint32_t srv_max_recv_frag
;
62 struct dcecli_security security_state
;
63 const char *binding_string
;
64 struct tevent_context
*event_ctx
;
66 struct tevent_immediate
*io_trigger
;
67 bool io_trigger_pending
;
69 /** Directory in which to save ndrdump-parseable files */
70 const char *packet_log_dir
;
75 struct dcerpc_transport
{
76 enum dcerpc_transport_t transport
;
79 NTSTATUS (*shutdown_pipe
)(struct dcecli_connection
*, NTSTATUS status
);
81 const char *(*peer_name
)(struct dcecli_connection
*);
83 const char *(*target_hostname
)(struct dcecli_connection
*);
85 /* send a request to the server */
86 NTSTATUS (*send_request
)(struct dcecli_connection
*, DATA_BLOB
*, bool trigger_read
);
88 /* send a read request to the server */
89 NTSTATUS (*send_read
)(struct dcecli_connection
*);
91 /* a callback to the dcerpc code when a full fragment
93 void (*recv_data
)(struct dcecli_connection
*, DATA_BLOB
*, NTSTATUS status
);
96 /* Requests that have been sent, waiting for a reply */
97 struct rpc_request
*pending
;
99 /* Sync requests waiting to be shipped */
100 struct rpc_request
*request_queue
;
102 /* the next context_id to be assigned */
103 uint32_t next_context_id
;
107 this encapsulates a full dcerpc client side pipe
110 struct dcerpc_binding_handle
*binding_handle
;
114 uint32_t assoc_group_id
;
116 struct ndr_syntax_id syntax
;
117 struct ndr_syntax_id transfer_syntax
;
119 struct dcecli_connection
*conn
;
120 struct dcerpc_binding
*binding
;
122 /** the last fault code from a DCERPC fault */
123 uint32_t last_fault_code
;
125 /** timeout for individual rpc requests, in seconds */
126 uint32_t request_timeout
;
129 /* default timeout for all rpc requests, in seconds */
130 #define DCERPC_REQUEST_TIMEOUT 60
133 struct dcerpc_pipe_connect
{
134 struct dcerpc_pipe
*pipe
;
135 struct dcerpc_binding
*binding
;
136 const char *pipe_name
;
137 const struct ndr_interface_table
*interface
;
138 struct cli_credentials
*creds
;
139 struct resolve_context
*resolve_ctx
;
148 struct socket_address
;
150 NTSTATUS
dcerpc_pipe_connect(TALLOC_CTX
*parent_ctx
,
151 struct dcerpc_pipe
**pp
,
153 const struct ndr_interface_table
*table
,
154 struct cli_credentials
*credentials
,
155 struct tevent_context
*ev
,
156 struct loadparm_context
*lp_ctx
);
157 const char *dcerpc_server_name(struct dcerpc_pipe
*p
);
158 struct dcerpc_pipe
*dcerpc_pipe_init(TALLOC_CTX
*mem_ctx
, struct tevent_context
*ev
);
159 NTSTATUS
dcerpc_pipe_open_smb(struct dcerpc_pipe
*p
,
160 struct smbcli_tree
*tree
,
161 const char *pipe_name
);
162 NTSTATUS
dcerpc_bind_auth_none(struct dcerpc_pipe
*p
,
163 const struct ndr_interface_table
*table
);
164 NTSTATUS
dcerpc_fetch_session_key(struct dcerpc_pipe
*p
,
165 DATA_BLOB
*session_key
);
166 struct composite_context
;
167 NTSTATUS
dcerpc_secondary_connection_recv(struct composite_context
*c
,
168 struct dcerpc_pipe
**p2
);
170 struct composite_context
* dcerpc_pipe_connect_b_send(TALLOC_CTX
*parent_ctx
,
171 struct dcerpc_binding
*binding
,
172 const struct ndr_interface_table
*table
,
173 struct cli_credentials
*credentials
,
174 struct tevent_context
*ev
,
175 struct loadparm_context
*lp_ctx
);
177 NTSTATUS
dcerpc_pipe_connect_b_recv(struct composite_context
*c
, TALLOC_CTX
*mem_ctx
,
178 struct dcerpc_pipe
**p
);
180 NTSTATUS
dcerpc_pipe_connect_b(TALLOC_CTX
*parent_ctx
,
181 struct dcerpc_pipe
**pp
,
182 struct dcerpc_binding
*binding
,
183 const struct ndr_interface_table
*table
,
184 struct cli_credentials
*credentials
,
185 struct tevent_context
*ev
,
186 struct loadparm_context
*lp_ctx
);
188 NTSTATUS
dcerpc_pipe_auth(TALLOC_CTX
*mem_ctx
,
189 struct dcerpc_pipe
**p
,
190 struct dcerpc_binding
*binding
,
191 const struct ndr_interface_table
*table
,
192 struct cli_credentials
*credentials
,
193 struct loadparm_context
*lp_ctx
);
194 NTSTATUS
dcerpc_secondary_connection(struct dcerpc_pipe
*p
,
195 struct dcerpc_pipe
**p2
,
196 struct dcerpc_binding
*b
);
197 NTSTATUS
dcerpc_bind_auth_schannel(TALLOC_CTX
*tmp_ctx
,
198 struct dcerpc_pipe
*p
,
199 const struct ndr_interface_table
*table
,
200 struct cli_credentials
*credentials
,
201 struct loadparm_context
*lp_ctx
,
203 struct tevent_context
*dcerpc_event_context(struct dcerpc_pipe
*p
);
204 NTSTATUS
dcerpc_init(void);
205 struct smbcli_tree
*dcerpc_smb_tree(struct dcecli_connection
*c
);
206 uint16_t dcerpc_smb_fnum(struct dcecli_connection
*c
);
207 NTSTATUS
dcerpc_secondary_context(struct dcerpc_pipe
*p
,
208 struct dcerpc_pipe
**pp2
,
209 const struct ndr_interface_table
*table
);
210 NTSTATUS
dcerpc_alter_context(struct dcerpc_pipe
*p
,
212 const struct ndr_syntax_id
*syntax
,
213 const struct ndr_syntax_id
*transfer_syntax
);
215 NTSTATUS
dcerpc_bind_auth(struct dcerpc_pipe
*p
,
216 const struct ndr_interface_table
*table
,
217 struct cli_credentials
*credentials
,
218 struct gensec_settings
*gensec_settings
,
219 uint8_t auth_type
, uint8_t auth_level
,
220 const char *service
);
221 struct composite_context
* dcerpc_pipe_connect_send(TALLOC_CTX
*parent_ctx
,
223 const struct ndr_interface_table
*table
,
224 struct cli_credentials
*credentials
,
225 struct tevent_context
*ev
, struct loadparm_context
*lp_ctx
);
226 NTSTATUS
dcerpc_pipe_connect_recv(struct composite_context
*c
,
228 struct dcerpc_pipe
**pp
);
230 NTSTATUS
dcerpc_epm_map_binding(TALLOC_CTX
*mem_ctx
, struct dcerpc_binding
*binding
,
231 const struct ndr_interface_table
*table
, struct tevent_context
*ev
,
232 struct loadparm_context
*lp_ctx
);
233 struct composite_context
* dcerpc_secondary_auth_connection_send(struct dcerpc_pipe
*p
,
234 struct dcerpc_binding
*binding
,
235 const struct ndr_interface_table
*table
,
236 struct cli_credentials
*credentials
,
237 struct loadparm_context
*lp_ctx
);
238 NTSTATUS
dcerpc_secondary_auth_connection_recv(struct composite_context
*c
,
240 struct dcerpc_pipe
**p
);
242 struct composite_context
* dcerpc_secondary_connection_send(struct dcerpc_pipe
*p
,
243 struct dcerpc_binding
*b
);
244 void dcerpc_log_packet(const char *lockdir
,
245 const struct ndr_interface_table
*ndr
,
246 uint32_t opnum
, uint32_t flags
,
247 const DATA_BLOB
*pkt
);
250 enum dcerpc_transport_t
dcerpc_transport_by_endpoint_protocol(int prot
);
252 const char *dcerpc_floor_get_rhs_data(TALLOC_CTX
*mem_ctx
, struct epm_floor
*epm_floor
);
254 #endif /* __S4_DCERPC_H__ */