bd5deab847683c364abd4195f6e0a4281bb61a8d
[abartlet/samba.git/.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
7    Copyright (C) Stefan (metze) Metzmacher 2004
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 /* modules can use the following to determine if the interface has changed
28  * please increment the version number after each interface change
29  * with a comment and maybe update struct dcesrv_critical_sizes.
30  */
31 /* version 1 - initial version - metze */
32 #define DCERPC_MODULE_VERSION 1
33
34 enum endpoint_type {ENDPOINT_SMB, ENDPOINT_TCP};
35
36 /* a description of a single dcerpc endpoint. Not as flexible as a full epm tower,
37    but much easier to work with */
38 struct dcesrv_ep_description {
39         enum endpoint_type type;
40         union {
41                 const char *smb_pipe;
42                 uint32 tcp_port;
43         } info;
44 };
45
46 struct dcesrv_connection;
47 struct dcesrv_call_state;
48
49 /* the dispatch functions for an interface take this form */
50 typedef NTSTATUS (*dcesrv_dispatch_fn_t)(struct dcesrv_call_state *, TALLOC_CTX *, void *);
51
52 struct dcesrv_interface {
53         /* the ndr function table for the chosen interface */
54         const struct dcerpc_interface_table *ndr;
55
56         /* this function is called when the client binds to this interface  */
57         NTSTATUS (*bind)(struct dcesrv_call_state *, const struct dcesrv_interface *);
58
59         /* this function is called when the client disconnects the endpoint */
60         void (*unbind)(struct dcesrv_connection *, const struct dcesrv_interface *);
61
62         /* the dispatch function for the chosen interface.
63          */
64         dcesrv_dispatch_fn_t dispatch;
65 }; 
66
67 /* the state of an ongoing dcerpc call */
68 struct dcesrv_call_state {
69         struct dcesrv_call_state *next, *prev;
70         struct dcesrv_connection *conn;
71         TALLOC_CTX *mem_ctx;
72         struct dcerpc_packet pkt;
73
74         DATA_BLOB input;
75
76         struct dcesrv_call_reply {
77                 struct dcesrv_call_reply *next, *prev;
78                 DATA_BLOB data;
79         } *replies;
80 };
81
82 #define DCESRV_HANDLE_ANY 255
83
84 /* a dcerpc handle in internal format */
85 struct dcesrv_handle {
86         struct dcesrv_handle *next, *prev;
87         struct policy_handle wire_handle;
88         TALLOC_CTX *mem_ctx;
89         void *data;
90         void (*destroy)(struct dcesrv_connection *, struct dcesrv_handle *);
91 };
92
93 /* hold the authentication state information */
94 struct dcesrv_auth {
95         struct auth_ntlmssp_state *ntlmssp_state;
96         struct dcerpc_auth *auth_info;
97 };
98
99
100 /* the state associated with a dcerpc server connection */
101 struct dcesrv_connection {
102         /* the top level context for this server */
103         struct dcesrv_context *dce_ctx;
104
105         TALLOC_CTX *mem_ctx;
106
107         /* the endpoint that was opened */
108         const struct dcesrv_endpoint *endpoint;
109
110         /* the ndr function table for the chosen interface */
111         const struct dcesrv_interface *iface;
112
113         /* the state of the current calls */
114         struct dcesrv_call_state *call_list;
115
116         /* the maximum size the client wants to receive */
117         uint32 cli_max_recv_frag;
118
119         /* private data for the interface implementation */
120         void *private;
121
122         /* current rpc handles - this is really the wrong scope for
123            them, but it will do for now */
124         struct dcesrv_handle *handles;
125
126         DATA_BLOB partial_input;
127
128         /* the current authentication state */
129         struct dcesrv_auth auth_state;
130 };
131
132
133 struct dcesrv_endpoint_server {
134         /* this is the name of the endpoint server */
135         const char *name;
136
137         /* this function should register endpoints and some other setup stuff,
138          * it is called when the dcesrv_context gets initialized.
139          */
140         NTSTATUS (*init_server)(struct dcesrv_context *, const struct dcesrv_endpoint_server *);
141
142         /* this function can be used by other endpoint servers to
143          * ask for a dcesrv_interface implementation
144          * - iface must be referenz to an allready existent struct !
145          */
146         BOOL (*interface_by_uuid)(struct dcesrv_interface *iface, const char *, uint32);
147
148         /* this function can be used by other endpoint servers to
149          * ask for a dcesrv_interface implementation
150          * - iface must be referenz to an allready existent struct !
151          */
152         BOOL (*interface_by_name)(struct dcesrv_interface *iface, const char *);
153 };
154
155
156 /* server-wide context information for the dcerpc server */
157 struct dcesrv_context {
158         TALLOC_CTX *mem_ctx;
159
160         /* the list of endpoints that have registered 
161          * by the configured endpoint servers 
162          */
163         struct dcesrv_endpoint {
164                 struct dcesrv_endpoint *next, *prev;
165                 /* the type and location of the endpoint */
166                 struct dcesrv_ep_description ep_description;
167                 /* the security descriptor for smb named pipes */
168                 struct security_descriptor *sd;
169                 /* the list of interfaces available on this endpoint */
170                 struct dcesrv_if_list {
171                         struct dcesrv_if_list *next, *prev;
172                         struct dcesrv_interface iface;
173                 } *interface_list;
174         } *endpoint_list;
175 };
176
177 /* this structure is used by modules to determine the size of some critical types */
178 struct dcesrv_critical_sizes {
179         int interface_version;
180         int sizeof_dcesrv_context;
181         int sizeof_dcesrv_endpoint;
182         int sizeof_dcesrv_endpoint_server;
183         int sizeof_dcesrv_ep_description;
184         int sizeof_dcesrv_interface;
185         int sizeof_dcesrv_if_list;
186         int sizeof_dcesrv_connection;
187         int sizeof_dcesrv_call_state;
188         int sizeof_dcesrv_auth;
189         int sizeof_dcesrv_handle;
190 };
191
192 #endif /* SAMBA_DCERPC_SERVER_H */