spoolss include definitions
[tprouty/samba.git] / source / include / rpc_dce.h
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    SMB parameters and setup
5    Copyright (C) Andrew Tridgell 1992-1997
6    Copyright (C) Luke Kenneth Casson Leighton 1996-1997
7    Copyright (C) Paul Ashton 1997
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 _DCE_RPC_H /* _DCE_RPC_H */
25 #define _DCE_RPC_H 
26
27 #include "rpc_misc.h" /* this only pulls in STRHDR */
28
29
30 /* DCE/RPC packet types */
31
32 enum RPC_PKT_TYPE
33 {
34         RPC_REQUEST = 0x00,
35         RPC_RESPONSE = 0x02,
36         RPC_FAULT    = 0x03,
37         RPC_BIND     = 0x0B,
38         RPC_BINDACK  = 0x0C,
39         RPC_BINDNACK = 0x0D,
40         RPC_ALTCONT  = 0x0E,
41         RPC_ALTCONTRESP = 0x0F,
42         RPC_BINDRESP = 0x10 /* not the real name!  this is undocumented! */
43 };
44
45 /* DCE/RPC flags */
46 #define RPC_FLG_FIRST 0x01
47 #define RPC_FLG_LAST  0x02
48
49 /* NTLMSSP message types */
50 enum NTLM_MESSAGE_TYPE
51 {
52         NTLMSSP_NEGOTIATE = 1,
53         NTLMSSP_CHALLENGE = 2,
54         NTLMSSP_AUTH      = 3,
55         NTLMSSP_UNKNOWN   = 4
56 };
57
58 /* NTLMSSP negotiation flags */
59 #define NTLMSSP_NEGOTIATE_UNICODE          0x00000001
60 #define NTLMSSP_NEGOTIATE_OEM              0x00000002
61 #define NTLMSSP_REQUEST_TARGET             0x00000004
62 #define NTLMSSP_NEGOTIATE_SIGN             0x00000010
63 #define NTLMSSP_NEGOTIATE_SEAL             0x00000020
64 #define NTLMSSP_NEGOTIATE_LM_KEY           0x00000080
65 #define NTLMSSP_NEGOTIATE_NTLM             0x00000200
66 #define NTLMSSP_NEGOTIATE_00001000         0x00001000
67 #define NTLMSSP_NEGOTIATE_00002000         0x00002000
68 #define NTLMSSP_NEGOTIATE_ALWAYS_SIGN      0x00008000
69 #define NTLMSSP_NEGOTIATE_NTLM2            0x00080000
70 #define NTLMSSP_NEGOTIATE_TARGET_INFO      0x00800000
71 #define NTLMSSP_NEGOTIATE_128              0x20000000
72 #define NTLMSSP_NEGOTIATE_KEY_EXCH         0x40000000
73
74 #define SMBD_NTLMSSP_NEG_FLAGS 0x000082b1
75
76 /* NTLMSSP signature version */
77 #define NTLMSSP_SIGN_VERSION 0x01
78
79 /* NTLMSSP auth type and level. */
80 #define NTLMSSP_AUTH_TYPE 0xa
81 #define NTLMSSP_AUTH_LEVEL 0x6
82
83 /* Maximum PDU fragment size. */
84 #define MAX_PDU_FRAG_LEN 0x1630
85
86 /*
87  * Actual structure of a DCE UUID
88  */
89
90 typedef struct rpc_uuid
91 {
92   uint32 time_low;
93   uint16 time_mid;
94   uint16 time_hi_and_version;
95   uint8 remaining[8];
96 } RPC_UUID;
97
98 #define RPC_UUID_LEN 16
99
100 /* RPC_IFACE */
101 typedef struct rpc_iface_info
102 {
103   RPC_UUID uuid;    /* 16 bytes of rpc interface identification */
104   uint32 version;    /* the interface version number */
105
106 } RPC_IFACE;
107
108 #define RPC_IFACE_LEN (RPC_UUID_LEN + 4)
109
110 struct pipe_id_info
111 {
112         /* the names appear not to matter: the syntaxes _do_ matter */
113
114         char *client_pipe;
115         RPC_IFACE abstr_syntax; /* this one is the abstract syntax id */
116
117         char *server_pipe;  /* this one is the secondary syntax name */
118         RPC_IFACE trans_syntax; /* this one is the primary syntax id */
119 };
120
121 /* RPC_HDR - dce rpc header */
122 typedef struct rpc_hdr_info
123 {
124   uint8  major; /* 5 - RPC major version */
125   uint8  minor; /* 0 - RPC minor version */
126   uint8  pkt_type; /* RPC_PKT_TYPE - RPC response packet */
127   uint8  flags; /* DCE/RPC flags */
128   uint8  pack_type[4]; /* 0x1000 0000 - little-endian packed data representation */
129   uint16 frag_len; /* fragment length - data size (bytes) inc header and tail. */
130   uint16 auth_len; /* 0 - authentication length  */
131   uint32 call_id; /* call identifier.  matches 12th uint32 of incoming RPC data. */
132
133 } RPC_HDR;
134
135 #define RPC_HEADER_LEN 16
136
137 /* RPC_HDR_REQ - ms request rpc header */
138 typedef struct rpc_hdr_req_info
139 {
140   uint32 alloc_hint;   /* allocation hint - data size (bytes) minus header and tail. */
141   uint16 context_id;   /* 0 - presentation context identifier */
142   uint16  opnum;        /* opnum */
143
144 } RPC_HDR_REQ;
145
146 #define RPC_HDR_REQ_LEN 8
147
148 /* RPC_HDR_RESP - ms response rpc header */
149 typedef struct rpc_hdr_resp_info
150 {
151   uint32 alloc_hint;   /* allocation hint - data size (bytes) minus header and tail. */
152   uint16 context_id;   /* 0 - presentation context identifier */
153   uint8  cancel_count; /* 0 - cancel count */
154   uint8  reserved;     /* 0 - reserved. */
155
156 } RPC_HDR_RESP;
157
158 #define RPC_HDR_RESP_LEN 8
159
160 /* this seems to be the same string name depending on the name of the pipe,
161  * but is more likely to be linked to the interface name
162  * "srvsvc", "\\PIPE\\ntsvcs"
163  * "samr", "\\PIPE\\lsass"
164  * "wkssvc", "\\PIPE\\wksvcs"
165  * "NETLOGON", "\\PIPE\\NETLOGON"
166  */
167 /* RPC_ADDR_STR */
168 typedef struct rpc_addr_info
169 {
170   uint16 len;   /* length of the string including null terminator */
171   fstring str; /* the string above in single byte, null terminated form */
172
173 } RPC_ADDR_STR;
174
175 /* RPC_HDR_BBA */
176 typedef struct rpc_hdr_bba_info
177 {
178   uint16 max_tsize;       /* maximum transmission fragment size (0x1630) */
179   uint16 max_rsize;       /* max receive fragment size (0x1630) */
180   uint32 assoc_gid;       /* associated group id (0x0) */
181
182 } RPC_HDR_BBA;
183
184 #define RPC_HDR_BBA_LEN 8
185
186 /* RPC_HDR_AUTHA */
187 typedef struct rpc_hdr_autha_info
188 {
189         uint16 max_tsize;       /* maximum transmission fragment size (0x1630) */
190         uint16 max_rsize;       /* max receive fragment size (0x1630) */
191
192         uint8 auth_type; /* 0x0a */
193         uint8 auth_level; /* 0x06 */
194         uint8 stub_type_len; /* don't know */
195         uint8 padding; /* padding */
196
197         uint32 unknown; /* 0x0014a0c0 */
198
199 } RPC_HDR_AUTHA;
200
201 #define RPC_HDR_AUTHA_LEN 12
202
203 /* RPC_HDR_AUTH */
204 typedef struct rpc_hdr_auth_info
205 {
206         uint8 auth_type; /* 0x0a */
207         uint8 auth_level; /* 0x06 */
208         uint8 stub_type_len; /* don't know */
209         uint8 padding; /* padding */
210
211         uint32 unknown; /* pointer */
212
213 } RPC_HDR_AUTH;
214
215 #define RPC_HDR_AUTH_LEN 8
216
217 /* RPC_BIND_REQ - ms req bind */
218 typedef struct rpc_bind_req_info
219 {
220   RPC_HDR_BBA bba;
221
222   uint32 num_elements;    /* the number of elements (0x1) */
223   uint16 context_id;      /* presentation context identifier (0x0) */
224   uint8 num_syntaxes;     /* the number of syntaxes (has always been 1?)(0x1) */
225
226   RPC_IFACE abstract;     /* num and vers. of interface client is using */
227   RPC_IFACE transfer;     /* num and vers. of interface to use for replies */
228   
229 } RPC_HDR_RB;
230
231 /* 
232  * The following length is 8 bytes RPC_HDR_BBA_LEN, 8 bytes internals 
233  * (with 3 bytes padding), + 2 x RPC_IFACE_LEN bytes for RPC_IFACE structs.
234  */
235
236 #define RPC_HDR_RB_LEN (RPC_HDR_BBA_LEN + 8 + (2*RPC_IFACE_LEN))
237
238 /* RPC_RESULTS - can only cope with one reason, right now... */
239 typedef struct rpc_results_info
240 {
241 /* uint8[] # 4-byte alignment padding, against SMB header */
242
243   uint8 num_results; /* the number of results (0x01) */
244
245 /* uint8[] # 4-byte alignment padding, against SMB header */
246
247   uint16 result; /* result (0x00 = accept) */
248   uint16 reason; /* reason (0x00 = no reason specified) */
249
250 } RPC_RESULTS;
251
252 /* RPC_HDR_BA */
253 typedef struct rpc_hdr_ba_info
254 {
255   RPC_HDR_BBA bba;
256
257   RPC_ADDR_STR addr    ;  /* the secondary address string, as described earlier */
258   RPC_RESULTS  res     ; /* results and reasons */
259   RPC_IFACE    transfer; /* the transfer syntax from the request */
260
261 } RPC_HDR_BA;
262
263 /* RPC_AUTH_VERIFIER */
264 typedef struct rpc_auth_verif_info
265 {
266         fstring signature; /* "NTLMSSP" */
267         uint32  msg_type; /* NTLMSSP_MESSAGE_TYPE (1,2,3) */
268
269 } RPC_AUTH_VERIFIER;
270
271 /* this is TEMPORARILY coded up as a specific structure */
272 /* this structure comes after the bind request */
273 /* RPC_AUTH_NTLMSSP_NEG */
274 typedef struct rpc_auth_ntlmssp_neg_info
275 {
276         uint32  neg_flgs; /* 0x0000 b2b3 */
277
278         STRHDR hdr_myname; /* offset is against START of this structure */
279         STRHDR hdr_domain; /* offset is against START of this structure */
280
281         fstring myname; /* calling workstation's name */
282         fstring domain; /* calling workstations's domain */
283
284 } RPC_AUTH_NTLMSSP_NEG;
285
286 /* this is TEMPORARILY coded up as a specific structure */
287 /* this structure comes after the bind acknowledgement */
288 /* RPC_AUTH_NTLMSSP_CHAL */
289 typedef struct rpc_auth_ntlmssp_chal_info
290 {
291         uint32 unknown_1; /* 0x0000 0000 */
292         uint32 unknown_2; /* 0x0000 0028 */
293         uint32 neg_flags; /* 0x0000 82b1 */
294
295         uint8 challenge[8]; /* ntlm challenge */
296         uint8 reserved [8]; /* zeros */
297
298 } RPC_AUTH_NTLMSSP_CHAL;
299
300
301 /* RPC_AUTH_NTLMSSP_RESP */
302 typedef struct rpc_auth_ntlmssp_resp_info
303 {
304         STRHDR hdr_lm_resp; /* 24 byte response */
305         STRHDR hdr_nt_resp; /* 24 byte response */
306         STRHDR hdr_domain;
307         STRHDR hdr_usr;
308         STRHDR hdr_wks;
309         STRHDR hdr_sess_key; /* NULL unless negotiated */
310         uint32 neg_flags; /* 0x0000 82b1 */
311
312         fstring sess_key;
313         fstring wks;
314         fstring user;
315         fstring domain;
316         fstring nt_resp;
317         fstring lm_resp;
318
319 } RPC_AUTH_NTLMSSP_RESP;
320
321 /* attached to the end of encrypted rpc requests and responses */
322 /* RPC_AUTH_NTLMSSP_CHK */
323 typedef struct rpc_auth_ntlmssp_chk_info
324 {
325         uint32 ver; /* 0x0000 0001 */
326         uint32 reserved;
327         uint32 crc32; /* checksum using 0xEDB8 8320 as a polynomial */
328         uint32 seq_num;
329
330 } RPC_AUTH_NTLMSSP_CHK;
331
332 #define RPC_AUTH_NTLMSSP_CHK_LEN 16
333
334 #endif /* _DCE_RPC_H */