Fix bug #7410 - samba sends "raw" inode number as uniqueid with unix extensions.
[obnox/samba/samba-obnox.git] / source3 / smbd / smb2_create.c
1 /*
2    Unix SMB/CIFS implementation.
3    Core SMB2 server
4
5    Copyright (C) Stefan Metzmacher 2009
6    Copyright (C) Jeremy Allison 2010
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 "includes.h"
23 #include "smbd/globals.h"
24 #include "../libcli/smb/smb_common.h"
25
26 int map_smb2_oplock_levels_to_samba(uint8_t in_oplock_level)
27 {
28         switch(in_oplock_level) {
29         case SMB2_OPLOCK_LEVEL_NONE:
30                 return NO_OPLOCK;
31         case SMB2_OPLOCK_LEVEL_II:
32                 return LEVEL_II_OPLOCK;
33         case SMB2_OPLOCK_LEVEL_EXCLUSIVE:
34                 return EXCLUSIVE_OPLOCK;
35         case SMB2_OPLOCK_LEVEL_BATCH:
36                 return BATCH_OPLOCK;
37         case SMB2_OPLOCK_LEVEL_LEASE:
38                 DEBUG(2,("map_smb2_oplock_levels_to_samba: "
39                         "LEASE_OPLOCK_REQUESTED\n"));
40                 return NO_OPLOCK;
41         default:
42                 DEBUG(2,("map_smb2_oplock_levels_to_samba: "
43                         "unknown level %u\n",
44                         (unsigned int)in_oplock_level));
45                 return NO_OPLOCK;
46         }
47 }
48
49 static uint8_t map_samba_oplock_levels_to_smb2(int oplock_type)
50 {
51         if (BATCH_OPLOCK_TYPE(oplock_type)) {
52                 return SMB2_OPLOCK_LEVEL_BATCH;
53         } else if (EXCLUSIVE_OPLOCK_TYPE(oplock_type)) {
54                 return SMB2_OPLOCK_LEVEL_EXCLUSIVE;
55         } else if (oplock_type == LEVEL_II_OPLOCK) {
56                 /*
57                  * Don't use LEVEL_II_OPLOCK_TYPE here as
58                  * this also includes FAKE_LEVEL_II_OPLOCKs
59                  * which are internal only.
60                  */
61                 return SMB2_OPLOCK_LEVEL_II;
62         } else {
63                 return SMB2_OPLOCK_LEVEL_NONE;
64         }
65 }
66
67 static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx,
68                         struct tevent_context *ev,
69                         struct smbd_smb2_request *smb2req,
70                         uint8_t in_oplock_level,
71                         uint32_t in_impersonation_level,
72                         uint32_t in_desired_access,
73                         uint32_t in_file_attributes,
74                         uint32_t in_share_access,
75                         uint32_t in_create_disposition,
76                         uint32_t in_create_options,
77                         const char *in_name,
78                         struct smb2_create_blobs in_context_blobs);
79 static NTSTATUS smbd_smb2_create_recv(struct tevent_req *req,
80                         TALLOC_CTX *mem_ctx,
81                         uint8_t *out_oplock_level,
82                         uint32_t *out_create_action,
83                         NTTIME *out_creation_time,
84                         NTTIME *out_last_access_time,
85                         NTTIME *out_last_write_time,
86                         NTTIME *out_change_time,
87                         uint64_t *out_allocation_size,
88                         uint64_t *out_end_of_file,
89                         uint32_t *out_file_attributes,
90                         uint64_t *out_file_id_persistent,
91                         uint64_t *out_file_id_volatile,
92                         struct smb2_create_blobs *out_context_blobs);
93
94 static void smbd_smb2_request_create_done(struct tevent_req *tsubreq);
95 NTSTATUS smbd_smb2_request_process_create(struct smbd_smb2_request *smb2req)
96 {
97         const uint8_t *inbody;
98         int i = smb2req->current_idx;
99         size_t expected_body_size = 0x39;
100         size_t body_size;
101         uint8_t in_oplock_level;
102         uint32_t in_impersonation_level;
103         uint32_t in_desired_access;
104         uint32_t in_file_attributes;
105         uint32_t in_share_access;
106         uint32_t in_create_disposition;
107         uint32_t in_create_options;
108         uint16_t in_name_offset;
109         uint16_t in_name_length;
110         DATA_BLOB in_name_buffer;
111         char *in_name_string;
112         size_t in_name_string_size;
113         uint32_t name_offset = 0;
114         uint32_t name_available_length = 0;
115         uint32_t in_context_offset;
116         uint32_t in_context_length;
117         DATA_BLOB in_context_buffer;
118         struct smb2_create_blobs in_context_blobs;
119         uint32_t context_offset = 0;
120         uint32_t context_available_length = 0;
121         uint32_t dyn_offset;
122         NTSTATUS status;
123         bool ok;
124         struct tevent_req *tsubreq;
125
126         if (smb2req->in.vector[i+1].iov_len != (expected_body_size & 0xFFFFFFFE)) {
127                 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
128         }
129
130         inbody = (const uint8_t *)smb2req->in.vector[i+1].iov_base;
131
132         body_size = SVAL(inbody, 0x00);
133         if (body_size != expected_body_size) {
134                 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
135         }
136
137         in_oplock_level         = CVAL(inbody, 0x03);
138         in_impersonation_level  = IVAL(inbody, 0x04);
139         in_desired_access       = IVAL(inbody, 0x18);
140         in_file_attributes      = IVAL(inbody, 0x1C);
141         in_share_access         = IVAL(inbody, 0x20);
142         in_create_disposition   = IVAL(inbody, 0x24);
143         in_create_options       = IVAL(inbody, 0x28);
144         in_name_offset          = SVAL(inbody, 0x2C);
145         in_name_length          = SVAL(inbody, 0x2E);
146         in_context_offset       = IVAL(inbody, 0x30);
147         in_context_length       = IVAL(inbody, 0x34);
148
149         /*
150          * First check if the dynamic name and context buffers
151          * are correctly specified.
152          *
153          * Note: That we don't check if the name and context buffers
154          *       overlap
155          */
156
157         dyn_offset = SMB2_HDR_BODY + (body_size & 0xFFFFFFFE);
158
159         if (in_name_offset == 0 && in_name_length == 0) {
160                 /* This is ok */
161                 name_offset = 0;
162         } else if (in_name_offset < dyn_offset) {
163                 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
164         } else {
165                 name_offset = in_name_offset - dyn_offset;
166         }
167
168         if (name_offset > smb2req->in.vector[i+2].iov_len) {
169                 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
170         }
171
172         name_available_length = smb2req->in.vector[i+2].iov_len - name_offset;
173
174         if (in_name_length > name_available_length) {
175                 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
176         }
177
178         in_name_buffer.data = (uint8_t *)smb2req->in.vector[i+2].iov_base +
179                               name_offset;
180         in_name_buffer.length = in_name_length;
181
182         if (in_context_offset == 0 && in_context_length == 0) {
183                 /* This is ok */
184                 context_offset = 0;
185         } else if (in_context_offset < dyn_offset) {
186                 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
187         } else {
188                 context_offset = in_context_offset - dyn_offset;
189         }
190
191         if (context_offset > smb2req->in.vector[i+2].iov_len) {
192                 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
193         }
194
195         context_available_length = smb2req->in.vector[i+2].iov_len - context_offset;
196
197         if (in_context_length > context_available_length) {
198                 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
199         }
200
201         in_context_buffer.data = (uint8_t *)smb2req->in.vector[i+2].iov_base +
202                                   context_offset;
203         in_context_buffer.length = in_context_length;
204
205         /*
206          * Now interpret the name and context buffers
207          */
208
209         ok = convert_string_talloc(smb2req, CH_UTF16, CH_UNIX,
210                                    in_name_buffer.data,
211                                    in_name_buffer.length,
212                                    &in_name_string,
213                                    &in_name_string_size, false);
214         if (!ok) {
215                 return smbd_smb2_request_error(smb2req, NT_STATUS_ILLEGAL_CHARACTER);
216         }
217
218         ZERO_STRUCT(in_context_blobs);
219         status = smb2_create_blob_parse(smb2req, in_context_buffer, &in_context_blobs);
220         if (!NT_STATUS_IS_OK(status)) {
221                 return smbd_smb2_request_error(smb2req, status);
222         }
223
224         tsubreq = smbd_smb2_create_send(smb2req,
225                                        smb2req->sconn->smb2.event_ctx,
226                                        smb2req,
227                                        in_oplock_level,
228                                        in_impersonation_level,
229                                        in_desired_access,
230                                        in_file_attributes,
231                                        in_share_access,
232                                        in_create_disposition,
233                                        in_create_options,
234                                        in_name_string,
235                                        in_context_blobs);
236         if (tsubreq == NULL) {
237                 smb2req->subreq = NULL;
238                 return smbd_smb2_request_error(smb2req, NT_STATUS_NO_MEMORY);
239         }
240         tevent_req_set_callback(tsubreq, smbd_smb2_request_create_done, smb2req);
241
242         return smbd_smb2_request_pending_queue(smb2req, tsubreq);
243 }
244
245 static uint64_t get_mid_from_smb2req(struct smbd_smb2_request *smb2req)
246 {
247         uint8_t *reqhdr = (uint8_t *)smb2req->out.vector[smb2req->current_idx].iov_base;
248         return BVAL(reqhdr, SMB2_HDR_MESSAGE_ID);
249 }
250
251 static void smbd_smb2_request_create_done(struct tevent_req *tsubreq)
252 {
253         struct smbd_smb2_request *smb2req = tevent_req_callback_data(tsubreq,
254                                         struct smbd_smb2_request);
255         int i = smb2req->current_idx;
256         uint8_t *outhdr;
257         DATA_BLOB outbody;
258         DATA_BLOB outdyn;
259         uint8_t out_oplock_level = 0;
260         uint32_t out_create_action = 0;
261         NTTIME out_creation_time = 0;
262         NTTIME out_last_access_time = 0;
263         NTTIME out_last_write_time = 0;
264         NTTIME out_change_time = 0;
265         uint64_t out_allocation_size = 0;
266         uint64_t out_end_of_file = 0;
267         uint32_t out_file_attributes = 0;
268         uint64_t out_file_id_persistent = 0;
269         uint64_t out_file_id_volatile = 0;
270         struct smb2_create_blobs out_context_blobs;
271         DATA_BLOB out_context_buffer;
272         uint16_t out_context_buffer_offset = 0;
273         NTSTATUS status;
274         NTSTATUS error; /* transport error */
275
276         if (smb2req->cancelled) {
277                 uint64_t mid = get_mid_from_smb2req(smb2req);
278                 DEBUG(10,("smbd_smb2_request_create_done: cancelled mid %llu\n",
279                         (unsigned long long)mid ));
280                 error = smbd_smb2_request_error(smb2req, NT_STATUS_CANCELLED);
281                 if (!NT_STATUS_IS_OK(error)) {
282                         smbd_server_connection_terminate(smb2req->sconn,
283                                 nt_errstr(error));
284                         return;
285                 }
286                 return;
287         }
288
289         status = smbd_smb2_create_recv(tsubreq,
290                                        smb2req,
291                                        &out_oplock_level,
292                                        &out_create_action,
293                                        &out_creation_time,
294                                        &out_last_access_time,
295                                        &out_last_write_time,
296                                        &out_change_time,
297                                        &out_allocation_size,
298                                        &out_end_of_file,
299                                        &out_file_attributes,
300                                        &out_file_id_persistent,
301                                        &out_file_id_volatile,
302                                        &out_context_blobs);
303         if (!NT_STATUS_IS_OK(status)) {
304                 error = smbd_smb2_request_error(smb2req, status);
305                 if (!NT_STATUS_IS_OK(error)) {
306                         smbd_server_connection_terminate(smb2req->sconn,
307                                                          nt_errstr(error));
308                         return;
309                 }
310                 return;
311         }
312
313         status = smb2_create_blob_push(smb2req, &out_context_buffer, out_context_blobs);
314         if (!NT_STATUS_IS_OK(status)) {
315                 error = smbd_smb2_request_error(smb2req, status);
316                 if (!NT_STATUS_IS_OK(error)) {
317                         smbd_server_connection_terminate(smb2req->sconn,
318                                                          nt_errstr(error));
319                         return;
320                 }
321                 return;
322         }
323
324         if (out_context_buffer.length > 0) {
325                 out_context_buffer_offset = SMB2_HDR_BODY + 0x58;
326         }
327
328         outhdr = (uint8_t *)smb2req->out.vector[i].iov_base;
329
330         outbody = data_blob_talloc(smb2req->out.vector, NULL, 0x58);
331         if (outbody.data == NULL) {
332                 error = smbd_smb2_request_error(smb2req, NT_STATUS_NO_MEMORY);
333                 if (!NT_STATUS_IS_OK(error)) {
334                         smbd_server_connection_terminate(smb2req->sconn,
335                                                          nt_errstr(error));
336                         return;
337                 }
338                 return;
339         }
340
341         SSVAL(outbody.data, 0x00, 0x58 + 1);    /* struct size */
342         SCVAL(outbody.data, 0x02,
343               out_oplock_level);                /* oplock level */
344         SCVAL(outbody.data, 0x03, 0);           /* reserved */
345         SIVAL(outbody.data, 0x04,
346               out_create_action);               /* create action */
347         SBVAL(outbody.data, 0x08,
348               out_creation_time);               /* creation time */
349         SBVAL(outbody.data, 0x10,
350               out_last_access_time);            /* last access time */
351         SBVAL(outbody.data, 0x18,
352               out_last_write_time);             /* last write time */
353         SBVAL(outbody.data, 0x20,
354               out_change_time);                 /* change time */
355         SBVAL(outbody.data, 0x28,
356               out_allocation_size);             /* allocation size */
357         SBVAL(outbody.data, 0x30,
358               out_end_of_file);                 /* end of file */
359         SIVAL(outbody.data, 0x38,
360               out_file_attributes);             /* file attributes */
361         SIVAL(outbody.data, 0x3C, 0);           /* reserved */
362         SBVAL(outbody.data, 0x40,
363               out_file_id_persistent);          /* file id (persistent) */
364         SBVAL(outbody.data, 0x48,
365               out_file_id_volatile);            /* file id (volatile) */
366         SIVAL(outbody.data, 0x50,
367               out_context_buffer_offset);       /* create contexts offset */
368         SIVAL(outbody.data, 0x54,
369               out_context_buffer.length);       /* create contexts length */
370
371         outdyn = out_context_buffer;
372
373         error = smbd_smb2_request_done(smb2req, outbody, &outdyn);
374         if (!NT_STATUS_IS_OK(error)) {
375                 smbd_server_connection_terminate(smb2req->sconn,
376                                                  nt_errstr(error));
377                 return;
378         }
379 }
380
381 struct smbd_smb2_create_state {
382         struct smbd_smb2_request *smb2req;
383         struct smb_request *smb1req;
384         struct timed_event *te;
385         struct tevent_immediate *im;
386         struct timeval request_time;
387         struct file_id id;
388         DATA_BLOB private_data;
389         uint8_t out_oplock_level;
390         uint32_t out_create_action;
391         NTTIME out_creation_time;
392         NTTIME out_last_access_time;
393         NTTIME out_last_write_time;
394         NTTIME out_change_time;
395         uint64_t out_allocation_size;
396         uint64_t out_end_of_file;
397         uint32_t out_file_attributes;
398         uint64_t out_file_id_persistent;
399         uint64_t out_file_id_volatile;
400         struct smb2_create_blobs out_context_blobs;
401 };
402
403 static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx,
404                         struct tevent_context *ev,
405                         struct smbd_smb2_request *smb2req,
406                         uint8_t in_oplock_level,
407                         uint32_t in_impersonation_level,
408                         uint32_t in_desired_access,
409                         uint32_t in_file_attributes,
410                         uint32_t in_share_access,
411                         uint32_t in_create_disposition,
412                         uint32_t in_create_options,
413                         const char *in_name,
414                         struct smb2_create_blobs in_context_blobs)
415 {
416         struct tevent_req *req = NULL;
417         struct smbd_smb2_create_state *state = NULL;
418         NTSTATUS status;
419         struct smb_request *smb1req = NULL;
420         files_struct *result = NULL;
421         int info;
422         struct timespec write_time_ts;
423         struct smb2_create_blobs out_context_blobs;
424
425         ZERO_STRUCT(out_context_blobs);
426
427         if (!smb2req->async) {
428                 /* New create call. */
429                 req = tevent_req_create(mem_ctx, &state,
430                                 struct smbd_smb2_create_state);
431                 if (req == NULL) {
432                         return NULL;
433                 }
434                 state->smb2req = smb2req;
435                 smb2req->subreq = req; /* So we can find this when going async. */
436
437                 smb1req = smbd_smb2_fake_smb_request(smb2req);
438                 if (tevent_req_nomem(smb1req, req)) {
439                         return tevent_req_post(req, ev);
440                 }
441                 state->smb1req = smb1req;
442                 DEBUG(10,("smbd_smb2_create: name[%s]\n",
443                         in_name));
444         } else {
445                 /* Re-entrant create call. */
446                 req = smb2req->subreq;
447                 state = tevent_req_data(req,
448                                 struct smbd_smb2_create_state);
449                 smb1req = state->smb1req;
450                 DEBUG(10,("smbd_smb2_create_send: reentrant for file %s\n",
451                         in_name ));
452         }
453
454         if (IS_IPC(smb1req->conn)) {
455                 const char *pipe_name = in_name;
456
457                 if (!lp_nt_pipe_support()) {
458                         tevent_req_nterror(req, NT_STATUS_ACCESS_DENIED);
459                         return tevent_req_post(req, ev);
460                 }
461
462                 /* Strip \\ off the name. */
463                 if (pipe_name[0] == '\\') {
464                         pipe_name++;
465                 }
466
467                 status = open_np_file(smb1req, pipe_name, &result);
468                 if (!NT_STATUS_IS_OK(status)) {
469                         tevent_req_nterror(req, status);
470                         return tevent_req_post(req, ev);
471                 }
472                 info = FILE_WAS_OPENED;
473         } else if (CAN_PRINT(smb1req->conn)) {
474                 status = file_new(smb1req, smb1req->conn, &result);
475                 if(!NT_STATUS_IS_OK(status)) {
476                         tevent_req_nterror(req, status);
477                         return tevent_req_post(req, ev);
478                 }
479
480                 status = print_fsp_open(smb1req,
481                                         smb1req->conn,
482                                         in_name,
483                                         smb1req->vuid,
484                                         result);
485                 if (!NT_STATUS_IS_OK(status)) {
486                         file_free(smb1req, result);
487                         tevent_req_nterror(req, status);
488                         return tevent_req_post(req, ev);
489                 }
490                 info = FILE_WAS_CREATED;
491         } else {
492                 char *fname;
493                 struct smb_filename *smb_fname = NULL;
494                 struct smb2_create_blob *exta = NULL;
495                 struct ea_list *ea_list = NULL;
496                 struct smb2_create_blob *mxac = NULL;
497                 NTTIME max_access_time = 0;
498                 struct smb2_create_blob *secd = NULL;
499                 struct security_descriptor *sec_desc = NULL;
500                 struct smb2_create_blob *dhnq = NULL;
501                 struct smb2_create_blob *dhnc = NULL;
502                 struct smb2_create_blob *alsi = NULL;
503                 uint64_t allocation_size = 0;
504                 struct smb2_create_blob *twrp = NULL;
505                 struct smb2_create_blob *qfid = NULL;
506
507                 exta = smb2_create_blob_find(&in_context_blobs,
508                                              SMB2_CREATE_TAG_EXTA);
509                 mxac = smb2_create_blob_find(&in_context_blobs,
510                                              SMB2_CREATE_TAG_MXAC);
511                 secd = smb2_create_blob_find(&in_context_blobs,
512                                              SMB2_CREATE_TAG_SECD);
513                 dhnq = smb2_create_blob_find(&in_context_blobs,
514                                              SMB2_CREATE_TAG_DHNQ);
515                 dhnc = smb2_create_blob_find(&in_context_blobs,
516                                              SMB2_CREATE_TAG_DHNC);
517                 alsi = smb2_create_blob_find(&in_context_blobs,
518                                              SMB2_CREATE_TAG_ALSI);
519                 twrp = smb2_create_blob_find(&in_context_blobs,
520                                              SMB2_CREATE_TAG_TWRP);
521                 qfid = smb2_create_blob_find(&in_context_blobs,
522                                              SMB2_CREATE_TAG_QFID);
523
524                 fname = talloc_strdup(state, in_name);
525                 if (tevent_req_nomem(fname, req)) {
526                         return tevent_req_post(req, ev);
527                 }
528
529                 if (exta) {
530                         if (dhnc) {
531                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
532                                 return tevent_req_post(req, ev);
533                         }
534
535                         ea_list = read_nttrans_ea_list(mem_ctx,
536                                 (const char *)exta->data.data, exta->data.length);
537                         if (!ea_list) {
538                                 DEBUG(10,("smbd_smb2_create_send: read_ea_name_list failed.\n"));
539                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
540                                 return tevent_req_post(req, ev);
541                         }
542                 }
543
544                 if (mxac) {
545                         if (dhnc) {
546                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
547                                 return tevent_req_post(req, ev);
548                         }
549
550                         if (mxac->data.length == 0) {
551                                 max_access_time = 0;
552                         } else if (mxac->data.length == 8) {
553                                 max_access_time = BVAL(mxac->data.data, 0);
554                         } else {
555                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
556                                 return tevent_req_post(req, ev);
557                         }
558                 }
559
560                 if (secd) {
561                         enum ndr_err_code ndr_err;
562
563                         if (dhnc) {
564                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
565                                 return tevent_req_post(req, ev);
566                         }
567
568                         sec_desc = talloc_zero(state, struct security_descriptor);
569                         if (tevent_req_nomem(sec_desc, req)) {
570                                 return tevent_req_post(req, ev);
571                         }
572
573                         ndr_err = ndr_pull_struct_blob(&secd->data,
574                                 sec_desc, sec_desc,
575                                 (ndr_pull_flags_fn_t)ndr_pull_security_descriptor);
576                         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
577                                 DEBUG(2,("ndr_pull_security_descriptor failed: %s\n",
578                                          ndr_errstr(ndr_err)));
579                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
580                                 return tevent_req_post(req, ev);
581                         }
582                 }
583
584                 if (dhnq) {
585                         if (dhnc) {
586                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
587                                 return tevent_req_post(req, ev);
588                         }
589
590                         if (dhnq->data.length != 16) {
591                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
592                                 return tevent_req_post(req, ev);
593                         }
594                         /*
595                          * we don't support durable handles yet
596                          * and have to ignore this
597                          */
598                 }
599
600                 if (dhnc) {
601                         if (dhnc->data.length != 16) {
602                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
603                                 return tevent_req_post(req, ev);
604                         }
605                         /* we don't support durable handles yet */
606                         tevent_req_nterror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND);
607                         return tevent_req_post(req, ev);
608                 }
609
610                 if (alsi) {
611                         if (dhnc) {
612                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
613                                 return tevent_req_post(req, ev);
614                         }
615
616                         if (alsi->data.length != 8) {
617                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
618                                 return tevent_req_post(req, ev);
619                         }
620                         allocation_size = BVAL(alsi->data.data, 0);
621                 }
622
623                 if (twrp) {
624                         NTTIME nttime;
625                         time_t t;
626                         struct tm *tm;
627
628                         if (dhnc) {
629                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
630                                 return tevent_req_post(req, ev);
631                         }
632
633                         if (twrp->data.length != 8) {
634                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
635                                 return tevent_req_post(req, ev);
636                         }
637
638                         nttime = BVAL(twrp->data.data, 0);
639                         t = nt_time_to_unix(nttime);
640                         tm = gmtime(&t);
641
642                         TALLOC_FREE(fname);
643                         fname = talloc_asprintf(state,
644                                         "@GMT-%04u.%02u.%02u-%02u.%02u.%02u\\%s",
645                                         tm->tm_year + 1900,
646                                         tm->tm_mon + 1,
647                                         tm->tm_mday,
648                                         tm->tm_hour,
649                                         tm->tm_min,
650                                         tm->tm_sec,
651                                         in_name);
652                         if (tevent_req_nomem(fname, req)) {
653                                 return tevent_req_post(req, ev);
654                         }
655                 }
656
657                 if (qfid) {
658                         if (qfid->data.length != 0) {
659                                 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
660                                 return tevent_req_post(req, ev);
661                         }
662                 }
663
664                 /* these are ignored for SMB2 */
665                 in_create_options &= ~(0x10);/* NTCREATEX_OPTIONS_SYNC_ALERT */
666                 in_create_options &= ~(0x20);/* NTCREATEX_OPTIONS_ASYNC_ALERT */
667
668                 /* convert '\\' into '/' */
669                 status = check_path_syntax(fname);
670                 if (!NT_STATUS_IS_OK(status)) {
671                         tevent_req_nterror(req, status);
672                         return tevent_req_post(req, ev);
673                 }
674
675                 status = filename_convert(req,
676                                           smb1req->conn,
677                                           smb1req->flags2 & FLAGS2_DFS_PATHNAMES,
678                                           fname,
679                                           0,
680                                           NULL,
681                                           &smb_fname);
682                 if (!NT_STATUS_IS_OK(status)) {
683                         tevent_req_nterror(req, status);
684                         return tevent_req_post(req, ev);
685                 }
686
687                 in_file_attributes &= ~FILE_FLAG_POSIX_SEMANTICS;
688
689                 status = SMB_VFS_CREATE_FILE(smb1req->conn,
690                                              smb1req,
691                                              0, /* root_dir_fid */
692                                              smb_fname,
693                                              in_desired_access,
694                                              in_share_access,
695                                              in_create_disposition,
696                                              in_create_options,
697                                              in_file_attributes,
698                                              map_smb2_oplock_levels_to_samba(in_oplock_level),
699                                              allocation_size,
700                                              0, /* private_flags */
701                                              sec_desc,
702                                              ea_list,
703                                              &result,
704                                              &info);
705                 if (!NT_STATUS_IS_OK(status)) {
706                         if (open_was_deferred(smb1req->mid)) {
707                                 return req;
708                         }
709                         tevent_req_nterror(req, status);
710                         return tevent_req_post(req, ev);
711                 }
712
713                 if (mxac) {
714                         NTTIME last_write_time;
715
716                         unix_timespec_to_nt_time(&last_write_time,
717                                                  result->fsp_name->st.st_ex_mtime);
718                         if (last_write_time != max_access_time) {
719                                 uint8_t p[8];
720                                 uint32_t max_access_granted;
721                                 DATA_BLOB blob = data_blob_const(p, sizeof(p));
722
723                                 status = smbd_check_open_rights(smb1req->conn,
724                                                         result->fsp_name,
725                                                         SEC_FLAG_MAXIMUM_ALLOWED,
726                                                         &max_access_granted);
727
728                                 SIVAL(p, 0, NT_STATUS_V(status));
729                                 SIVAL(p, 4, max_access_granted);
730
731                                 status = smb2_create_blob_add(state,
732                                                         &out_context_blobs,
733                                                         SMB2_CREATE_TAG_MXAC,
734                                                         blob);
735                                 if (!NT_STATUS_IS_OK(status)) {
736                                         tevent_req_nterror(req, status);
737                                         return tevent_req_post(req, ev);
738                                 }
739                         }
740                 }
741
742                 if (qfid) {
743                         uint8_t p[32];
744                         uint64_t file_index = get_FileIndex(result->conn,
745                                                         &result->fsp_name->st);
746                         DATA_BLOB blob = data_blob_const(p, sizeof(p));
747
748                         ZERO_STRUCT(p);
749
750                         /* From conversations with Microsoft engineers at
751                            the MS plugfest. The first 8 bytes are the "volume index"
752                            == inode, the second 8 bytes are the "volume id",
753                            == dev. This will be updated in the SMB2 doc. */
754                         SBVAL(p, 0, file_index);
755                         SIVAL(p, 8, result->fsp_name->st.st_ex_dev);/* FileIndexHigh */
756
757                         status = smb2_create_blob_add(state, &out_context_blobs,
758                                                       SMB2_CREATE_TAG_QFID,
759                                                       blob);
760                         if (!NT_STATUS_IS_OK(status)) {
761                                 tevent_req_nterror(req, status);
762                                 return tevent_req_post(req, ev);
763                         }
764                 }
765         }
766
767         smb2req->compat_chain_fsp = smb1req->chain_fsp;
768
769         state->out_oplock_level = map_samba_oplock_levels_to_smb2(result->oplock_type);
770
771         if ((in_create_disposition == FILE_SUPERSEDE)
772             && (info == FILE_WAS_OVERWRITTEN)) {
773                 state->out_create_action = FILE_WAS_SUPERSEDED;
774         } else {
775                 state->out_create_action = info;
776         }
777         state->out_file_attributes = dos_mode(result->conn,
778                                            result->fsp_name);
779         /* Deal with other possible opens having a modified
780            write time. JRA. */
781         ZERO_STRUCT(write_time_ts);
782         get_file_infos(result->file_id, NULL, &write_time_ts);
783         if (!null_timespec(write_time_ts)) {
784                 update_stat_ex_mtime(&result->fsp_name->st, write_time_ts);
785         }
786
787         unix_timespec_to_nt_time(&state->out_creation_time,
788                         get_create_timespec(smb1req->conn, result,
789                                         result->fsp_name));
790         unix_timespec_to_nt_time(&state->out_last_access_time,
791                         result->fsp_name->st.st_ex_atime);
792         unix_timespec_to_nt_time(&state->out_last_write_time,
793                         result->fsp_name->st.st_ex_mtime);
794         unix_timespec_to_nt_time(&state->out_change_time,
795                         get_change_timespec(smb1req->conn, result,
796                                         result->fsp_name));
797         state->out_allocation_size =
798                         result->fsp_name->st.st_ex_blksize *
799                         result->fsp_name->st.st_ex_blocks;
800         state->out_end_of_file = result->fsp_name->st.st_ex_size;
801         if (state->out_file_attributes == 0) {
802                 state->out_file_attributes = FILE_ATTRIBUTE_NORMAL;
803         }
804         state->out_file_id_persistent = result->fnum;
805         state->out_file_id_volatile = result->fnum;
806         state->out_context_blobs = out_context_blobs;
807
808         tevent_req_done(req);
809         return tevent_req_post(req, ev);
810 }
811
812 static NTSTATUS smbd_smb2_create_recv(struct tevent_req *req,
813                         TALLOC_CTX *mem_ctx,
814                         uint8_t *out_oplock_level,
815                         uint32_t *out_create_action,
816                         NTTIME *out_creation_time,
817                         NTTIME *out_last_access_time,
818                         NTTIME *out_last_write_time,
819                         NTTIME *out_change_time,
820                         uint64_t *out_allocation_size,
821                         uint64_t *out_end_of_file,
822                         uint32_t *out_file_attributes,
823                         uint64_t *out_file_id_persistent,
824                         uint64_t *out_file_id_volatile,
825                         struct smb2_create_blobs *out_context_blobs)
826 {
827         NTSTATUS status;
828         struct smbd_smb2_create_state *state = tevent_req_data(req,
829                                                struct smbd_smb2_create_state);
830
831         if (tevent_req_is_nterror(req, &status)) {
832                 tevent_req_received(req);
833                 return status;
834         }
835
836         *out_oplock_level       = state->out_oplock_level;
837         *out_create_action      = state->out_create_action;
838         *out_creation_time      = state->out_creation_time;
839         *out_last_access_time   = state->out_last_access_time;
840         *out_last_write_time    = state->out_last_write_time;
841         *out_change_time        = state->out_change_time;
842         *out_allocation_size    = state->out_allocation_size;
843         *out_end_of_file        = state->out_end_of_file;
844         *out_file_attributes    = state->out_file_attributes;
845         *out_file_id_persistent = state->out_file_id_persistent;
846         *out_file_id_volatile   = state->out_file_id_volatile;
847         *out_context_blobs      = state->out_context_blobs;
848
849         talloc_steal(mem_ctx, state->out_context_blobs.blobs);
850
851         tevent_req_received(req);
852         return NT_STATUS_OK;
853 }
854
855 /*********************************************************
856  Code for dealing with deferred opens.
857 *********************************************************/
858
859 bool get_deferred_open_message_state_smb2(struct smbd_smb2_request *smb2req,
860                         struct timeval *p_request_time,
861                         void **pp_state)
862 {
863         struct smbd_smb2_create_state *state = NULL;
864         struct tevent_req *req = NULL;
865
866         if (!smb2req) {
867                 return false;
868         }
869         if (!smb2req->async) {
870                 return false;
871         }
872         req = smb2req->subreq;
873         if (!req) {
874                 return false;
875         }
876         state = tevent_req_data(req, struct smbd_smb2_create_state);
877         if (!state) {
878                 return false;
879         }
880         if (p_request_time) {
881                 *p_request_time = state->request_time;
882         }
883         if (pp_state) {
884                 *pp_state = (void *)state->private_data.data;
885         }
886         return true;
887 }
888
889 /*********************************************************
890  Re-process this call early - requested by message or
891  close.
892 *********************************************************/
893
894 static struct smbd_smb2_request *find_open_smb2req(uint64_t mid)
895 {
896         struct smbd_server_connection *sconn = smbd_server_conn;
897         struct smbd_smb2_request *smb2req;
898
899         for (smb2req = sconn->smb2.requests; smb2req; smb2req = smb2req->next) {
900                 uint64_t message_id;
901                 if (smb2req->subreq == NULL) {
902                         /* This message has been processed. */
903                         continue;
904                 }
905                 if (!tevent_req_is_in_progress(smb2req->subreq)) {
906                         /* This message has been processed. */
907                         continue;
908                 }
909                 message_id = get_mid_from_smb2req(smb2req);
910                 if (message_id == mid) {
911                         return smb2req;
912                 }
913         }
914         return NULL;
915 }
916
917 bool open_was_deferred_smb2(uint64_t mid)
918 {
919         struct smbd_smb2_create_state *state = NULL;
920         struct smbd_smb2_request *smb2req = find_open_smb2req(mid);
921
922         if (!smb2req) {
923                 DEBUG(10,("open_was_deferred_smb2: mid %llu smb2req == NULL\n",
924                         (unsigned long long)mid));
925                 return false;
926         }
927         if (!smb2req->subreq) {
928                 return false;
929         }
930         if (!tevent_req_is_in_progress(smb2req->subreq)) {
931                 return false;
932         }
933         state = tevent_req_data(smb2req->subreq,
934                         struct smbd_smb2_create_state);
935         if (!state) {
936                 return false;
937         }
938         /* It's not in progress if there's no timeout event. */
939         if (!state->te) {
940                 return false;
941         }
942
943         DEBUG(10,("open_was_deferred_smb2: mid = %llu\n",
944                         (unsigned long long)mid));
945
946         return true;
947 }
948
949 static void remove_deferred_open_message_smb2_internal(struct smbd_smb2_request *smb2req,
950                                                         uint64_t mid)
951 {
952         struct smbd_smb2_create_state *state = NULL;
953
954         if (!smb2req->subreq) {
955                 return;
956         }
957         if (!tevent_req_is_in_progress(smb2req->subreq)) {
958                 return;
959         }
960         state = tevent_req_data(smb2req->subreq,
961                         struct smbd_smb2_create_state);
962         if (!state) {
963                 return;
964         }
965
966         DEBUG(10,("remove_deferred_open_message_smb2_internal: "
967                 "mid %llu\n",
968                 (unsigned long long)mid ));
969
970         /* Ensure we don't have any outstanding timer event. */
971         TALLOC_FREE(state->te);
972         /* Ensure we don't have any outstanding immediate event. */
973         TALLOC_FREE(state->im);
974 }
975
976 void remove_deferred_open_message_smb2(uint64_t mid)
977 {
978         struct smbd_smb2_request *smb2req = find_open_smb2req(mid);
979
980         if (!smb2req) {
981                 DEBUG(10,("remove_deferred_open_message_smb2: "
982                         "can't find mid %llu\n",
983                         (unsigned long long)mid ));
984                 return;
985         }
986         remove_deferred_open_message_smb2_internal(smb2req, mid);
987 }
988
989 static void smbd_smb2_create_request_dispatch_immediate(struct tevent_context *ctx,
990                                         struct tevent_immediate *im,
991                                         void *private_data)
992 {
993         struct smbd_smb2_request *smb2req = talloc_get_type_abort(private_data,
994                                         struct smbd_smb2_request);
995         struct smbd_server_connection *sconn = smb2req->sconn;
996         uint64_t mid = get_mid_from_smb2req(smb2req);
997         NTSTATUS status;
998
999         DEBUG(10,("smbd_smb2_create_request_dispatch_immediate: "
1000                 "re-dispatching mid %llu\n",
1001                 (unsigned long long)mid ));
1002
1003         status = smbd_smb2_request_dispatch(smb2req);
1004         if (!NT_STATUS_IS_OK(status)) {
1005                 smbd_server_connection_terminate(sconn, nt_errstr(status));
1006                 return;
1007         }
1008 }
1009
1010 void schedule_deferred_open_message_smb2(uint64_t mid)
1011 {
1012         struct smbd_smb2_create_state *state = NULL;
1013         struct smbd_smb2_request *smb2req = find_open_smb2req(mid);
1014
1015         if (!smb2req) {
1016                 DEBUG(10,("schedule_deferred_open_message_smb2: "
1017                         "can't find mid %llu\n",
1018                         (unsigned long long)mid ));
1019                 return;
1020         }
1021         if (!smb2req->subreq) {
1022                 return;
1023         }
1024         if (!tevent_req_is_in_progress(smb2req->subreq)) {
1025                 return;
1026         }
1027         state = tevent_req_data(smb2req->subreq,
1028                         struct smbd_smb2_create_state);
1029         if (!state) {
1030                 return;
1031         }
1032
1033         /* Ensure we don't have any outstanding timer event. */
1034         TALLOC_FREE(state->te);
1035         /* Ensure we don't have any outstanding immediate event. */
1036         TALLOC_FREE(state->im);
1037
1038         /*
1039          * This is subtle. We must null out the callback
1040          * before resheduling, else the first call to
1041          * tevent_req_nterror() causes the _receive()
1042          * function to be called, this causing tevent_req_post()
1043          * to crash.
1044          */
1045         tevent_req_set_callback(smb2req->subreq, NULL, NULL);
1046
1047         state->im = tevent_create_immediate(smb2req);
1048         if (!state->im) {
1049                 smbd_server_connection_terminate(smb2req->sconn,
1050                         nt_errstr(NT_STATUS_NO_MEMORY));
1051         }
1052
1053         DEBUG(10,("schedule_deferred_open_message_smb2: "
1054                 "re-processing mid %llu\n",
1055                 (unsigned long long)mid ));
1056
1057         tevent_schedule_immediate(state->im,
1058                         smb2req->sconn->smb2.event_ctx,
1059                         smbd_smb2_create_request_dispatch_immediate,
1060                         smb2req);
1061 }
1062
1063 /*********************************************************
1064  Re-process this call.
1065 *********************************************************/
1066
1067 static void smb2_deferred_open_timer(struct event_context *ev,
1068                                         struct timed_event *te,
1069                                         struct timeval _tval,
1070                                         void *private_data)
1071 {
1072         NTSTATUS status;
1073         struct smbd_smb2_create_state *state = NULL;
1074         struct smbd_smb2_request *smb2req = talloc_get_type(private_data,
1075                                                 struct smbd_smb2_request);
1076
1077         DEBUG(10,("smb2_deferred_open_timer: [idx=%d], %s\n",
1078                 smb2req->current_idx,
1079                 tevent_req_default_print(smb2req->subreq, talloc_tos()) ));
1080
1081         state = tevent_req_data(smb2req->subreq,
1082                         struct smbd_smb2_create_state);
1083         if (!state) {
1084                 return;
1085         }
1086         /*
1087          * Null this out, don't talloc_free. It will
1088          * be talloc_free'd by the tevent library when
1089          * this returns.
1090          */
1091         state->te = NULL;
1092         /* Ensure we don't have any outstanding immediate event. */
1093         TALLOC_FREE(state->im);
1094
1095         /*
1096          * This is subtle. We must null out the callback
1097          * before resheduling, else the first call to
1098          * tevent_req_nterror() causes the _receive()
1099          * function to be called, this causing tevent_req_post()
1100          * to crash.
1101          */
1102         tevent_req_set_callback(smb2req->subreq, NULL, NULL);
1103
1104         status = smbd_smb2_request_dispatch(smb2req);
1105
1106         if (!NT_STATUS_IS_OK(status)) {
1107                 smbd_server_connection_terminate(smb2req->sconn,
1108                                 nt_errstr(status));
1109         }
1110 }
1111
1112 static bool smbd_smb2_create_cancel(struct tevent_req *req)
1113 {
1114         struct smbd_smb2_request *smb2req = NULL;
1115         struct smbd_smb2_create_state *state = tevent_req_data(req,
1116                                 struct smbd_smb2_create_state);
1117         uint64_t mid;
1118
1119         if (!state) {
1120                 return false;
1121         }
1122
1123         if (!state->smb2req) {
1124                 return false;
1125         }
1126
1127         smb2req = state->smb2req;
1128         mid = get_mid_from_smb2req(smb2req);
1129
1130         remove_deferred_open_entry(state->id, mid);
1131         remove_deferred_open_message_smb2_internal(smb2req, mid);
1132         smb2req->cancelled = true;
1133
1134         tevent_req_done(req);
1135         return true;
1136 }
1137
1138 bool push_deferred_open_message_smb2(struct smbd_smb2_request *smb2req,
1139                                 struct timeval request_time,
1140                                 struct timeval timeout,
1141                                 struct file_id id,
1142                                 char *private_data,
1143                                 size_t priv_len)
1144 {
1145         struct tevent_req *req = NULL;
1146         struct smbd_smb2_create_state *state = NULL;
1147         struct timeval end_time;
1148
1149         if (!smb2req) {
1150                 return false;
1151         }
1152         req = smb2req->subreq;
1153         if (!req) {
1154                 return false;
1155         }
1156         state = tevent_req_data(req, struct smbd_smb2_create_state);
1157         if (!state) {
1158                 return false;
1159         }
1160         state->id = id;
1161         state->request_time = request_time;
1162         state->private_data = data_blob_talloc(state, private_data,
1163                                                 priv_len);
1164         if (!state->private_data.data) {
1165                 return false;
1166         }
1167
1168 #if 1
1169         /* Boo - turns out this isn't what W2K8R2
1170            does. It actually sends the STATUS_PENDING
1171            message followed by the STATUS_SHARING_VIOLATION
1172            message. Surely this means that all open
1173            calls (even on directories) will potentially
1174            fail in a chain.... ? And I've seen directory
1175            opens as the start of a chain. JRA.
1176
1177            Update: 19th May 2010. Talking with Microsoft
1178            engineers at the plugfest this is a bug in
1179            Windows. Re-enable this code.
1180         */
1181         /*
1182          * More subtlety. To match W2K8R2 don't
1183          * send a "gone async" message if it's simply
1184          * a STATUS_SHARING_VIOLATION (short) wait, not
1185          * an oplock break wait. We do this by prematurely
1186          * setting smb2req->async flag.
1187          */
1188         if (timeout.tv_sec < 2) {
1189                 DEBUG(10,("push_deferred_open_message_smb2: "
1190                         "short timer wait (usec = %u). "
1191                         "Don't send async message.\n",
1192                         (unsigned int)timeout.tv_usec ));
1193                 smb2req->async = true;
1194         }
1195 #endif
1196
1197         /* Re-schedule us to retry on timer expiry. */
1198         end_time = timeval_sum(&request_time, &timeout);
1199
1200         DEBUG(10,("push_deferred_open_message_smb2: "
1201                 "timeout at %s\n",
1202                 timeval_string(talloc_tos(),
1203                                 &end_time,
1204                                 true) ));
1205
1206         state->te = event_add_timed(smb2req->sconn->smb2.event_ctx,
1207                                 state,
1208                                 end_time,
1209                                 smb2_deferred_open_timer,
1210                                 smb2req);
1211         if (!state->te) {
1212                 return false;
1213         }
1214
1215         /* allow this request to be canceled */
1216         tevent_req_set_cancel_fn(req, smbd_smb2_create_cancel);
1217
1218         return true;
1219 }