s4:librpc/rpc: remove unused dcerpc_smb_tree()
[mat/samba.git] / source4 / librpc / rpc / dcerpc.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    DCERPC client side interface structures
5
6    Copyright (C) Tim Potter 2003
7    Copyright (C) Andrew Tridgell 2003-2005
8    
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.
13    
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.
18    
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/>.
21 */
22
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. */
26
27 #ifndef __S4_DCERPC_H__
28 #define __S4_DCERPC_H__
29
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"
34
35 struct tevent_context;
36 struct tevent_req;
37 struct dcerpc_binding_handle;
38 struct tstream_context;
39
40 /*
41   this defines a generic security context for signed/sealed dcerpc pipes.
42 */
43 struct dcecli_connection;
44 struct gensec_settings;
45 struct dcecli_security {
46         struct dcerpc_auth *auth_info;
47         struct gensec_security *generic_state;
48
49         /* get the session key */
50         NTSTATUS (*session_key)(struct dcecli_connection *, DATA_BLOB *);
51 };
52
53 /*
54   this holds the information that is not specific to a particular rpc context_id
55 */
56 struct rpc_request;
57 struct dcecli_connection {
58         uint32_t call_id;
59         uint32_t srv_max_xmit_frag;
60         uint32_t srv_max_recv_frag;
61         uint32_t flags;
62         struct dcecli_security security_state;
63         const char *binding_string;
64         struct tevent_context *event_ctx;
65
66         struct tevent_immediate *io_trigger;
67         bool io_trigger_pending;
68
69         /** Directory in which to save ndrdump-parseable files */
70         const char *packet_log_dir;
71
72         bool dead;
73         bool free_skipped;
74
75         struct dcerpc_transport {
76                 enum dcerpc_transport_t transport;
77                 void *private_data;
78
79                 NTSTATUS (*shutdown_pipe)(struct dcecli_connection *, NTSTATUS status);
80
81                 const char *(*peer_name)(struct dcecli_connection *);
82
83                 const char *(*target_hostname)(struct dcecli_connection *);
84
85                 /* send a request to the server */
86                 NTSTATUS (*send_request)(struct dcecli_connection *, DATA_BLOB *, bool trigger_read);
87
88                 /* send a read request to the server */
89                 NTSTATUS (*send_read)(struct dcecli_connection *);
90
91                 /* a callback to the dcerpc code when a full fragment
92                    has been received */
93                 void (*recv_data)(struct dcecli_connection *, DATA_BLOB *, NTSTATUS status);
94         } transport;
95
96         /* Requests that have been sent, waiting for a reply */
97         struct rpc_request *pending;
98
99         /* Sync requests waiting to be shipped */
100         struct rpc_request *request_queue;
101
102         /* the next context_id to be assigned */
103         uint32_t next_context_id;
104 };
105
106 /*
107   this encapsulates a full dcerpc client side pipe 
108 */
109 struct dcerpc_pipe {
110         struct dcerpc_binding_handle *binding_handle;
111
112         uint32_t context_id;
113
114         uint32_t assoc_group_id;
115
116         struct ndr_syntax_id syntax;
117         struct ndr_syntax_id transfer_syntax;
118
119         struct dcecli_connection *conn;
120         struct dcerpc_binding *binding;
121
122         /** the last fault code from a DCERPC fault */
123         uint32_t last_fault_code;
124
125         /** timeout for individual rpc requests, in seconds */
126         uint32_t request_timeout;
127
128         /*
129          * Set for the timeout in dcerpc_pipe_connect_b_send(), to
130          * allow the timeout not to destory the stack during a nested
131          * event loop caused by gensec_update()
132          */
133         bool inhibit_timeout_processing;
134         bool timed_out;
135 };
136
137 /* default timeout for all rpc requests, in seconds */
138 #define DCERPC_REQUEST_TIMEOUT 60
139
140
141 struct dcerpc_pipe_connect {
142         struct dcerpc_pipe *pipe;
143         struct dcerpc_binding *binding;
144         const char *pipe_name;
145         const struct ndr_interface_table *interface;
146         struct cli_credentials *creds;
147         struct resolve_context *resolve_ctx;
148 };
149
150
151 struct epm_tower;
152 struct epm_floor;
153
154 struct smbcli_tree;
155 struct smb2_tree;
156 struct socket_address;
157
158 NTSTATUS dcerpc_pipe_connect(TALLOC_CTX *parent_ctx, 
159                              struct dcerpc_pipe **pp, 
160                              const char *binding,
161                              const struct ndr_interface_table *table,
162                              struct cli_credentials *credentials,
163                              struct tevent_context *ev,
164                              struct loadparm_context *lp_ctx);
165 const char *dcerpc_server_name(struct dcerpc_pipe *p);
166 struct dcerpc_pipe *dcerpc_pipe_init(TALLOC_CTX *mem_ctx, struct tevent_context *ev);
167 NTSTATUS dcerpc_pipe_open_smb(struct dcerpc_pipe *p,
168                               struct smbcli_tree *tree,
169                               const char *pipe_name);
170 NTSTATUS dcerpc_bind_auth_none(struct dcerpc_pipe *p,
171                                const struct ndr_interface_table *table);
172 NTSTATUS dcerpc_fetch_session_key(struct dcerpc_pipe *p,
173                                   DATA_BLOB *session_key);
174 struct composite_context;
175 NTSTATUS dcerpc_secondary_connection_recv(struct composite_context *c,
176                                           struct dcerpc_pipe **p2);
177
178 struct composite_context* dcerpc_pipe_connect_b_send(TALLOC_CTX *parent_ctx,
179                                                      struct dcerpc_binding *binding,
180                                                      const struct ndr_interface_table *table,
181                                                      struct cli_credentials *credentials,
182                                                      struct tevent_context *ev,
183                                                      struct loadparm_context *lp_ctx);
184
185 NTSTATUS dcerpc_pipe_connect_b_recv(struct composite_context *c, TALLOC_CTX *mem_ctx,
186                                     struct dcerpc_pipe **p);
187
188 NTSTATUS dcerpc_pipe_connect_b(TALLOC_CTX *parent_ctx,
189                                struct dcerpc_pipe **pp,
190                                struct dcerpc_binding *binding,
191                                const struct ndr_interface_table *table,
192                                struct cli_credentials *credentials,
193                                struct tevent_context *ev,
194                                struct loadparm_context *lp_ctx);
195
196 NTSTATUS dcerpc_pipe_auth(TALLOC_CTX *mem_ctx,
197                           struct dcerpc_pipe **p, 
198                           struct dcerpc_binding *binding,
199                           const struct ndr_interface_table *table,
200                           struct cli_credentials *credentials,
201                           struct loadparm_context *lp_ctx);
202 NTSTATUS dcerpc_secondary_connection(struct dcerpc_pipe *p,
203                                      struct dcerpc_pipe **p2,
204                                      struct dcerpc_binding *b);
205 NTSTATUS dcerpc_bind_auth_schannel(TALLOC_CTX *tmp_ctx, 
206                                    struct dcerpc_pipe *p,
207                                    const struct ndr_interface_table *table,
208                                    struct cli_credentials *credentials,
209                                    struct loadparm_context *lp_ctx,
210                                    uint8_t auth_level);
211 struct tevent_context *dcerpc_event_context(struct dcerpc_pipe *p);
212 NTSTATUS dcerpc_init(void);
213 struct composite_context *dcerpc_secondary_smb_send(struct dcecli_connection *c1,
214                                                     struct dcerpc_pipe *p2,
215                                                     const char *pipe_name);
216 NTSTATUS dcerpc_secondary_smb_recv(struct composite_context *c);
217 NTSTATUS dcerpc_secondary_context(struct dcerpc_pipe *p, 
218                                   struct dcerpc_pipe **pp2,
219                                   const struct ndr_interface_table *table);
220 NTSTATUS dcerpc_alter_context(struct dcerpc_pipe *p, 
221                               TALLOC_CTX *mem_ctx,
222                               const struct ndr_syntax_id *syntax,
223                               const struct ndr_syntax_id *transfer_syntax);
224
225 NTSTATUS dcerpc_bind_auth(struct dcerpc_pipe *p,
226                           const struct ndr_interface_table *table,
227                           struct cli_credentials *credentials,
228                           struct gensec_settings *gensec_settings,
229                           uint8_t auth_type, uint8_t auth_level,
230                           const char *service);
231 struct composite_context* dcerpc_pipe_connect_send(TALLOC_CTX *parent_ctx,
232                                                    const char *binding,
233                                                    const struct ndr_interface_table *table,
234                                                    struct cli_credentials *credentials,
235                                                    struct tevent_context *ev, struct loadparm_context *lp_ctx);
236 NTSTATUS dcerpc_pipe_connect_recv(struct composite_context *c,
237                                   TALLOC_CTX *mem_ctx,
238                                   struct dcerpc_pipe **pp);
239
240 NTSTATUS dcerpc_epm_map_binding(TALLOC_CTX *mem_ctx, struct dcerpc_binding *binding,
241                                 const struct ndr_interface_table *table, struct tevent_context *ev,
242                                 struct loadparm_context *lp_ctx);
243 struct composite_context* dcerpc_secondary_auth_connection_send(struct dcerpc_pipe *p,
244                                                                 struct dcerpc_binding *binding,
245                                                                 const struct ndr_interface_table *table,
246                                                                 struct cli_credentials *credentials,
247                                                                 struct loadparm_context *lp_ctx);
248 NTSTATUS dcerpc_secondary_auth_connection_recv(struct composite_context *c, 
249                                                TALLOC_CTX *mem_ctx,
250                                                struct dcerpc_pipe **p);
251
252 struct composite_context* dcerpc_secondary_connection_send(struct dcerpc_pipe *p,
253                                                            struct dcerpc_binding *b);
254 void dcerpc_log_packet(const char *lockdir, 
255                        const struct ndr_interface_table *ndr,
256                        uint32_t opnum, uint32_t flags,
257                        const DATA_BLOB *pkt);
258
259
260 enum dcerpc_transport_t dcerpc_transport_by_endpoint_protocol(int prot);
261
262 const char *dcerpc_floor_get_rhs_data(TALLOC_CTX *mem_ctx, struct epm_floor *epm_floor);
263
264 #endif /* __S4_DCERPC_H__ */