r12693: Move core data structures out of smb.h into core.h
[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 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 __DCERPC_H__
25 #define __DCERPC_H__
26
27 #include <nt_status.h>
28
29 enum dcerpc_transport_t {
30         NCACN_NP, NCACN_IP_TCP, NCACN_IP_UDP, NCACN_VNS_IPC, NCACN_VNS_SPP, 
31         NCACN_AT_DSP, NCADG_AT_DDP, NCALRPC, NCACN_UNIX_STREAM, NCADG_UNIX_DGRAM,
32         NCACN_HTTP, NCADG_IPX, NCACN_SPX };
33
34 /*
35   this defines a generic security context for signed/sealed dcerpc pipes.
36 */
37 struct dcerpc_connection;
38 struct dcerpc_security {
39         struct dcerpc_auth *auth_info;
40         struct gensec_security *generic_state;
41
42         /* get the session key */
43         NTSTATUS (*session_key)(struct dcerpc_connection *, DATA_BLOB *);
44 };
45
46 /*
47   this holds the information that is not specific to a particular rpc context_id
48 */
49 struct dcerpc_connection {
50         uint32_t call_id;
51         uint32_t srv_max_xmit_frag;
52         uint32_t srv_max_recv_frag;
53         uint32_t flags;
54         struct dcerpc_security security_state;
55         const char *binding_string;
56         struct event_context *event_ctx;
57
58         struct dcerpc_transport {
59                 enum dcerpc_transport_t transport;
60                 void *private;
61
62                 NTSTATUS (*shutdown_pipe)(struct dcerpc_connection *);
63
64                 const char *(*peer_name)(struct dcerpc_connection *);
65
66                 /* send a request to the server */
67                 NTSTATUS (*send_request)(struct dcerpc_connection *, DATA_BLOB *, BOOL trigger_read);
68
69                 /* send a read request to the server */
70                 NTSTATUS (*send_read)(struct dcerpc_connection *);
71
72                 /* a callback to the dcerpc code when a full fragment
73                    has been received */
74                 void (*recv_data)(struct dcerpc_connection *, DATA_BLOB *, NTSTATUS status);
75         } transport;
76
77         /* Requests that have been sent, waiting for a reply */
78         struct rpc_request *pending;
79
80         /* Sync requests waiting to be shipped */
81         struct rpc_request *request_queue;
82
83         /* private pointer for pending binds */
84         void *bind_private;
85
86         /* private pointer for pending alter context requests */
87         void *alter_private;
88
89         /* the next context_id to be assigned */
90         uint32_t next_context_id;
91 };
92
93 /*
94   this encapsulates a full dcerpc client side pipe 
95 */
96 struct dcerpc_pipe {
97         uint32_t context_id;
98
99         struct dcerpc_syntax_id syntax;
100         struct dcerpc_syntax_id transfer_syntax;
101
102         struct dcerpc_connection *conn;
103
104         /* the last fault code from a DCERPC fault */
105         uint32_t last_fault_code;
106
107         /* timeout for individual rpc requests, in seconds */
108         uint32_t request_timeout;
109 };
110
111 /* default timeout for all rpc requests, in seconds */
112 #define DCERPC_REQUEST_TIMEOUT 60
113
114
115 /* dcerpc pipe flags */
116 #define DCERPC_DEBUG_PRINT_IN          (1<<0)
117 #define DCERPC_DEBUG_PRINT_OUT         (1<<1)
118 #define DCERPC_DEBUG_PRINT_BOTH (DCERPC_DEBUG_PRINT_IN | DCERPC_DEBUG_PRINT_OUT)
119
120 #define DCERPC_DEBUG_VALIDATE_IN       (1<<2)
121 #define DCERPC_DEBUG_VALIDATE_OUT      (1<<3)
122 #define DCERPC_DEBUG_VALIDATE_BOTH (DCERPC_DEBUG_VALIDATE_IN | DCERPC_DEBUG_VALIDATE_OUT)
123
124 #define DCERPC_CONNECT                 (1<<4)
125 #define DCERPC_SIGN                    (1<<5)
126 #define DCERPC_SEAL                    (1<<6)
127
128 #define DCERPC_PUSH_BIGENDIAN          (1<<7)
129 #define DCERPC_PULL_BIGENDIAN          (1<<8)
130
131 #define DCERPC_SCHANNEL                (1<<9)
132
133 /* use a 128 bit session key */
134 #define DCERPC_SCHANNEL_128            (1<<12)
135
136 /* check incoming pad bytes */
137 #define DCERPC_DEBUG_PAD_CHECK         (1<<13)
138
139 /* set LIBNDR_FLAG_REF_ALLOC flag when decoding NDR */
140 #define DCERPC_NDR_REF_ALLOC           (1<<14)
141
142 #define DCERPC_AUTH_OPTIONS    (DCERPC_SEAL|DCERPC_SIGN|DCERPC_SCHANNEL|DCERPC_AUTH_SPNEGO|DCERPC_AUTH_KRB5)
143
144 /* enable spnego auth */
145 #define DCERPC_AUTH_SPNEGO             (1<<15)
146
147 /* enable krb5 auth */
148 #define DCERPC_AUTH_KRB5               (1<<16)
149
150 #define DCERPC_SMB2                    (1<<17)
151
152 /*
153   this is used to find pointers to calls
154 */
155 struct dcerpc_interface_call {
156         const char *name;
157         size_t struct_size;
158         ndr_push_flags_fn_t ndr_push;
159         ndr_pull_flags_fn_t ndr_pull;
160         ndr_print_function_t ndr_print;
161         BOOL async;
162 };
163
164 struct dcerpc_endpoint_list {
165         uint32_t count;
166         const char * const *names;
167 };
168
169 struct dcerpc_authservice_list {
170         uint32_t count;
171         const char * const *names;
172 };
173
174 struct dcerpc_interface_table {
175         const char *name;
176         struct GUID uuid;
177         uint32_t if_version;
178         const char *helpstring;
179         uint32_t num_calls;
180         const struct dcerpc_interface_call *calls;
181         const struct dcerpc_endpoint_list *endpoints;
182         const struct dcerpc_authservice_list *authservices;
183 };
184
185 struct dcerpc_interface_list {
186         struct dcerpc_interface_list *prev, *next;
187         const struct dcerpc_interface_table *table;
188 };
189
190 /* this describes a binding to a particular transport/pipe */
191 struct dcerpc_binding {
192         enum dcerpc_transport_t transport;
193         struct GUID object;
194         uint16_t object_version;
195         const char *host;
196         const char *endpoint;
197         const char **options;
198         uint32_t flags;
199 };
200
201
202 struct dcerpc_pipe_connect {
203         struct dcerpc_pipe *pipe;
204         struct dcerpc_binding *binding;
205         const char *pipe_name;
206         const struct dcerpc_interface_table *interface;
207         struct cli_credentials *creds;
208 };
209
210
211 enum rpc_request_state {
212         RPC_REQUEST_PENDING,
213         RPC_REQUEST_DONE
214 };
215
216 /*
217   handle for an async dcerpc request
218 */
219 struct rpc_request {
220         struct rpc_request *next, *prev;
221         struct dcerpc_pipe *p;
222         NTSTATUS status;
223         uint32_t call_id;
224         enum rpc_request_state state;
225         DATA_BLOB payload;
226         uint32_t flags;
227         uint32_t fault_code;
228
229         const struct GUID *object;
230         uint16_t opnum;
231         DATA_BLOB request_data;
232         BOOL async_call;
233
234         /* use by the ndr level async recv call */
235         struct {
236                 const struct dcerpc_interface_table *table;
237                 uint32_t opnum;
238                 void *struct_ptr;
239                 TALLOC_CTX *mem_ctx;
240         } ndr;
241
242         struct {
243                 void (*callback)(struct rpc_request *);
244                 void *private;
245         } async;
246 };
247
248 #include "librpc/rpc/dcerpc_proto.h"
249
250 #endif /* __DCERPC_H__ */