Convert SMB and SMB2 code to use a common buffer handling structure
[kai/samba.git] / source4 / libcli / raw / libcliraw.h
1 /*
2    Unix SMB/CIFS implementation.
3    SMB parameters and setup
4
5    Copyright (C) Andrew Tridgell 2002-2004
6    Copyright (C) James Myers 2003 <myersjj@samba.org>
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #ifndef __LIBCLI_RAW_H__
23 #define __LIBCLI_RAW_H__
24
25 #include "libcli/raw/request.h"
26 #include "librpc/gen_ndr/nbt.h"
27
28 struct smbcli_tree;  /* forward declare */
29 struct smbcli_request;  /* forward declare */
30 struct smbcli_session;  /* forward declare */
31 struct smbcli_transport;  /* forward declare */
32
33 struct resolve_context;
34 struct cli_credentials;
35
36 /* default timeout for all smb requests */
37 #define SMB_REQUEST_TIMEOUT 60
38
39 /* context that will be and has been negotiated between the client and server */
40 struct smbcli_negotiate {
41         /* 
42          * negotiated maximum transmit size - this is given to us by the server
43          */
44         uint32_t max_xmit;
45
46         /* maximum number of requests that can be multiplexed */
47         uint16_t max_mux;
48
49         /* the negotiatiated protocol */
50         enum protocol_types protocol;
51
52         uint8_t sec_mode;               /* security mode returned by negprot */
53         uint8_t key_len;
54         DATA_BLOB server_guid;      /* server_guid */
55         DATA_BLOB secblob;      /* cryptkey or negTokenInit blob */
56         uint32_t sesskey;
57         
58         struct smb_signing_context sign_info;
59
60         /* capabilities that the server reported */
61         uint32_t capabilities;
62         
63         int server_zone;
64         time_t server_time;
65         uint_t readbraw_supported:1;
66         uint_t writebraw_supported:1;
67
68         char *server_domain;
69 };
70         
71 /* this is the context for a SMB socket associated with the socket itself */
72 struct smbcli_socket {
73         struct socket_context *sock;
74
75         /* what port we ended up connected to */
76         int port;
77
78         /* the hostname we connected to */
79         const char *hostname;
80
81         /* the event handle for waiting for socket IO */
82         struct {
83                 struct event_context *ctx;
84                 struct fd_event *fde;
85                 struct timed_event *te;
86         } event;
87 };
88
89 /*
90   this structure allows applications to control the behaviour of the
91   client library
92 */
93 struct smbcli_options {
94         uint_t use_oplocks:1;
95         uint_t use_level2_oplocks:1;
96         uint_t use_spnego:1;
97         uint_t unicode:1;
98         uint_t ntstatus_support:1;
99         int max_protocol;
100         uint32_t max_xmit;
101         uint16_t max_mux;
102         int request_timeout;
103         enum smb_signing_state signing;
104 };
105
106 /* this is the context for the client transport layer */
107 struct smbcli_transport {
108         /* socket level info */
109         struct smbcli_socket *socket;
110
111         /* the next mid to be allocated - needed for signing and
112            request matching */
113         uint16_t next_mid;
114         
115         /* negotiated protocol information */
116         struct smbcli_negotiate negotiate;
117
118         /* options to control the behaviour of the client code */
119         struct smbcli_options options;
120
121         /* is a readbraw pending? we need to handle that case
122            specially on receiving packets */
123         uint_t readbraw_pending:1;
124         
125         /* an idle function - if this is defined then it will be
126            called once every period microseconds while we are waiting
127            for a packet */
128         struct {
129                 void (*func)(struct smbcli_transport *, void *);
130                 void *private;
131                 uint_t period;
132         } idle;
133
134         /* the error fields from the last message */
135         struct {
136                 enum {ETYPE_NONE, ETYPE_SMB, ETYPE_SOCKET, ETYPE_NBT} etype;
137                 union {
138                         NTSTATUS nt_status;
139                         enum {SOCKET_READ_TIMEOUT,
140                               SOCKET_READ_EOF,
141                               SOCKET_READ_ERROR,
142                               SOCKET_WRITE_ERROR,
143                               SOCKET_READ_BAD_SIG} socket_error;
144                         uint_t nbt_error;
145                 } e;
146         } error;
147
148         struct {
149                 /* a oplock break request handler */
150                 bool (*handler)(struct smbcli_transport *transport, 
151                                 uint16_t tid, uint16_t fnum, uint8_t level, void *private);
152                 /* private data passed to the oplock handler */
153                 void *private;
154         } oplock;
155
156         /* a list of async requests that are pending for receive on this connection */
157         struct smbcli_request *pending_recv;
158
159         /* remember the called name - some sub-protocols require us to
160            know the server name */
161         struct nbt_name called;
162
163         /* context of the stream -> packet parser */
164         struct packet_context *packet;
165 };
166
167 /* this is the context for the user */
168
169 /* this is the context for the session layer */
170 struct smbcli_session { 
171         /* transport layer info */
172         struct smbcli_transport *transport;
173         
174         /* after a session setup the server provides us with
175            a vuid identifying the security context */
176         uint16_t vuid;
177
178         /* default pid for this session */
179         uint32_t pid;
180
181         /* the flags2 for each packet - this allows
182            the user to control these for torture testing */
183         uint16_t flags2;
184
185         DATA_BLOB user_session_key;
186
187         /* the spnego context if we use extented security */
188         struct gensec_security *gensec;
189 };
190
191 /* 
192    smbcli_tree context: internal state for a tree connection. 
193  */
194 struct smbcli_tree {
195         /* session layer info */
196         struct smbcli_session *session;
197
198         uint16_t tid;                   /* tree id, aka cnum */
199         char *device;
200         char *fs_type;
201 };
202
203
204 /*
205   a client request moves between the following 4 states.
206 */
207 enum smbcli_request_state {SMBCLI_REQUEST_INIT, /* we are creating the request */
208                         SMBCLI_REQUEST_RECV, /* we are waiting for a matching reply */
209                         SMBCLI_REQUEST_DONE, /* the request is finished */
210                         SMBCLI_REQUEST_ERROR}; /* a packet or transport level error has occurred */
211
212 /* the context for a single SMB request. This is passed to any request-context 
213  * functions (similar to context.h, the server version).
214  * This will allow requests to be multi-threaded. */
215 struct smbcli_request {
216         /* allow a request to be part of a list of requests */
217         struct smbcli_request *next, *prev;
218
219         /* each request is in one of 4 possible states */
220         enum smbcli_request_state state;
221         
222         /* a request always has a transport context, nearly always has
223            a session context and usually has a tree context */
224         struct smbcli_transport *transport;
225         struct smbcli_session *session;
226         struct smbcli_tree *tree;
227
228         /* the flags2 from the SMB request, in raw form (host byte
229            order). Used to parse strings */
230         uint16_t flags2;
231
232         /* the NT status for this request. Set by packet receive code
233            or code detecting error. */
234         NTSTATUS status;
235         
236         /* the sequence number of this packet - used for signing */
237         uint_t seq_num;
238
239         /* list of ntcancel request for this requests */
240         struct smbcli_request *ntcancel;
241
242         /* set if this is a one-way request, meaning we are not
243            expecting a reply from the server. */
244         uint_t one_way_request:1;
245
246         /* set this when the request should only increment the signing
247            counter by one */
248         uint_t sign_single_increment:1;
249
250         /* the mid of this packet - used to match replies */
251         uint16_t mid;
252
253         struct smb_request_buffer in;
254         struct smb_request_buffer out;
255
256         /* information on what to do with a reply when it is received
257            asyncronously. If this is not setup when a reply is received then
258            the reply is discarded
259
260            The private pointer is private to the caller of the client
261            library (the application), not private to the library
262         */
263         struct {
264                 void (*fn)(struct smbcli_request *);
265                 void *private;
266         } async;
267 };
268
269 /* useful way of catching wct errors with file and line number */
270 #define SMBCLI_CHECK_MIN_WCT(req, wcount) if ((req)->in.wct < (wcount)) { \
271       DEBUG(1,("Unexpected WCT %d at %s(%d) - expected min %d\n", (req)->in.wct, __FILE__, __LINE__, wcount)); \
272       req->status = NT_STATUS_INVALID_PARAMETER; \
273       goto failed; \
274 }
275
276 #define SMBCLI_CHECK_WCT(req, wcount) if ((req)->in.wct != (wcount)) { \
277       DEBUG(1,("Unexpected WCT %d at %s(%d) - expected %d\n", (req)->in.wct, __FILE__, __LINE__, wcount)); \
278       req->status = NT_STATUS_INVALID_PARAMETER; \
279       goto failed; \
280 }
281
282 #include "libcli/raw/interfaces.h" 
283 #include "libcli/raw/raw_proto.h"
284
285 #endif /* __LIBCLI_RAW__H__ */