s3: smbd: Locking - re-add pending lock records if we fail to acquire a lock (and...
[Samba.git] / source3 / smbd / smb2_create.c
blobe6f087cd448429b2b975e849e68b80a172f4f0bb
1 /*
2 Unix SMB/CIFS implementation.
3 Core SMB2 server
5 Copyright (C) Stefan Metzmacher 2009
6 Copyright (C) Jeremy Allison 2010
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.
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.
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/>.
22 #include "includes.h"
23 #include "printing.h"
24 #include "smbd/smbd.h"
25 #include "smbd/globals.h"
26 #include "../libcli/smb/smb_common.h"
27 #include "../librpc/gen_ndr/ndr_security.h"
28 #include "../lib/util/tevent_ntstatus.h"
29 #include "messages.h"
31 int map_smb2_oplock_levels_to_samba(uint8_t in_oplock_level)
33 switch(in_oplock_level) {
34 case SMB2_OPLOCK_LEVEL_NONE:
35 return NO_OPLOCK;
36 case SMB2_OPLOCK_LEVEL_II:
37 return LEVEL_II_OPLOCK;
38 case SMB2_OPLOCK_LEVEL_EXCLUSIVE:
39 return EXCLUSIVE_OPLOCK;
40 case SMB2_OPLOCK_LEVEL_BATCH:
41 return BATCH_OPLOCK;
42 case SMB2_OPLOCK_LEVEL_LEASE:
43 DEBUG(2,("map_smb2_oplock_levels_to_samba: "
44 "LEASE_OPLOCK_REQUESTED\n"));
45 return NO_OPLOCK;
46 default:
47 DEBUG(2,("map_smb2_oplock_levels_to_samba: "
48 "unknown level %u\n",
49 (unsigned int)in_oplock_level));
50 return NO_OPLOCK;
54 static uint8_t map_samba_oplock_levels_to_smb2(int oplock_type)
56 if (BATCH_OPLOCK_TYPE(oplock_type)) {
57 return SMB2_OPLOCK_LEVEL_BATCH;
58 } else if (EXCLUSIVE_OPLOCK_TYPE(oplock_type)) {
59 return SMB2_OPLOCK_LEVEL_EXCLUSIVE;
60 } else if (oplock_type == LEVEL_II_OPLOCK) {
62 * Don't use LEVEL_II_OPLOCK_TYPE here as
63 * this also includes FAKE_LEVEL_II_OPLOCKs
64 * which are internal only.
66 return SMB2_OPLOCK_LEVEL_II;
67 } else {
68 return SMB2_OPLOCK_LEVEL_NONE;
72 static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx,
73 struct tevent_context *ev,
74 struct smbd_smb2_request *smb2req,
75 uint8_t in_oplock_level,
76 uint32_t in_impersonation_level,
77 uint32_t in_desired_access,
78 uint32_t in_file_attributes,
79 uint32_t in_share_access,
80 uint32_t in_create_disposition,
81 uint32_t in_create_options,
82 const char *in_name,
83 struct smb2_create_blobs in_context_blobs);
84 static NTSTATUS smbd_smb2_create_recv(struct tevent_req *req,
85 TALLOC_CTX *mem_ctx,
86 uint8_t *out_oplock_level,
87 uint32_t *out_create_action,
88 struct timespec *out_creation_ts,
89 struct timespec *out_last_access_ts,
90 struct timespec *out_last_write_ts,
91 struct timespec *out_change_ts,
92 uint64_t *out_allocation_size,
93 uint64_t *out_end_of_file,
94 uint32_t *out_file_attributes,
95 uint64_t *out_file_id_persistent,
96 uint64_t *out_file_id_volatile,
97 struct smb2_create_blobs *out_context_blobs);
99 static void smbd_smb2_request_create_done(struct tevent_req *tsubreq);
100 NTSTATUS smbd_smb2_request_process_create(struct smbd_smb2_request *smb2req)
102 const uint8_t *inbody;
103 const struct iovec *indyniov;
104 uint8_t in_oplock_level;
105 uint32_t in_impersonation_level;
106 uint32_t in_desired_access;
107 uint32_t in_file_attributes;
108 uint32_t in_share_access;
109 uint32_t in_create_disposition;
110 uint32_t in_create_options;
111 uint16_t in_name_offset;
112 uint16_t in_name_length;
113 DATA_BLOB in_name_buffer;
114 char *in_name_string;
115 size_t in_name_string_size;
116 uint32_t name_offset = 0;
117 uint32_t name_available_length = 0;
118 uint32_t in_context_offset;
119 uint32_t in_context_length;
120 DATA_BLOB in_context_buffer;
121 struct smb2_create_blobs in_context_blobs;
122 uint32_t context_offset = 0;
123 uint32_t context_available_length = 0;
124 uint32_t dyn_offset;
125 NTSTATUS status;
126 bool ok;
127 struct tevent_req *tsubreq;
129 status = smbd_smb2_request_verify_sizes(smb2req, 0x39);
130 if (!NT_STATUS_IS_OK(status)) {
131 return smbd_smb2_request_error(smb2req, status);
133 inbody = SMBD_SMB2_IN_BODY_PTR(smb2req);
135 in_oplock_level = CVAL(inbody, 0x03);
136 in_impersonation_level = IVAL(inbody, 0x04);
137 in_desired_access = IVAL(inbody, 0x18);
138 in_file_attributes = IVAL(inbody, 0x1C);
139 in_share_access = IVAL(inbody, 0x20);
140 in_create_disposition = IVAL(inbody, 0x24);
141 in_create_options = IVAL(inbody, 0x28);
142 in_name_offset = SVAL(inbody, 0x2C);
143 in_name_length = SVAL(inbody, 0x2E);
144 in_context_offset = IVAL(inbody, 0x30);
145 in_context_length = IVAL(inbody, 0x34);
148 * First check if the dynamic name and context buffers
149 * are correctly specified.
151 * Note: That we don't check if the name and context buffers
152 * overlap
155 dyn_offset = SMB2_HDR_BODY + SMBD_SMB2_IN_BODY_LEN(smb2req);
157 if (in_name_offset == 0 && in_name_length == 0) {
158 /* This is ok */
159 name_offset = 0;
160 } else if (in_name_offset < dyn_offset) {
161 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
162 } else {
163 name_offset = in_name_offset - dyn_offset;
166 indyniov = SMBD_SMB2_IN_DYN_IOV(smb2req);
168 if (name_offset > indyniov->iov_len) {
169 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
172 name_available_length = indyniov->iov_len - name_offset;
174 if (in_name_length > name_available_length) {
175 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
178 in_name_buffer.data = (uint8_t *)indyniov->iov_base + name_offset;
179 in_name_buffer.length = in_name_length;
181 if (in_context_offset == 0 && in_context_length == 0) {
182 /* This is ok */
183 context_offset = 0;
184 } else if (in_context_offset < dyn_offset) {
185 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
186 } else {
187 context_offset = in_context_offset - dyn_offset;
190 if (context_offset > indyniov->iov_len) {
191 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
194 context_available_length = indyniov->iov_len - context_offset;
196 if (in_context_length > context_available_length) {
197 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
200 in_context_buffer.data = (uint8_t *)indyniov->iov_base +
201 context_offset;
202 in_context_buffer.length = in_context_length;
205 * Now interpret the name and context buffers
208 ok = convert_string_talloc(smb2req, CH_UTF16, CH_UNIX,
209 in_name_buffer.data,
210 in_name_buffer.length,
211 &in_name_string,
212 &in_name_string_size);
213 if (!ok) {
214 return smbd_smb2_request_error(smb2req, NT_STATUS_ILLEGAL_CHARACTER);
217 if (in_name_buffer.length == 0) {
218 in_name_string_size = 0;
221 if (strlen(in_name_string) != in_name_string_size) {
222 return smbd_smb2_request_error(smb2req, NT_STATUS_OBJECT_NAME_INVALID);
225 ZERO_STRUCT(in_context_blobs);
226 status = smb2_create_blob_parse(smb2req, in_context_buffer, &in_context_blobs);
227 if (!NT_STATUS_IS_OK(status)) {
228 return smbd_smb2_request_error(smb2req, status);
231 tsubreq = smbd_smb2_create_send(smb2req,
232 smb2req->sconn->ev_ctx,
233 smb2req,
234 in_oplock_level,
235 in_impersonation_level,
236 in_desired_access,
237 in_file_attributes,
238 in_share_access,
239 in_create_disposition,
240 in_create_options,
241 in_name_string,
242 in_context_blobs);
243 if (tsubreq == NULL) {
244 smb2req->subreq = NULL;
245 return smbd_smb2_request_error(smb2req, NT_STATUS_NO_MEMORY);
247 tevent_req_set_callback(tsubreq, smbd_smb2_request_create_done, smb2req);
250 * For now we keep the logic that we do not send STATUS_PENDING
251 * for sharing violations, so we just wait 2 seconds.
253 * TODO: we need more tests for this.
255 return smbd_smb2_request_pending_queue(smb2req, tsubreq, 2000000);
258 static uint64_t get_mid_from_smb2req(struct smbd_smb2_request *smb2req)
260 uint8_t *reqhdr = SMBD_SMB2_OUT_HDR_PTR(smb2req);
261 return BVAL(reqhdr, SMB2_HDR_MESSAGE_ID);
264 static void smbd_smb2_request_create_done(struct tevent_req *tsubreq)
266 struct smbd_smb2_request *smb2req = tevent_req_callback_data(tsubreq,
267 struct smbd_smb2_request);
268 DATA_BLOB outbody;
269 DATA_BLOB outdyn;
270 uint8_t out_oplock_level = 0;
271 uint32_t out_create_action = 0;
272 connection_struct *conn = smb2req->tcon->compat;
273 struct timespec out_creation_ts = { 0, };
274 struct timespec out_last_access_ts = { 0, };
275 struct timespec out_last_write_ts = { 0, };
276 struct timespec out_change_ts = { 0, };
277 uint64_t out_allocation_size = 0;
278 uint64_t out_end_of_file = 0;
279 uint32_t out_file_attributes = 0;
280 uint64_t out_file_id_persistent = 0;
281 uint64_t out_file_id_volatile = 0;
282 struct smb2_create_blobs out_context_blobs;
283 DATA_BLOB out_context_buffer;
284 uint16_t out_context_buffer_offset = 0;
285 NTSTATUS status;
286 NTSTATUS error; /* transport error */
288 status = smbd_smb2_create_recv(tsubreq,
289 smb2req,
290 &out_oplock_level,
291 &out_create_action,
292 &out_creation_ts,
293 &out_last_access_ts,
294 &out_last_write_ts,
295 &out_change_ts,
296 &out_allocation_size,
297 &out_end_of_file,
298 &out_file_attributes,
299 &out_file_id_persistent,
300 &out_file_id_volatile,
301 &out_context_blobs);
302 if (!NT_STATUS_IS_OK(status)) {
303 error = smbd_smb2_request_error(smb2req, status);
304 if (!NT_STATUS_IS_OK(error)) {
305 smbd_server_connection_terminate(smb2req->sconn,
306 nt_errstr(error));
307 return;
309 return;
312 status = smb2_create_blob_push(smb2req, &out_context_buffer, out_context_blobs);
313 if (!NT_STATUS_IS_OK(status)) {
314 error = smbd_smb2_request_error(smb2req, status);
315 if (!NT_STATUS_IS_OK(error)) {
316 smbd_server_connection_terminate(smb2req->sconn,
317 nt_errstr(error));
318 return;
320 return;
323 if (out_context_buffer.length > 0) {
324 out_context_buffer_offset = SMB2_HDR_BODY + 0x58;
327 outbody = data_blob_talloc(smb2req->out.vector, NULL, 0x58);
328 if (outbody.data == NULL) {
329 error = smbd_smb2_request_error(smb2req, NT_STATUS_NO_MEMORY);
330 if (!NT_STATUS_IS_OK(error)) {
331 smbd_server_connection_terminate(smb2req->sconn,
332 nt_errstr(error));
333 return;
335 return;
338 SSVAL(outbody.data, 0x00, 0x58 + 1); /* struct size */
339 SCVAL(outbody.data, 0x02,
340 out_oplock_level); /* oplock level */
341 SCVAL(outbody.data, 0x03, 0); /* reserved */
342 SIVAL(outbody.data, 0x04,
343 out_create_action); /* create action */
344 put_long_date_timespec(conn->ts_res,
345 (char *)outbody.data + 0x08,
346 out_creation_ts); /* creation time */
347 put_long_date_timespec(conn->ts_res,
348 (char *)outbody.data + 0x10,
349 out_last_access_ts); /* last access time */
350 put_long_date_timespec(conn->ts_res,
351 (char *)outbody.data + 0x18,
352 out_last_write_ts); /* last write time */
353 put_long_date_timespec(conn->ts_res,
354 (char *)outbody.data + 0x20,
355 out_change_ts); /* change time */
356 SBVAL(outbody.data, 0x28,
357 out_allocation_size); /* allocation size */
358 SBVAL(outbody.data, 0x30,
359 out_end_of_file); /* end of file */
360 SIVAL(outbody.data, 0x38,
361 out_file_attributes); /* file attributes */
362 SIVAL(outbody.data, 0x3C, 0); /* reserved */
363 SBVAL(outbody.data, 0x40,
364 out_file_id_persistent); /* file id (persistent) */
365 SBVAL(outbody.data, 0x48,
366 out_file_id_volatile); /* file id (volatile) */
367 SIVAL(outbody.data, 0x50,
368 out_context_buffer_offset); /* create contexts offset */
369 SIVAL(outbody.data, 0x54,
370 out_context_buffer.length); /* create contexts length */
372 outdyn = out_context_buffer;
374 error = smbd_smb2_request_done(smb2req, outbody, &outdyn);
375 if (!NT_STATUS_IS_OK(error)) {
376 smbd_server_connection_terminate(smb2req->sconn,
377 nt_errstr(error));
378 return;
382 struct smbd_smb2_create_state {
383 struct smbd_smb2_request *smb2req;
384 struct smb_request *smb1req;
385 bool open_was_deferred;
386 struct tevent_timer *te;
387 struct tevent_immediate *im;
388 struct timeval request_time;
389 struct file_id id;
390 DATA_BLOB private_data;
391 uint8_t out_oplock_level;
392 uint32_t out_create_action;
393 struct timespec out_creation_ts;
394 struct timespec out_last_access_ts;
395 struct timespec out_last_write_ts;
396 struct timespec out_change_ts;
397 uint64_t out_allocation_size;
398 uint64_t out_end_of_file;
399 uint32_t out_file_attributes;
400 uint64_t out_file_id_persistent;
401 uint64_t out_file_id_volatile;
402 struct smb2_create_blobs out_context_blobs;
405 static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx,
406 struct tevent_context *ev,
407 struct smbd_smb2_request *smb2req,
408 uint8_t in_oplock_level,
409 uint32_t in_impersonation_level,
410 uint32_t in_desired_access,
411 uint32_t in_file_attributes,
412 uint32_t in_share_access,
413 uint32_t in_create_disposition,
414 uint32_t in_create_options,
415 const char *in_name,
416 struct smb2_create_blobs in_context_blobs)
418 struct tevent_req *req = NULL;
419 struct smbd_smb2_create_state *state = NULL;
420 NTSTATUS status;
421 struct smb_request *smb1req = NULL;
422 files_struct *result = NULL;
423 int info;
424 struct timespec write_time_ts;
425 struct smb2_create_blobs out_context_blobs;
426 int requested_oplock_level;
427 struct smb2_create_blob *dhnc = NULL;
428 struct smb2_create_blob *dh2c = NULL;
429 struct smbXsrv_open *op = NULL;
431 ZERO_STRUCT(out_context_blobs);
433 if(lp_fake_oplocks(SNUM(smb2req->tcon->compat))) {
434 requested_oplock_level = SMB2_OPLOCK_LEVEL_NONE;
435 } else {
436 requested_oplock_level = in_oplock_level;
440 if (smb2req->subreq == NULL) {
441 /* New create call. */
442 req = tevent_req_create(mem_ctx, &state,
443 struct smbd_smb2_create_state);
444 if (req == NULL) {
445 return NULL;
447 state->smb2req = smb2req;
449 smb1req = smbd_smb2_fake_smb_request(smb2req);
450 if (tevent_req_nomem(smb1req, req)) {
451 return tevent_req_post(req, ev);
453 state->smb1req = smb1req;
454 smb2req->subreq = req;
455 DEBUG(10,("smbd_smb2_create: name[%s]\n",
456 in_name));
457 } else {
458 /* Re-entrant create call. */
459 req = smb2req->subreq;
460 state = tevent_req_data(req,
461 struct smbd_smb2_create_state);
462 smb1req = state->smb1req;
463 DEBUG(10,("smbd_smb2_create_send: reentrant for file %s\n",
464 in_name ));
467 dhnc = smb2_create_blob_find(&in_context_blobs,
468 SMB2_CREATE_TAG_DHNC);
470 if (dhnc) {
471 if (dhnc->data.length != 16) {
472 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
473 return tevent_req_post(req, ev);
475 if (in_context_blobs.num_blobs != 1) {
477 * DHNC should be the only one.
479 tevent_req_nterror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND);
480 return tevent_req_post(req, ev);
484 dh2c = smb2_create_blob_find(&in_context_blobs,
485 SMB2_CREATE_TAG_DH2C);
486 if (dh2c) {
487 if (dh2c->data.length != 36) {
488 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
489 return tevent_req_post(req, ev);
491 if (in_context_blobs.num_blobs != 1) {
493 * DH2C should be the only one.
495 tevent_req_nterror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND);
496 return tevent_req_post(req, ev);
500 if (IS_IPC(smb1req->conn)) {
501 const char *pipe_name = in_name;
503 if (dhnc || dh2c) {
504 /* durable handles are not supported on IPC$ */
505 tevent_req_nterror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND);
506 return tevent_req_post(req, ev);
509 if (!lp_nt_pipe_support()) {
510 tevent_req_nterror(req, NT_STATUS_ACCESS_DENIED);
511 return tevent_req_post(req, ev);
514 status = open_np_file(smb1req, pipe_name, &result);
515 if (!NT_STATUS_IS_OK(status)) {
516 tevent_req_nterror(req, status);
517 return tevent_req_post(req, ev);
519 info = FILE_WAS_OPENED;
520 } else if (CAN_PRINT(smb1req->conn)) {
521 if (dhnc || dh2c) {
522 /* durable handles are not supported on printers */
523 tevent_req_nterror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND);
524 return tevent_req_post(req, ev);
527 status = file_new(smb1req, smb1req->conn, &result);
528 if(!NT_STATUS_IS_OK(status)) {
529 tevent_req_nterror(req, status);
530 return tevent_req_post(req, ev);
533 status = print_spool_open(result, in_name,
534 smb1req->vuid);
535 if (!NT_STATUS_IS_OK(status)) {
536 file_free(smb1req, result);
537 tevent_req_nterror(req, status);
538 return tevent_req_post(req, ev);
540 info = FILE_WAS_CREATED;
541 } else {
542 char *fname;
543 struct smb2_create_blob *exta = NULL;
544 struct ea_list *ea_list = NULL;
545 struct smb2_create_blob *mxac = NULL;
546 NTTIME max_access_time = 0;
547 struct smb2_create_blob *secd = NULL;
548 struct security_descriptor *sec_desc = NULL;
549 struct smb2_create_blob *dhnq = NULL;
550 struct smb2_create_blob *alsi = NULL;
551 uint64_t allocation_size = 0;
552 struct smb2_create_blob *twrp = NULL;
553 struct smb2_create_blob *qfid = NULL;
554 struct GUID create_guid = GUID_zero();
555 bool update_open = false;
556 bool durable_requested = false;
557 uint32_t durable_timeout_msec = 0;
558 bool do_durable_reconnect = false;
559 struct smb2_create_blob *dh2q = NULL;
560 uint64_t persistent_id = 0;
562 exta = smb2_create_blob_find(&in_context_blobs,
563 SMB2_CREATE_TAG_EXTA);
564 mxac = smb2_create_blob_find(&in_context_blobs,
565 SMB2_CREATE_TAG_MXAC);
566 secd = smb2_create_blob_find(&in_context_blobs,
567 SMB2_CREATE_TAG_SECD);
568 dhnq = smb2_create_blob_find(&in_context_blobs,
569 SMB2_CREATE_TAG_DHNQ);
570 alsi = smb2_create_blob_find(&in_context_blobs,
571 SMB2_CREATE_TAG_ALSI);
572 twrp = smb2_create_blob_find(&in_context_blobs,
573 SMB2_CREATE_TAG_TWRP);
574 qfid = smb2_create_blob_find(&in_context_blobs,
575 SMB2_CREATE_TAG_QFID);
576 dh2q = smb2_create_blob_find(&in_context_blobs,
577 SMB2_CREATE_TAG_DH2Q);
579 fname = talloc_strdup(state, in_name);
580 if (tevent_req_nomem(fname, req)) {
581 return tevent_req_post(req, ev);
584 if (exta) {
585 ea_list = read_nttrans_ea_list(mem_ctx,
586 (const char *)exta->data.data, exta->data.length);
587 if (!ea_list) {
588 DEBUG(10,("smbd_smb2_create_send: read_ea_name_list failed.\n"));
589 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
590 return tevent_req_post(req, ev);
593 if (ea_list_has_invalid_name(ea_list)) {
594 tevent_req_nterror(req, STATUS_INVALID_EA_NAME);
595 return tevent_req_post(req, ev);
599 if (mxac) {
600 if (mxac->data.length == 0) {
601 max_access_time = 0;
602 } else if (mxac->data.length == 8) {
603 max_access_time = BVAL(mxac->data.data, 0);
604 } else {
605 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
606 return tevent_req_post(req, ev);
610 if (secd) {
611 enum ndr_err_code ndr_err;
613 sec_desc = talloc_zero(state, struct security_descriptor);
614 if (tevent_req_nomem(sec_desc, req)) {
615 return tevent_req_post(req, ev);
618 ndr_err = ndr_pull_struct_blob(&secd->data,
619 sec_desc, sec_desc,
620 (ndr_pull_flags_fn_t)ndr_pull_security_descriptor);
621 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
622 DEBUG(2,("ndr_pull_security_descriptor failed: %s\n",
623 ndr_errstr(ndr_err)));
624 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
625 return tevent_req_post(req, ev);
629 if (dhnq) {
630 if (dhnq->data.length != 16) {
631 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
632 return tevent_req_post(req, ev);
635 if (dh2q) {
636 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
637 return tevent_req_post(req, ev);
641 * durable handle request is processed below.
643 durable_requested = true;
645 * Set the timeout to 16 mins.
647 * TODO: test this against Windows 2012
648 * as the default for durable v2 is 1 min.
650 durable_timeout_msec = (16*60*1000);
653 if (dh2q) {
654 const uint8_t *p = dh2q->data.data;
655 uint32_t durable_v2_timeout = 0;
656 DATA_BLOB create_guid_blob;
658 if (dh2q->data.length != 32) {
659 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
660 return tevent_req_post(req, ev);
663 if (dhnq) {
664 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
665 return tevent_req_post(req, ev);
668 durable_v2_timeout = IVAL(p, 0);
669 create_guid_blob = data_blob_const(p + 16, 16);
671 status = GUID_from_ndr_blob(&create_guid_blob,
672 &create_guid);
673 if (tevent_req_nterror(req, status)) {
674 return tevent_req_post(req, ev);
677 * we need to store the create_guid later
679 update_open = true;
682 * durable handle v2 request processed below
684 durable_requested = true;
685 durable_timeout_msec = durable_v2_timeout;
686 if (durable_timeout_msec == 0) {
688 * Set the timeout to 1 min as default.
690 * This matches Windows 2012.
692 durable_timeout_msec = (60*1000);
696 if (dhnc) {
697 persistent_id = BVAL(dhnc->data.data, 0);
699 do_durable_reconnect = true;
702 if (dh2c) {
703 const uint8_t *p = dh2c->data.data;
704 DATA_BLOB create_guid_blob;
706 persistent_id = BVAL(p, 0);
707 create_guid_blob = data_blob_const(p + 16, 16);
709 status = GUID_from_ndr_blob(&create_guid_blob,
710 &create_guid);
711 if (tevent_req_nterror(req, status)) {
712 return tevent_req_post(req, ev);
715 do_durable_reconnect = true;
718 if (alsi) {
719 if (alsi->data.length != 8) {
720 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
721 return tevent_req_post(req, ev);
723 allocation_size = BVAL(alsi->data.data, 0);
726 if (twrp) {
727 NTTIME nttime;
728 time_t t;
729 struct tm *tm;
731 if (twrp->data.length != 8) {
732 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
733 return tevent_req_post(req, ev);
736 nttime = BVAL(twrp->data.data, 0);
737 t = nt_time_to_unix(nttime);
738 tm = gmtime(&t);
740 TALLOC_FREE(fname);
741 fname = talloc_asprintf(state,
742 "@GMT-%04u.%02u.%02u-%02u.%02u.%02u\\%s",
743 tm->tm_year + 1900,
744 tm->tm_mon + 1,
745 tm->tm_mday,
746 tm->tm_hour,
747 tm->tm_min,
748 tm->tm_sec,
749 in_name);
750 if (tevent_req_nomem(fname, req)) {
751 return tevent_req_post(req, ev);
755 if (qfid) {
756 if (qfid->data.length != 0) {
757 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
758 return tevent_req_post(req, ev);
762 /* these are ignored for SMB2 */
763 in_create_options &= ~(0x10);/* NTCREATEX_OPTIONS_SYNC_ALERT */
764 in_create_options &= ~(0x20);/* NTCREATEX_OPTIONS_ASYNC_ALERT */
766 in_file_attributes &= ~FILE_FLAG_POSIX_SEMANTICS;
768 DEBUG(10, ("smbd_smb2_create_send: open execution phase\n"));
771 * For the backend file open procedure, there are
772 * two possible modes: durable_reconnect or not.
774 if (do_durable_reconnect) {
775 DATA_BLOB new_cookie = data_blob_null;
776 NTTIME now = timeval_to_nttime(&smb2req->request_time);
778 status = smb2srv_open_recreate(smb2req->sconn->conn,
779 smb1req->conn->session_info,
780 persistent_id, create_guid,
781 now, &op);
782 if (!NT_STATUS_IS_OK(status)) {
783 DEBUG(3, ("smbd_smb2_create_send: "
784 "smb2srv_open_recreate failed: %s\n",
785 nt_errstr(status)));
786 tevent_req_nterror(req, status);
787 return tevent_req_post(req, ev);
790 DEBUG(10, ("smb2_create_send: %s to recreate the "
791 "smb2srv_open struct for a durable handle.\n",
792 op->global->durable ? "succeded" : "failed"));
794 if (!op->global->durable) {
795 talloc_free(op);
796 tevent_req_nterror(req,
797 NT_STATUS_OBJECT_NAME_NOT_FOUND);
798 return tevent_req_post(req, ev);
801 status = SMB_VFS_DURABLE_RECONNECT(smb1req->conn,
802 smb1req,
803 op, /* smbXsrv_open input */
804 op->global->backend_cookie,
805 op, /* TALLOC_CTX */
806 &result, &new_cookie);
807 if (!NT_STATUS_IS_OK(status)) {
808 NTSTATUS return_status;
810 return_status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
812 DEBUG(3, ("smbd_smb2_create_send: "
813 "durable_reconnect failed: %s => %s\n",
814 nt_errstr(status),
815 nt_errstr(return_status)));
817 tevent_req_nterror(req, return_status);
818 return tevent_req_post(req, ev);
821 data_blob_free(&op->global->backend_cookie);
822 op->global->backend_cookie = new_cookie;
824 op->status = NT_STATUS_OK;
825 op->global->disconnect_time = 0;
827 /* save the timout for later update */
828 durable_timeout_msec = op->global->durable_timeout_msec;
830 update_open = true;
832 info = FILE_WAS_OPENED;
833 } else {
834 struct smb_filename *smb_fname = NULL;
837 * For a DFS path the function parse_dfs_path()
838 * will do the path processing.
841 if (!(smb1req->flags2 & FLAGS2_DFS_PATHNAMES)) {
842 /* convert '\\' into '/' */
843 status = check_path_syntax(fname);
844 if (!NT_STATUS_IS_OK(status)) {
845 tevent_req_nterror(req, status);
846 return tevent_req_post(req, ev);
850 status = filename_convert(req,
851 smb1req->conn,
852 smb1req->flags2 & FLAGS2_DFS_PATHNAMES,
853 fname,
854 UCF_PREP_CREATEFILE,
855 NULL, /* ppath_contains_wcards */
856 &smb_fname);
857 if (!NT_STATUS_IS_OK(status)) {
858 tevent_req_nterror(req, status);
859 return tevent_req_post(req, ev);
862 status = SMB_VFS_CREATE_FILE(smb1req->conn,
863 smb1req,
864 0, /* root_dir_fid */
865 smb_fname,
866 in_desired_access,
867 in_share_access,
868 in_create_disposition,
869 in_create_options,
870 in_file_attributes,
871 map_smb2_oplock_levels_to_samba(requested_oplock_level),
872 allocation_size,
873 0, /* private_flags */
874 sec_desc,
875 ea_list,
876 &result,
877 &info);
878 if (!NT_STATUS_IS_OK(status)) {
879 if (open_was_deferred(smb1req->sconn, smb1req->mid)) {
880 return req;
882 tevent_req_nterror(req, status);
883 return tevent_req_post(req, ev);
885 op = result->op;
889 * here we have op == result->op
892 DEBUG(10, ("smbd_smb2_create_send: "
893 "response construction phase\n"));
895 if (mxac) {
896 NTTIME last_write_time;
898 unix_timespec_to_nt_time(&last_write_time,
899 result->fsp_name->st.st_ex_mtime);
900 if (last_write_time != max_access_time) {
901 uint8_t p[8];
902 uint32_t max_access_granted;
903 DATA_BLOB blob = data_blob_const(p, sizeof(p));
905 status = smbd_calculate_access_mask(smb1req->conn,
906 result->fsp_name,
907 false,
908 SEC_FLAG_MAXIMUM_ALLOWED,
909 &max_access_granted);
911 SIVAL(p, 0, NT_STATUS_V(status));
912 SIVAL(p, 4, max_access_granted);
914 status = smb2_create_blob_add(state,
915 &out_context_blobs,
916 SMB2_CREATE_TAG_MXAC,
917 blob);
918 if (!NT_STATUS_IS_OK(status)) {
919 tevent_req_nterror(req, status);
920 return tevent_req_post(req, ev);
925 if (durable_requested &&
926 BATCH_OPLOCK_TYPE(result->oplock_type))
928 status = SMB_VFS_DURABLE_COOKIE(result,
930 &op->global->backend_cookie);
931 if (!NT_STATUS_IS_OK(status)) {
932 op->global->backend_cookie = data_blob_null;
935 if (op->global->backend_cookie.length > 0) {
936 update_open = true;
938 op->global->durable = true;
939 op->global->durable_timeout_msec = durable_timeout_msec;
942 if (update_open) {
943 op->global->create_guid = create_guid;
945 status = smbXsrv_open_update(op);
946 DEBUG(10, ("smb2_create_send: smbXsrv_open_update "
947 "returned %s\n",
948 nt_errstr(status)));
949 if (!NT_STATUS_IS_OK(status)) {
950 tevent_req_nterror(req, status);
951 return tevent_req_post(req, ev);
955 if (dhnq && op->global->durable) {
956 uint8_t p[8] = { 0, };
957 DATA_BLOB blob = data_blob_const(p, sizeof(p));
959 status = smb2_create_blob_add(state,
960 &out_context_blobs,
961 SMB2_CREATE_TAG_DHNQ,
962 blob);
963 if (!NT_STATUS_IS_OK(status)) {
964 tevent_req_nterror(req, status);
965 return tevent_req_post(req, ev);
969 if (dh2q && op->global->durable) {
970 uint8_t p[8] = { 0, };
971 DATA_BLOB blob = data_blob_const(p, sizeof(p));
972 uint32_t durable_v2_response_flags = 0;
974 SIVAL(p, 0, op->global->durable_timeout_msec);
975 SIVAL(p, 4, durable_v2_response_flags);
977 status = smb2_create_blob_add(state, &out_context_blobs,
978 SMB2_CREATE_TAG_DH2Q,
979 blob);
980 if (!NT_STATUS_IS_OK(status)) {
981 tevent_req_nterror(req, status);
982 return tevent_req_post(req, ev);
986 if (qfid) {
987 uint8_t p[32];
988 uint64_t file_index = get_FileIndex(result->conn,
989 &result->fsp_name->st);
990 DATA_BLOB blob = data_blob_const(p, sizeof(p));
992 ZERO_STRUCT(p);
994 /* From conversations with Microsoft engineers at
995 the MS plugfest. The first 8 bytes are the "volume index"
996 == inode, the second 8 bytes are the "volume id",
997 == dev. This will be updated in the SMB2 doc. */
998 SBVAL(p, 0, file_index);
999 SIVAL(p, 8, result->fsp_name->st.st_ex_dev);/* FileIndexHigh */
1001 status = smb2_create_blob_add(state, &out_context_blobs,
1002 SMB2_CREATE_TAG_QFID,
1003 blob);
1004 if (!NT_STATUS_IS_OK(status)) {
1005 tevent_req_nterror(req, status);
1006 return tevent_req_post(req, ev);
1011 smb2req->compat_chain_fsp = smb1req->chain_fsp;
1013 if(lp_fake_oplocks(SNUM(smb2req->tcon->compat))) {
1014 state->out_oplock_level = in_oplock_level;
1015 } else {
1016 state->out_oplock_level = map_samba_oplock_levels_to_smb2(result->oplock_type);
1019 if ((in_create_disposition == FILE_SUPERSEDE)
1020 && (info == FILE_WAS_OVERWRITTEN)) {
1021 state->out_create_action = FILE_WAS_SUPERSEDED;
1022 } else {
1023 state->out_create_action = info;
1025 state->out_file_attributes = dos_mode(result->conn,
1026 result->fsp_name);
1027 /* Deal with other possible opens having a modified
1028 write time. JRA. */
1029 ZERO_STRUCT(write_time_ts);
1030 get_file_infos(result->file_id, 0, NULL, &write_time_ts);
1031 if (!null_timespec(write_time_ts)) {
1032 update_stat_ex_mtime(&result->fsp_name->st, write_time_ts);
1035 state->out_creation_ts = get_create_timespec(smb1req->conn,
1036 result, result->fsp_name);
1037 state->out_last_access_ts = result->fsp_name->st.st_ex_atime;
1038 state->out_last_write_ts = result->fsp_name->st.st_ex_mtime;
1039 state->out_change_ts = get_change_timespec(smb1req->conn,
1040 result, result->fsp_name);
1041 state->out_allocation_size =
1042 SMB_VFS_GET_ALLOC_SIZE(smb1req->conn, result,
1043 &(result->fsp_name->st));
1044 state->out_end_of_file = result->fsp_name->st.st_ex_size;
1045 if (state->out_file_attributes == 0) {
1046 state->out_file_attributes = FILE_ATTRIBUTE_NORMAL;
1048 state->out_file_id_persistent = result->op->global->open_persistent_id;
1049 state->out_file_id_volatile = result->op->global->open_volatile_id;
1050 state->out_context_blobs = out_context_blobs;
1052 DEBUG(10,("smbd_smb2_create_send: %s - %s\n",
1053 fsp_str_dbg(result), fsp_fnum_dbg(result)));
1055 tevent_req_done(req);
1056 return tevent_req_post(req, ev);
1059 static NTSTATUS smbd_smb2_create_recv(struct tevent_req *req,
1060 TALLOC_CTX *mem_ctx,
1061 uint8_t *out_oplock_level,
1062 uint32_t *out_create_action,
1063 struct timespec *out_creation_ts,
1064 struct timespec *out_last_access_ts,
1065 struct timespec *out_last_write_ts,
1066 struct timespec *out_change_ts,
1067 uint64_t *out_allocation_size,
1068 uint64_t *out_end_of_file,
1069 uint32_t *out_file_attributes,
1070 uint64_t *out_file_id_persistent,
1071 uint64_t *out_file_id_volatile,
1072 struct smb2_create_blobs *out_context_blobs)
1074 NTSTATUS status;
1075 struct smbd_smb2_create_state *state = tevent_req_data(req,
1076 struct smbd_smb2_create_state);
1078 if (tevent_req_is_nterror(req, &status)) {
1079 tevent_req_received(req);
1080 return status;
1083 *out_oplock_level = state->out_oplock_level;
1084 *out_create_action = state->out_create_action;
1085 *out_creation_ts = state->out_creation_ts;
1086 *out_last_access_ts = state->out_last_access_ts;
1087 *out_last_write_ts = state->out_last_write_ts;
1088 *out_change_ts = state->out_change_ts;
1089 *out_allocation_size = state->out_allocation_size;
1090 *out_end_of_file = state->out_end_of_file;
1091 *out_file_attributes = state->out_file_attributes;
1092 *out_file_id_persistent = state->out_file_id_persistent;
1093 *out_file_id_volatile = state->out_file_id_volatile;
1094 *out_context_blobs = state->out_context_blobs;
1096 talloc_steal(mem_ctx, state->out_context_blobs.blobs);
1098 tevent_req_received(req);
1099 return NT_STATUS_OK;
1102 /*********************************************************
1103 Code for dealing with deferred opens.
1104 *********************************************************/
1106 bool get_deferred_open_message_state_smb2(struct smbd_smb2_request *smb2req,
1107 struct timeval *p_request_time,
1108 void **pp_state)
1110 struct smbd_smb2_create_state *state = NULL;
1111 struct tevent_req *req = NULL;
1113 if (!smb2req) {
1114 return false;
1116 req = smb2req->subreq;
1117 if (!req) {
1118 return false;
1120 state = tevent_req_data(req, struct smbd_smb2_create_state);
1121 if (!state) {
1122 return false;
1124 if (!state->open_was_deferred) {
1125 return false;
1127 if (p_request_time) {
1128 *p_request_time = state->request_time;
1130 if (pp_state) {
1131 *pp_state = (void *)state->private_data.data;
1133 return true;
1136 /*********************************************************
1137 Re-process this call early - requested by message or
1138 close.
1139 *********************************************************/
1141 static struct smbd_smb2_request *find_open_smb2req(
1142 struct smbd_server_connection *sconn, uint64_t mid)
1144 struct smbd_smb2_request *smb2req;
1146 for (smb2req = sconn->smb2.requests; smb2req; smb2req = smb2req->next) {
1147 uint64_t message_id;
1148 if (smb2req->subreq == NULL) {
1149 /* This message has been processed. */
1150 continue;
1152 if (!tevent_req_is_in_progress(smb2req->subreq)) {
1153 /* This message has been processed. */
1154 continue;
1156 message_id = get_mid_from_smb2req(smb2req);
1157 if (message_id == mid) {
1158 return smb2req;
1161 return NULL;
1164 bool open_was_deferred_smb2(struct smbd_server_connection *sconn, uint64_t mid)
1166 struct smbd_smb2_create_state *state = NULL;
1167 struct smbd_smb2_request *smb2req;
1169 smb2req = find_open_smb2req(sconn, mid);
1171 if (!smb2req) {
1172 DEBUG(10,("open_was_deferred_smb2: mid %llu smb2req == NULL\n",
1173 (unsigned long long)mid));
1174 return false;
1176 if (!smb2req->subreq) {
1177 return false;
1179 if (!tevent_req_is_in_progress(smb2req->subreq)) {
1180 return false;
1182 state = tevent_req_data(smb2req->subreq,
1183 struct smbd_smb2_create_state);
1184 if (!state) {
1185 return false;
1187 /* It's not in progress if there's no timeout event. */
1188 if (!state->open_was_deferred) {
1189 return false;
1192 DEBUG(10,("open_was_deferred_smb2: mid = %llu\n",
1193 (unsigned long long)mid));
1195 return true;
1198 static void remove_deferred_open_message_smb2_internal(struct smbd_smb2_request *smb2req,
1199 uint64_t mid)
1201 struct smbd_smb2_create_state *state = NULL;
1203 if (!smb2req->subreq) {
1204 return;
1206 if (!tevent_req_is_in_progress(smb2req->subreq)) {
1207 return;
1209 state = tevent_req_data(smb2req->subreq,
1210 struct smbd_smb2_create_state);
1211 if (!state) {
1212 return;
1215 DEBUG(10,("remove_deferred_open_message_smb2_internal: "
1216 "mid %llu\n",
1217 (unsigned long long)mid ));
1219 state->open_was_deferred = false;
1220 /* Ensure we don't have any outstanding timer event. */
1221 TALLOC_FREE(state->te);
1222 /* Ensure we don't have any outstanding immediate event. */
1223 TALLOC_FREE(state->im);
1226 void remove_deferred_open_message_smb2(
1227 struct smbd_server_connection *sconn, uint64_t mid)
1229 struct smbd_smb2_request *smb2req;
1231 smb2req = find_open_smb2req(sconn, mid);
1233 if (!smb2req) {
1234 DEBUG(10,("remove_deferred_open_message_smb2: "
1235 "can't find mid %llu\n",
1236 (unsigned long long)mid ));
1237 return;
1239 remove_deferred_open_message_smb2_internal(smb2req, mid);
1242 static void smbd_smb2_create_request_dispatch_immediate(struct tevent_context *ctx,
1243 struct tevent_immediate *im,
1244 void *private_data)
1246 struct smbd_smb2_request *smb2req = talloc_get_type_abort(private_data,
1247 struct smbd_smb2_request);
1248 struct smbd_server_connection *sconn = smb2req->sconn;
1249 uint64_t mid = get_mid_from_smb2req(smb2req);
1250 NTSTATUS status;
1252 DEBUG(10,("smbd_smb2_create_request_dispatch_immediate: "
1253 "re-dispatching mid %llu\n",
1254 (unsigned long long)mid ));
1256 status = smbd_smb2_request_dispatch(smb2req);
1257 if (!NT_STATUS_IS_OK(status)) {
1258 smbd_server_connection_terminate(sconn, nt_errstr(status));
1259 return;
1263 bool schedule_deferred_open_message_smb2(
1264 struct smbd_server_connection *sconn, uint64_t mid)
1266 struct smbd_smb2_create_state *state = NULL;
1267 struct smbd_smb2_request *smb2req;
1269 smb2req = find_open_smb2req(sconn, mid);
1271 if (!smb2req) {
1272 DEBUG(10,("schedule_deferred_open_message_smb2: "
1273 "can't find mid %llu\n",
1274 (unsigned long long)mid ));
1277 * Bug 10593: We have to ignore this as an error because the
1278 * request might have been cancelled. The real fix is to
1279 * discard the defer_open dbwrap_watcher at cancel
1280 * time. Working on that.... :-)
1282 return true;
1284 if (!smb2req->subreq) {
1285 return false;
1287 if (!tevent_req_is_in_progress(smb2req->subreq)) {
1288 return false;
1290 state = tevent_req_data(smb2req->subreq,
1291 struct smbd_smb2_create_state);
1292 if (!state) {
1293 return false;
1296 /* Ensure we don't have any outstanding timer event. */
1297 TALLOC_FREE(state->te);
1298 /* Ensure we don't have any outstanding immediate event. */
1299 TALLOC_FREE(state->im);
1302 * This is subtle. We must null out the callback
1303 * before rescheduling, else the first call to
1304 * tevent_req_nterror() causes the _receive()
1305 * function to be called, this causing tevent_req_post()
1306 * to crash.
1308 tevent_req_set_callback(smb2req->subreq, NULL, NULL);
1310 state->im = tevent_create_immediate(smb2req);
1311 if (!state->im) {
1312 smbd_server_connection_terminate(smb2req->sconn,
1313 nt_errstr(NT_STATUS_NO_MEMORY));
1314 return false;
1317 DEBUG(10,("schedule_deferred_open_message_smb2: "
1318 "re-processing mid %llu\n",
1319 (unsigned long long)mid ));
1321 tevent_schedule_immediate(state->im,
1322 smb2req->sconn->ev_ctx,
1323 smbd_smb2_create_request_dispatch_immediate,
1324 smb2req);
1326 return true;
1329 static bool smbd_smb2_create_cancel(struct tevent_req *req)
1331 struct smbd_smb2_request *smb2req = NULL;
1332 struct smbd_smb2_create_state *state = tevent_req_data(req,
1333 struct smbd_smb2_create_state);
1334 uint64_t mid;
1336 if (!state) {
1337 return false;
1340 if (!state->smb2req) {
1341 return false;
1344 smb2req = state->smb2req;
1345 mid = get_mid_from_smb2req(smb2req);
1347 if (is_deferred_open_async(state->private_data.data)) {
1348 /* Can't cancel an async create. */
1349 return false;
1352 remove_deferred_open_message_smb2_internal(smb2req, mid);
1354 tevent_req_defer_callback(req, smb2req->sconn->ev_ctx);
1355 tevent_req_nterror(req, NT_STATUS_CANCELLED);
1356 return true;
1359 bool push_deferred_open_message_smb2(struct smbd_smb2_request *smb2req,
1360 struct timeval request_time,
1361 struct timeval timeout,
1362 struct file_id id,
1363 char *private_data,
1364 size_t priv_len)
1366 struct tevent_req *req = NULL;
1367 struct smbd_smb2_create_state *state = NULL;
1368 struct timeval end_time;
1370 if (!smb2req) {
1371 return false;
1373 req = smb2req->subreq;
1374 if (!req) {
1375 return false;
1377 state = tevent_req_data(req, struct smbd_smb2_create_state);
1378 if (!state) {
1379 return false;
1381 state->id = id;
1382 state->request_time = request_time;
1383 state->private_data = data_blob_talloc(state, private_data,
1384 priv_len);
1385 if (!state->private_data.data) {
1386 return false;
1389 /* Re-schedule us to retry on timer expiry. */
1390 end_time = timeval_sum(&request_time, &timeout);
1392 DEBUG(10,("push_deferred_open_message_smb2: "
1393 "timeout at %s\n",
1394 timeval_string(talloc_tos(),
1395 &end_time,
1396 true) ));
1398 state->open_was_deferred = true;
1400 /* allow this request to be canceled */
1401 tevent_req_set_cancel_fn(req, smbd_smb2_create_cancel);
1403 return true;