Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-test
[kai/samba.git] / source4 / smb_server / smb_server.h
1 /* 
2    Unix SMB/CIFS implementation.
3    
4    Copyright (C) Andrew Tridgell              2003
5    Copyright (C) James J Myers                2003 <myersjj@samba.org>
6    Copyright (C) Stefan Metzmacher            2004-2005
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 #include "libcli/raw/request.h"
23 #include "libcli/raw/interfaces.h"
24 #include "lib/events/events.h"
25 #include "lib/socket/socket.h"
26 #include "lib/util/dlinklist.h"
27
28 /*
29   this header declares the core context structures associated with smb
30   sockets, tree connects, requests etc
31
32   the idea is that we will eventually get rid of all our global
33   variables and instead store our state from structures hanging off
34   these basic elements
35 */
36
37 struct smbsrv_tcons_context {
38         /* an id tree used to allocate tids */
39         struct idr_context *idtree_tid;
40
41         /* this is the limit of vuid values for this connection */
42         uint32_t idtree_limit;
43
44         /* list of open tree connects */
45         struct smbsrv_tcon *list;
46 };
47
48 struct smbsrv_sessions_context {
49         /* an id tree used to allocate vuids */
50         /* this holds info on session vuids that are already
51          * validated for this VC */
52         struct idr_context *idtree_vuid;
53
54         /* this is the limit of vuid values for this connection */
55         uint64_t idtree_limit;
56
57         /* also kept as a link list so it can be enumerated by
58            the management code */
59         struct smbsrv_session *list;
60 };
61
62 struct smbsrv_handles_context {
63         /* an id tree used to allocate file handles */
64         struct idr_context *idtree_hid;
65
66         /* this is the limit of handle values for this context */
67         uint64_t idtree_limit;
68
69         /* also kept as a link list so it can be enumerated by
70            the management code */
71         struct smbsrv_handle *list;
72 };
73
74 /* the current user context for a request */
75 struct smbsrv_session {
76         struct smbsrv_session *prev, *next;
77
78         struct smbsrv_connection *smb_conn;
79
80         /*
81          * in SMB2 tcons belong to just one session
82          * and not to the whole connection
83          */
84         struct smbsrv_tcons_context smb2_tcons;
85
86         /*
87          * the open file handles for this session,
88          * used for SMBexit, SMBulogoff and SMB2 SessionLogoff
89          */
90         struct smbsrv_handle_session_item *handles;
91
92         /* 
93          * an index passed over the wire:
94          * - 16 bit for smb
95          * - 64 bit for smb2
96          */
97         uint64_t vuid;
98
99         struct gensec_security *gensec_ctx;
100
101         struct auth_session_info *session_info;
102
103         /* some statistics for the management tools */
104         struct {
105                 /* the time when the session setup started */
106                 struct timeval connect_time;
107                 /* the time when the session setup was finished */
108                 struct timeval auth_time;
109                 /* the time when the last request comes in */
110                 struct timeval last_request_time;
111         } statistics;
112 };
113
114 /* we need a forward declaration of the ntvfs_ops strucutre to prevent
115    include recursion */
116 struct ntvfs_context;
117
118 struct smbsrv_tcon {
119         struct smbsrv_tcon *next, *prev;
120
121         /* the server context that this was created on */
122         struct smbsrv_connection *smb_conn;
123
124         /* the open file handles on this tcon */
125         struct smbsrv_handles_context handles;
126
127         /* 
128          * an index passed over the wire:
129          * - 16 bit for smb
130          * - 32 bit for smb2
131          */
132         uint32_t tid; /* an index passed over the wire (the TID) */
133
134         /* the share name */
135         const char *share_name;
136
137         /* the NTVFS context - see source/ntvfs/ for details */
138         struct ntvfs_context *ntvfs;
139
140         /* some stuff to support share level security */
141         struct {
142                 /* in share level security we need to fake up a session */
143                 struct smbsrv_session *session;
144         } sec_share;
145
146         /* some stuff to support share level security */
147         struct {
148                 /* in SMB2 a tcon always belongs to one session */
149                 struct smbsrv_session *session;
150         } smb2;
151
152         /* some statistics for the management tools */
153         struct {
154                 /* the time when the tree connect started */
155                 struct timeval connect_time;
156                 /* the time when the last request comes in */
157                 struct timeval last_request_time;
158         } statistics;
159 };
160
161 struct smbsrv_handle {
162         struct smbsrv_handle *next, *prev;
163
164         /* the tcon the handle belongs to */
165         struct smbsrv_tcon *tcon;
166
167         /* the session the handle was opened on */
168         struct smbsrv_session *session;
169
170         /* the smbpid used on the open, used for SMBexit */
171         uint16_t smbpid;
172
173         /*
174          * this is for adding the handle into a linked list
175          * on the smbsrv_session, we can't use *next,*prev
176          * for this because they're used for the linked list on the 
177          * smbsrv_tcon
178          */
179         struct smbsrv_handle_session_item {
180                 struct smbsrv_handle_session_item *prev, *next;
181                 struct smbsrv_handle *handle;
182         } session_item;
183
184         /*
185          * the value passed over the wire
186          * - 16 bit for smb
187          * - 32 bit for smb2
188          *   Note: for SMB2 handles are 128 bit
189          *         we'll fill them with
190          *         - 32 bit HID
191          *         - 32 bit TID
192          *         - 64 bit VUID
193          */
194         uint32_t hid;
195
196         /*
197          * the ntvfs handle passed to the ntvfs backend
198          */
199         struct ntvfs_handle *ntvfs;
200
201         /* some statistics for the management tools */
202         struct {
203                 /* the time when the tree connect started */
204                 struct timeval open_time;
205                 /* the time when the last request comes in */
206                 struct timeval last_use_time;
207         } statistics;
208 };
209
210 /* a set of flags to control handling of request structures */
211 #define SMBSRV_REQ_CONTROL_LARGE     (1<<1) /* allow replies larger than max_xmit */
212
213 #define SMBSRV_REQ_DEFAULT_STR_FLAGS(req) (((req)->flags2 & FLAGS2_UNICODE_STRINGS) ? STR_UNICODE : STR_ASCII)
214
215 /* the context for a single SMB request. This is passed to any request-context 
216    functions */
217 struct smbsrv_request {
218         /* the smbsrv_connection needs a list of requests queued for send */
219         struct smbsrv_request *next, *prev;
220
221         /* the server_context contains all context specific to this SMB socket */
222         struct smbsrv_connection *smb_conn;
223
224         /* conn is only set for operations that have a valid TID */
225         struct smbsrv_tcon *tcon;
226
227         /* the session context is derived from the vuid */
228         struct smbsrv_session *session;
229
230         /* a set of flags to control usage of the request. See SMBSRV_REQ_CONTROL_* */
231         uint32_t control_flags;
232
233         /* the system time when the request arrived */
234         struct timeval request_time;
235
236         /* a pointer to the per request union smb_* io structure */
237         void *io_ptr;
238
239         /* the ntvfs_request */
240         struct ntvfs_request *ntvfs;
241
242         /* Now the SMB specific stuff */
243
244         /* the flags from the SMB request, in raw form (host byte order) */
245         uint16_t flags2;
246
247         /* this can contain a fnum from an earlier part of a chained
248          * message (such as an SMBOpenX), or -1 */
249         int chained_fnum;
250
251         /* how far through the chain of SMB commands have we gone? */
252         unsigned chain_count;
253
254         /* the sequence number for signing */
255         uint64_t seq_num;
256
257         struct request_buffer in;
258         struct request_buffer out;
259 };
260
261 enum security_types {SEC_SHARE,SEC_USER};
262
263 /* smb server context structure. This should contain all the state
264  * information associated with a SMB server connection 
265  */
266 struct smbsrv_connection {
267         /* context that has been negotiated between the client and server */
268         struct {
269                 /* have we already done the NBT session establishment? */
270                 bool done_nbt_session;
271         
272                 /* only one negprot per connection is allowed */
273                 bool done_negprot;
274         
275                 /* multiple session setups are allowed, but some parameters are
276                    ignored in any but the first */
277                 bool done_sesssetup;
278                 
279                 /* 
280                  * Size of data we can send to client. Set
281                  *  by the client for all protocols above CORE.
282                  *  Set by us for CORE protocol.
283                  */
284                 unsigned max_send; /* init to BUFFER_SIZE */
285         
286                 /*
287                  * Size of the data we can receive. Set by us.
288                  * Can be modified by the max xmit parameter.
289                  */
290                 unsigned max_recv; /* init to BUFFER_SIZE */
291         
292                 /* the negotiatiated protocol */
293                 enum protocol_types protocol;
294
295                 /* authentication context for multi-part negprot */
296                 struct auth_context *auth_context;
297         
298                 /* reference to the kerberos keytab, or machine trust account */
299                 struct cli_credentials *server_credentials;
300         
301                 /* did we tell the client we support encrypted passwords? */
302                 bool encrypted_passwords;
303         
304                 /* Did we choose SPNEGO, or perhaps raw NTLMSSP, or even no extended security at all? */
305                 const char *oid;
306         
307                 /* client capabilities */
308                 uint32_t client_caps;
309         
310                 /* the timezone we sent to the client */
311                 int zone_offset;
312
313                 /* NBT names only set when done_nbt_session is true */
314                 struct nbt_name *called_name;
315                 struct nbt_name *calling_name;
316         } negotiate;
317
318         /* the context associated with open tree connects on a smb socket, not for SMB2 */
319         struct smbsrv_tcons_context smb_tcons;
320
321         /* context associated with currently valid session setups */
322         struct smbsrv_sessions_context sessions;
323
324         /*
325          * the server_context holds a linked list of pending requests,
326          * this is used for finding the request structures on ntcancel requests
327          * For SMB only
328          */
329         struct smbsrv_request *requests;
330
331         /*
332          * the server_context holds a linked list of pending requests,
333          * and an idtree for finding the request structures on SMB2 Cancel
334          * For SMB2 only
335          */
336         struct {
337                 /* an id tree used to allocate ids */
338                 struct idr_context *idtree_req;
339
340                 /* this is the limit of pending requests values for this connection */
341                 uint32_t idtree_limit;
342
343                 /* list of open tree connects */
344                 struct smb2srv_request *list;
345         } requests2;
346
347         struct smb_signing_context signing;
348
349         struct stream_connection *connection;
350
351         /* this holds a partially received request */
352         struct packet_context *packet;
353
354         /* a list of partially received transaction requests */
355         struct smbsrv_trans_partial {
356                 struct smbsrv_trans_partial *next, *prev;
357                 struct smbsrv_request *req;
358                 struct smb_trans2 *trans;
359                 uint8_t command;
360         } *trans_partial;
361
362         /* configuration parameters */
363         struct {
364                 enum security_types security;
365                 bool nt_status_support;
366         } config;
367
368         /* some statictics for the management tools */
369         struct {
370                 /* the time when the client connects */
371                 struct timeval connect_time;
372                 /* the time when the last request comes in */
373                 struct timeval last_request_time;
374         } statistics;
375
376         struct share_context *share_context;
377
378         struct loadparm_context *lp_ctx;
379 };
380
381 struct model_ops;
382 struct loadparm_context;
383
384 NTSTATUS smbsrv_add_socket(struct event_context *event_context,
385                            struct loadparm_context *lp_ctx,
386                                const struct model_ops *model_ops,
387                                const char *address);
388
389 struct loadparm_context;
390
391 #include "smb_server/smb_server_proto.h"
392 #include "smb_server/smb/smb_proto.h"
393
394 /* useful way of catching wct errors with file and line number */
395 #define SMBSRV_CHECK_WCT(req, wcount) do { \
396         if ((req)->in.wct != (wcount)) { \
397                 DEBUG(1,("Unexpected WCT %u at %s(%d) - expected %d\n", \
398                          (req)->in.wct, __FILE__, __LINE__, wcount)); \
399                 smbsrv_send_error(req, NT_STATUS_DOS(ERRSRV, ERRerror)); \
400                 return; \
401         } \
402 } while (0)
403         
404 /* useful wrapper for talloc with NO_MEMORY reply */
405 #define SMBSRV_TALLOC_IO_PTR(ptr, type) do { \
406         ptr = talloc(req, type); \
407         if (!ptr) { \
408                 smbsrv_send_error(req, NT_STATUS_NO_MEMORY); \
409                 return; \
410         } \
411         req->io_ptr = ptr; \
412 } while (0)
413
414 #define SMBSRV_SETUP_NTVFS_REQUEST(send_fn, state) do { \
415         req->ntvfs = ntvfs_request_create(req->tcon->ntvfs, req, \
416                                           req->session->session_info,\
417                                           SVAL(req->in.hdr,HDR_PID), \
418                                           req->request_time, \
419                                           req, send_fn, state); \
420         if (!req->ntvfs) { \
421                 smbsrv_send_error(req, NT_STATUS_NO_MEMORY); \
422                 return; \
423         } \
424         (void)talloc_steal(req->tcon->ntvfs, req); \
425         req->ntvfs->frontend_data.private_data = req; \
426 } while (0)
427
428 #define SMBSRV_CHECK_FILE_HANDLE(handle) do { \
429         if (!handle) { \
430                 smbsrv_send_error(req, NT_STATUS_INVALID_HANDLE); \
431                 return; \
432         } \
433 } while (0)
434
435 #define SMBSRV_CHECK_FILE_HANDLE_ERROR(handle, _status) do { \
436         if (!handle) { \
437                 smbsrv_send_error(req, _status); \
438                 return; \
439         } \
440 } while (0)
441
442 #define SMBSRV_CHECK_FILE_HANDLE_NTSTATUS(handle) do { \
443         if (!handle) { \
444                 return NT_STATUS_INVALID_HANDLE; \
445         } \
446 } while (0)
447
448 #define SMBSRV_CHECK(cmd) do {\
449         NTSTATUS _status; \
450         _status = cmd; \
451         if (!NT_STATUS_IS_OK(_status)) { \
452                 smbsrv_send_error(req,  _status); \
453                 return; \
454         } \
455 } while (0)
456
457 /* 
458    check if the backend wants to handle the request asynchronously.
459    if it wants it handled synchronously then call the send function
460    immediately
461 */
462 #define SMBSRV_CALL_NTVFS_BACKEND(cmd) do { \
463         req->ntvfs->async_states->status = cmd; \
464         if (req->ntvfs->async_states->state & NTVFS_ASYNC_STATE_ASYNC) { \
465                 DLIST_ADD_END(req->smb_conn->requests, req, struct smbsrv_request *); \
466         } else { \
467                 req->ntvfs->async_states->send_fn(req->ntvfs); \
468         } \
469 } while (0)
470
471 /* check req->ntvfs->async_states->status and if not OK then send an error reply */
472 #define SMBSRV_CHECK_ASYNC_STATUS_ERR_SIMPLE do { \
473         req = talloc_get_type(ntvfs->async_states->private_data, struct smbsrv_request); \
474         if (NT_STATUS_IS_ERR(ntvfs->async_states->status)) { \
475                 smbsrv_send_error(req, ntvfs->async_states->status); \
476                 return; \
477         } \
478 } while (0)
479 #define SMBSRV_CHECK_ASYNC_STATUS_ERR(ptr, type) do { \
480         SMBSRV_CHECK_ASYNC_STATUS_ERR_SIMPLE; \
481         ptr = talloc_get_type(req->io_ptr, type); \
482 } while (0)
483 #define SMBSRV_CHECK_ASYNC_STATUS_SIMPLE do { \
484         req = talloc_get_type(ntvfs->async_states->private_data, struct smbsrv_request); \
485         if (!NT_STATUS_IS_OK(ntvfs->async_states->status)) { \
486                 smbsrv_send_error(req, ntvfs->async_states->status); \
487                 return; \
488         } \
489 } while (0)
490 #define SMBSRV_CHECK_ASYNC_STATUS(ptr, type) do { \
491         SMBSRV_CHECK_ASYNC_STATUS_SIMPLE; \
492         ptr = talloc_get_type(req->io_ptr, type); \
493 } while (0)
494
495 /* zero out some reserved fields in a reply */
496 #define SMBSRV_VWV_RESERVED(start, count) memset(req->out.vwv + VWV(start), 0, (count)*2)