first pass at updating head branch to be to be the same as the SAMBA_2_0 branch
[gd/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 /* security descriptor structures */
35 #include "rpc_secdes.h" 
36
37 /* different dce/rpc pipes */
38 #include "rpc_lsa.h"
39 #include "rpc_netlogon.h"
40 #include "rpc_reg.h"
41 #include "rpc_samr.h"
42 #include "rpc_srvsvc.h"
43 #include "rpc_wkssvc.h"
44
45 /* 
46  * A bunch of stuff that was put into smb.h
47  * in the NTDOM branch - it didn't belong there.
48  */
49  
50 typedef struct _prs_struct 
51 {
52         BOOL io; /* parsing in or out of data stream */
53         /* 
54          * If the (incoming) data is big-endian. On output we are
55          * always little-endian.
56          */ 
57         BOOL bigendian_data;
58         uint8 align; /* data alignment */
59         BOOL is_dynamic; /* Do we own this memory or not ? */
60         uint32 data_offset; /* Current working offset into data. */
61         uint32 buffer_size; /* Current size of the buffer. */
62         char *data_p; /* The buffer itself. */
63 } prs_struct;
64
65 /*
66  * Defines for io member of prs_struct.
67  */
68
69 #define MARSHALL 0
70 #define UNMARSHALL 1
71
72 #define MARSHALLING(ps) (!(ps)->io)
73 #define UNMARSHALLING(ps) ((ps)->io)
74
75 typedef struct pipes_struct
76 {
77         struct pipes_struct *next, *prev;
78         int pnum;
79         connection_struct *conn;
80         uint16 vuid;
81         BOOL open; /* open connection */
82         uint16 device_state;
83         uint16 priority;
84         fstring name;
85         fstring pipe_srv_name;
86
87         RPC_HDR hdr; /* Incoming RPC header. */
88         RPC_HDR_REQ hdr_req; /* Incoming request header. */
89
90         uint32 ntlmssp_chal_flags; /* Client challenge flags. */
91         BOOL ntlmssp_auth_requested; /* If the client wanted authenticated rpc. */
92         BOOL ntlmssp_auth_validated; /* If the client *got* authenticated rpc. */
93         unsigned char challenge[8];
94         unsigned char ntlmssp_hash[258];
95         uint32 ntlmssp_seq_num;
96
97         /*
98          * Windows user info.
99          */
100         fstring user_name;
101         fstring domain;
102         fstring wks;
103
104         /*
105          * Unix user name and credentials.
106          */
107         fstring unix_user_name;
108         uid_t uid;
109         gid_t gid;
110
111         /* 
112          * Raw RPC output data. This does not include RPC headers or footers.
113          */
114         prs_struct rdata;
115
116         /* The amount of data sent from the current rdata struct. */
117         uint32 data_sent_length;
118
119         /* 
120          * The current PDU being returned. This inclues
121          * headers, data and authentication footer.
122          */
123         unsigned char current_pdu[MAX_PDU_FRAG_LEN];
124
125         /* The amount of data in the current_pdu buffer. */
126         uint32 current_pdu_len;
127
128         /* The amount of data sent from the current PDU. */
129         uint32 current_pdu_sent;
130
131         /* When replying to an SMBtrans, this is the maximum amount of
132            data that can be sent in the initial reply. */
133         int max_trans_reply;
134 } pipes_struct;
135
136 struct api_struct
137 {  
138   char *name;
139   uint8 opnum;
140   BOOL (*fn) (uint16 vuid, prs_struct*, prs_struct*);
141 };
142
143 typedef struct
144 {  
145         uint32 rid;
146         char *name;
147
148 } rid_name;
149
150 struct acct_info
151 {
152     fstring acct_name; /* account name */
153     uint32 smb_userid; /* domain-relative RID */
154 };
155
156 #endif /* _NT_DOMAIN_H */