s4-dsdb: Initial implementation for Tombstone reanimation module
[Samba.git] / source3 / smbd / open.c
blob06770e04fb2a96db184e13e3aae8ccfc52c00566
1 /*
2 Unix SMB/CIFS implementation.
3 file opening and share modes
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Jeremy Allison 2001-2004
6 Copyright (C) Volker Lendecke 2005
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 "system/filesys.h"
24 #include "printing.h"
25 #include "smbd/smbd.h"
26 #include "smbd/globals.h"
27 #include "fake_file.h"
28 #include "../libcli/security/security.h"
29 #include "../librpc/gen_ndr/ndr_security.h"
30 #include "../librpc/gen_ndr/open_files.h"
31 #include "../librpc/gen_ndr/idmap.h"
32 #include "../librpc/gen_ndr/ioctl.h"
33 #include "passdb/lookup_sid.h"
34 #include "auth.h"
35 #include "serverid.h"
36 #include "messages.h"
37 #include "source3/lib/dbwrap/dbwrap_watch.h"
38 #include "locking/leases_db.h"
39 #include "librpc/gen_ndr/ndr_leases_db.h"
41 extern const struct generic_mapping file_generic_mapping;
43 struct deferred_open_record {
44 bool delayed_for_oplocks;
45 bool async_open;
46 struct file_id id;
49 /****************************************************************************
50 If the requester wanted DELETE_ACCESS and was rejected because
51 the file ACL didn't include DELETE_ACCESS, see if the parent ACL
52 overrides this.
53 ****************************************************************************/
55 static bool parent_override_delete(connection_struct *conn,
56 const struct smb_filename *smb_fname,
57 uint32_t access_mask,
58 uint32_t rejected_mask)
60 if ((access_mask & DELETE_ACCESS) &&
61 (rejected_mask & DELETE_ACCESS) &&
62 can_delete_file_in_directory(conn, smb_fname)) {
63 return true;
65 return false;
68 /****************************************************************************
69 Check if we have open rights.
70 ****************************************************************************/
72 NTSTATUS smbd_check_access_rights(struct connection_struct *conn,
73 const struct smb_filename *smb_fname,
74 bool use_privs,
75 uint32_t access_mask)
77 /* Check if we have rights to open. */
78 NTSTATUS status;
79 struct security_descriptor *sd = NULL;
80 uint32_t rejected_share_access;
81 uint32_t rejected_mask = access_mask;
82 uint32_t do_not_check_mask = 0;
84 rejected_share_access = access_mask & ~(conn->share_access);
86 if (rejected_share_access) {
87 DEBUG(10, ("smbd_check_access_rights: rejected share access 0x%x "
88 "on %s (0x%x)\n",
89 (unsigned int)access_mask,
90 smb_fname_str_dbg(smb_fname),
91 (unsigned int)rejected_share_access ));
92 return NT_STATUS_ACCESS_DENIED;
95 if (!use_privs && get_current_uid(conn) == (uid_t)0) {
96 /* I'm sorry sir, I didn't know you were root... */
97 DEBUG(10,("smbd_check_access_rights: root override "
98 "on %s. Granting 0x%x\n",
99 smb_fname_str_dbg(smb_fname),
100 (unsigned int)access_mask ));
101 return NT_STATUS_OK;
104 if ((access_mask & DELETE_ACCESS) && !lp_acl_check_permissions(SNUM(conn))) {
105 DEBUG(10,("smbd_check_access_rights: not checking ACL "
106 "on DELETE_ACCESS on file %s. Granting 0x%x\n",
107 smb_fname_str_dbg(smb_fname),
108 (unsigned int)access_mask ));
109 return NT_STATUS_OK;
112 if (access_mask == DELETE_ACCESS &&
113 VALID_STAT(smb_fname->st) &&
114 S_ISLNK(smb_fname->st.st_ex_mode)) {
115 /* We can always delete a symlink. */
116 DEBUG(10,("smbd_check_access_rights: not checking ACL "
117 "on DELETE_ACCESS on symlink %s.\n",
118 smb_fname_str_dbg(smb_fname) ));
119 return NT_STATUS_OK;
122 status = SMB_VFS_GET_NT_ACL(conn, smb_fname->base_name,
123 (SECINFO_OWNER |
124 SECINFO_GROUP |
125 SECINFO_DACL), talloc_tos(), &sd);
127 if (!NT_STATUS_IS_OK(status)) {
128 DEBUG(10, ("smbd_check_access_rights: Could not get acl "
129 "on %s: %s\n",
130 smb_fname_str_dbg(smb_fname),
131 nt_errstr(status)));
133 if (NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
134 goto access_denied;
137 return status;
141 * If we can access the path to this file, by
142 * default we have FILE_READ_ATTRIBUTES from the
143 * containing directory. See the section:
144 * "Algorithm to Check Access to an Existing File"
145 * in MS-FSA.pdf.
147 * se_file_access_check() also takes care of
148 * owner WRITE_DAC and READ_CONTROL.
150 do_not_check_mask = FILE_READ_ATTRIBUTES;
153 * Samba 3.6 and earlier granted execute access even
154 * if the ACL did not contain execute rights.
155 * Samba 4.0 is more correct and checks it.
156 * The compatibilty mode allows to skip this check
157 * to smoothen upgrades.
159 if (lp_acl_allow_execute_always(SNUM(conn))) {
160 do_not_check_mask |= FILE_EXECUTE;
163 status = se_file_access_check(sd,
164 get_current_nttok(conn),
165 use_privs,
166 (access_mask & ~do_not_check_mask),
167 &rejected_mask);
169 DEBUG(10,("smbd_check_access_rights: file %s requesting "
170 "0x%x returning 0x%x (%s)\n",
171 smb_fname_str_dbg(smb_fname),
172 (unsigned int)access_mask,
173 (unsigned int)rejected_mask,
174 nt_errstr(status) ));
176 if (!NT_STATUS_IS_OK(status)) {
177 if (DEBUGLEVEL >= 10) {
178 DEBUG(10,("smbd_check_access_rights: acl for %s is:\n",
179 smb_fname_str_dbg(smb_fname) ));
180 NDR_PRINT_DEBUG(security_descriptor, sd);
184 TALLOC_FREE(sd);
186 if (NT_STATUS_IS_OK(status) ||
187 !NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
188 return status;
191 /* Here we know status == NT_STATUS_ACCESS_DENIED. */
193 access_denied:
195 if ((access_mask & FILE_WRITE_ATTRIBUTES) &&
196 (rejected_mask & FILE_WRITE_ATTRIBUTES) &&
197 !lp_store_dos_attributes(SNUM(conn)) &&
198 (lp_map_readonly(SNUM(conn)) ||
199 lp_map_archive(SNUM(conn)) ||
200 lp_map_hidden(SNUM(conn)) ||
201 lp_map_system(SNUM(conn)))) {
202 rejected_mask &= ~FILE_WRITE_ATTRIBUTES;
204 DEBUG(10,("smbd_check_access_rights: "
205 "overrode "
206 "FILE_WRITE_ATTRIBUTES "
207 "on file %s\n",
208 smb_fname_str_dbg(smb_fname)));
211 if (parent_override_delete(conn,
212 smb_fname,
213 access_mask,
214 rejected_mask)) {
215 /* Were we trying to do an open
216 * for delete and didn't get DELETE
217 * access (only) ? Check if the
218 * directory allows DELETE_CHILD.
219 * See here:
220 * http://blogs.msdn.com/oldnewthing/archive/2004/06/04/148426.aspx
221 * for details. */
223 rejected_mask &= ~DELETE_ACCESS;
225 DEBUG(10,("smbd_check_access_rights: "
226 "overrode "
227 "DELETE_ACCESS on "
228 "file %s\n",
229 smb_fname_str_dbg(smb_fname)));
232 if (rejected_mask != 0) {
233 return NT_STATUS_ACCESS_DENIED;
235 return NT_STATUS_OK;
238 static NTSTATUS check_parent_access(struct connection_struct *conn,
239 struct smb_filename *smb_fname,
240 uint32_t access_mask)
242 NTSTATUS status;
243 char *parent_dir = NULL;
244 struct security_descriptor *parent_sd = NULL;
245 uint32_t access_granted = 0;
247 if (!parent_dirname(talloc_tos(),
248 smb_fname->base_name,
249 &parent_dir,
250 NULL)) {
251 return NT_STATUS_NO_MEMORY;
254 if (get_current_uid(conn) == (uid_t)0) {
255 /* I'm sorry sir, I didn't know you were root... */
256 DEBUG(10,("check_parent_access: root override "
257 "on %s. Granting 0x%x\n",
258 smb_fname_str_dbg(smb_fname),
259 (unsigned int)access_mask ));
260 return NT_STATUS_OK;
263 status = SMB_VFS_GET_NT_ACL(conn,
264 parent_dir,
265 SECINFO_DACL,
266 talloc_tos(),
267 &parent_sd);
269 if (!NT_STATUS_IS_OK(status)) {
270 DEBUG(5,("check_parent_access: SMB_VFS_GET_NT_ACL failed for "
271 "%s with error %s\n",
272 parent_dir,
273 nt_errstr(status)));
274 return status;
278 * If we can access the path to this file, by
279 * default we have FILE_READ_ATTRIBUTES from the
280 * containing directory. See the section:
281 * "Algorithm to Check Access to an Existing File"
282 * in MS-FSA.pdf.
284 * se_file_access_check() also takes care of
285 * owner WRITE_DAC and READ_CONTROL.
287 status = se_file_access_check(parent_sd,
288 get_current_nttok(conn),
289 false,
290 (access_mask & ~FILE_READ_ATTRIBUTES),
291 &access_granted);
292 if(!NT_STATUS_IS_OK(status)) {
293 DEBUG(5,("check_parent_access: access check "
294 "on directory %s for "
295 "path %s for mask 0x%x returned (0x%x) %s\n",
296 parent_dir,
297 smb_fname->base_name,
298 access_mask,
299 access_granted,
300 nt_errstr(status) ));
301 return status;
304 return NT_STATUS_OK;
307 /****************************************************************************
308 Ensure when opening a base file for a stream open that we have permissions
309 to do so given the access mask on the base file.
310 ****************************************************************************/
312 static NTSTATUS check_base_file_access(struct connection_struct *conn,
313 struct smb_filename *smb_fname,
314 uint32_t access_mask)
316 NTSTATUS status;
318 status = smbd_calculate_access_mask(conn, smb_fname,
319 false,
320 access_mask,
321 &access_mask);
322 if (!NT_STATUS_IS_OK(status)) {
323 DEBUG(10, ("smbd_calculate_access_mask "
324 "on file %s returned %s\n",
325 smb_fname_str_dbg(smb_fname),
326 nt_errstr(status)));
327 return status;
330 if (access_mask & (FILE_WRITE_DATA|FILE_APPEND_DATA)) {
331 uint32_t dosattrs;
332 if (!CAN_WRITE(conn)) {
333 return NT_STATUS_ACCESS_DENIED;
335 dosattrs = dos_mode(conn, smb_fname);
336 if (IS_DOS_READONLY(dosattrs)) {
337 return NT_STATUS_ACCESS_DENIED;
341 return smbd_check_access_rights(conn,
342 smb_fname,
343 false,
344 access_mask);
347 /****************************************************************************
348 fd support routines - attempt to do a dos_open.
349 ****************************************************************************/
351 NTSTATUS fd_open(struct connection_struct *conn,
352 files_struct *fsp,
353 int flags,
354 mode_t mode)
356 struct smb_filename *smb_fname = fsp->fsp_name;
357 NTSTATUS status = NT_STATUS_OK;
359 #ifdef O_NOFOLLOW
361 * Never follow symlinks on a POSIX client. The
362 * client should be doing this.
365 if (fsp->posix_open || !lp_follow_symlinks(SNUM(conn))) {
366 flags |= O_NOFOLLOW;
368 #endif
370 fsp->fh->fd = SMB_VFS_OPEN(conn, smb_fname, fsp, flags, mode);
371 if (fsp->fh->fd == -1) {
372 int posix_errno = errno;
373 #ifdef O_NOFOLLOW
374 #if defined(ENOTSUP) && defined(OSF1)
375 /* handle special Tru64 errno */
376 if (errno == ENOTSUP) {
377 posix_errno = ELOOP;
379 #endif /* ENOTSUP */
380 #ifdef EFTYPE
381 /* fix broken NetBSD errno */
382 if (errno == EFTYPE) {
383 posix_errno = ELOOP;
385 #endif /* EFTYPE */
386 /* fix broken FreeBSD errno */
387 if (errno == EMLINK) {
388 posix_errno = ELOOP;
390 #endif /* O_NOFOLLOW */
391 status = map_nt_error_from_unix(posix_errno);
392 if (errno == EMFILE) {
393 static time_t last_warned = 0L;
395 if (time((time_t *) NULL) > last_warned) {
396 DEBUG(0,("Too many open files, unable "
397 "to open more! smbd's max "
398 "open files = %d\n",
399 lp_max_open_files()));
400 last_warned = time((time_t *) NULL);
406 DEBUG(10,("fd_open: name %s, flags = 0%o mode = 0%o, fd = %d. %s\n",
407 smb_fname_str_dbg(smb_fname), flags, (int)mode, fsp->fh->fd,
408 (fsp->fh->fd == -1) ? strerror(errno) : "" ));
410 return status;
413 /****************************************************************************
414 Close the file associated with a fsp.
415 ****************************************************************************/
417 NTSTATUS fd_close(files_struct *fsp)
419 int ret;
421 if (fsp->dptr) {
422 dptr_CloseDir(fsp);
424 if (fsp->fh->fd == -1) {
425 return NT_STATUS_OK; /* What we used to call a stat open. */
427 if (fsp->fh->ref_count > 1) {
428 return NT_STATUS_OK; /* Shared handle. Only close last reference. */
431 ret = SMB_VFS_CLOSE(fsp);
432 fsp->fh->fd = -1;
433 if (ret == -1) {
434 return map_nt_error_from_unix(errno);
436 return NT_STATUS_OK;
439 /****************************************************************************
440 Change the ownership of a file to that of the parent directory.
441 Do this by fd if possible.
442 ****************************************************************************/
444 void change_file_owner_to_parent(connection_struct *conn,
445 const char *inherit_from_dir,
446 files_struct *fsp)
448 struct smb_filename *smb_fname_parent;
449 int ret;
451 smb_fname_parent = synthetic_smb_fname(talloc_tos(), inherit_from_dir,
452 NULL, NULL);
453 if (smb_fname_parent == NULL) {
454 return;
457 ret = SMB_VFS_STAT(conn, smb_fname_parent);
458 if (ret == -1) {
459 DEBUG(0,("change_file_owner_to_parent: failed to stat parent "
460 "directory %s. Error was %s\n",
461 smb_fname_str_dbg(smb_fname_parent),
462 strerror(errno)));
463 TALLOC_FREE(smb_fname_parent);
464 return;
467 if (smb_fname_parent->st.st_ex_uid == fsp->fsp_name->st.st_ex_uid) {
468 /* Already this uid - no need to change. */
469 DEBUG(10,("change_file_owner_to_parent: file %s "
470 "is already owned by uid %d\n",
471 fsp_str_dbg(fsp),
472 (int)fsp->fsp_name->st.st_ex_uid ));
473 TALLOC_FREE(smb_fname_parent);
474 return;
477 become_root();
478 ret = SMB_VFS_FCHOWN(fsp, smb_fname_parent->st.st_ex_uid, (gid_t)-1);
479 unbecome_root();
480 if (ret == -1) {
481 DEBUG(0,("change_file_owner_to_parent: failed to fchown "
482 "file %s to parent directory uid %u. Error "
483 "was %s\n", fsp_str_dbg(fsp),
484 (unsigned int)smb_fname_parent->st.st_ex_uid,
485 strerror(errno) ));
486 } else {
487 DEBUG(10,("change_file_owner_to_parent: changed new file %s to "
488 "parent directory uid %u.\n", fsp_str_dbg(fsp),
489 (unsigned int)smb_fname_parent->st.st_ex_uid));
490 /* Ensure the uid entry is updated. */
491 fsp->fsp_name->st.st_ex_uid = smb_fname_parent->st.st_ex_uid;
494 TALLOC_FREE(smb_fname_parent);
497 NTSTATUS change_dir_owner_to_parent(connection_struct *conn,
498 const char *inherit_from_dir,
499 const char *fname,
500 SMB_STRUCT_STAT *psbuf)
502 struct smb_filename *smb_fname_parent;
503 struct smb_filename *smb_fname_cwd = NULL;
504 char *saved_dir = NULL;
505 TALLOC_CTX *ctx = talloc_tos();
506 NTSTATUS status = NT_STATUS_OK;
507 int ret;
509 smb_fname_parent = synthetic_smb_fname(ctx, inherit_from_dir,
510 NULL, NULL);
511 if (smb_fname_parent == NULL) {
512 return NT_STATUS_NO_MEMORY;
515 ret = SMB_VFS_STAT(conn, smb_fname_parent);
516 if (ret == -1) {
517 status = map_nt_error_from_unix(errno);
518 DEBUG(0,("change_dir_owner_to_parent: failed to stat parent "
519 "directory %s. Error was %s\n",
520 smb_fname_str_dbg(smb_fname_parent),
521 strerror(errno)));
522 goto out;
525 /* We've already done an lstat into psbuf, and we know it's a
526 directory. If we can cd into the directory and the dev/ino
527 are the same then we can safely chown without races as
528 we're locking the directory in place by being in it. This
529 should work on any UNIX (thanks tridge :-). JRA.
532 saved_dir = vfs_GetWd(ctx,conn);
533 if (!saved_dir) {
534 status = map_nt_error_from_unix(errno);
535 DEBUG(0,("change_dir_owner_to_parent: failed to get "
536 "current working directory. Error was %s\n",
537 strerror(errno)));
538 goto out;
541 /* Chdir into the new path. */
542 if (vfs_ChDir(conn, fname) == -1) {
543 status = map_nt_error_from_unix(errno);
544 DEBUG(0,("change_dir_owner_to_parent: failed to change "
545 "current working directory to %s. Error "
546 "was %s\n", fname, strerror(errno) ));
547 goto chdir;
550 smb_fname_cwd = synthetic_smb_fname(ctx, ".", NULL, NULL);
551 if (smb_fname_cwd == NULL) {
552 status = NT_STATUS_NO_MEMORY;
553 goto chdir;
556 ret = SMB_VFS_STAT(conn, smb_fname_cwd);
557 if (ret == -1) {
558 status = map_nt_error_from_unix(errno);
559 DEBUG(0,("change_dir_owner_to_parent: failed to stat "
560 "directory '.' (%s) Error was %s\n",
561 fname, strerror(errno)));
562 goto chdir;
565 /* Ensure we're pointing at the same place. */
566 if (smb_fname_cwd->st.st_ex_dev != psbuf->st_ex_dev ||
567 smb_fname_cwd->st.st_ex_ino != psbuf->st_ex_ino) {
568 DEBUG(0,("change_dir_owner_to_parent: "
569 "device/inode on directory %s changed. "
570 "Refusing to chown !\n", fname ));
571 status = NT_STATUS_ACCESS_DENIED;
572 goto chdir;
575 if (smb_fname_parent->st.st_ex_uid == smb_fname_cwd->st.st_ex_uid) {
576 /* Already this uid - no need to change. */
577 DEBUG(10,("change_dir_owner_to_parent: directory %s "
578 "is already owned by uid %d\n",
579 fname,
580 (int)smb_fname_cwd->st.st_ex_uid ));
581 status = NT_STATUS_OK;
582 goto chdir;
585 become_root();
586 ret = SMB_VFS_LCHOWN(conn, ".", smb_fname_parent->st.st_ex_uid,
587 (gid_t)-1);
588 unbecome_root();
589 if (ret == -1) {
590 status = map_nt_error_from_unix(errno);
591 DEBUG(10,("change_dir_owner_to_parent: failed to chown "
592 "directory %s to parent directory uid %u. "
593 "Error was %s\n", fname,
594 (unsigned int)smb_fname_parent->st.st_ex_uid,
595 strerror(errno) ));
596 } else {
597 DEBUG(10,("change_dir_owner_to_parent: changed ownership of new "
598 "directory %s to parent directory uid %u.\n",
599 fname, (unsigned int)smb_fname_parent->st.st_ex_uid ));
600 /* Ensure the uid entry is updated. */
601 psbuf->st_ex_uid = smb_fname_parent->st.st_ex_uid;
604 chdir:
605 vfs_ChDir(conn,saved_dir);
606 out:
607 TALLOC_FREE(smb_fname_parent);
608 TALLOC_FREE(smb_fname_cwd);
609 return status;
612 /****************************************************************************
613 Open a file - returning a guaranteed ATOMIC indication of if the
614 file was created or not.
615 ****************************************************************************/
617 static NTSTATUS fd_open_atomic(struct connection_struct *conn,
618 files_struct *fsp,
619 int flags,
620 mode_t mode,
621 bool *file_created)
623 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
624 bool file_existed = VALID_STAT(fsp->fsp_name->st);
626 *file_created = false;
628 if (!(flags & O_CREAT)) {
630 * We're not creating the file, just pass through.
632 return fd_open(conn, fsp, flags, mode);
635 if (flags & O_EXCL) {
637 * Fail if already exists, just pass through.
639 status = fd_open(conn, fsp, flags, mode);
642 * Here we've opened with O_CREAT|O_EXCL. If that went
643 * NT_STATUS_OK, we *know* we created this file.
645 *file_created = NT_STATUS_IS_OK(status);
647 return status;
651 * Now it gets tricky. We have O_CREAT, but not O_EXCL.
652 * To know absolutely if we created the file or not,
653 * we can never call O_CREAT without O_EXCL. So if
654 * we think the file existed, try without O_CREAT|O_EXCL.
655 * If we think the file didn't exist, try with
656 * O_CREAT|O_EXCL. Keep bouncing between these two
657 * requests until either the file is created, or
658 * opened. Either way, we keep going until we get
659 * a returnable result (error, or open/create).
662 while(1) {
663 int curr_flags = flags;
665 if (file_existed) {
666 /* Just try open, do not create. */
667 curr_flags &= ~(O_CREAT);
668 status = fd_open(conn, fsp, curr_flags, mode);
669 if (NT_STATUS_EQUAL(status,
670 NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
672 * Someone deleted it in the meantime.
673 * Retry with O_EXCL.
675 file_existed = false;
676 DEBUG(10,("fd_open_atomic: file %s existed. "
677 "Retry.\n",
678 smb_fname_str_dbg(fsp->fsp_name)));
679 continue;
681 } else {
682 /* Try create exclusively, fail if it exists. */
683 curr_flags |= O_EXCL;
684 status = fd_open(conn, fsp, curr_flags, mode);
685 if (NT_STATUS_EQUAL(status,
686 NT_STATUS_OBJECT_NAME_COLLISION)) {
688 * Someone created it in the meantime.
689 * Retry without O_CREAT.
691 file_existed = true;
692 DEBUG(10,("fd_open_atomic: file %s "
693 "did not exist. Retry.\n",
694 smb_fname_str_dbg(fsp->fsp_name)));
695 continue;
697 if (NT_STATUS_IS_OK(status)) {
699 * Here we've opened with O_CREAT|O_EXCL
700 * and got success. We *know* we created
701 * this file.
703 *file_created = true;
706 /* Create is done, or failed. */
707 break;
709 return status;
712 /****************************************************************************
713 Open a file.
714 ****************************************************************************/
716 static NTSTATUS open_file(files_struct *fsp,
717 connection_struct *conn,
718 struct smb_request *req,
719 const char *parent_dir,
720 int flags,
721 mode_t unx_mode,
722 uint32 access_mask, /* client requested access mask. */
723 uint32 open_access_mask, /* what we're actually using in the open. */
724 bool *p_file_created)
726 struct smb_filename *smb_fname = fsp->fsp_name;
727 NTSTATUS status = NT_STATUS_OK;
728 int accmode = (flags & O_ACCMODE);
729 int local_flags = flags;
730 bool file_existed = VALID_STAT(fsp->fsp_name->st);
732 fsp->fh->fd = -1;
733 errno = EPERM;
735 /* Check permissions */
738 * This code was changed after seeing a client open request
739 * containing the open mode of (DENY_WRITE/read-only) with
740 * the 'create if not exist' bit set. The previous code
741 * would fail to open the file read only on a read-only share
742 * as it was checking the flags parameter directly against O_RDONLY,
743 * this was failing as the flags parameter was set to O_RDONLY|O_CREAT.
744 * JRA.
747 if (!CAN_WRITE(conn)) {
748 /* It's a read-only share - fail if we wanted to write. */
749 if(accmode != O_RDONLY || (flags & O_TRUNC) || (flags & O_APPEND)) {
750 DEBUG(3,("Permission denied opening %s\n",
751 smb_fname_str_dbg(smb_fname)));
752 return NT_STATUS_ACCESS_DENIED;
754 if (flags & O_CREAT) {
755 /* We don't want to write - but we must make sure that
756 O_CREAT doesn't create the file if we have write
757 access into the directory.
759 flags &= ~(O_CREAT|O_EXCL);
760 local_flags &= ~(O_CREAT|O_EXCL);
765 * This little piece of insanity is inspired by the
766 * fact that an NT client can open a file for O_RDONLY,
767 * but set the create disposition to FILE_EXISTS_TRUNCATE.
768 * If the client *can* write to the file, then it expects to
769 * truncate the file, even though it is opening for readonly.
770 * Quicken uses this stupid trick in backup file creation...
771 * Thanks *greatly* to "David W. Chapman Jr." <dwcjr@inethouston.net>
772 * for helping track this one down. It didn't bite us in 2.0.x
773 * as we always opened files read-write in that release. JRA.
776 if ((accmode == O_RDONLY) && ((flags & O_TRUNC) == O_TRUNC)) {
777 DEBUG(10,("open_file: truncate requested on read-only open "
778 "for file %s\n", smb_fname_str_dbg(smb_fname)));
779 local_flags = (flags & ~O_ACCMODE)|O_RDWR;
782 if ((open_access_mask & (FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_EXECUTE)) ||
783 (!file_existed && (local_flags & O_CREAT)) ||
784 ((local_flags & O_TRUNC) == O_TRUNC) ) {
785 const char *wild;
786 int ret;
788 #if defined(O_NONBLOCK) && defined(S_ISFIFO)
790 * We would block on opening a FIFO with no one else on the
791 * other end. Do what we used to do and add O_NONBLOCK to the
792 * open flags. JRA.
795 if (file_existed && S_ISFIFO(smb_fname->st.st_ex_mode)) {
796 local_flags &= ~O_TRUNC; /* Can't truncate a FIFO. */
797 local_flags |= O_NONBLOCK;
799 #endif
801 /* Don't create files with Microsoft wildcard characters. */
802 if (fsp->base_fsp) {
804 * wildcard characters are allowed in stream names
805 * only test the basefilename
807 wild = fsp->base_fsp->fsp_name->base_name;
808 } else {
809 wild = smb_fname->base_name;
811 if ((local_flags & O_CREAT) && !file_existed &&
812 ms_has_wild(wild)) {
813 return NT_STATUS_OBJECT_NAME_INVALID;
816 /* Can we access this file ? */
817 if (!fsp->base_fsp) {
818 /* Only do this check on non-stream open. */
819 if (file_existed) {
820 status = smbd_check_access_rights(conn,
821 smb_fname,
822 false,
823 access_mask);
825 if (!NT_STATUS_IS_OK(status)) {
826 DEBUG(10, ("open_file: "
827 "smbd_check_access_rights "
828 "on file %s returned %s\n",
829 smb_fname_str_dbg(smb_fname),
830 nt_errstr(status)));
833 if (!NT_STATUS_IS_OK(status) &&
834 !NT_STATUS_EQUAL(status,
835 NT_STATUS_OBJECT_NAME_NOT_FOUND))
837 return status;
840 if (NT_STATUS_EQUAL(status,
841 NT_STATUS_OBJECT_NAME_NOT_FOUND))
843 DEBUG(10, ("open_file: "
844 "file %s vanished since we "
845 "checked for existence.\n",
846 smb_fname_str_dbg(smb_fname)));
847 file_existed = false;
848 SET_STAT_INVALID(fsp->fsp_name->st);
852 if (!file_existed) {
853 if (!(local_flags & O_CREAT)) {
854 /* File didn't exist and no O_CREAT. */
855 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
858 status = check_parent_access(conn,
859 smb_fname,
860 SEC_DIR_ADD_FILE);
861 if (!NT_STATUS_IS_OK(status)) {
862 DEBUG(10, ("open_file: "
863 "check_parent_access on "
864 "file %s returned %s\n",
865 smb_fname_str_dbg(smb_fname),
866 nt_errstr(status) ));
867 return status;
873 * Actually do the open - if O_TRUNC is needed handle it
874 * below under the share mode lock.
876 status = fd_open_atomic(conn, fsp, local_flags & ~O_TRUNC,
877 unx_mode, p_file_created);
878 if (!NT_STATUS_IS_OK(status)) {
879 DEBUG(3,("Error opening file %s (%s) (local_flags=%d) "
880 "(flags=%d)\n", smb_fname_str_dbg(smb_fname),
881 nt_errstr(status),local_flags,flags));
882 return status;
885 ret = SMB_VFS_FSTAT(fsp, &smb_fname->st);
886 if (ret == -1) {
887 /* If we have an fd, this stat should succeed. */
888 DEBUG(0,("Error doing fstat on open file %s "
889 "(%s)\n",
890 smb_fname_str_dbg(smb_fname),
891 strerror(errno) ));
892 status = map_nt_error_from_unix(errno);
893 fd_close(fsp);
894 return status;
897 if (*p_file_created) {
898 /* We created this file. */
900 bool need_re_stat = false;
901 /* Do all inheritance work after we've
902 done a successful fstat call and filled
903 in the stat struct in fsp->fsp_name. */
905 /* Inherit the ACL if required */
906 if (lp_inherit_permissions(SNUM(conn))) {
907 inherit_access_posix_acl(conn, parent_dir,
908 smb_fname->base_name,
909 unx_mode);
910 need_re_stat = true;
913 /* Change the owner if required. */
914 if (lp_inherit_owner(SNUM(conn))) {
915 change_file_owner_to_parent(conn, parent_dir,
916 fsp);
917 need_re_stat = true;
920 if (need_re_stat) {
921 ret = SMB_VFS_FSTAT(fsp, &smb_fname->st);
922 /* If we have an fd, this stat should succeed. */
923 if (ret == -1) {
924 DEBUG(0,("Error doing fstat on open file %s "
925 "(%s)\n",
926 smb_fname_str_dbg(smb_fname),
927 strerror(errno) ));
931 notify_fname(conn, NOTIFY_ACTION_ADDED,
932 FILE_NOTIFY_CHANGE_FILE_NAME,
933 smb_fname->base_name);
935 } else {
936 fsp->fh->fd = -1; /* What we used to call a stat open. */
937 if (!file_existed) {
938 /* File must exist for a stat open. */
939 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
942 status = smbd_check_access_rights(conn,
943 smb_fname,
944 false,
945 access_mask);
947 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND) &&
948 fsp->posix_open &&
949 S_ISLNK(smb_fname->st.st_ex_mode)) {
950 /* This is a POSIX stat open for delete
951 * or rename on a symlink that points
952 * nowhere. Allow. */
953 DEBUG(10,("open_file: allowing POSIX "
954 "open on bad symlink %s\n",
955 smb_fname_str_dbg(smb_fname)));
956 status = NT_STATUS_OK;
959 if (!NT_STATUS_IS_OK(status)) {
960 DEBUG(10,("open_file: "
961 "smbd_check_access_rights on file "
962 "%s returned %s\n",
963 smb_fname_str_dbg(smb_fname),
964 nt_errstr(status) ));
965 return status;
970 * POSIX allows read-only opens of directories. We don't
971 * want to do this (we use a different code path for this)
972 * so catch a directory open and return an EISDIR. JRA.
975 if(S_ISDIR(smb_fname->st.st_ex_mode)) {
976 fd_close(fsp);
977 errno = EISDIR;
978 return NT_STATUS_FILE_IS_A_DIRECTORY;
981 fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_fname->st);
982 fsp->vuid = req ? req->vuid : UID_FIELD_INVALID;
983 fsp->file_pid = req ? req->smbpid : 0;
984 fsp->can_lock = True;
985 fsp->can_read = ((access_mask & FILE_READ_DATA) != 0);
986 fsp->can_write =
987 CAN_WRITE(conn) &&
988 ((access_mask & (FILE_WRITE_DATA | FILE_APPEND_DATA)) != 0);
989 fsp->print_file = NULL;
990 fsp->modified = False;
991 fsp->sent_oplock_break = NO_BREAK_SENT;
992 fsp->is_directory = False;
993 if (conn->aio_write_behind_list &&
994 is_in_path(smb_fname->base_name, conn->aio_write_behind_list,
995 conn->case_sensitive)) {
996 fsp->aio_write_behind = True;
999 fsp->wcp = NULL; /* Write cache pointer. */
1001 DEBUG(2,("%s opened file %s read=%s write=%s (numopen=%d)\n",
1002 conn->session_info->unix_info->unix_name,
1003 smb_fname_str_dbg(smb_fname),
1004 BOOLSTR(fsp->can_read), BOOLSTR(fsp->can_write),
1005 conn->num_files_open));
1007 errno = 0;
1008 return NT_STATUS_OK;
1011 /****************************************************************************
1012 Check if we can open a file with a share mode.
1013 Returns True if conflict, False if not.
1014 ****************************************************************************/
1016 static bool share_conflict(struct share_mode_entry *entry,
1017 uint32 access_mask,
1018 uint32 share_access)
1020 DEBUG(10,("share_conflict: entry->access_mask = 0x%x, "
1021 "entry->share_access = 0x%x, "
1022 "entry->private_options = 0x%x\n",
1023 (unsigned int)entry->access_mask,
1024 (unsigned int)entry->share_access,
1025 (unsigned int)entry->private_options));
1027 if (server_id_is_disconnected(&entry->pid)) {
1029 * note: cleanup should have been done by
1030 * delay_for_batch_oplocks()
1032 return false;
1035 DEBUG(10,("share_conflict: access_mask = 0x%x, share_access = 0x%x\n",
1036 (unsigned int)access_mask, (unsigned int)share_access));
1038 if ((entry->access_mask & (FILE_WRITE_DATA|
1039 FILE_APPEND_DATA|
1040 FILE_READ_DATA|
1041 FILE_EXECUTE|
1042 DELETE_ACCESS)) == 0) {
1043 DEBUG(10,("share_conflict: No conflict due to "
1044 "entry->access_mask = 0x%x\n",
1045 (unsigned int)entry->access_mask ));
1046 return False;
1049 if ((access_mask & (FILE_WRITE_DATA|
1050 FILE_APPEND_DATA|
1051 FILE_READ_DATA|
1052 FILE_EXECUTE|
1053 DELETE_ACCESS)) == 0) {
1054 DEBUG(10,("share_conflict: No conflict due to "
1055 "access_mask = 0x%x\n",
1056 (unsigned int)access_mask ));
1057 return False;
1060 #if 1 /* JRA TEST - Superdebug. */
1061 #define CHECK_MASK(num, am, right, sa, share) \
1062 DEBUG(10,("share_conflict: [%d] am (0x%x) & right (0x%x) = 0x%x\n", \
1063 (unsigned int)(num), (unsigned int)(am), \
1064 (unsigned int)(right), (unsigned int)(am)&(right) )); \
1065 DEBUG(10,("share_conflict: [%d] sa (0x%x) & share (0x%x) = 0x%x\n", \
1066 (unsigned int)(num), (unsigned int)(sa), \
1067 (unsigned int)(share), (unsigned int)(sa)&(share) )); \
1068 if (((am) & (right)) && !((sa) & (share))) { \
1069 DEBUG(10,("share_conflict: check %d conflict am = 0x%x, right = 0x%x, \
1070 sa = 0x%x, share = 0x%x\n", (num), (unsigned int)(am), (unsigned int)(right), (unsigned int)(sa), \
1071 (unsigned int)(share) )); \
1072 return True; \
1074 #else
1075 #define CHECK_MASK(num, am, right, sa, share) \
1076 if (((am) & (right)) && !((sa) & (share))) { \
1077 DEBUG(10,("share_conflict: check %d conflict am = 0x%x, right = 0x%x, \
1078 sa = 0x%x, share = 0x%x\n", (num), (unsigned int)(am), (unsigned int)(right), (unsigned int)(sa), \
1079 (unsigned int)(share) )); \
1080 return True; \
1082 #endif
1084 CHECK_MASK(1, entry->access_mask, FILE_WRITE_DATA | FILE_APPEND_DATA,
1085 share_access, FILE_SHARE_WRITE);
1086 CHECK_MASK(2, access_mask, FILE_WRITE_DATA | FILE_APPEND_DATA,
1087 entry->share_access, FILE_SHARE_WRITE);
1089 CHECK_MASK(3, entry->access_mask, FILE_READ_DATA | FILE_EXECUTE,
1090 share_access, FILE_SHARE_READ);
1091 CHECK_MASK(4, access_mask, FILE_READ_DATA | FILE_EXECUTE,
1092 entry->share_access, FILE_SHARE_READ);
1094 CHECK_MASK(5, entry->access_mask, DELETE_ACCESS,
1095 share_access, FILE_SHARE_DELETE);
1096 CHECK_MASK(6, access_mask, DELETE_ACCESS,
1097 entry->share_access, FILE_SHARE_DELETE);
1099 DEBUG(10,("share_conflict: No conflict.\n"));
1100 return False;
1103 #if defined(DEVELOPER)
1104 static void validate_my_share_entries(struct smbd_server_connection *sconn,
1105 int num,
1106 struct share_mode_entry *share_entry)
1108 struct server_id self = messaging_server_id(sconn->msg_ctx);
1109 files_struct *fsp;
1111 if (!serverid_equal(&self, &share_entry->pid)) {
1112 return;
1115 if (share_entry->op_mid == 0) {
1116 /* INTERNAL_OPEN_ONLY */
1117 return;
1120 if (!is_valid_share_mode_entry(share_entry)) {
1121 return;
1124 fsp = file_find_dif(sconn, share_entry->id,
1125 share_entry->share_file_id);
1126 if (!fsp) {
1127 DEBUG(0,("validate_my_share_entries: PANIC : %s\n",
1128 share_mode_str(talloc_tos(), num, share_entry) ));
1129 smb_panic("validate_my_share_entries: Cannot match a "
1130 "share entry with an open file\n");
1133 if (((uint16)fsp->oplock_type) != share_entry->op_type) {
1134 goto panic;
1137 return;
1139 panic:
1141 char *str;
1142 DEBUG(0,("validate_my_share_entries: PANIC : %s\n",
1143 share_mode_str(talloc_tos(), num, share_entry) ));
1144 str = talloc_asprintf(talloc_tos(),
1145 "validate_my_share_entries: "
1146 "file %s, oplock_type = 0x%x, op_type = 0x%x\n",
1147 fsp->fsp_name->base_name,
1148 (unsigned int)fsp->oplock_type,
1149 (unsigned int)share_entry->op_type );
1150 smb_panic(str);
1153 #endif
1155 bool is_stat_open(uint32 access_mask)
1157 const uint32_t stat_open_bits =
1158 (SYNCHRONIZE_ACCESS|
1159 FILE_READ_ATTRIBUTES|
1160 FILE_WRITE_ATTRIBUTES);
1162 return (((access_mask & stat_open_bits) != 0) &&
1163 ((access_mask & ~stat_open_bits) == 0));
1166 static bool has_delete_on_close(struct share_mode_lock *lck,
1167 uint32_t name_hash)
1169 struct share_mode_data *d = lck->data;
1170 uint32_t i;
1172 if (d->num_share_modes == 0) {
1173 return false;
1175 if (!is_delete_on_close_set(lck, name_hash)) {
1176 return false;
1178 for (i=0; i<d->num_share_modes; i++) {
1179 if (!share_mode_stale_pid(d, i)) {
1180 return true;
1183 return false;
1186 /****************************************************************************
1187 Deal with share modes
1188 Invariant: Share mode must be locked on entry and exit.
1189 Returns -1 on error, or number of share modes on success (may be zero).
1190 ****************************************************************************/
1192 static NTSTATUS open_mode_check(connection_struct *conn,
1193 struct share_mode_lock *lck,
1194 uint32 access_mask,
1195 uint32 share_access)
1197 int i;
1199 if(lck->data->num_share_modes == 0) {
1200 return NT_STATUS_OK;
1203 if (is_stat_open(access_mask)) {
1204 /* Stat open that doesn't trigger oplock breaks or share mode
1205 * checks... ! JRA. */
1206 return NT_STATUS_OK;
1210 * Check if the share modes will give us access.
1213 #if defined(DEVELOPER)
1214 for(i = 0; i < lck->data->num_share_modes; i++) {
1215 validate_my_share_entries(conn->sconn, i,
1216 &lck->data->share_modes[i]);
1218 #endif
1220 /* Now we check the share modes, after any oplock breaks. */
1221 for(i = 0; i < lck->data->num_share_modes; i++) {
1223 if (!is_valid_share_mode_entry(&lck->data->share_modes[i])) {
1224 continue;
1227 /* someone else has a share lock on it, check to see if we can
1228 * too */
1229 if (share_conflict(&lck->data->share_modes[i],
1230 access_mask, share_access)) {
1232 if (share_mode_stale_pid(lck->data, i)) {
1233 continue;
1236 return NT_STATUS_SHARING_VIOLATION;
1240 return NT_STATUS_OK;
1244 * Send a break message to the oplock holder and delay the open for
1245 * our client.
1248 NTSTATUS send_break_message(struct messaging_context *msg_ctx,
1249 const struct share_mode_entry *exclusive,
1250 uint16_t break_to)
1252 NTSTATUS status;
1253 char msg[MSG_SMB_SHARE_MODE_ENTRY_SIZE];
1255 DEBUG(10, ("Sending break request to PID %s\n",
1256 procid_str_static(&exclusive->pid)));
1258 /* Create the message. */
1259 share_mode_entry_to_message(msg, exclusive);
1261 /* Overload entry->op_type */
1263 * This is a cut from uint32 to uint16, but so far only the lower 3
1264 * bits (LEASE_WRITE/HANDLE/READ are used anyway.
1266 SSVAL(msg,OP_BREAK_MSG_OP_TYPE_OFFSET, break_to);
1268 status = messaging_send_buf(msg_ctx, exclusive->pid,
1269 MSG_SMB_BREAK_REQUEST,
1270 (uint8 *)msg, sizeof(msg));
1271 if (!NT_STATUS_IS_OK(status)) {
1272 DEBUG(3, ("Could not send oplock break message: %s\n",
1273 nt_errstr(status)));
1276 return status;
1280 * Do internal consistency checks on the share mode for a file.
1283 static bool validate_oplock_types(struct share_mode_lock *lck)
1285 struct share_mode_data *d = lck->data;
1286 bool batch = false;
1287 bool ex_or_batch = false;
1288 bool level2 = false;
1289 bool no_oplock = false;
1290 uint32_t num_non_stat_opens = 0;
1291 uint32_t i;
1293 for (i=0; i<d->num_share_modes; i++) {
1294 struct share_mode_entry *e = &d->share_modes[i];
1296 if (!is_valid_share_mode_entry(e)) {
1297 continue;
1300 if (e->op_mid == 0) {
1301 /* INTERNAL_OPEN_ONLY */
1302 continue;
1305 if (e->op_type == NO_OPLOCK && is_stat_open(e->access_mask)) {
1306 /* We ignore stat opens in the table - they
1307 always have NO_OPLOCK and never get or
1308 cause breaks. JRA. */
1309 continue;
1312 num_non_stat_opens += 1;
1314 if (BATCH_OPLOCK_TYPE(e->op_type)) {
1315 /* batch - can only be one. */
1316 if (share_mode_stale_pid(d, i)) {
1317 DEBUG(10, ("Found stale batch oplock\n"));
1318 continue;
1320 if (ex_or_batch || batch || level2 || no_oplock) {
1321 DEBUG(0, ("Bad batch oplock entry %u.",
1322 (unsigned)i));
1323 return false;
1325 batch = true;
1328 if (EXCLUSIVE_OPLOCK_TYPE(e->op_type)) {
1329 if (share_mode_stale_pid(d, i)) {
1330 DEBUG(10, ("Found stale duplicate oplock\n"));
1331 continue;
1333 /* Exclusive or batch - can only be one. */
1334 if (ex_or_batch || level2 || no_oplock) {
1335 DEBUG(0, ("Bad exclusive or batch oplock "
1336 "entry %u.", (unsigned)i));
1337 return false;
1339 ex_or_batch = true;
1342 if (LEVEL_II_OPLOCK_TYPE(e->op_type)) {
1343 if (batch || ex_or_batch) {
1344 if (share_mode_stale_pid(d, i)) {
1345 DEBUG(10, ("Found stale LevelII "
1346 "oplock\n"));
1347 continue;
1349 DEBUG(0, ("Bad levelII oplock entry %u.",
1350 (unsigned)i));
1351 return false;
1353 level2 = true;
1356 if (e->op_type == NO_OPLOCK) {
1357 if (batch || ex_or_batch) {
1358 if (share_mode_stale_pid(d, i)) {
1359 DEBUG(10, ("Found stale NO_OPLOCK "
1360 "entry\n"));
1361 continue;
1363 DEBUG(0, ("Bad no oplock entry %u.",
1364 (unsigned)i));
1365 return false;
1367 no_oplock = true;
1371 remove_stale_share_mode_entries(d);
1373 if ((batch || ex_or_batch) && (num_non_stat_opens != 1)) {
1374 DEBUG(1, ("got batch (%d) or ex (%d) non-exclusively (%d)\n",
1375 (int)batch, (int)ex_or_batch,
1376 (int)d->num_share_modes));
1377 return false;
1380 return true;
1383 static bool delay_for_oplock(files_struct *fsp,
1384 int oplock_request,
1385 const struct smb2_lease *lease,
1386 struct share_mode_lock *lck,
1387 bool have_sharing_violation,
1388 uint32_t create_disposition,
1389 bool first_open_attempt)
1391 struct share_mode_data *d = lck->data;
1392 uint32_t i;
1393 bool delay = false;
1394 bool will_overwrite;
1396 if ((oplock_request & INTERNAL_OPEN_ONLY) ||
1397 is_stat_open(fsp->access_mask)) {
1398 return false;
1401 switch (create_disposition) {
1402 case FILE_SUPERSEDE:
1403 case FILE_OVERWRITE:
1404 case FILE_OVERWRITE_IF:
1405 will_overwrite = true;
1406 break;
1407 default:
1408 will_overwrite = false;
1409 break;
1412 for (i=0; i<d->num_share_modes; i++) {
1413 struct share_mode_entry *e = &d->share_modes[i];
1414 struct share_mode_lease *l = NULL;
1415 uint32_t e_lease_type = get_lease_type(d, e);
1416 uint32_t break_to;
1417 uint32_t delay_mask = 0;
1419 if (e->op_type == LEASE_OPLOCK) {
1420 l = &d->leases[e->lease_idx];
1423 if (have_sharing_violation) {
1424 delay_mask = SMB2_LEASE_HANDLE;
1425 } else {
1426 delay_mask = SMB2_LEASE_WRITE;
1429 break_to = e_lease_type & ~delay_mask;
1431 if (will_overwrite) {
1433 * we'll decide about SMB2_LEASE_READ later.
1435 * Maybe the break will be defered
1437 break_to &= ~SMB2_LEASE_HANDLE;
1440 DEBUG(10, ("entry %u: e_lease_type %u, will_overwrite: %u\n",
1441 (unsigned)i, (unsigned)e_lease_type,
1442 (unsigned)will_overwrite));
1444 if (lease != NULL && l != NULL) {
1445 bool ign;
1447 ign = smb2_lease_equal(fsp_client_guid(fsp),
1448 &lease->lease_key,
1449 &l->client_guid,
1450 &l->lease_key);
1451 if (ign) {
1452 continue;
1456 if ((e_lease_type & ~break_to) == 0) {
1457 if (l != NULL && l->breaking) {
1458 delay = true;
1460 continue;
1463 if (share_mode_stale_pid(d, i)) {
1464 continue;
1467 if (will_overwrite) {
1469 * If we break anyway break to NONE directly.
1470 * Otherwise vfs_set_filelen() will trigger the
1471 * break.
1473 break_to &= ~(SMB2_LEASE_READ|SMB2_LEASE_WRITE);
1476 if (e->op_type != LEASE_OPLOCK) {
1478 * Oplocks only support breaking to R or NONE.
1480 break_to &= ~(SMB2_LEASE_HANDLE|SMB2_LEASE_WRITE);
1483 DEBUG(10, ("breaking from %d to %d\n",
1484 (int)e_lease_type, (int)break_to));
1485 send_break_message(fsp->conn->sconn->msg_ctx, e,
1486 break_to);
1487 if (e_lease_type & delay_mask) {
1488 delay = true;
1490 if (l != NULL && l->breaking && !first_open_attempt) {
1491 delay = true;
1493 continue;
1496 return delay;
1499 static bool file_has_brlocks(files_struct *fsp)
1501 struct byte_range_lock *br_lck;
1503 br_lck = brl_get_locks_readonly(fsp);
1504 if (!br_lck)
1505 return false;
1507 return (brl_num_locks(br_lck) > 0);
1510 int find_share_mode_lease(struct share_mode_data *d,
1511 const struct GUID *client_guid,
1512 const struct smb2_lease_key *key)
1514 uint32_t i;
1516 for (i=0; i<d->num_leases; i++) {
1517 struct share_mode_lease *l = &d->leases[i];
1519 if (smb2_lease_equal(client_guid,
1520 key,
1521 &l->client_guid,
1522 &l->lease_key)) {
1523 return i;
1527 return -1;
1530 struct fsp_lease *find_fsp_lease(struct files_struct *new_fsp,
1531 const struct smb2_lease_key *key,
1532 const struct share_mode_lease *l)
1534 struct files_struct *fsp;
1537 * TODO: Measure how expensive this loop is with thousands of open
1538 * handles...
1541 for (fsp = file_find_di_first(new_fsp->conn->sconn, new_fsp->file_id);
1542 fsp != NULL;
1543 fsp = file_find_di_next(fsp)) {
1545 if (fsp == new_fsp) {
1546 continue;
1548 if (fsp->oplock_type != LEASE_OPLOCK) {
1549 continue;
1551 if (smb2_lease_key_equal(&fsp->lease->lease.lease_key, key)) {
1552 fsp->lease->ref_count += 1;
1553 return fsp->lease;
1557 /* Not found - must be leased in another smbd. */
1558 new_fsp->lease = talloc_zero(new_fsp->conn->sconn, struct fsp_lease);
1559 if (new_fsp->lease == NULL) {
1560 return NULL;
1562 new_fsp->lease->ref_count = 1;
1563 new_fsp->lease->sconn = new_fsp->conn->sconn;
1564 new_fsp->lease->lease.lease_key = *key;
1565 new_fsp->lease->lease.lease_state = l->current_state;
1567 * We internally treat all leases as V2 and update
1568 * the epoch, but when sending breaks it matters if
1569 * the requesting lease was v1 or v2.
1571 new_fsp->lease->lease.lease_version = l->lease_version;
1572 new_fsp->lease->lease.lease_epoch = l->epoch;
1573 return new_fsp->lease;
1576 static NTSTATUS grant_fsp_lease(struct files_struct *fsp,
1577 struct share_mode_lock *lck,
1578 const struct smb2_lease *lease,
1579 uint32_t *p_lease_idx,
1580 uint32_t granted)
1582 struct share_mode_data *d = lck->data;
1583 const struct GUID *client_guid = fsp_client_guid(fsp);
1584 struct share_mode_lease *tmp;
1585 NTSTATUS status;
1586 int idx;
1588 idx = find_share_mode_lease(d, client_guid, &lease->lease_key);
1590 if (idx != -1) {
1591 struct share_mode_lease *l = &d->leases[idx];
1592 bool do_upgrade;
1593 uint32_t existing, requested;
1595 fsp->lease = find_fsp_lease(fsp, &lease->lease_key, l);
1596 if (fsp->lease == NULL) {
1597 DEBUG(1, ("Did not find existing lease for file %s\n",
1598 fsp_str_dbg(fsp)));
1599 return NT_STATUS_NO_MEMORY;
1602 *p_lease_idx = idx;
1605 * Upgrade only if the requested lease is a strict upgrade.
1607 existing = l->current_state;
1608 requested = lease->lease_state;
1611 * Tricky: This test makes sure that "requested" is a
1612 * strict bitwise superset of "existing".
1614 do_upgrade = ((existing & requested) == existing);
1617 * Upgrade only if there's a change.
1619 do_upgrade &= (granted != existing);
1622 * Upgrade only if other leases don't prevent what was asked
1623 * for.
1625 do_upgrade &= (granted == requested);
1628 * only upgrade if we are not in breaking state
1630 do_upgrade &= !l->breaking;
1632 DEBUG(10, ("existing=%"PRIu32", requested=%"PRIu32", "
1633 "granted=%"PRIu32", do_upgrade=%d\n",
1634 existing, requested, granted, (int)do_upgrade));
1636 if (do_upgrade) {
1637 l->current_state = granted;
1638 l->epoch += 1;
1641 /* Ensure we're in sync with current lease state. */
1642 fsp_lease_update(lck, fsp_client_guid(fsp), fsp->lease);
1643 return NT_STATUS_OK;
1647 * Create new lease
1650 tmp = talloc_realloc(d, d->leases, struct share_mode_lease,
1651 d->num_leases+1);
1652 if (tmp == NULL) {
1654 * See [MS-SMB2]
1656 return NT_STATUS_INSUFFICIENT_RESOURCES;
1658 d->leases = tmp;
1660 fsp->lease = talloc_zero(fsp->conn->sconn, struct fsp_lease);
1661 if (fsp->lease == NULL) {
1662 return NT_STATUS_INSUFFICIENT_RESOURCES;
1664 fsp->lease->ref_count = 1;
1665 fsp->lease->sconn = fsp->conn->sconn;
1666 fsp->lease->lease.lease_version = lease->lease_version;
1667 fsp->lease->lease.lease_key = lease->lease_key;
1668 fsp->lease->lease.lease_state = granted;
1669 fsp->lease->lease.lease_epoch = lease->lease_epoch + 1;
1671 *p_lease_idx = d->num_leases;
1673 d->leases[d->num_leases] = (struct share_mode_lease) {
1674 .client_guid = *client_guid,
1675 .lease_key = fsp->lease->lease.lease_key,
1676 .current_state = fsp->lease->lease.lease_state,
1677 .lease_version = fsp->lease->lease.lease_version,
1678 .epoch = fsp->lease->lease.lease_epoch,
1681 status = leases_db_add(client_guid,
1682 &lease->lease_key,
1683 &fsp->file_id,
1684 fsp->conn->connectpath,
1685 fsp->fsp_name->base_name,
1686 fsp->fsp_name->stream_name);
1687 if (!NT_STATUS_IS_OK(status)) {
1688 DEBUG(10, ("%s: leases_db_add failed: %s\n", __func__,
1689 nt_errstr(status)));
1690 TALLOC_FREE(fsp->lease);
1691 return NT_STATUS_INSUFFICIENT_RESOURCES;
1694 d->num_leases += 1;
1695 d->modified = true;
1697 return NT_STATUS_OK;
1700 static bool is_same_lease(const files_struct *fsp,
1701 const struct share_mode_data *d,
1702 const struct share_mode_entry *e,
1703 const struct smb2_lease *lease)
1705 if (e->op_type != LEASE_OPLOCK) {
1706 return false;
1708 if (lease == NULL) {
1709 return false;
1712 return smb2_lease_equal(fsp_client_guid(fsp),
1713 &lease->lease_key,
1714 &d->leases[e->lease_idx].client_guid,
1715 &d->leases[e->lease_idx].lease_key);
1718 static NTSTATUS grant_fsp_oplock_type(struct smb_request *req,
1719 struct files_struct *fsp,
1720 struct share_mode_lock *lck,
1721 int oplock_request,
1722 struct smb2_lease *lease)
1724 struct share_mode_data *d = lck->data;
1725 bool got_handle_lease = false;
1726 bool got_oplock = false;
1727 uint32_t i;
1728 uint32_t granted;
1729 uint32_t lease_idx = UINT32_MAX;
1730 bool ok;
1731 NTSTATUS status;
1733 if (oplock_request & INTERNAL_OPEN_ONLY) {
1734 /* No oplocks on internal open. */
1735 oplock_request = NO_OPLOCK;
1736 DEBUG(10,("grant_fsp_oplock_type: oplock type 0x%x on file %s\n",
1737 fsp->oplock_type, fsp_str_dbg(fsp)));
1740 if (oplock_request == LEASE_OPLOCK) {
1741 if (lease == NULL) {
1743 * The SMB2 layer should have checked this
1745 return NT_STATUS_INTERNAL_ERROR;
1748 granted = lease->lease_state;
1750 if (lp_kernel_oplocks(SNUM(fsp->conn))) {
1751 DEBUG(10, ("No lease granted because kernel oplocks are enabled\n"));
1752 granted = SMB2_LEASE_NONE;
1754 if ((granted & (SMB2_LEASE_READ|SMB2_LEASE_WRITE)) == 0) {
1755 DEBUG(10, ("No read or write lease requested\n"));
1756 granted = SMB2_LEASE_NONE;
1758 if (granted == SMB2_LEASE_WRITE) {
1759 DEBUG(10, ("pure write lease requested\n"));
1760 granted = SMB2_LEASE_NONE;
1762 if (granted == (SMB2_LEASE_WRITE|SMB2_LEASE_HANDLE)) {
1763 DEBUG(10, ("write and handle lease requested\n"));
1764 granted = SMB2_LEASE_NONE;
1766 } else {
1767 granted = map_oplock_to_lease_type(
1768 oplock_request & ~SAMBA_PRIVATE_OPLOCK_MASK);
1771 if (lp_locking(fsp->conn->params) && file_has_brlocks(fsp)) {
1772 DEBUG(10,("grant_fsp_oplock_type: file %s has byte range locks\n",
1773 fsp_str_dbg(fsp)));
1774 granted &= ~SMB2_LEASE_READ;
1777 for (i=0; i<d->num_share_modes; i++) {
1778 struct share_mode_entry *e = &d->share_modes[i];
1779 uint32_t e_lease_type;
1781 e_lease_type = get_lease_type(d, e);
1783 if ((granted & SMB2_LEASE_WRITE) &&
1784 !is_same_lease(fsp, d, e, lease) &&
1785 !share_mode_stale_pid(d, i)) {
1787 * Can grant only one writer
1789 granted &= ~SMB2_LEASE_WRITE;
1792 if ((e_lease_type & SMB2_LEASE_HANDLE) && !got_handle_lease &&
1793 !share_mode_stale_pid(d, i)) {
1794 got_handle_lease = true;
1797 if ((e->op_type != LEASE_OPLOCK) && !got_oplock &&
1798 !share_mode_stale_pid(d, i)) {
1799 got_oplock = true;
1803 if ((granted & SMB2_LEASE_READ) && !(granted & SMB2_LEASE_WRITE)) {
1804 bool allow_level2 =
1805 (global_client_caps & CAP_LEVEL_II_OPLOCKS) &&
1806 lp_level2_oplocks(SNUM(fsp->conn));
1808 if (!allow_level2) {
1809 granted = SMB2_LEASE_NONE;
1813 if (oplock_request == LEASE_OPLOCK) {
1814 if (got_oplock) {
1815 granted &= ~SMB2_LEASE_HANDLE;
1818 fsp->oplock_type = LEASE_OPLOCK;
1820 status = grant_fsp_lease(fsp, lck, lease, &lease_idx,
1821 granted);
1822 if (!NT_STATUS_IS_OK(status)) {
1823 return status;
1826 *lease = fsp->lease->lease;
1827 DEBUG(10, ("lease_state=%d\n", lease->lease_state));
1828 } else {
1829 if (got_handle_lease) {
1830 granted = SMB2_LEASE_NONE;
1833 switch (granted) {
1834 case SMB2_LEASE_READ|SMB2_LEASE_WRITE|SMB2_LEASE_HANDLE:
1835 fsp->oplock_type = BATCH_OPLOCK|EXCLUSIVE_OPLOCK;
1836 break;
1837 case SMB2_LEASE_READ|SMB2_LEASE_WRITE:
1838 fsp->oplock_type = EXCLUSIVE_OPLOCK;
1839 break;
1840 case SMB2_LEASE_READ|SMB2_LEASE_HANDLE:
1841 case SMB2_LEASE_READ:
1842 fsp->oplock_type = LEVEL_II_OPLOCK;
1843 break;
1844 default:
1845 fsp->oplock_type = NO_OPLOCK;
1846 break;
1849 status = set_file_oplock(fsp);
1850 if (!NT_STATUS_IS_OK(status)) {
1852 * Could not get the kernel oplock
1854 fsp->oplock_type = NO_OPLOCK;
1858 ok = set_share_mode(lck, fsp, get_current_uid(fsp->conn),
1859 req ? req->mid : 0,
1860 fsp->oplock_type,
1861 lease_idx);
1862 if (!ok) {
1863 return NT_STATUS_NO_MEMORY;
1866 ok = update_num_read_oplocks(fsp, lck);
1867 if (!ok) {
1868 del_share_mode(lck, fsp);
1869 return NT_STATUS_INTERNAL_ERROR;
1872 DEBUG(10,("grant_fsp_oplock_type: oplock type 0x%x on file %s\n",
1873 fsp->oplock_type, fsp_str_dbg(fsp)));
1875 return NT_STATUS_OK;
1878 static bool request_timed_out(struct timeval request_time,
1879 struct timeval timeout)
1881 struct timeval now, end_time;
1882 GetTimeOfDay(&now);
1883 end_time = timeval_sum(&request_time, &timeout);
1884 return (timeval_compare(&end_time, &now) < 0);
1887 struct defer_open_state {
1888 struct smbXsrv_connection *xconn;
1889 uint64_t mid;
1892 static void defer_open_done(struct tevent_req *req);
1894 /****************************************************************************
1895 Handle the 1 second delay in returning a SHARING_VIOLATION error.
1896 ****************************************************************************/
1898 static void defer_open(struct share_mode_lock *lck,
1899 struct timeval request_time,
1900 struct timeval timeout,
1901 struct smb_request *req,
1902 struct deferred_open_record *state)
1904 struct deferred_open_record *open_rec;
1906 DEBUG(10,("defer_open_sharing_error: time [%u.%06u] adding deferred "
1907 "open entry for mid %llu\n",
1908 (unsigned int)request_time.tv_sec,
1909 (unsigned int)request_time.tv_usec,
1910 (unsigned long long)req->mid));
1912 open_rec = talloc(NULL, struct deferred_open_record);
1913 if (open_rec == NULL) {
1914 TALLOC_FREE(lck);
1915 exit_server("talloc failed");
1918 *open_rec = *state;
1920 if (lck) {
1921 struct defer_open_state *watch_state;
1922 struct tevent_req *watch_req;
1923 bool ret;
1925 watch_state = talloc(open_rec, struct defer_open_state);
1926 if (watch_state == NULL) {
1927 exit_server("talloc failed");
1929 watch_state->xconn = req->xconn;
1930 watch_state->mid = req->mid;
1932 DEBUG(10, ("defering mid %llu\n",
1933 (unsigned long long)req->mid));
1935 watch_req = dbwrap_record_watch_send(
1936 watch_state, req->sconn->ev_ctx, lck->data->record,
1937 req->sconn->msg_ctx);
1938 if (watch_req == NULL) {
1939 exit_server("Could not watch share mode record");
1941 tevent_req_set_callback(watch_req, defer_open_done,
1942 watch_state);
1944 ret = tevent_req_set_endtime(
1945 watch_req, req->sconn->ev_ctx,
1946 timeval_sum(&request_time, &timeout));
1947 SMB_ASSERT(ret);
1950 if (!push_deferred_open_message_smb(req, request_time, timeout,
1951 state->id, open_rec)) {
1952 TALLOC_FREE(lck);
1953 exit_server("push_deferred_open_message_smb failed");
1957 static void defer_open_done(struct tevent_req *req)
1959 struct defer_open_state *state = tevent_req_callback_data(
1960 req, struct defer_open_state);
1961 NTSTATUS status;
1962 bool ret;
1964 status = dbwrap_record_watch_recv(req, talloc_tos(), NULL);
1965 TALLOC_FREE(req);
1966 if (!NT_STATUS_IS_OK(status)) {
1967 DEBUG(5, ("dbwrap_record_watch_recv returned %s\n",
1968 nt_errstr(status)));
1970 * Even if it failed, retry anyway. TODO: We need a way to
1971 * tell a re-scheduled open about that error.
1975 DEBUG(10, ("scheduling mid %llu\n", (unsigned long long)state->mid));
1977 ret = schedule_deferred_open_message_smb(state->xconn, state->mid);
1978 SMB_ASSERT(ret);
1979 TALLOC_FREE(state);
1983 /****************************************************************************
1984 On overwrite open ensure that the attributes match.
1985 ****************************************************************************/
1987 static bool open_match_attributes(connection_struct *conn,
1988 uint32 old_dos_attr,
1989 uint32 new_dos_attr,
1990 mode_t existing_unx_mode,
1991 mode_t new_unx_mode,
1992 mode_t *returned_unx_mode)
1994 uint32 noarch_old_dos_attr, noarch_new_dos_attr;
1996 noarch_old_dos_attr = (old_dos_attr & ~FILE_ATTRIBUTE_ARCHIVE);
1997 noarch_new_dos_attr = (new_dos_attr & ~FILE_ATTRIBUTE_ARCHIVE);
1999 if((noarch_old_dos_attr == 0 && noarch_new_dos_attr != 0) ||
2000 (noarch_old_dos_attr != 0 && ((noarch_old_dos_attr & noarch_new_dos_attr) == noarch_old_dos_attr))) {
2001 *returned_unx_mode = new_unx_mode;
2002 } else {
2003 *returned_unx_mode = (mode_t)0;
2006 DEBUG(10,("open_match_attributes: old_dos_attr = 0x%x, "
2007 "existing_unx_mode = 0%o, new_dos_attr = 0x%x "
2008 "returned_unx_mode = 0%o\n",
2009 (unsigned int)old_dos_attr,
2010 (unsigned int)existing_unx_mode,
2011 (unsigned int)new_dos_attr,
2012 (unsigned int)*returned_unx_mode ));
2014 /* If we're mapping SYSTEM and HIDDEN ensure they match. */
2015 if (lp_map_system(SNUM(conn)) || lp_store_dos_attributes(SNUM(conn))) {
2016 if ((old_dos_attr & FILE_ATTRIBUTE_SYSTEM) &&
2017 !(new_dos_attr & FILE_ATTRIBUTE_SYSTEM)) {
2018 return False;
2021 if (lp_map_hidden(SNUM(conn)) || lp_store_dos_attributes(SNUM(conn))) {
2022 if ((old_dos_attr & FILE_ATTRIBUTE_HIDDEN) &&
2023 !(new_dos_attr & FILE_ATTRIBUTE_HIDDEN)) {
2024 return False;
2027 return True;
2030 /****************************************************************************
2031 Special FCB or DOS processing in the case of a sharing violation.
2032 Try and find a duplicated file handle.
2033 ****************************************************************************/
2035 static NTSTATUS fcb_or_dos_open(struct smb_request *req,
2036 connection_struct *conn,
2037 files_struct *fsp_to_dup_into,
2038 const struct smb_filename *smb_fname,
2039 struct file_id id,
2040 uint16 file_pid,
2041 uint64_t vuid,
2042 uint32 access_mask,
2043 uint32 share_access,
2044 uint32 create_options)
2046 files_struct *fsp;
2048 DEBUG(5,("fcb_or_dos_open: attempting old open semantics for "
2049 "file %s.\n", smb_fname_str_dbg(smb_fname)));
2051 for(fsp = file_find_di_first(conn->sconn, id); fsp;
2052 fsp = file_find_di_next(fsp)) {
2054 DEBUG(10,("fcb_or_dos_open: checking file %s, fd = %d, "
2055 "vuid = %llu, file_pid = %u, private_options = 0x%x "
2056 "access_mask = 0x%x\n", fsp_str_dbg(fsp),
2057 fsp->fh->fd, (unsigned long long)fsp->vuid,
2058 (unsigned int)fsp->file_pid,
2059 (unsigned int)fsp->fh->private_options,
2060 (unsigned int)fsp->access_mask ));
2062 if (fsp != fsp_to_dup_into &&
2063 fsp->fh->fd != -1 &&
2064 fsp->vuid == vuid &&
2065 fsp->file_pid == file_pid &&
2066 (fsp->fh->private_options & (NTCREATEX_OPTIONS_PRIVATE_DENY_DOS |
2067 NTCREATEX_OPTIONS_PRIVATE_DENY_FCB)) &&
2068 (fsp->access_mask & FILE_WRITE_DATA) &&
2069 strequal(fsp->fsp_name->base_name, smb_fname->base_name) &&
2070 strequal(fsp->fsp_name->stream_name,
2071 smb_fname->stream_name)) {
2072 DEBUG(10,("fcb_or_dos_open: file match\n"));
2073 break;
2077 if (!fsp) {
2078 return NT_STATUS_NOT_FOUND;
2081 /* quite an insane set of semantics ... */
2082 if (is_executable(smb_fname->base_name) &&
2083 (fsp->fh->private_options & NTCREATEX_OPTIONS_PRIVATE_DENY_DOS)) {
2084 DEBUG(10,("fcb_or_dos_open: file fail due to is_executable.\n"));
2085 return NT_STATUS_INVALID_PARAMETER;
2088 /* We need to duplicate this fsp. */
2089 return dup_file_fsp(req, fsp, access_mask, share_access,
2090 create_options, fsp_to_dup_into);
2093 static void schedule_defer_open(struct share_mode_lock *lck,
2094 struct file_id id,
2095 struct timeval request_time,
2096 struct smb_request *req)
2098 struct deferred_open_record state;
2100 /* This is a relative time, added to the absolute
2101 request_time value to get the absolute timeout time.
2102 Note that if this is the second or greater time we enter
2103 this codepath for this particular request mid then
2104 request_time is left as the absolute time of the *first*
2105 time this request mid was processed. This is what allows
2106 the request to eventually time out. */
2108 struct timeval timeout;
2110 /* Normally the smbd we asked should respond within
2111 * OPLOCK_BREAK_TIMEOUT seconds regardless of whether
2112 * the client did, give twice the timeout as a safety
2113 * measure here in case the other smbd is stuck
2114 * somewhere else. */
2116 timeout = timeval_set(OPLOCK_BREAK_TIMEOUT*2, 0);
2118 /* Nothing actually uses state.delayed_for_oplocks
2119 but it's handy to differentiate in debug messages
2120 between a 30 second delay due to oplock break, and
2121 a 1 second delay for share mode conflicts. */
2123 state.delayed_for_oplocks = True;
2124 state.async_open = false;
2125 state.id = id;
2127 if (!request_timed_out(request_time, timeout)) {
2128 defer_open(lck, request_time, timeout, req, &state);
2132 /****************************************************************************
2133 Reschedule an open call that went asynchronous.
2134 ****************************************************************************/
2136 static void schedule_async_open(struct timeval request_time,
2137 struct smb_request *req)
2139 struct deferred_open_record state;
2140 struct timeval timeout;
2142 timeout = timeval_set(20, 0);
2144 ZERO_STRUCT(state);
2145 state.delayed_for_oplocks = false;
2146 state.async_open = true;
2148 if (!request_timed_out(request_time, timeout)) {
2149 defer_open(NULL, request_time, timeout, req, &state);
2153 /****************************************************************************
2154 Work out what access_mask to use from what the client sent us.
2155 ****************************************************************************/
2157 static NTSTATUS smbd_calculate_maximum_allowed_access(
2158 connection_struct *conn,
2159 const struct smb_filename *smb_fname,
2160 bool use_privs,
2161 uint32_t *p_access_mask)
2163 struct security_descriptor *sd;
2164 uint32_t access_granted;
2165 NTSTATUS status;
2167 if (!use_privs && (get_current_uid(conn) == (uid_t)0)) {
2168 *p_access_mask |= FILE_GENERIC_ALL;
2169 return NT_STATUS_OK;
2172 status = SMB_VFS_GET_NT_ACL(conn, smb_fname->base_name,
2173 (SECINFO_OWNER |
2174 SECINFO_GROUP |
2175 SECINFO_DACL),
2176 talloc_tos(), &sd);
2178 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
2180 * File did not exist
2182 *p_access_mask = FILE_GENERIC_ALL;
2183 return NT_STATUS_OK;
2185 if (!NT_STATUS_IS_OK(status)) {
2186 DEBUG(10,("Could not get acl on file %s: %s\n",
2187 smb_fname_str_dbg(smb_fname),
2188 nt_errstr(status)));
2189 return NT_STATUS_ACCESS_DENIED;
2193 * If we can access the path to this file, by
2194 * default we have FILE_READ_ATTRIBUTES from the
2195 * containing directory. See the section:
2196 * "Algorithm to Check Access to an Existing File"
2197 * in MS-FSA.pdf.
2199 * se_file_access_check()
2200 * also takes care of owner WRITE_DAC and READ_CONTROL.
2202 status = se_file_access_check(sd,
2203 get_current_nttok(conn),
2204 use_privs,
2205 (*p_access_mask & ~FILE_READ_ATTRIBUTES),
2206 &access_granted);
2208 TALLOC_FREE(sd);
2210 if (!NT_STATUS_IS_OK(status)) {
2211 DEBUG(10, ("Access denied on file %s: "
2212 "when calculating maximum access\n",
2213 smb_fname_str_dbg(smb_fname)));
2214 return NT_STATUS_ACCESS_DENIED;
2216 *p_access_mask = (access_granted | FILE_READ_ATTRIBUTES);
2218 if (!(access_granted & DELETE_ACCESS)) {
2219 if (can_delete_file_in_directory(conn, smb_fname)) {
2220 *p_access_mask |= DELETE_ACCESS;
2224 return NT_STATUS_OK;
2227 NTSTATUS smbd_calculate_access_mask(connection_struct *conn,
2228 const struct smb_filename *smb_fname,
2229 bool use_privs,
2230 uint32_t access_mask,
2231 uint32_t *access_mask_out)
2233 NTSTATUS status;
2234 uint32_t orig_access_mask = access_mask;
2235 uint32_t rejected_share_access;
2238 * Convert GENERIC bits to specific bits.
2241 se_map_generic(&access_mask, &file_generic_mapping);
2243 /* Calculate MAXIMUM_ALLOWED_ACCESS if requested. */
2244 if (access_mask & MAXIMUM_ALLOWED_ACCESS) {
2246 status = smbd_calculate_maximum_allowed_access(
2247 conn, smb_fname, use_privs, &access_mask);
2249 if (!NT_STATUS_IS_OK(status)) {
2250 return status;
2253 access_mask &= conn->share_access;
2256 rejected_share_access = access_mask & ~(conn->share_access);
2258 if (rejected_share_access) {
2259 DEBUG(10, ("smbd_calculate_access_mask: Access denied on "
2260 "file %s: rejected by share access mask[0x%08X] "
2261 "orig[0x%08X] mapped[0x%08X] reject[0x%08X]\n",
2262 smb_fname_str_dbg(smb_fname),
2263 conn->share_access,
2264 orig_access_mask, access_mask,
2265 rejected_share_access));
2266 return NT_STATUS_ACCESS_DENIED;
2269 *access_mask_out = access_mask;
2270 return NT_STATUS_OK;
2273 /****************************************************************************
2274 Remove the deferred open entry under lock.
2275 ****************************************************************************/
2277 /****************************************************************************
2278 Return true if this is a state pointer to an asynchronous create.
2279 ****************************************************************************/
2281 bool is_deferred_open_async(const struct deferred_open_record *rec)
2283 return rec->async_open;
2286 static bool clear_ads(uint32_t create_disposition)
2288 bool ret = false;
2290 switch (create_disposition) {
2291 case FILE_SUPERSEDE:
2292 case FILE_OVERWRITE_IF:
2293 case FILE_OVERWRITE:
2294 ret = true;
2295 break;
2296 default:
2297 break;
2299 return ret;
2302 static int disposition_to_open_flags(uint32_t create_disposition)
2304 int ret = 0;
2307 * Currently we're using FILE_SUPERSEDE as the same as
2308 * FILE_OVERWRITE_IF but they really are
2309 * different. FILE_SUPERSEDE deletes an existing file
2310 * (requiring delete access) then recreates it.
2313 switch (create_disposition) {
2314 case FILE_SUPERSEDE:
2315 case FILE_OVERWRITE_IF:
2317 * If file exists replace/overwrite. If file doesn't
2318 * exist create.
2320 ret = O_CREAT|O_TRUNC;
2321 break;
2323 case FILE_OPEN:
2325 * If file exists open. If file doesn't exist error.
2327 ret = 0;
2328 break;
2330 case FILE_OVERWRITE:
2332 * If file exists overwrite. If file doesn't exist
2333 * error.
2335 ret = O_TRUNC;
2336 break;
2338 case FILE_CREATE:
2340 * If file exists error. If file doesn't exist create.
2342 ret = O_CREAT|O_EXCL;
2343 break;
2345 case FILE_OPEN_IF:
2347 * If file exists open. If file doesn't exist create.
2349 ret = O_CREAT;
2350 break;
2352 return ret;
2355 static int calculate_open_access_flags(uint32_t access_mask,
2356 int oplock_request,
2357 uint32_t private_flags)
2359 bool need_write, need_read;
2362 * Note that we ignore the append flag as append does not
2363 * mean the same thing under DOS and Unix.
2366 need_write = (access_mask & (FILE_WRITE_DATA | FILE_APPEND_DATA));
2367 if (!need_write) {
2368 return O_RDONLY;
2371 /* DENY_DOS opens are always underlying read-write on the
2372 file handle, no matter what the requested access mask
2373 says. */
2375 need_read =
2376 ((private_flags & NTCREATEX_OPTIONS_PRIVATE_DENY_DOS) ||
2377 access_mask & (FILE_READ_ATTRIBUTES|FILE_READ_DATA|
2378 FILE_READ_EA|FILE_EXECUTE));
2380 if (!need_read) {
2381 return O_WRONLY;
2383 return O_RDWR;
2386 /****************************************************************************
2387 Open a file with a share mode. Passed in an already created files_struct *.
2388 ****************************************************************************/
2390 static NTSTATUS open_file_ntcreate(connection_struct *conn,
2391 struct smb_request *req,
2392 uint32 access_mask, /* access bits (FILE_READ_DATA etc.) */
2393 uint32 share_access, /* share constants (FILE_SHARE_READ etc) */
2394 uint32 create_disposition, /* FILE_OPEN_IF etc. */
2395 uint32 create_options, /* options such as delete on close. */
2396 uint32 new_dos_attributes, /* attributes used for new file. */
2397 int oplock_request, /* internal Samba oplock codes. */
2398 struct smb2_lease *lease,
2399 /* Information (FILE_EXISTS etc.) */
2400 uint32_t private_flags, /* Samba specific flags. */
2401 int *pinfo,
2402 files_struct *fsp)
2404 struct smb_filename *smb_fname = fsp->fsp_name;
2405 int flags=0;
2406 int flags2=0;
2407 bool file_existed = VALID_STAT(smb_fname->st);
2408 bool def_acl = False;
2409 bool posix_open = False;
2410 bool new_file_created = False;
2411 bool first_open_attempt = true;
2412 NTSTATUS fsp_open = NT_STATUS_ACCESS_DENIED;
2413 mode_t new_unx_mode = (mode_t)0;
2414 mode_t unx_mode = (mode_t)0;
2415 int info;
2416 uint32 existing_dos_attributes = 0;
2417 struct timeval request_time = timeval_zero();
2418 struct share_mode_lock *lck = NULL;
2419 uint32 open_access_mask = access_mask;
2420 NTSTATUS status;
2421 char *parent_dir;
2422 SMB_STRUCT_STAT saved_stat = smb_fname->st;
2423 struct timespec old_write_time;
2424 struct file_id id;
2426 if (conn->printer) {
2428 * Printers are handled completely differently.
2429 * Most of the passed parameters are ignored.
2432 if (pinfo) {
2433 *pinfo = FILE_WAS_CREATED;
2436 DEBUG(10, ("open_file_ntcreate: printer open fname=%s\n",
2437 smb_fname_str_dbg(smb_fname)));
2439 if (!req) {
2440 DEBUG(0,("open_file_ntcreate: printer open without "
2441 "an SMB request!\n"));
2442 return NT_STATUS_INTERNAL_ERROR;
2445 return print_spool_open(fsp, smb_fname->base_name,
2446 req->vuid);
2449 if (!parent_dirname(talloc_tos(), smb_fname->base_name, &parent_dir,
2450 NULL)) {
2451 return NT_STATUS_NO_MEMORY;
2454 if (new_dos_attributes & FILE_FLAG_POSIX_SEMANTICS) {
2455 posix_open = True;
2456 unx_mode = (mode_t)(new_dos_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
2457 new_dos_attributes = 0;
2458 } else {
2459 /* Windows allows a new file to be created and
2460 silently removes a FILE_ATTRIBUTE_DIRECTORY
2461 sent by the client. Do the same. */
2463 new_dos_attributes &= ~FILE_ATTRIBUTE_DIRECTORY;
2465 /* We add FILE_ATTRIBUTE_ARCHIVE to this as this mode is only used if the file is
2466 * created new. */
2467 unx_mode = unix_mode(conn, new_dos_attributes | FILE_ATTRIBUTE_ARCHIVE,
2468 smb_fname, parent_dir);
2471 DEBUG(10, ("open_file_ntcreate: fname=%s, dos_attrs=0x%x "
2472 "access_mask=0x%x share_access=0x%x "
2473 "create_disposition = 0x%x create_options=0x%x "
2474 "unix mode=0%o oplock_request=%d private_flags = 0x%x\n",
2475 smb_fname_str_dbg(smb_fname), new_dos_attributes,
2476 access_mask, share_access, create_disposition,
2477 create_options, (unsigned int)unx_mode, oplock_request,
2478 (unsigned int)private_flags));
2480 if (req == NULL) {
2481 /* Ensure req == NULL means INTERNAL_OPEN_ONLY */
2482 SMB_ASSERT(((oplock_request & INTERNAL_OPEN_ONLY) != 0));
2483 } else {
2484 /* And req != NULL means no INTERNAL_OPEN_ONLY */
2485 SMB_ASSERT(((oplock_request & INTERNAL_OPEN_ONLY) == 0));
2489 * Only non-internal opens can be deferred at all
2492 if (req) {
2493 struct deferred_open_record *open_rec;
2494 if (get_deferred_open_message_state(req,
2495 &request_time,
2496 &open_rec)) {
2497 /* Remember the absolute time of the original
2498 request with this mid. We'll use it later to
2499 see if this has timed out. */
2501 /* If it was an async create retry, the file
2502 didn't exist. */
2504 if (is_deferred_open_async(open_rec)) {
2505 SET_STAT_INVALID(smb_fname->st);
2506 file_existed = false;
2509 /* Ensure we don't reprocess this message. */
2510 remove_deferred_open_message_smb(req->xconn, req->mid);
2512 first_open_attempt = false;
2516 if (!posix_open) {
2517 new_dos_attributes &= SAMBA_ATTRIBUTES_MASK;
2518 if (file_existed) {
2519 existing_dos_attributes = dos_mode(conn, smb_fname);
2523 /* ignore any oplock requests if oplocks are disabled */
2524 if (!lp_oplocks(SNUM(conn)) ||
2525 IS_VETO_OPLOCK_PATH(conn, smb_fname->base_name)) {
2526 /* Mask off everything except the private Samba bits. */
2527 oplock_request &= SAMBA_PRIVATE_OPLOCK_MASK;
2530 /* this is for OS/2 long file names - say we don't support them */
2531 if (!lp_posix_pathnames() && strstr(smb_fname->base_name,".+,;=[].")) {
2532 /* OS/2 Workplace shell fix may be main code stream in a later
2533 * release. */
2534 DEBUG(5,("open_file_ntcreate: OS/2 long filenames are not "
2535 "supported.\n"));
2536 if (use_nt_status()) {
2537 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2539 return NT_STATUS_DOS(ERRDOS, ERRcannotopen);
2542 switch( create_disposition ) {
2543 case FILE_OPEN:
2544 /* If file exists open. If file doesn't exist error. */
2545 if (!file_existed) {
2546 DEBUG(5,("open_file_ntcreate: FILE_OPEN "
2547 "requested for file %s and file "
2548 "doesn't exist.\n",
2549 smb_fname_str_dbg(smb_fname)));
2550 errno = ENOENT;
2551 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2553 break;
2555 case FILE_OVERWRITE:
2556 /* If file exists overwrite. If file doesn't exist
2557 * error. */
2558 if (!file_existed) {
2559 DEBUG(5,("open_file_ntcreate: FILE_OVERWRITE "
2560 "requested for file %s and file "
2561 "doesn't exist.\n",
2562 smb_fname_str_dbg(smb_fname) ));
2563 errno = ENOENT;
2564 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2566 break;
2568 case FILE_CREATE:
2569 /* If file exists error. If file doesn't exist
2570 * create. */
2571 if (file_existed) {
2572 DEBUG(5,("open_file_ntcreate: FILE_CREATE "
2573 "requested for file %s and file "
2574 "already exists.\n",
2575 smb_fname_str_dbg(smb_fname)));
2576 if (S_ISDIR(smb_fname->st.st_ex_mode)) {
2577 errno = EISDIR;
2578 } else {
2579 errno = EEXIST;
2581 return map_nt_error_from_unix(errno);
2583 break;
2585 case FILE_SUPERSEDE:
2586 case FILE_OVERWRITE_IF:
2587 case FILE_OPEN_IF:
2588 break;
2589 default:
2590 return NT_STATUS_INVALID_PARAMETER;
2593 flags2 = disposition_to_open_flags(create_disposition);
2595 /* We only care about matching attributes on file exists and
2596 * overwrite. */
2598 if (!posix_open && file_existed &&
2599 ((create_disposition == FILE_OVERWRITE) ||
2600 (create_disposition == FILE_OVERWRITE_IF))) {
2601 if (!open_match_attributes(conn, existing_dos_attributes,
2602 new_dos_attributes,
2603 smb_fname->st.st_ex_mode,
2604 unx_mode, &new_unx_mode)) {
2605 DEBUG(5,("open_file_ntcreate: attributes missmatch "
2606 "for file %s (%x %x) (0%o, 0%o)\n",
2607 smb_fname_str_dbg(smb_fname),
2608 existing_dos_attributes,
2609 new_dos_attributes,
2610 (unsigned int)smb_fname->st.st_ex_mode,
2611 (unsigned int)unx_mode ));
2612 errno = EACCES;
2613 return NT_STATUS_ACCESS_DENIED;
2617 status = smbd_calculate_access_mask(conn, smb_fname,
2618 false,
2619 access_mask,
2620 &access_mask);
2621 if (!NT_STATUS_IS_OK(status)) {
2622 DEBUG(10, ("open_file_ntcreate: smbd_calculate_access_mask "
2623 "on file %s returned %s\n",
2624 smb_fname_str_dbg(smb_fname), nt_errstr(status)));
2625 return status;
2628 open_access_mask = access_mask;
2630 if (flags2 & O_TRUNC) {
2631 open_access_mask |= FILE_WRITE_DATA; /* This will cause oplock breaks. */
2634 DEBUG(10, ("open_file_ntcreate: fname=%s, after mapping "
2635 "access_mask=0x%x\n", smb_fname_str_dbg(smb_fname),
2636 access_mask));
2639 * Note that we ignore the append flag as append does not
2640 * mean the same thing under DOS and Unix.
2643 flags = calculate_open_access_flags(access_mask, oplock_request,
2644 private_flags);
2647 * Currently we only look at FILE_WRITE_THROUGH for create options.
2650 #if defined(O_SYNC)
2651 if ((create_options & FILE_WRITE_THROUGH) && lp_strict_sync(SNUM(conn))) {
2652 flags2 |= O_SYNC;
2654 #endif /* O_SYNC */
2656 if (posix_open && (access_mask & FILE_APPEND_DATA)) {
2657 flags2 |= O_APPEND;
2660 if (!posix_open && !CAN_WRITE(conn)) {
2662 * We should really return a permission denied error if either
2663 * O_CREAT or O_TRUNC are set, but for compatibility with
2664 * older versions of Samba we just AND them out.
2666 flags2 &= ~(O_CREAT|O_TRUNC);
2669 if (first_open_attempt && lp_kernel_oplocks(SNUM(conn))) {
2671 * With kernel oplocks the open breaking an oplock
2672 * blocks until the oplock holder has given up the
2673 * oplock or closed the file. We prevent this by first
2674 * trying to open the file with O_NONBLOCK (see "man
2675 * fcntl" on Linux). For the second try, triggered by
2676 * an oplock break response, we do not need this
2677 * anymore.
2679 * This is true under the assumption that only Samba
2680 * requests kernel oplocks. Once someone else like
2681 * NFSv4 starts to use that API, we will have to
2682 * modify this by communicating with the NFSv4 server.
2684 flags2 |= O_NONBLOCK;
2688 * Ensure we can't write on a read-only share or file.
2691 if (flags != O_RDONLY && file_existed &&
2692 (!CAN_WRITE(conn) || IS_DOS_READONLY(existing_dos_attributes))) {
2693 DEBUG(5,("open_file_ntcreate: write access requested for "
2694 "file %s on read only %s\n",
2695 smb_fname_str_dbg(smb_fname),
2696 !CAN_WRITE(conn) ? "share" : "file" ));
2697 errno = EACCES;
2698 return NT_STATUS_ACCESS_DENIED;
2701 fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_fname->st);
2702 fsp->share_access = share_access;
2703 fsp->fh->private_options = private_flags;
2704 fsp->access_mask = open_access_mask; /* We change this to the
2705 * requested access_mask after
2706 * the open is done. */
2707 fsp->posix_open = posix_open;
2709 if (timeval_is_zero(&request_time)) {
2710 request_time = fsp->open_time;
2714 * Ensure we pay attention to default ACLs on directories if required.
2717 if ((flags2 & O_CREAT) && lp_inherit_acls(SNUM(conn)) &&
2718 (def_acl = directory_has_default_acl(conn, parent_dir))) {
2719 unx_mode = (0777 & lp_create_mask(SNUM(conn)));
2722 DEBUG(4,("calling open_file with flags=0x%X flags2=0x%X mode=0%o, "
2723 "access_mask = 0x%x, open_access_mask = 0x%x\n",
2724 (unsigned int)flags, (unsigned int)flags2,
2725 (unsigned int)unx_mode, (unsigned int)access_mask,
2726 (unsigned int)open_access_mask));
2728 fsp_open = open_file(fsp, conn, req, parent_dir,
2729 flags|flags2, unx_mode, access_mask,
2730 open_access_mask, &new_file_created);
2732 if (NT_STATUS_EQUAL(fsp_open, NT_STATUS_NETWORK_BUSY)) {
2733 struct deferred_open_record state;
2736 * EWOULDBLOCK/EAGAIN maps to NETWORK_BUSY.
2738 if (file_existed && S_ISFIFO(fsp->fsp_name->st.st_ex_mode)) {
2739 DEBUG(10, ("FIFO busy\n"));
2740 return NT_STATUS_NETWORK_BUSY;
2742 if (req == NULL) {
2743 DEBUG(10, ("Internal open busy\n"));
2744 return NT_STATUS_NETWORK_BUSY;
2748 * From here on we assume this is an oplock break triggered
2751 lck = get_existing_share_mode_lock(talloc_tos(), fsp->file_id);
2752 if (lck == NULL) {
2753 state.delayed_for_oplocks = false;
2754 state.async_open = false;
2755 state.id = fsp->file_id;
2756 defer_open(NULL, request_time, timeval_set(0, 0),
2757 req, &state);
2758 DEBUG(10, ("No share mode lock found after "
2759 "EWOULDBLOCK, retrying sync\n"));
2760 return NT_STATUS_SHARING_VIOLATION;
2763 if (!validate_oplock_types(lck)) {
2764 smb_panic("validate_oplock_types failed");
2767 if (delay_for_oplock(fsp, 0, lease, lck, false,
2768 create_disposition, first_open_attempt)) {
2769 schedule_defer_open(lck, fsp->file_id, request_time,
2770 req);
2771 TALLOC_FREE(lck);
2772 DEBUG(10, ("Sent oplock break request to kernel "
2773 "oplock holder\n"));
2774 return NT_STATUS_SHARING_VIOLATION;
2778 * No oplock from Samba around. Immediately retry with
2779 * a blocking open.
2781 state.delayed_for_oplocks = false;
2782 state.async_open = false;
2783 state.id = fsp->file_id;
2784 defer_open(lck, request_time, timeval_set(0, 0), req, &state);
2785 TALLOC_FREE(lck);
2786 DEBUG(10, ("No Samba oplock around after EWOULDBLOCK. "
2787 "Retrying sync\n"));
2788 return NT_STATUS_SHARING_VIOLATION;
2791 if (!NT_STATUS_IS_OK(fsp_open)) {
2792 if (NT_STATUS_EQUAL(fsp_open, NT_STATUS_RETRY)) {
2793 schedule_async_open(request_time, req);
2795 return fsp_open;
2798 if (new_file_created) {
2800 * As we atomically create using O_CREAT|O_EXCL,
2801 * then if new_file_created is true, then
2802 * file_existed *MUST* have been false (even
2803 * if the file was previously detected as being
2804 * there).
2806 file_existed = false;
2809 if (file_existed && !check_same_dev_ino(&saved_stat, &smb_fname->st)) {
2811 * The file did exist, but some other (local or NFS)
2812 * process either renamed/unlinked and re-created the
2813 * file with different dev/ino after we walked the path,
2814 * but before we did the open. We could retry the
2815 * open but it's a rare enough case it's easier to
2816 * just fail the open to prevent creating any problems
2817 * in the open file db having the wrong dev/ino key.
2819 fd_close(fsp);
2820 DEBUG(1,("open_file_ntcreate: file %s - dev/ino mismatch. "
2821 "Old (dev=0x%llu, ino =0x%llu). "
2822 "New (dev=0x%llu, ino=0x%llu). Failing open "
2823 " with NT_STATUS_ACCESS_DENIED.\n",
2824 smb_fname_str_dbg(smb_fname),
2825 (unsigned long long)saved_stat.st_ex_dev,
2826 (unsigned long long)saved_stat.st_ex_ino,
2827 (unsigned long long)smb_fname->st.st_ex_dev,
2828 (unsigned long long)smb_fname->st.st_ex_ino));
2829 return NT_STATUS_ACCESS_DENIED;
2832 old_write_time = smb_fname->st.st_ex_mtime;
2835 * Deal with the race condition where two smbd's detect the
2836 * file doesn't exist and do the create at the same time. One
2837 * of them will win and set a share mode, the other (ie. this
2838 * one) should check if the requested share mode for this
2839 * create is allowed.
2843 * Now the file exists and fsp is successfully opened,
2844 * fsp->dev and fsp->inode are valid and should replace the
2845 * dev=0,inode=0 from a non existent file. Spotted by
2846 * Nadav Danieli <nadavd@exanet.com>. JRA.
2849 id = fsp->file_id;
2851 lck = get_share_mode_lock(talloc_tos(), id,
2852 conn->connectpath,
2853 smb_fname, &old_write_time);
2855 if (lck == NULL) {
2856 DEBUG(0, ("open_file_ntcreate: Could not get share "
2857 "mode lock for %s\n",
2858 smb_fname_str_dbg(smb_fname)));
2859 fd_close(fsp);
2860 return NT_STATUS_SHARING_VIOLATION;
2863 /* Get the types we need to examine. */
2864 if (!validate_oplock_types(lck)) {
2865 smb_panic("validate_oplock_types failed");
2868 if (has_delete_on_close(lck, fsp->name_hash)) {
2869 TALLOC_FREE(lck);
2870 fd_close(fsp);
2871 return NT_STATUS_DELETE_PENDING;
2874 status = open_mode_check(conn, lck,
2875 access_mask, share_access);
2877 if (NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION) ||
2878 (lck->data->num_share_modes > 0)) {
2880 * This comes from ancient times out of open_mode_check. I
2881 * have no clue whether this is still necessary. I can't think
2882 * of a case where this would actually matter further down in
2883 * this function. I leave it here for further investigation
2884 * :-)
2886 file_existed = true;
2889 if ((req != NULL) &&
2890 delay_for_oplock(
2891 fsp, oplock_request, lease, lck,
2892 NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION),
2893 create_disposition, first_open_attempt)) {
2894 schedule_defer_open(lck, fsp->file_id, request_time, req);
2895 TALLOC_FREE(lck);
2896 fd_close(fsp);
2897 return NT_STATUS_SHARING_VIOLATION;
2900 if (!NT_STATUS_IS_OK(status)) {
2901 uint32 can_access_mask;
2902 bool can_access = True;
2904 SMB_ASSERT(NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION));
2906 /* Check if this can be done with the deny_dos and fcb
2907 * calls. */
2908 if (private_flags &
2909 (NTCREATEX_OPTIONS_PRIVATE_DENY_DOS|
2910 NTCREATEX_OPTIONS_PRIVATE_DENY_FCB)) {
2911 if (req == NULL) {
2912 DEBUG(0, ("DOS open without an SMB "
2913 "request!\n"));
2914 TALLOC_FREE(lck);
2915 fd_close(fsp);
2916 return NT_STATUS_INTERNAL_ERROR;
2919 /* Use the client requested access mask here,
2920 * not the one we open with. */
2921 status = fcb_or_dos_open(req,
2922 conn,
2923 fsp,
2924 smb_fname,
2926 req->smbpid,
2927 req->vuid,
2928 access_mask,
2929 share_access,
2930 create_options);
2932 if (NT_STATUS_IS_OK(status)) {
2933 TALLOC_FREE(lck);
2934 if (pinfo) {
2935 *pinfo = FILE_WAS_OPENED;
2937 return NT_STATUS_OK;
2942 * This next line is a subtlety we need for
2943 * MS-Access. If a file open will fail due to share
2944 * permissions and also for security (access) reasons,
2945 * we need to return the access failed error, not the
2946 * share error. We can't open the file due to kernel
2947 * oplock deadlock (it's possible we failed above on
2948 * the open_mode_check()) so use a userspace check.
2951 if (flags & O_RDWR) {
2952 can_access_mask = FILE_READ_DATA|FILE_WRITE_DATA;
2953 } else if (flags & O_WRONLY) {
2954 can_access_mask = FILE_WRITE_DATA;
2955 } else {
2956 can_access_mask = FILE_READ_DATA;
2959 if (((can_access_mask & FILE_WRITE_DATA) &&
2960 !CAN_WRITE(conn)) ||
2961 !NT_STATUS_IS_OK(smbd_check_access_rights(conn,
2962 smb_fname,
2963 false,
2964 can_access_mask))) {
2965 can_access = False;
2969 * If we're returning a share violation, ensure we
2970 * cope with the braindead 1 second delay (SMB1 only).
2973 if (!(oplock_request & INTERNAL_OPEN_ONLY) &&
2974 !conn->sconn->using_smb2 &&
2975 lp_defer_sharing_violations()) {
2976 struct timeval timeout;
2977 struct deferred_open_record state;
2978 int timeout_usecs;
2980 /* this is a hack to speed up torture tests
2981 in 'make test' */
2982 timeout_usecs = lp_parm_int(SNUM(conn),
2983 "smbd","sharedelay",
2984 SHARING_VIOLATION_USEC_WAIT);
2986 /* This is a relative time, added to the absolute
2987 request_time value to get the absolute timeout time.
2988 Note that if this is the second or greater time we enter
2989 this codepath for this particular request mid then
2990 request_time is left as the absolute time of the *first*
2991 time this request mid was processed. This is what allows
2992 the request to eventually time out. */
2994 timeout = timeval_set(0, timeout_usecs);
2996 /* Nothing actually uses state.delayed_for_oplocks
2997 but it's handy to differentiate in debug messages
2998 between a 30 second delay due to oplock break, and
2999 a 1 second delay for share mode conflicts. */
3001 state.delayed_for_oplocks = False;
3002 state.async_open = false;
3003 state.id = id;
3005 if ((req != NULL)
3006 && !request_timed_out(request_time,
3007 timeout)) {
3008 defer_open(lck, request_time, timeout,
3009 req, &state);
3013 TALLOC_FREE(lck);
3014 fd_close(fsp);
3015 if (can_access) {
3017 * We have detected a sharing violation here
3018 * so return the correct error code
3020 status = NT_STATUS_SHARING_VIOLATION;
3021 } else {
3022 status = NT_STATUS_ACCESS_DENIED;
3024 return status;
3027 /* Should we atomically (to the client at least) truncate ? */
3028 if ((!new_file_created) &&
3029 (flags2 & O_TRUNC) &&
3030 (!S_ISFIFO(fsp->fsp_name->st.st_ex_mode))) {
3031 int ret;
3033 ret = vfs_set_filelen(fsp, 0);
3034 if (ret != 0) {
3035 status = map_nt_error_from_unix(errno);
3036 TALLOC_FREE(lck);
3037 fd_close(fsp);
3038 return status;
3043 * We have the share entry *locked*.....
3046 /* Delete streams if create_disposition requires it */
3047 if (!new_file_created && clear_ads(create_disposition) &&
3048 !is_ntfs_stream_smb_fname(smb_fname)) {
3049 status = delete_all_streams(conn, smb_fname->base_name);
3050 if (!NT_STATUS_IS_OK(status)) {
3051 TALLOC_FREE(lck);
3052 fd_close(fsp);
3053 return status;
3057 /* note that we ignore failure for the following. It is
3058 basically a hack for NFS, and NFS will never set one of
3059 these only read them. Nobody but Samba can ever set a deny
3060 mode and we have already checked our more authoritative
3061 locking database for permission to set this deny mode. If
3062 the kernel refuses the operations then the kernel is wrong.
3063 note that GPFS supports it as well - jmcd */
3065 if (fsp->fh->fd != -1 && lp_kernel_share_modes(SNUM(conn))) {
3066 int ret_flock;
3067 ret_flock = SMB_VFS_KERNEL_FLOCK(fsp, share_access, access_mask);
3068 if(ret_flock == -1 ){
3070 TALLOC_FREE(lck);
3071 fd_close(fsp);
3073 return NT_STATUS_SHARING_VIOLATION;
3078 * At this point onwards, we can guarantee that the share entry
3079 * is locked, whether we created the file or not, and that the
3080 * deny mode is compatible with all current opens.
3084 * According to Samba4, SEC_FILE_READ_ATTRIBUTE is always granted,
3085 * but we don't have to store this - just ignore it on access check.
3087 if (conn->sconn->using_smb2) {
3089 * SMB2 doesn't return it (according to Microsoft tests).
3090 * Test Case: TestSuite_ScenarioNo009GrantedAccessTestS0
3091 * File created with access = 0x7 (Read, Write, Delete)
3092 * Query Info on file returns 0x87 (Read, Write, Delete, Read Attributes)
3094 fsp->access_mask = access_mask;
3095 } else {
3096 /* But SMB1 does. */
3097 fsp->access_mask = access_mask | FILE_READ_ATTRIBUTES;
3100 if (file_existed) {
3102 * stat opens on existing files don't get oplocks or leases.
3104 * Note that we check for stat open on the *open_access_mask*,
3105 * i.e. the access mask we actually used to do the open,
3106 * not the one the client asked for (which is in
3107 * fsp->access_mask). This is due to the fact that
3108 * FILE_OVERWRITE and FILE_OVERWRITE_IF add in O_TRUNC,
3109 * which adds FILE_WRITE_DATA to open_access_mask.
3111 if (is_stat_open(open_access_mask)) {
3112 if (lease) {
3113 lease->lease_state = SMB2_LEASE_NONE;
3114 } else {
3115 oplock_request = NO_OPLOCK;
3120 if (new_file_created) {
3121 info = FILE_WAS_CREATED;
3122 } else {
3123 if (flags2 & O_TRUNC) {
3124 info = FILE_WAS_OVERWRITTEN;
3125 } else {
3126 info = FILE_WAS_OPENED;
3130 if (pinfo) {
3131 *pinfo = info;
3135 * Setup the oplock info in both the shared memory and
3136 * file structs.
3138 status = grant_fsp_oplock_type(req, fsp, lck, oplock_request, lease);
3139 if (!NT_STATUS_IS_OK(status)) {
3140 TALLOC_FREE(lck);
3141 fd_close(fsp);
3142 return status;
3145 /* Handle strange delete on close create semantics. */
3146 if (create_options & FILE_DELETE_ON_CLOSE) {
3148 status = can_set_delete_on_close(fsp, new_dos_attributes);
3150 if (!NT_STATUS_IS_OK(status)) {
3151 /* Remember to delete the mode we just added. */
3152 del_share_mode(lck, fsp);
3153 TALLOC_FREE(lck);
3154 fd_close(fsp);
3155 return status;
3157 /* Note that here we set the *inital* delete on close flag,
3158 not the regular one. The magic gets handled in close. */
3159 fsp->initial_delete_on_close = True;
3162 if (info != FILE_WAS_OPENED) {
3163 /* Files should be initially set as archive */
3164 if (lp_map_archive(SNUM(conn)) ||
3165 lp_store_dos_attributes(SNUM(conn))) {
3166 if (!posix_open) {
3167 if (file_set_dosmode(conn, smb_fname,
3168 new_dos_attributes | FILE_ATTRIBUTE_ARCHIVE,
3169 parent_dir, true) == 0) {
3170 unx_mode = smb_fname->st.st_ex_mode;
3176 /* Determine sparse flag. */
3177 if (posix_open) {
3178 /* POSIX opens are sparse by default. */
3179 fsp->is_sparse = true;
3180 } else {
3181 fsp->is_sparse = (file_existed &&
3182 (existing_dos_attributes & FILE_ATTRIBUTE_SPARSE));
3186 * Take care of inherited ACLs on created files - if default ACL not
3187 * selected.
3190 if (!posix_open && new_file_created && !def_acl) {
3192 int saved_errno = errno; /* We might get ENOSYS in the next
3193 * call.. */
3195 if (SMB_VFS_FCHMOD_ACL(fsp, unx_mode) == -1 &&
3196 errno == ENOSYS) {
3197 errno = saved_errno; /* Ignore ENOSYS */
3200 } else if (new_unx_mode) {
3202 int ret = -1;
3204 /* Attributes need changing. File already existed. */
3207 int saved_errno = errno; /* We might get ENOSYS in the
3208 * next call.. */
3209 ret = SMB_VFS_FCHMOD_ACL(fsp, new_unx_mode);
3211 if (ret == -1 && errno == ENOSYS) {
3212 errno = saved_errno; /* Ignore ENOSYS */
3213 } else {
3214 DEBUG(5, ("open_file_ntcreate: reset "
3215 "attributes of file %s to 0%o\n",
3216 smb_fname_str_dbg(smb_fname),
3217 (unsigned int)new_unx_mode));
3218 ret = 0; /* Don't do the fchmod below. */
3222 if ((ret == -1) &&
3223 (SMB_VFS_FCHMOD(fsp, new_unx_mode) == -1))
3224 DEBUG(5, ("open_file_ntcreate: failed to reset "
3225 "attributes of file %s to 0%o\n",
3226 smb_fname_str_dbg(smb_fname),
3227 (unsigned int)new_unx_mode));
3232 * Deal with other opens having a modified write time.
3234 struct timespec write_time = get_share_mode_write_time(lck);
3236 if (!null_timespec(write_time)) {
3237 update_stat_ex_mtime(&fsp->fsp_name->st, write_time);
3241 TALLOC_FREE(lck);
3243 return NT_STATUS_OK;
3246 static NTSTATUS mkdir_internal(connection_struct *conn,
3247 struct smb_filename *smb_dname,
3248 uint32 file_attributes)
3250 mode_t mode;
3251 char *parent_dir = NULL;
3252 NTSTATUS status;
3253 bool posix_open = false;
3254 bool need_re_stat = false;
3255 uint32_t access_mask = SEC_DIR_ADD_SUBDIR;
3257 if (!CAN_WRITE(conn) || (access_mask & ~(conn->share_access))) {
3258 DEBUG(5,("mkdir_internal: failing share access "
3259 "%s\n", lp_servicename(talloc_tos(), SNUM(conn))));
3260 return NT_STATUS_ACCESS_DENIED;
3263 if (!parent_dirname(talloc_tos(), smb_dname->base_name, &parent_dir,
3264 NULL)) {
3265 return NT_STATUS_NO_MEMORY;
3268 if (file_attributes & FILE_FLAG_POSIX_SEMANTICS) {
3269 posix_open = true;
3270 mode = (mode_t)(file_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
3271 } else {
3272 mode = unix_mode(conn, FILE_ATTRIBUTE_DIRECTORY, smb_dname, parent_dir);
3275 status = check_parent_access(conn,
3276 smb_dname,
3277 access_mask);
3278 if(!NT_STATUS_IS_OK(status)) {
3279 DEBUG(5,("mkdir_internal: check_parent_access "
3280 "on directory %s for path %s returned %s\n",
3281 parent_dir,
3282 smb_dname->base_name,
3283 nt_errstr(status) ));
3284 return status;
3287 if (SMB_VFS_MKDIR(conn, smb_dname->base_name, mode) != 0) {
3288 return map_nt_error_from_unix(errno);
3291 /* Ensure we're checking for a symlink here.... */
3292 /* We don't want to get caught by a symlink racer. */
3294 if (SMB_VFS_LSTAT(conn, smb_dname) == -1) {
3295 DEBUG(2, ("Could not stat directory '%s' just created: %s\n",
3296 smb_fname_str_dbg(smb_dname), strerror(errno)));
3297 return map_nt_error_from_unix(errno);
3300 if (!S_ISDIR(smb_dname->st.st_ex_mode)) {
3301 DEBUG(0, ("Directory '%s' just created is not a directory !\n",
3302 smb_fname_str_dbg(smb_dname)));
3303 return NT_STATUS_NOT_A_DIRECTORY;
3306 if (lp_store_dos_attributes(SNUM(conn))) {
3307 if (!posix_open) {
3308 file_set_dosmode(conn, smb_dname,
3309 file_attributes | FILE_ATTRIBUTE_DIRECTORY,
3310 parent_dir, true);
3314 if (lp_inherit_permissions(SNUM(conn))) {
3315 inherit_access_posix_acl(conn, parent_dir,
3316 smb_dname->base_name, mode);
3317 need_re_stat = true;
3320 if (!posix_open) {
3322 * Check if high bits should have been set,
3323 * then (if bits are missing): add them.
3324 * Consider bits automagically set by UNIX, i.e. SGID bit from parent
3325 * dir.
3327 if ((mode & ~(S_IRWXU|S_IRWXG|S_IRWXO)) &&
3328 (mode & ~smb_dname->st.st_ex_mode)) {
3329 SMB_VFS_CHMOD(conn, smb_dname->base_name,
3330 (smb_dname->st.st_ex_mode |
3331 (mode & ~smb_dname->st.st_ex_mode)));
3332 need_re_stat = true;
3336 /* Change the owner if required. */
3337 if (lp_inherit_owner(SNUM(conn))) {
3338 change_dir_owner_to_parent(conn, parent_dir,
3339 smb_dname->base_name,
3340 &smb_dname->st);
3341 need_re_stat = true;
3344 if (need_re_stat) {
3345 if (SMB_VFS_LSTAT(conn, smb_dname) == -1) {
3346 DEBUG(2, ("Could not stat directory '%s' just created: %s\n",
3347 smb_fname_str_dbg(smb_dname), strerror(errno)));
3348 return map_nt_error_from_unix(errno);
3352 notify_fname(conn, NOTIFY_ACTION_ADDED, FILE_NOTIFY_CHANGE_DIR_NAME,
3353 smb_dname->base_name);
3355 return NT_STATUS_OK;
3358 /****************************************************************************
3359 Open a directory from an NT SMB call.
3360 ****************************************************************************/
3362 static NTSTATUS open_directory(connection_struct *conn,
3363 struct smb_request *req,
3364 struct smb_filename *smb_dname,
3365 uint32 access_mask,
3366 uint32 share_access,
3367 uint32 create_disposition,
3368 uint32 create_options,
3369 uint32 file_attributes,
3370 int *pinfo,
3371 files_struct **result)
3373 files_struct *fsp = NULL;
3374 bool dir_existed = VALID_STAT(smb_dname->st) ? True : False;
3375 struct share_mode_lock *lck = NULL;
3376 NTSTATUS status;
3377 struct timespec mtimespec;
3378 int info = 0;
3379 bool ok;
3381 if (is_ntfs_stream_smb_fname(smb_dname)) {
3382 DEBUG(2, ("open_directory: %s is a stream name!\n",
3383 smb_fname_str_dbg(smb_dname)));
3384 return NT_STATUS_NOT_A_DIRECTORY;
3387 if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS)) {
3388 /* Ensure we have a directory attribute. */
3389 file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
3392 DEBUG(5,("open_directory: opening directory %s, access_mask = 0x%x, "
3393 "share_access = 0x%x create_options = 0x%x, "
3394 "create_disposition = 0x%x, file_attributes = 0x%x\n",
3395 smb_fname_str_dbg(smb_dname),
3396 (unsigned int)access_mask,
3397 (unsigned int)share_access,
3398 (unsigned int)create_options,
3399 (unsigned int)create_disposition,
3400 (unsigned int)file_attributes));
3402 status = smbd_calculate_access_mask(conn, smb_dname, false,
3403 access_mask, &access_mask);
3404 if (!NT_STATUS_IS_OK(status)) {
3405 DEBUG(10, ("open_directory: smbd_calculate_access_mask "
3406 "on file %s returned %s\n",
3407 smb_fname_str_dbg(smb_dname),
3408 nt_errstr(status)));
3409 return status;
3412 if ((access_mask & SEC_FLAG_SYSTEM_SECURITY) &&
3413 !security_token_has_privilege(get_current_nttok(conn),
3414 SEC_PRIV_SECURITY)) {
3415 DEBUG(10, ("open_directory: open on %s "
3416 "failed - SEC_FLAG_SYSTEM_SECURITY denied.\n",
3417 smb_fname_str_dbg(smb_dname)));
3418 return NT_STATUS_PRIVILEGE_NOT_HELD;
3421 switch( create_disposition ) {
3422 case FILE_OPEN:
3424 if (!dir_existed) {
3425 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3428 info = FILE_WAS_OPENED;
3429 break;
3431 case FILE_CREATE:
3433 /* If directory exists error. If directory doesn't
3434 * exist create. */
3436 if (dir_existed) {
3437 status = NT_STATUS_OBJECT_NAME_COLLISION;
3438 DEBUG(2, ("open_directory: unable to create "
3439 "%s. Error was %s\n",
3440 smb_fname_str_dbg(smb_dname),
3441 nt_errstr(status)));
3442 return status;
3445 status = mkdir_internal(conn, smb_dname,
3446 file_attributes);
3448 if (!NT_STATUS_IS_OK(status)) {
3449 DEBUG(2, ("open_directory: unable to create "
3450 "%s. Error was %s\n",
3451 smb_fname_str_dbg(smb_dname),
3452 nt_errstr(status)));
3453 return status;
3456 info = FILE_WAS_CREATED;
3457 break;
3459 case FILE_OPEN_IF:
3461 * If directory exists open. If directory doesn't
3462 * exist create.
3465 if (dir_existed) {
3466 status = NT_STATUS_OK;
3467 info = FILE_WAS_OPENED;
3468 } else {
3469 status = mkdir_internal(conn, smb_dname,
3470 file_attributes);
3472 if (NT_STATUS_IS_OK(status)) {
3473 info = FILE_WAS_CREATED;
3474 } else {
3475 /* Cope with create race. */
3476 if (!NT_STATUS_EQUAL(status,
3477 NT_STATUS_OBJECT_NAME_COLLISION)) {
3478 DEBUG(2, ("open_directory: unable to create "
3479 "%s. Error was %s\n",
3480 smb_fname_str_dbg(smb_dname),
3481 nt_errstr(status)));
3482 return status;
3484 info = FILE_WAS_OPENED;
3488 break;
3490 case FILE_SUPERSEDE:
3491 case FILE_OVERWRITE:
3492 case FILE_OVERWRITE_IF:
3493 default:
3494 DEBUG(5,("open_directory: invalid create_disposition "
3495 "0x%x for directory %s\n",
3496 (unsigned int)create_disposition,
3497 smb_fname_str_dbg(smb_dname)));
3498 return NT_STATUS_INVALID_PARAMETER;
3501 if(!S_ISDIR(smb_dname->st.st_ex_mode)) {
3502 DEBUG(5,("open_directory: %s is not a directory !\n",
3503 smb_fname_str_dbg(smb_dname)));
3504 return NT_STATUS_NOT_A_DIRECTORY;
3507 if (info == FILE_WAS_OPENED) {
3508 status = smbd_check_access_rights(conn,
3509 smb_dname,
3510 false,
3511 access_mask);
3512 if (!NT_STATUS_IS_OK(status)) {
3513 DEBUG(10, ("open_directory: smbd_check_access_rights on "
3514 "file %s failed with %s\n",
3515 smb_fname_str_dbg(smb_dname),
3516 nt_errstr(status)));
3517 return status;
3521 status = file_new(req, conn, &fsp);
3522 if(!NT_STATUS_IS_OK(status)) {
3523 return status;
3527 * Setup the files_struct for it.
3530 fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_dname->st);
3531 fsp->vuid = req ? req->vuid : UID_FIELD_INVALID;
3532 fsp->file_pid = req ? req->smbpid : 0;
3533 fsp->can_lock = False;
3534 fsp->can_read = False;
3535 fsp->can_write = False;
3537 fsp->share_access = share_access;
3538 fsp->fh->private_options = 0;
3540 * According to Samba4, SEC_FILE_READ_ATTRIBUTE is always granted,
3542 fsp->access_mask = access_mask | FILE_READ_ATTRIBUTES;
3543 fsp->print_file = NULL;
3544 fsp->modified = False;
3545 fsp->oplock_type = NO_OPLOCK;
3546 fsp->sent_oplock_break = NO_BREAK_SENT;
3547 fsp->is_directory = True;
3548 fsp->posix_open = (file_attributes & FILE_FLAG_POSIX_SEMANTICS) ? True : False;
3549 status = fsp_set_smb_fname(fsp, smb_dname);
3550 if (!NT_STATUS_IS_OK(status)) {
3551 file_free(req, fsp);
3552 return status;
3555 /* Don't store old timestamps for directory
3556 handles in the internal database. We don't
3557 update them in there if new objects
3558 are creaded in the directory. Currently
3559 we only update timestamps on file writes.
3560 See bug #9870.
3562 ZERO_STRUCT(mtimespec);
3564 if (access_mask & (FILE_LIST_DIRECTORY|
3565 FILE_ADD_FILE|
3566 FILE_ADD_SUBDIRECTORY|
3567 FILE_TRAVERSE|
3568 DELETE_ACCESS|
3569 FILE_DELETE_CHILD)) {
3570 #ifdef O_DIRECTORY
3571 status = fd_open(conn, fsp, O_RDONLY|O_DIRECTORY, 0);
3572 #else
3573 /* POSIX allows us to open a directory with O_RDONLY. */
3574 status = fd_open(conn, fsp, O_RDONLY, 0);
3575 #endif
3576 if (!NT_STATUS_IS_OK(status)) {
3577 DEBUG(5, ("open_directory: Could not open fd for "
3578 "%s (%s)\n",
3579 smb_fname_str_dbg(smb_dname),
3580 nt_errstr(status)));
3581 file_free(req, fsp);
3582 return status;
3584 } else {
3585 fsp->fh->fd = -1;
3586 DEBUG(10, ("Not opening Directory %s\n",
3587 smb_fname_str_dbg(smb_dname)));
3590 status = vfs_stat_fsp(fsp);
3591 if (!NT_STATUS_IS_OK(status)) {
3592 fd_close(fsp);
3593 file_free(req, fsp);
3594 return status;
3597 /* Ensure there was no race condition. */
3598 if (!check_same_stat(&smb_dname->st, &fsp->fsp_name->st)) {
3599 DEBUG(5,("open_directory: stat struct differs for "
3600 "directory %s.\n",
3601 smb_fname_str_dbg(smb_dname)));
3602 fd_close(fsp);
3603 file_free(req, fsp);
3604 return NT_STATUS_ACCESS_DENIED;
3607 lck = get_share_mode_lock(talloc_tos(), fsp->file_id,
3608 conn->connectpath, smb_dname,
3609 &mtimespec);
3611 if (lck == NULL) {
3612 DEBUG(0, ("open_directory: Could not get share mode lock for "
3613 "%s\n", smb_fname_str_dbg(smb_dname)));
3614 fd_close(fsp);
3615 file_free(req, fsp);
3616 return NT_STATUS_SHARING_VIOLATION;
3619 if (has_delete_on_close(lck, fsp->name_hash)) {
3620 TALLOC_FREE(lck);
3621 fd_close(fsp);
3622 file_free(req, fsp);
3623 return NT_STATUS_DELETE_PENDING;
3626 status = open_mode_check(conn, lck,
3627 access_mask, share_access);
3629 if (!NT_STATUS_IS_OK(status)) {
3630 TALLOC_FREE(lck);
3631 fd_close(fsp);
3632 file_free(req, fsp);
3633 return status;
3636 ok = set_share_mode(lck, fsp, get_current_uid(conn),
3637 req ? req->mid : 0, NO_OPLOCK,
3638 UINT32_MAX);
3639 if (!ok) {
3640 TALLOC_FREE(lck);
3641 fd_close(fsp);
3642 file_free(req, fsp);
3643 return NT_STATUS_NO_MEMORY;
3646 /* For directories the delete on close bit at open time seems
3647 always to be honored on close... See test 19 in Samba4 BASE-DELETE. */
3648 if (create_options & FILE_DELETE_ON_CLOSE) {
3649 status = can_set_delete_on_close(fsp, 0);
3650 if (!NT_STATUS_IS_OK(status) && !NT_STATUS_EQUAL(status, NT_STATUS_DIRECTORY_NOT_EMPTY)) {
3651 del_share_mode(lck, fsp);
3652 TALLOC_FREE(lck);
3653 fd_close(fsp);
3654 file_free(req, fsp);
3655 return status;
3658 if (NT_STATUS_IS_OK(status)) {
3659 /* Note that here we set the *inital* delete on close flag,
3660 not the regular one. The magic gets handled in close. */
3661 fsp->initial_delete_on_close = True;
3667 * Deal with other opens having a modified write time. Is this
3668 * possible for directories?
3670 struct timespec write_time = get_share_mode_write_time(lck);
3672 if (!null_timespec(write_time)) {
3673 update_stat_ex_mtime(&fsp->fsp_name->st, write_time);
3677 TALLOC_FREE(lck);
3679 if (pinfo) {
3680 *pinfo = info;
3683 *result = fsp;
3684 return NT_STATUS_OK;
3687 NTSTATUS create_directory(connection_struct *conn, struct smb_request *req,
3688 struct smb_filename *smb_dname)
3690 NTSTATUS status;
3691 files_struct *fsp;
3693 status = SMB_VFS_CREATE_FILE(
3694 conn, /* conn */
3695 req, /* req */
3696 0, /* root_dir_fid */
3697 smb_dname, /* fname */
3698 FILE_READ_ATTRIBUTES, /* access_mask */
3699 FILE_SHARE_NONE, /* share_access */
3700 FILE_CREATE, /* create_disposition*/
3701 FILE_DIRECTORY_FILE, /* create_options */
3702 FILE_ATTRIBUTE_DIRECTORY, /* file_attributes */
3703 0, /* oplock_request */
3704 NULL, /* lease */
3705 0, /* allocation_size */
3706 0, /* private_flags */
3707 NULL, /* sd */
3708 NULL, /* ea_list */
3709 &fsp, /* result */
3710 NULL, /* pinfo */
3711 NULL, NULL); /* create context */
3713 if (NT_STATUS_IS_OK(status)) {
3714 close_file(req, fsp, NORMAL_CLOSE);
3717 return status;
3720 /****************************************************************************
3721 Receive notification that one of our open files has been renamed by another
3722 smbd process.
3723 ****************************************************************************/
3725 void msg_file_was_renamed(struct messaging_context *msg,
3726 void *private_data,
3727 uint32_t msg_type,
3728 struct server_id server_id,
3729 DATA_BLOB *data)
3731 files_struct *fsp;
3732 char *frm = (char *)data->data;
3733 struct file_id id;
3734 const char *sharepath;
3735 const char *base_name;
3736 const char *stream_name;
3737 struct smb_filename *smb_fname = NULL;
3738 size_t sp_len, bn_len;
3739 NTSTATUS status;
3740 struct smbd_server_connection *sconn =
3741 talloc_get_type_abort(private_data,
3742 struct smbd_server_connection);
3744 if (data->data == NULL
3745 || data->length < MSG_FILE_RENAMED_MIN_SIZE + 2) {
3746 DEBUG(0, ("msg_file_was_renamed: Got invalid msg len %d\n",
3747 (int)data->length));
3748 return;
3751 /* Unpack the message. */
3752 pull_file_id_24(frm, &id);
3753 sharepath = &frm[24];
3754 sp_len = strlen(sharepath);
3755 base_name = sharepath + sp_len + 1;
3756 bn_len = strlen(base_name);
3757 stream_name = sharepath + sp_len + 1 + bn_len + 1;
3759 /* stream_name must always be NULL if there is no stream. */
3760 if (stream_name[0] == '\0') {
3761 stream_name = NULL;
3764 smb_fname = synthetic_smb_fname(talloc_tos(), base_name,
3765 stream_name, NULL);
3766 if (smb_fname == NULL) {
3767 return;
3770 DEBUG(10,("msg_file_was_renamed: Got rename message for sharepath %s, new name %s, "
3771 "file_id %s\n",
3772 sharepath, smb_fname_str_dbg(smb_fname),
3773 file_id_string_tos(&id)));
3775 for(fsp = file_find_di_first(sconn, id); fsp;
3776 fsp = file_find_di_next(fsp)) {
3777 if (memcmp(fsp->conn->connectpath, sharepath, sp_len) == 0) {
3779 DEBUG(10,("msg_file_was_renamed: renaming file %s from %s -> %s\n",
3780 fsp_fnum_dbg(fsp), fsp_str_dbg(fsp),
3781 smb_fname_str_dbg(smb_fname)));
3782 status = fsp_set_smb_fname(fsp, smb_fname);
3783 if (!NT_STATUS_IS_OK(status)) {
3784 goto out;
3786 } else {
3787 /* TODO. JRA. */
3788 /* Now we have the complete path we can work out if this is
3789 actually within this share and adjust newname accordingly. */
3790 DEBUG(10,("msg_file_was_renamed: share mismatch (sharepath %s "
3791 "not sharepath %s) "
3792 "%s from %s -> %s\n",
3793 fsp->conn->connectpath,
3794 sharepath,
3795 fsp_fnum_dbg(fsp),
3796 fsp_str_dbg(fsp),
3797 smb_fname_str_dbg(smb_fname)));
3800 out:
3801 TALLOC_FREE(smb_fname);
3802 return;
3806 * If a main file is opened for delete, all streams need to be checked for
3807 * !FILE_SHARE_DELETE. Do this by opening with DELETE_ACCESS.
3808 * If that works, delete them all by setting the delete on close and close.
3811 NTSTATUS open_streams_for_delete(connection_struct *conn,
3812 const char *fname)
3814 struct stream_struct *stream_info = NULL;
3815 files_struct **streams = NULL;
3816 int i;
3817 unsigned int num_streams = 0;
3818 TALLOC_CTX *frame = talloc_stackframe();
3819 NTSTATUS status;
3821 status = vfs_streaminfo(conn, NULL, fname, talloc_tos(),
3822 &num_streams, &stream_info);
3824 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)
3825 || NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
3826 DEBUG(10, ("no streams around\n"));
3827 TALLOC_FREE(frame);
3828 return NT_STATUS_OK;
3831 if (!NT_STATUS_IS_OK(status)) {
3832 DEBUG(10, ("vfs_streaminfo failed: %s\n",
3833 nt_errstr(status)));
3834 goto fail;
3837 DEBUG(10, ("open_streams_for_delete found %d streams\n",
3838 num_streams));
3840 if (num_streams == 0) {
3841 TALLOC_FREE(frame);
3842 return NT_STATUS_OK;
3845 streams = talloc_array(talloc_tos(), files_struct *, num_streams);
3846 if (streams == NULL) {
3847 DEBUG(0, ("talloc failed\n"));
3848 status = NT_STATUS_NO_MEMORY;
3849 goto fail;
3852 for (i=0; i<num_streams; i++) {
3853 struct smb_filename *smb_fname;
3855 if (strequal(stream_info[i].name, "::$DATA")) {
3856 streams[i] = NULL;
3857 continue;
3860 smb_fname = synthetic_smb_fname(
3861 talloc_tos(), fname, stream_info[i].name, NULL);
3862 if (smb_fname == NULL) {
3863 status = NT_STATUS_NO_MEMORY;
3864 goto fail;
3867 if (SMB_VFS_STAT(conn, smb_fname) == -1) {
3868 DEBUG(10, ("Unable to stat stream: %s\n",
3869 smb_fname_str_dbg(smb_fname)));
3872 status = SMB_VFS_CREATE_FILE(
3873 conn, /* conn */
3874 NULL, /* req */
3875 0, /* root_dir_fid */
3876 smb_fname, /* fname */
3877 DELETE_ACCESS, /* access_mask */
3878 (FILE_SHARE_READ | /* share_access */
3879 FILE_SHARE_WRITE | FILE_SHARE_DELETE),
3880 FILE_OPEN, /* create_disposition*/
3881 0, /* create_options */
3882 FILE_ATTRIBUTE_NORMAL, /* file_attributes */
3883 0, /* oplock_request */
3884 NULL, /* lease */
3885 0, /* allocation_size */
3886 NTCREATEX_OPTIONS_PRIVATE_STREAM_DELETE, /* private_flags */
3887 NULL, /* sd */
3888 NULL, /* ea_list */
3889 &streams[i], /* result */
3890 NULL, /* pinfo */
3891 NULL, NULL); /* create context */
3893 if (!NT_STATUS_IS_OK(status)) {
3894 DEBUG(10, ("Could not open stream %s: %s\n",
3895 smb_fname_str_dbg(smb_fname),
3896 nt_errstr(status)));
3898 TALLOC_FREE(smb_fname);
3899 break;
3901 TALLOC_FREE(smb_fname);
3905 * don't touch the variable "status" beyond this point :-)
3908 for (i -= 1 ; i >= 0; i--) {
3909 if (streams[i] == NULL) {
3910 continue;
3913 DEBUG(10, ("Closing stream # %d, %s\n", i,
3914 fsp_str_dbg(streams[i])));
3915 close_file(NULL, streams[i], NORMAL_CLOSE);
3918 fail:
3919 TALLOC_FREE(frame);
3920 return status;
3923 /*********************************************************************
3924 Create a default ACL by inheriting from the parent. If no inheritance
3925 from the parent available, don't set anything. This will leave the actual
3926 permissions the new file or directory already got from the filesystem
3927 as the NT ACL when read.
3928 *********************************************************************/
3930 static NTSTATUS inherit_new_acl(files_struct *fsp)
3932 TALLOC_CTX *frame = talloc_stackframe();
3933 char *parent_name = NULL;
3934 struct security_descriptor *parent_desc = NULL;
3935 NTSTATUS status = NT_STATUS_OK;
3936 struct security_descriptor *psd = NULL;
3937 const struct dom_sid *owner_sid = NULL;
3938 const struct dom_sid *group_sid = NULL;
3939 uint32_t security_info_sent = (SECINFO_OWNER | SECINFO_GROUP | SECINFO_DACL);
3940 struct security_token *token = fsp->conn->session_info->security_token;
3941 bool inherit_owner = lp_inherit_owner(SNUM(fsp->conn));
3942 bool inheritable_components = false;
3943 bool try_builtin_administrators = false;
3944 const struct dom_sid *BA_U_sid = NULL;
3945 const struct dom_sid *BA_G_sid = NULL;
3946 bool try_system = false;
3947 const struct dom_sid *SY_U_sid = NULL;
3948 const struct dom_sid *SY_G_sid = NULL;
3949 size_t size = 0;
3951 if (!parent_dirname(frame, fsp->fsp_name->base_name, &parent_name, NULL)) {
3952 TALLOC_FREE(frame);
3953 return NT_STATUS_NO_MEMORY;
3956 status = SMB_VFS_GET_NT_ACL(fsp->conn,
3957 parent_name,
3958 (SECINFO_OWNER | SECINFO_GROUP | SECINFO_DACL),
3959 frame,
3960 &parent_desc);
3961 if (!NT_STATUS_IS_OK(status)) {
3962 TALLOC_FREE(frame);
3963 return status;
3966 inheritable_components = sd_has_inheritable_components(parent_desc,
3967 fsp->is_directory);
3969 if (!inheritable_components && !inherit_owner) {
3970 TALLOC_FREE(frame);
3971 /* Nothing to inherit and not setting owner. */
3972 return NT_STATUS_OK;
3975 /* Create an inherited descriptor from the parent. */
3977 if (DEBUGLEVEL >= 10) {
3978 DEBUG(10,("inherit_new_acl: parent acl for %s is:\n",
3979 fsp_str_dbg(fsp) ));
3980 NDR_PRINT_DEBUG(security_descriptor, parent_desc);
3983 /* Inherit from parent descriptor if "inherit owner" set. */
3984 if (inherit_owner) {
3985 owner_sid = parent_desc->owner_sid;
3986 group_sid = parent_desc->group_sid;
3989 if (owner_sid == NULL) {
3990 if (security_token_has_builtin_administrators(token)) {
3991 try_builtin_administrators = true;
3992 } else if (security_token_is_system(token)) {
3993 try_builtin_administrators = true;
3994 try_system = true;
3998 if (group_sid == NULL &&
3999 token->num_sids == PRIMARY_GROUP_SID_INDEX)
4001 if (security_token_is_system(token)) {
4002 try_builtin_administrators = true;
4003 try_system = true;
4007 if (try_builtin_administrators) {
4008 struct unixid ids;
4009 bool ok;
4011 ZERO_STRUCT(ids);
4012 ok = sids_to_unixids(&global_sid_Builtin_Administrators, 1, &ids);
4013 if (ok) {
4014 switch (ids.type) {
4015 case ID_TYPE_BOTH:
4016 BA_U_sid = &global_sid_Builtin_Administrators;
4017 BA_G_sid = &global_sid_Builtin_Administrators;
4018 break;
4019 case ID_TYPE_UID:
4020 BA_U_sid = &global_sid_Builtin_Administrators;
4021 break;
4022 case ID_TYPE_GID:
4023 BA_G_sid = &global_sid_Builtin_Administrators;
4024 break;
4025 default:
4026 break;
4031 if (try_system) {
4032 struct unixid ids;
4033 bool ok;
4035 ZERO_STRUCT(ids);
4036 ok = sids_to_unixids(&global_sid_System, 1, &ids);
4037 if (ok) {
4038 switch (ids.type) {
4039 case ID_TYPE_BOTH:
4040 SY_U_sid = &global_sid_System;
4041 SY_G_sid = &global_sid_System;
4042 break;
4043 case ID_TYPE_UID:
4044 SY_U_sid = &global_sid_System;
4045 break;
4046 case ID_TYPE_GID:
4047 SY_G_sid = &global_sid_System;
4048 break;
4049 default:
4050 break;
4055 if (owner_sid == NULL) {
4056 owner_sid = BA_U_sid;
4059 if (owner_sid == NULL) {
4060 owner_sid = SY_U_sid;
4063 if (group_sid == NULL) {
4064 group_sid = SY_G_sid;
4067 if (try_system && group_sid == NULL) {
4068 group_sid = BA_G_sid;
4071 if (owner_sid == NULL) {
4072 owner_sid = &token->sids[PRIMARY_USER_SID_INDEX];
4074 if (group_sid == NULL) {
4075 if (token->num_sids == PRIMARY_GROUP_SID_INDEX) {
4076 group_sid = &token->sids[PRIMARY_USER_SID_INDEX];
4077 } else {
4078 group_sid = &token->sids[PRIMARY_GROUP_SID_INDEX];
4082 status = se_create_child_secdesc(frame,
4083 &psd,
4084 &size,
4085 parent_desc,
4086 owner_sid,
4087 group_sid,
4088 fsp->is_directory);
4089 if (!NT_STATUS_IS_OK(status)) {
4090 TALLOC_FREE(frame);
4091 return status;
4094 /* If inheritable_components == false,
4095 se_create_child_secdesc()
4096 creates a security desriptor with a NULL dacl
4097 entry, but with SEC_DESC_DACL_PRESENT. We need
4098 to remove that flag. */
4100 if (!inheritable_components) {
4101 security_info_sent &= ~SECINFO_DACL;
4102 psd->type &= ~SEC_DESC_DACL_PRESENT;
4105 if (DEBUGLEVEL >= 10) {
4106 DEBUG(10,("inherit_new_acl: child acl for %s is:\n",
4107 fsp_str_dbg(fsp) ));
4108 NDR_PRINT_DEBUG(security_descriptor, psd);
4111 if (inherit_owner) {
4112 /* We need to be root to force this. */
4113 become_root();
4115 status = SMB_VFS_FSET_NT_ACL(fsp,
4116 security_info_sent,
4117 psd);
4118 if (inherit_owner) {
4119 unbecome_root();
4121 TALLOC_FREE(frame);
4122 return status;
4126 * If we already have a lease, it must match the new file id. [MS-SMB2]
4127 * 3.3.5.9.8 speaks about INVALID_PARAMETER if an already used lease key is
4128 * used for a different file name.
4131 struct lease_match_state {
4132 /* Input parameters. */
4133 TALLOC_CTX *mem_ctx;
4134 const char *servicepath;
4135 const struct smb_filename *fname;
4136 bool file_existed;
4137 struct file_id id;
4138 /* Return parameters. */
4139 uint32_t num_file_ids;
4140 struct file_id *ids;
4141 NTSTATUS match_status;
4144 /*************************************************************
4145 File doesn't exist but this lease key+guid is already in use.
4147 This is only allowable in the dynamic share case where the
4148 service path must be different.
4150 There is a small race condition here in the multi-connection
4151 case where a client sends two create calls on different connections,
4152 where the file doesn't exist and one smbd creates the leases_db
4153 entry first, but this will get fixed by the multichannel cleanup
4154 when all identical client_guids get handled by a single smbd.
4155 **************************************************************/
4157 static void lease_match_parser_new_file(
4158 uint32_t num_files,
4159 const struct leases_db_file *files,
4160 struct lease_match_state *state)
4162 uint32_t i;
4164 for (i = 0; i < num_files; i++) {
4165 const struct leases_db_file *f = &files[i];
4166 if (strequal(state->servicepath, f->servicepath)) {
4167 state->match_status = NT_STATUS_INVALID_PARAMETER;
4168 return;
4172 /* Dynamic share case. Break leases on all other files. */
4173 state->match_status = leases_db_copy_file_ids(state->mem_ctx,
4174 num_files,
4175 files,
4176 &state->ids);
4177 if (!NT_STATUS_IS_OK(state->match_status)) {
4178 return;
4181 state->num_file_ids = num_files;
4182 state->match_status = NT_STATUS_OPLOCK_NOT_GRANTED;
4183 return;
4186 static void lease_match_parser(
4187 uint32_t num_files,
4188 const struct leases_db_file *files,
4189 void *private_data)
4191 struct lease_match_state *state =
4192 (struct lease_match_state *)private_data;
4193 uint32_t i;
4195 if (!state->file_existed) {
4197 * Deal with name mismatch or
4198 * possible dynamic share case separately
4199 * to make code clearer.
4201 lease_match_parser_new_file(num_files,
4202 files,
4203 state);
4204 return;
4207 /* File existed. */
4208 state->match_status = NT_STATUS_OK;
4210 for (i = 0; i < num_files; i++) {
4211 const struct leases_db_file *f = &files[i];
4213 /* Everything should be the same. */
4214 if (!file_id_equal(&state->id, &f->id)) {
4215 /* This should catch all dynamic share cases. */
4216 state->match_status = NT_STATUS_OPLOCK_NOT_GRANTED;
4217 break;
4219 if (!strequal(f->servicepath, state->servicepath)) {
4220 state->match_status = NT_STATUS_INVALID_PARAMETER;
4221 break;
4223 if (!strequal(f->base_name, state->fname->base_name)) {
4224 state->match_status = NT_STATUS_INVALID_PARAMETER;
4225 break;
4227 if (!strequal(f->stream_name, state->fname->stream_name)) {
4228 state->match_status = NT_STATUS_INVALID_PARAMETER;
4229 break;
4233 if (NT_STATUS_IS_OK(state->match_status)) {
4235 * Common case - just opening another handle on a
4236 * file on a non-dynamic share.
4238 return;
4241 if (NT_STATUS_EQUAL(state->match_status, NT_STATUS_INVALID_PARAMETER)) {
4242 /* Mismatched path. Error back to client. */
4243 return;
4247 * File id mismatch. Dynamic share case NT_STATUS_OPLOCK_NOT_GRANTED.
4248 * Don't allow leases.
4251 state->match_status = leases_db_copy_file_ids(state->mem_ctx,
4252 num_files,
4253 files,
4254 &state->ids);
4255 if (!NT_STATUS_IS_OK(state->match_status)) {
4256 return;
4259 state->num_file_ids = num_files;
4260 state->match_status = NT_STATUS_OPLOCK_NOT_GRANTED;
4261 return;
4264 static NTSTATUS lease_match(connection_struct *conn,
4265 struct smb_request *req,
4266 struct smb2_lease_key *lease_key,
4267 const char *servicepath,
4268 const struct smb_filename *fname,
4269 uint16_t *p_version,
4270 uint16_t *p_epoch)
4272 struct smbd_server_connection *sconn = req->sconn;
4273 TALLOC_CTX *tos = talloc_tos();
4274 struct lease_match_state state = {
4275 .mem_ctx = tos,
4276 .servicepath = servicepath,
4277 .fname = fname,
4278 .match_status = NT_STATUS_OK
4280 uint32_t i;
4281 NTSTATUS status;
4283 state.file_existed = VALID_STAT(fname->st);
4284 if (state.file_existed) {
4285 state.id = vfs_file_id_from_sbuf(conn, &fname->st);
4286 } else {
4287 memset(&state.id, '\0', sizeof(state.id));
4290 status = leases_db_parse(&sconn->client->connections->smb2.client.guid,
4291 lease_key, lease_match_parser, &state);
4292 if (!NT_STATUS_IS_OK(status)) {
4294 * Not found or error means okay: We can make the lease pass
4296 return NT_STATUS_OK;
4298 if (!NT_STATUS_EQUAL(state.match_status, NT_STATUS_OPLOCK_NOT_GRANTED)) {
4300 * Anything but NT_STATUS_OPLOCK_NOT_GRANTED, let the caller
4301 * deal with it.
4303 return state.match_status;
4306 /* We have to break all existing leases. */
4307 for (i = 0; i < state.num_file_ids; i++) {
4308 struct share_mode_lock *lck;
4309 struct share_mode_data *d;
4310 uint32_t j;
4312 if (file_id_equal(&state.ids[i], &state.id)) {
4313 /* Don't need to break our own file. */
4314 continue;
4317 lck = get_existing_share_mode_lock(talloc_tos(), state.ids[i]);
4318 if (lck == NULL) {
4319 /* Race condition - file already closed. */
4320 continue;
4322 d = lck->data;
4323 for (j=0; j<d->num_share_modes; j++) {
4324 struct share_mode_entry *e = &d->share_modes[j];
4325 uint32_t e_lease_type = get_lease_type(d, e);
4326 struct share_mode_lease *l = NULL;
4328 if (share_mode_stale_pid(d, j)) {
4329 continue;
4332 if (e->op_type == LEASE_OPLOCK) {
4333 l = &lck->data->leases[e->lease_idx];
4334 if (!smb2_lease_key_equal(&l->lease_key,
4335 lease_key)) {
4336 continue;
4338 *p_epoch = l->epoch;
4339 *p_version = l->lease_version;
4342 if (e_lease_type == SMB2_LEASE_NONE) {
4343 continue;
4346 send_break_message(conn->sconn->msg_ctx, e,
4347 SMB2_LEASE_NONE);
4350 * Windows 7 and 8 lease clients
4351 * are broken in that they will not
4352 * respond to lease break requests
4353 * whilst waiting for an outstanding
4354 * open request on that lease handle
4355 * on the same TCP connection, due
4356 * to holding an internal inode lock.
4358 * This means we can't reschedule
4359 * ourselves here, but must return
4360 * from the create.
4362 * Work around:
4364 * Send the breaks and then return
4365 * SMB2_LEASE_NONE in the lease handle
4366 * to cause them to acknowledge the
4367 * lease break. Consulatation with
4368 * Microsoft engineering confirmed
4369 * this approach is safe.
4373 TALLOC_FREE(lck);
4376 * Ensure we don't grant anything more so we
4377 * never upgrade.
4379 return NT_STATUS_OPLOCK_NOT_GRANTED;
4383 * Wrapper around open_file_ntcreate and open_directory
4386 static NTSTATUS create_file_unixpath(connection_struct *conn,
4387 struct smb_request *req,
4388 struct smb_filename *smb_fname,
4389 uint32_t access_mask,
4390 uint32_t share_access,
4391 uint32_t create_disposition,
4392 uint32_t create_options,
4393 uint32_t file_attributes,
4394 uint32_t oplock_request,
4395 struct smb2_lease *lease,
4396 uint64_t allocation_size,
4397 uint32_t private_flags,
4398 struct security_descriptor *sd,
4399 struct ea_list *ea_list,
4401 files_struct **result,
4402 int *pinfo)
4404 int info = FILE_WAS_OPENED;
4405 files_struct *base_fsp = NULL;
4406 files_struct *fsp = NULL;
4407 NTSTATUS status;
4409 DEBUG(10,("create_file_unixpath: access_mask = 0x%x "
4410 "file_attributes = 0x%x, share_access = 0x%x, "
4411 "create_disposition = 0x%x create_options = 0x%x "
4412 "oplock_request = 0x%x private_flags = 0x%x "
4413 "ea_list = 0x%p, sd = 0x%p, "
4414 "fname = %s\n",
4415 (unsigned int)access_mask,
4416 (unsigned int)file_attributes,
4417 (unsigned int)share_access,
4418 (unsigned int)create_disposition,
4419 (unsigned int)create_options,
4420 (unsigned int)oplock_request,
4421 (unsigned int)private_flags,
4422 ea_list, sd, smb_fname_str_dbg(smb_fname)));
4424 if (create_options & FILE_OPEN_BY_FILE_ID) {
4425 status = NT_STATUS_NOT_SUPPORTED;
4426 goto fail;
4429 if (create_options & NTCREATEX_OPTIONS_INVALID_PARAM_MASK) {
4430 status = NT_STATUS_INVALID_PARAMETER;
4431 goto fail;
4434 if (req == NULL) {
4435 oplock_request |= INTERNAL_OPEN_ONLY;
4438 if (lease != NULL) {
4439 uint16_t epoch = lease->lease_epoch;
4440 uint16_t version = lease->lease_version;
4441 status = lease_match(conn,
4442 req,
4443 &lease->lease_key,
4444 conn->connectpath,
4445 smb_fname,
4446 &version,
4447 &epoch);
4448 if (NT_STATUS_EQUAL(status, NT_STATUS_OPLOCK_NOT_GRANTED)) {
4449 /* Dynamic share file. No leases and update epoch... */
4450 lease->lease_state = SMB2_LEASE_NONE;
4451 lease->lease_epoch = epoch;
4452 lease->lease_version = version;
4453 } else if (!NT_STATUS_IS_OK(status)) {
4454 goto fail;
4458 if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
4459 && (access_mask & DELETE_ACCESS)
4460 && !is_ntfs_stream_smb_fname(smb_fname)) {
4462 * We can't open a file with DELETE access if any of the
4463 * streams is open without FILE_SHARE_DELETE
4465 status = open_streams_for_delete(conn, smb_fname->base_name);
4467 if (!NT_STATUS_IS_OK(status)) {
4468 goto fail;
4472 if ((access_mask & SEC_FLAG_SYSTEM_SECURITY) &&
4473 !security_token_has_privilege(get_current_nttok(conn),
4474 SEC_PRIV_SECURITY)) {
4475 DEBUG(10, ("create_file_unixpath: open on %s "
4476 "failed - SEC_FLAG_SYSTEM_SECURITY denied.\n",
4477 smb_fname_str_dbg(smb_fname)));
4478 status = NT_STATUS_PRIVILEGE_NOT_HELD;
4479 goto fail;
4482 if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
4483 && is_ntfs_stream_smb_fname(smb_fname)
4484 && (!(private_flags & NTCREATEX_OPTIONS_PRIVATE_STREAM_DELETE))) {
4485 uint32 base_create_disposition;
4486 struct smb_filename *smb_fname_base = NULL;
4488 if (create_options & FILE_DIRECTORY_FILE) {
4489 status = NT_STATUS_NOT_A_DIRECTORY;
4490 goto fail;
4493 switch (create_disposition) {
4494 case FILE_OPEN:
4495 base_create_disposition = FILE_OPEN;
4496 break;
4497 default:
4498 base_create_disposition = FILE_OPEN_IF;
4499 break;
4502 /* Create an smb_filename with stream_name == NULL. */
4503 smb_fname_base = synthetic_smb_fname(talloc_tos(),
4504 smb_fname->base_name,
4505 NULL, NULL);
4506 if (smb_fname_base == NULL) {
4507 status = NT_STATUS_NO_MEMORY;
4508 goto fail;
4511 if (SMB_VFS_STAT(conn, smb_fname_base) == -1) {
4512 DEBUG(10, ("Unable to stat stream: %s\n",
4513 smb_fname_str_dbg(smb_fname_base)));
4514 } else {
4516 * https://bugzilla.samba.org/show_bug.cgi?id=10229
4517 * We need to check if the requested access mask
4518 * could be used to open the underlying file (if
4519 * it existed), as we're passing in zero for the
4520 * access mask to the base filename.
4522 status = check_base_file_access(conn,
4523 smb_fname_base,
4524 access_mask);
4526 if (!NT_STATUS_IS_OK(status)) {
4527 DEBUG(10, ("Permission check "
4528 "for base %s failed: "
4529 "%s\n", smb_fname->base_name,
4530 nt_errstr(status)));
4531 goto fail;
4535 /* Open the base file. */
4536 status = create_file_unixpath(conn, NULL, smb_fname_base, 0,
4537 FILE_SHARE_READ
4538 | FILE_SHARE_WRITE
4539 | FILE_SHARE_DELETE,
4540 base_create_disposition,
4541 0, 0, 0, NULL, 0, 0, NULL, NULL,
4542 &base_fsp, NULL);
4543 TALLOC_FREE(smb_fname_base);
4545 if (!NT_STATUS_IS_OK(status)) {
4546 DEBUG(10, ("create_file_unixpath for base %s failed: "
4547 "%s\n", smb_fname->base_name,
4548 nt_errstr(status)));
4549 goto fail;
4551 /* we don't need the low level fd */
4552 fd_close(base_fsp);
4556 * If it's a request for a directory open, deal with it separately.
4559 if (create_options & FILE_DIRECTORY_FILE) {
4561 if (create_options & FILE_NON_DIRECTORY_FILE) {
4562 status = NT_STATUS_INVALID_PARAMETER;
4563 goto fail;
4566 /* Can't open a temp directory. IFS kit test. */
4567 if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS) &&
4568 (file_attributes & FILE_ATTRIBUTE_TEMPORARY)) {
4569 status = NT_STATUS_INVALID_PARAMETER;
4570 goto fail;
4574 * We will get a create directory here if the Win32
4575 * app specified a security descriptor in the
4576 * CreateDirectory() call.
4579 oplock_request = 0;
4580 status = open_directory(
4581 conn, req, smb_fname, access_mask, share_access,
4582 create_disposition, create_options, file_attributes,
4583 &info, &fsp);
4584 } else {
4587 * Ordinary file case.
4590 status = file_new(req, conn, &fsp);
4591 if(!NT_STATUS_IS_OK(status)) {
4592 goto fail;
4595 status = fsp_set_smb_fname(fsp, smb_fname);
4596 if (!NT_STATUS_IS_OK(status)) {
4597 goto fail;
4600 if (base_fsp) {
4602 * We're opening the stream element of a
4603 * base_fsp we already opened. Set up the
4604 * base_fsp pointer.
4606 fsp->base_fsp = base_fsp;
4609 if (allocation_size) {
4610 fsp->initial_allocation_size = smb_roundup(fsp->conn,
4611 allocation_size);
4614 status = open_file_ntcreate(conn,
4615 req,
4616 access_mask,
4617 share_access,
4618 create_disposition,
4619 create_options,
4620 file_attributes,
4621 oplock_request,
4622 lease,
4623 private_flags,
4624 &info,
4625 fsp);
4627 if(!NT_STATUS_IS_OK(status)) {
4628 file_free(req, fsp);
4629 fsp = NULL;
4632 if (NT_STATUS_EQUAL(status, NT_STATUS_FILE_IS_A_DIRECTORY)) {
4634 /* A stream open never opens a directory */
4636 if (base_fsp) {
4637 status = NT_STATUS_FILE_IS_A_DIRECTORY;
4638 goto fail;
4642 * Fail the open if it was explicitly a non-directory
4643 * file.
4646 if (create_options & FILE_NON_DIRECTORY_FILE) {
4647 status = NT_STATUS_FILE_IS_A_DIRECTORY;
4648 goto fail;
4651 oplock_request = 0;
4652 status = open_directory(
4653 conn, req, smb_fname, access_mask,
4654 share_access, create_disposition,
4655 create_options, file_attributes,
4656 &info, &fsp);
4660 if (!NT_STATUS_IS_OK(status)) {
4661 goto fail;
4664 fsp->base_fsp = base_fsp;
4666 if ((ea_list != NULL) &&
4667 ((info == FILE_WAS_CREATED) || (info == FILE_WAS_OVERWRITTEN))) {
4668 status = set_ea(conn, fsp, fsp->fsp_name, ea_list);
4669 if (!NT_STATUS_IS_OK(status)) {
4670 goto fail;
4674 if (!fsp->is_directory && S_ISDIR(fsp->fsp_name->st.st_ex_mode)) {
4675 status = NT_STATUS_ACCESS_DENIED;
4676 goto fail;
4679 /* Save the requested allocation size. */
4680 if ((info == FILE_WAS_CREATED) || (info == FILE_WAS_OVERWRITTEN)) {
4681 if (allocation_size
4682 && (allocation_size > fsp->fsp_name->st.st_ex_size)) {
4683 fsp->initial_allocation_size = smb_roundup(
4684 fsp->conn, allocation_size);
4685 if (fsp->is_directory) {
4686 /* Can't set allocation size on a directory. */
4687 status = NT_STATUS_ACCESS_DENIED;
4688 goto fail;
4690 if (vfs_allocate_file_space(
4691 fsp, fsp->initial_allocation_size) == -1) {
4692 status = NT_STATUS_DISK_FULL;
4693 goto fail;
4695 } else {
4696 fsp->initial_allocation_size = smb_roundup(
4697 fsp->conn, (uint64_t)fsp->fsp_name->st.st_ex_size);
4699 } else {
4700 fsp->initial_allocation_size = 0;
4703 if ((info == FILE_WAS_CREATED) && lp_nt_acl_support(SNUM(conn)) &&
4704 fsp->base_fsp == NULL) {
4705 if (sd != NULL) {
4707 * According to the MS documentation, the only time the security
4708 * descriptor is applied to the opened file is iff we *created* the
4709 * file; an existing file stays the same.
4711 * Also, it seems (from observation) that you can open the file with
4712 * any access mask but you can still write the sd. We need to override
4713 * the granted access before we call set_sd
4714 * Patch for bug #2242 from Tom Lackemann <cessnatomny@yahoo.com>.
4717 uint32_t sec_info_sent;
4718 uint32_t saved_access_mask = fsp->access_mask;
4720 sec_info_sent = get_sec_info(sd);
4722 fsp->access_mask = FILE_GENERIC_ALL;
4724 if (sec_info_sent & (SECINFO_OWNER|
4725 SECINFO_GROUP|
4726 SECINFO_DACL|
4727 SECINFO_SACL)) {
4728 status = set_sd(fsp, sd, sec_info_sent);
4731 fsp->access_mask = saved_access_mask;
4733 if (!NT_STATUS_IS_OK(status)) {
4734 goto fail;
4736 } else if (lp_inherit_acls(SNUM(conn))) {
4737 /* Inherit from parent. Errors here are not fatal. */
4738 status = inherit_new_acl(fsp);
4739 if (!NT_STATUS_IS_OK(status)) {
4740 DEBUG(10,("inherit_new_acl: failed for %s with %s\n",
4741 fsp_str_dbg(fsp),
4742 nt_errstr(status) ));
4747 if ((conn->fs_capabilities & FILE_FILE_COMPRESSION)
4748 && (create_options & FILE_NO_COMPRESSION)
4749 && (info == FILE_WAS_CREATED)) {
4750 status = SMB_VFS_SET_COMPRESSION(conn, fsp, fsp,
4751 COMPRESSION_FORMAT_NONE);
4752 if (!NT_STATUS_IS_OK(status)) {
4753 DEBUG(1, ("failed to disable compression: %s\n",
4754 nt_errstr(status)));
4758 DEBUG(10, ("create_file_unixpath: info=%d\n", info));
4760 *result = fsp;
4761 if (pinfo != NULL) {
4762 *pinfo = info;
4765 smb_fname->st = fsp->fsp_name->st;
4767 return NT_STATUS_OK;
4769 fail:
4770 DEBUG(10, ("create_file_unixpath: %s\n", nt_errstr(status)));
4772 if (fsp != NULL) {
4773 if (base_fsp && fsp->base_fsp == base_fsp) {
4775 * The close_file below will close
4776 * fsp->base_fsp.
4778 base_fsp = NULL;
4780 close_file(req, fsp, ERROR_CLOSE);
4781 fsp = NULL;
4783 if (base_fsp != NULL) {
4784 close_file(req, base_fsp, ERROR_CLOSE);
4785 base_fsp = NULL;
4787 return status;
4791 * Calculate the full path name given a relative fid.
4793 NTSTATUS get_relative_fid_filename(connection_struct *conn,
4794 struct smb_request *req,
4795 uint16_t root_dir_fid,
4796 const struct smb_filename *smb_fname,
4797 struct smb_filename **smb_fname_out)
4799 files_struct *dir_fsp;
4800 char *parent_fname = NULL;
4801 char *new_base_name = NULL;
4802 NTSTATUS status;
4804 if (root_dir_fid == 0 || !smb_fname) {
4805 status = NT_STATUS_INTERNAL_ERROR;
4806 goto out;
4809 dir_fsp = file_fsp(req, root_dir_fid);
4811 if (dir_fsp == NULL) {
4812 status = NT_STATUS_INVALID_HANDLE;
4813 goto out;
4816 if (is_ntfs_stream_smb_fname(dir_fsp->fsp_name)) {
4817 status = NT_STATUS_INVALID_HANDLE;
4818 goto out;
4821 if (!dir_fsp->is_directory) {
4824 * Check to see if this is a mac fork of some kind.
4827 if ((conn->fs_capabilities & FILE_NAMED_STREAMS) &&
4828 is_ntfs_stream_smb_fname(smb_fname)) {
4829 status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
4830 goto out;
4834 we need to handle the case when we get a
4835 relative open relative to a file and the
4836 pathname is blank - this is a reopen!
4837 (hint from demyn plantenberg)
4840 status = NT_STATUS_INVALID_HANDLE;
4841 goto out;
4844 if (ISDOT(dir_fsp->fsp_name->base_name)) {
4846 * We're at the toplevel dir, the final file name
4847 * must not contain ./, as this is filtered out
4848 * normally by srvstr_get_path and unix_convert
4849 * explicitly rejects paths containing ./.
4851 parent_fname = talloc_strdup(talloc_tos(), "");
4852 if (parent_fname == NULL) {
4853 status = NT_STATUS_NO_MEMORY;
4854 goto out;
4856 } else {
4857 size_t dir_name_len = strlen(dir_fsp->fsp_name->base_name);
4860 * Copy in the base directory name.
4863 parent_fname = talloc_array(talloc_tos(), char,
4864 dir_name_len+2);
4865 if (parent_fname == NULL) {
4866 status = NT_STATUS_NO_MEMORY;
4867 goto out;
4869 memcpy(parent_fname, dir_fsp->fsp_name->base_name,
4870 dir_name_len+1);
4873 * Ensure it ends in a '/'.
4874 * We used TALLOC_SIZE +2 to add space for the '/'.
4877 if(dir_name_len
4878 && (parent_fname[dir_name_len-1] != '\\')
4879 && (parent_fname[dir_name_len-1] != '/')) {
4880 parent_fname[dir_name_len] = '/';
4881 parent_fname[dir_name_len+1] = '\0';
4885 new_base_name = talloc_asprintf(talloc_tos(), "%s%s", parent_fname,
4886 smb_fname->base_name);
4887 if (new_base_name == NULL) {
4888 status = NT_STATUS_NO_MEMORY;
4889 goto out;
4892 status = filename_convert(req,
4893 conn,
4894 req->flags2 & FLAGS2_DFS_PATHNAMES,
4895 new_base_name,
4897 NULL,
4898 smb_fname_out);
4899 if (!NT_STATUS_IS_OK(status)) {
4900 goto out;
4903 out:
4904 TALLOC_FREE(parent_fname);
4905 TALLOC_FREE(new_base_name);
4906 return status;
4909 NTSTATUS create_file_default(connection_struct *conn,
4910 struct smb_request *req,
4911 uint16_t root_dir_fid,
4912 struct smb_filename *smb_fname,
4913 uint32_t access_mask,
4914 uint32_t share_access,
4915 uint32_t create_disposition,
4916 uint32_t create_options,
4917 uint32_t file_attributes,
4918 uint32_t oplock_request,
4919 struct smb2_lease *lease,
4920 uint64_t allocation_size,
4921 uint32_t private_flags,
4922 struct security_descriptor *sd,
4923 struct ea_list *ea_list,
4924 files_struct **result,
4925 int *pinfo,
4926 const struct smb2_create_blobs *in_context_blobs,
4927 struct smb2_create_blobs *out_context_blobs)
4929 int info = FILE_WAS_OPENED;
4930 files_struct *fsp = NULL;
4931 NTSTATUS status;
4932 bool stream_name = false;
4934 DEBUG(10,("create_file: access_mask = 0x%x "
4935 "file_attributes = 0x%x, share_access = 0x%x, "
4936 "create_disposition = 0x%x create_options = 0x%x "
4937 "oplock_request = 0x%x "
4938 "private_flags = 0x%x "
4939 "root_dir_fid = 0x%x, ea_list = 0x%p, sd = 0x%p, "
4940 "fname = %s\n",
4941 (unsigned int)access_mask,
4942 (unsigned int)file_attributes,
4943 (unsigned int)share_access,
4944 (unsigned int)create_disposition,
4945 (unsigned int)create_options,
4946 (unsigned int)oplock_request,
4947 (unsigned int)private_flags,
4948 (unsigned int)root_dir_fid,
4949 ea_list, sd, smb_fname_str_dbg(smb_fname)));
4952 * Calculate the filename from the root_dir_if if necessary.
4955 if (root_dir_fid != 0) {
4956 struct smb_filename *smb_fname_out = NULL;
4957 status = get_relative_fid_filename(conn, req, root_dir_fid,
4958 smb_fname, &smb_fname_out);
4959 if (!NT_STATUS_IS_OK(status)) {
4960 goto fail;
4962 smb_fname = smb_fname_out;
4966 * Check to see if this is a mac fork of some kind.
4969 stream_name = is_ntfs_stream_smb_fname(smb_fname);
4970 if (stream_name) {
4971 enum FAKE_FILE_TYPE fake_file_type;
4973 fake_file_type = is_fake_file(smb_fname);
4975 if (fake_file_type != FAKE_FILE_TYPE_NONE) {
4978 * Here we go! support for changing the disk quotas
4979 * --metze
4981 * We need to fake up to open this MAGIC QUOTA file
4982 * and return a valid FID.
4984 * w2k close this file directly after openening xp
4985 * also tries a QUERY_FILE_INFO on the file and then
4986 * close it
4988 status = open_fake_file(req, conn, req->vuid,
4989 fake_file_type, smb_fname,
4990 access_mask, &fsp);
4991 if (!NT_STATUS_IS_OK(status)) {
4992 goto fail;
4995 ZERO_STRUCT(smb_fname->st);
4996 goto done;
4999 if (!(conn->fs_capabilities & FILE_NAMED_STREAMS)) {
5000 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
5001 goto fail;
5005 if (is_ntfs_default_stream_smb_fname(smb_fname)) {
5006 int ret;
5007 smb_fname->stream_name = NULL;
5008 /* We have to handle this error here. */
5009 if (create_options & FILE_DIRECTORY_FILE) {
5010 status = NT_STATUS_NOT_A_DIRECTORY;
5011 goto fail;
5013 if (lp_posix_pathnames()) {
5014 ret = SMB_VFS_LSTAT(conn, smb_fname);
5015 } else {
5016 ret = SMB_VFS_STAT(conn, smb_fname);
5019 if (ret == 0 && VALID_STAT_OF_DIR(smb_fname->st)) {
5020 status = NT_STATUS_FILE_IS_A_DIRECTORY;
5021 goto fail;
5025 status = create_file_unixpath(
5026 conn, req, smb_fname, access_mask, share_access,
5027 create_disposition, create_options, file_attributes,
5028 oplock_request, lease, allocation_size, private_flags,
5029 sd, ea_list,
5030 &fsp, &info);
5032 if (!NT_STATUS_IS_OK(status)) {
5033 goto fail;
5036 done:
5037 DEBUG(10, ("create_file: info=%d\n", info));
5039 *result = fsp;
5040 if (pinfo != NULL) {
5041 *pinfo = info;
5043 return NT_STATUS_OK;
5045 fail:
5046 DEBUG(10, ("create_file: %s\n", nt_errstr(status)));
5048 if (fsp != NULL) {
5049 close_file(req, fsp, ERROR_CLOSE);
5050 fsp = NULL;
5052 return status;