r20850: Prefix all server calls with dcesrv_
[sfrench/samba-autobuild/.git] / source4 / rpc_server / dcerpc_server.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    server side dcerpc defines
5
6    Copyright (C) Andrew Tridgell 2003-2005
7    Copyright (C) Stefan (metze) Metzmacher 2004-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 2 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, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #ifndef SAMBA_DCERPC_SERVER_H
25 #define SAMBA_DCERPC_SERVER_H
26
27 #include "core.h"
28 #include "librpc/gen_ndr/misc.h"
29 #include "librpc/rpc/dcerpc.h"
30 #include "librpc/ndr/libndr.h"
31
32 /* modules can use the following to determine if the interface has changed
33  * please increment the version number after each interface change
34  * with a comment and maybe update struct dcesrv_critical_sizes.
35  */
36 /* version 1 - initial version - metze */
37 #define DCERPC_MODULE_VERSION 1
38
39 struct dcesrv_connection;
40 struct dcesrv_call_state;
41 struct dcesrv_auth;
42 struct dcesrv_connection_context;
43
44 struct dcesrv_interface {
45         const char *name;
46         struct dcerpc_syntax_id syntax_id;
47
48         /* this function is called when the client binds to this interface  */
49         NTSTATUS (*bind)(struct dcesrv_call_state *, const struct dcesrv_interface *);
50
51         /* this function is called when the client disconnects the endpoint */
52         void (*unbind)(struct dcesrv_connection_context *, const struct dcesrv_interface *);
53
54         /* the ndr_pull function for the chosen interface.
55          */
56         NTSTATUS (*ndr_pull)(struct dcesrv_call_state *, TALLOC_CTX *, struct ndr_pull *, void **);
57         
58         /* the dispatch function for the chosen interface.
59          */
60         NTSTATUS (*dispatch)(struct dcesrv_call_state *, TALLOC_CTX *, void *);
61
62         /* the reply function for the chosen interface.
63          */
64         NTSTATUS (*reply)(struct dcesrv_call_state *, TALLOC_CTX *, void *);
65
66         /* the ndr_push function for the chosen interface.
67          */
68         NTSTATUS (*ndr_push)(struct dcesrv_call_state *, TALLOC_CTX *, struct ndr_push *, const void *);
69
70         /* for any private use by the interface code */
71         const void *private;
72 };
73
74 /* the state of an ongoing dcerpc call */
75 struct dcesrv_call_state {
76         struct dcesrv_call_state *next, *prev;
77         struct dcesrv_connection *conn;
78         struct dcesrv_connection_context *context;
79         struct ncacn_packet pkt;
80
81         /* the backend can mark the call
82          * with DCESRV_CALL_STATE_FLAG_ASYNC
83          * that will cause the frontend to not touch r->out
84          * and skip the reply
85          *
86          * this is only allowed to the backend when DCESRV_CALL_STATE_FLAG_MAY_ASYNC
87          * is alerady set by the frontend
88          *
89          * the backend then needs to call dcesrv_reply() when it's
90          * ready to send the reply
91          */
92 #define DCESRV_CALL_STATE_FLAG_ASYNC (1<<0)
93 #define DCESRV_CALL_STATE_FLAG_MAY_ASYNC (1<<1)
94         uint32_t state_flags;
95
96         /* the time the request arrived in the server */
97         struct timeval time;
98
99         /* the backend can use this event context for async replies */
100         struct event_context *event_ctx;
101
102         /* the message_context that will be used for async replies */
103         struct messaging_context *msg_ctx;
104
105         /* this is the pointer to the allocated function struct */
106         void *r;
107
108         /*
109          * that's the ndr pull context used in dcesrv_request()
110          * needed by dcesrv_reply() to carry over information
111          * for full pointer support.
112          */
113         struct ndr_pull *ndr_pull;
114
115         DATA_BLOB input;
116
117         struct data_blob_list_item *replies;
118
119         /* this is used by the boilerplate code to generate DCERPC faults */
120         uint32_t fault_code;
121 };
122
123 #define DCESRV_HANDLE_ANY 255
124
125 /* a dcerpc handle in internal format */
126 struct dcesrv_handle {
127         struct dcesrv_handle *next, *prev;
128         struct dcesrv_connection_context *context;
129         struct policy_handle wire_handle;
130         void *data;
131 };
132
133 /* hold the authentication state information */
134 struct dcesrv_auth {
135         struct dcerpc_auth *auth_info;
136         struct gensec_security *gensec_security;
137         struct auth_session_info *session_info;
138         NTSTATUS (*session_key)(struct dcesrv_connection *, DATA_BLOB *session_key);
139 };
140
141 struct dcesrv_connection_context {
142         struct dcesrv_connection_context *next, *prev;
143         uint32_t context_id;
144
145         /* the connection this is on */
146         struct dcesrv_connection *conn;
147
148         /* the ndr function table for the chosen interface */
149         const struct dcesrv_interface *iface;
150
151         /* private data for the interface implementation */
152         void *private;
153
154         /* current rpc handles - this is really the wrong scope for
155            them, but it will do for now */
156         struct dcesrv_handle *handles;
157 };
158
159
160 /* the state associated with a dcerpc server connection */
161 struct dcesrv_connection {
162         /* the top level context for this server */
163         struct dcesrv_context *dce_ctx;
164
165         /* the endpoint that was opened */
166         const struct dcesrv_endpoint *endpoint;
167
168         /* a list of established context_ids */
169         struct dcesrv_connection_context *contexts;
170
171         /* the state of the current incoming call fragments */
172         struct dcesrv_call_state *incoming_fragmented_call_list;
173
174         /* the state of the async pending calls */
175         struct dcesrv_call_state *pending_call_list;
176
177         /* the state of the current outgoing calls */
178         struct dcesrv_call_state *call_list;
179
180         /* the maximum size the client wants to receive */
181         uint32_t cli_max_recv_frag;
182
183         DATA_BLOB partial_input;
184
185         /* the current authentication state */
186         struct dcesrv_auth auth_state;
187
188         /* the event_context that will be used for this connection */
189         struct event_context *event_ctx;
190
191         /* the message_context that will be used for this connection */
192         struct messaging_context *msg_ctx;
193
194         /* the server_id that will be used for this connection */
195         struct server_id server_id;
196
197         /* the transport level session key */
198         DATA_BLOB transport_session_key;
199
200         BOOL processing;
201
202         /* this is the default state_flags for dcesrv_call_state structs */
203         uint32_t state_flags;
204
205         struct {
206                 void *private_data;
207                 void (*report_output_data)(struct dcesrv_connection *);
208                 struct socket_address *(*get_my_addr)(struct dcesrv_connection *, TALLOC_CTX *mem_ctx);
209                 struct socket_address *(*get_peer_addr)(struct dcesrv_connection *, TALLOC_CTX *mem_ctx);
210         } transport;
211 };
212
213
214 struct dcesrv_endpoint_server {
215         /* this is the name of the endpoint server */
216         const char *name;
217
218         /* this function should register endpoints and some other setup stuff,
219          * it is called when the dcesrv_context gets initialized.
220          */
221         NTSTATUS (*init_server)(struct dcesrv_context *, const struct dcesrv_endpoint_server *);
222
223         /* this function can be used by other endpoint servers to
224          * ask for a dcesrv_interface implementation
225          * - iface must be reference to an already existing struct !
226          */
227         BOOL (*interface_by_uuid)(struct dcesrv_interface *iface, const struct GUID *, uint32_t);
228
229         /* this function can be used by other endpoint servers to
230          * ask for a dcesrv_interface implementation
231          * - iface must be reference to an already existeng struct !
232          */
233         BOOL (*interface_by_name)(struct dcesrv_interface *iface, const char *);
234 };
235
236
237 /* server-wide context information for the dcerpc server */
238 struct dcesrv_context {
239         /* the list of endpoints that have registered 
240          * by the configured endpoint servers 
241          */
242         struct dcesrv_endpoint {
243                 struct dcesrv_endpoint *next, *prev;
244                 /* the type and location of the endpoint */
245                 struct dcerpc_binding *ep_description;
246                 /* the security descriptor for smb named pipes */
247                 struct security_descriptor *sd;
248                 /* the list of interfaces available on this endpoint */
249                 struct dcesrv_if_list {
250                         struct dcesrv_if_list *next, *prev;
251                         struct dcesrv_interface iface;
252                 } *interface_list;
253         } *endpoint_list;
254 };
255
256 /* this structure is used by modules to determine the size of some critical types */
257 struct dcesrv_critical_sizes {
258         int interface_version;
259         int sizeof_dcesrv_context;
260         int sizeof_dcesrv_endpoint;
261         int sizeof_dcesrv_endpoint_server;
262         int sizeof_dcesrv_interface;
263         int sizeof_dcesrv_if_list;
264         int sizeof_dcesrv_connection;
265         int sizeof_dcesrv_call_state;
266         int sizeof_dcesrv_auth;
267         int sizeof_dcesrv_handle;
268 };
269
270 struct model_ops;
271
272 #include "rpc_server/dcerpc_server_proto.h"
273
274 #endif /* SAMBA_DCERPC_SERVER_H */