dce/rpc
[tprouty/samba.git] / source / include / ntdomain.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 _NT_DOMAIN_H /* _NT_DOMAIN_H */
25 #define _NT_DOMAIN_H 
26
27
28 /* dce/rpc support */
29 #include "rpc_dce.h"
30
31 /* miscellaneous structures / defines */
32 #include "rpc_misc.h"
33
34 /* different dce/rpc pipes */
35 #include "rpc_lsa.h"
36 #include "rpc_netlogon.h"
37 #include "rpc_reg.h"
38 #include "rpc_samr.h"
39 #include "rpc_srvsvc.h"
40 #include "rpc_wkssvc.h"
41
42 /* 
43  * A bunch of stuff that was put into smb.h
44  * in the NTDOM branch - it didn't belong there.
45  */
46  
47 typedef struct
48 {
49         struct mem_buf *data; /* memory buffer */
50         uint32 offset; /* offset currently being accessed in memory buffer */
51         uint8 align; /* data alignment */
52         BOOL io; /* parsing in or out of data stream */
53
54 } prs_struct;
55
56 typedef struct pipes_struct
57 {
58         struct pipes_struct *next, *prev;
59         int pnum;
60         connection_struct *conn;
61         uint16 vuid;
62         BOOL open; /* open connection */
63         uint16 device_state;
64         fstring name;
65         fstring pipe_srv_name;
66
67         prs_struct rhdr; /* output header */
68         prs_struct rdata; /* output data */
69         prs_struct rauth; /* output authentication verifier */
70         prs_struct rverf; /* output verifier */
71         prs_struct rntlm; /* output ntlmssp */
72
73         RPC_HDR     hdr;
74         RPC_HDR_BA  hdr_ba;
75         RPC_HDR_RB  hdr_rb;
76         RPC_HDR_REQ  hdr_req;
77         RPC_HDR_RESP hdr_resp;
78         RPC_HDR_AUTH  auth_info;
79         RPC_HDR_AUTHA autha_info;
80
81         RPC_AUTH_VERIFIER     auth_verifier;
82         RPC_AUTH_NTLMSSP_NEG  ntlmssp_neg;
83         RPC_AUTH_NTLMSSP_CHAL ntlmssp_chal;
84         RPC_AUTH_NTLMSSP_RESP ntlmssp_resp;
85
86         BOOL ntlmssp_auth;
87         unsigned char ntlmssp_hash[256];
88
89         uint32 file_offset;
90         uint32 hdr_offsets;
91         uint32 frag_len_left;
92         uint32 next_frag_start;
93
94 } pipes_struct;
95
96 struct api_struct
97 {  
98   char *name;
99   uint8 opnum;
100   void (*fn) (uint16 vuid, prs_struct*, prs_struct*);
101 };
102
103 struct mem_desc
104 {  
105         /* array memory offsets */
106         uint32 start; 
107         uint32 end;
108 };
109    
110 struct mem_buf
111 {  
112         BOOL dynamic; /* True iff data has been dynamically allocated
113                                          (and therefore can be freed) */
114         char *data;
115         uint32 data_size;
116         uint32 data_used;
117
118         uint32 margin; /* safety margin when reallocing. */
119                                    /* this can be abused quite nicely */
120         uint8 align;   /* alignment of data structures (smb, dce/rpc, udp etc) */
121
122         struct mem_desc offset;
123
124         struct mem_buf *next;
125 };
126
127 typedef struct
128 {  
129         uint32 rid;
130         char *name;
131
132 } rid_name;
133
134 struct acct_info
135 {
136     fstring acct_name; /* account name */
137     uint32 smb_userid; /* domain-relative RID */
138 };
139
140 #endif /* _NT_DOMAIN_H */
141