build: Remove references to charset modules - we no longer have these
[Samba/gebeck_regimport.git] / source3 / smbd / open.c
blob381f3b5b27fecd1aa3bf21dcd3200ea11ff5c458
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 "auth.h"
32 #include "messages.h"
34 extern const struct generic_mapping file_generic_mapping;
36 struct deferred_open_record {
37 bool delayed_for_oplocks;
38 bool async_open;
39 struct file_id id;
42 /****************************************************************************
43 If the requester wanted DELETE_ACCESS and was rejected because
44 the file ACL didn't include DELETE_ACCESS, see if the parent ACL
45 overrides this.
46 ****************************************************************************/
48 static bool parent_override_delete(connection_struct *conn,
49 const struct smb_filename *smb_fname,
50 uint32_t access_mask,
51 uint32_t rejected_mask)
53 if ((access_mask & DELETE_ACCESS) &&
54 (rejected_mask & DELETE_ACCESS) &&
55 can_delete_file_in_directory(conn, smb_fname)) {
56 return true;
58 return false;
61 /****************************************************************************
62 Check if we have open rights.
63 ****************************************************************************/
65 NTSTATUS smbd_check_access_rights(struct connection_struct *conn,
66 const struct smb_filename *smb_fname,
67 uint32_t access_mask)
69 /* Check if we have rights to open. */
70 NTSTATUS status;
71 struct security_descriptor *sd = NULL;
72 uint32_t rejected_share_access;
73 uint32_t rejected_mask = access_mask;
75 rejected_share_access = access_mask & ~(conn->share_access);
77 if (rejected_share_access) {
78 DEBUG(10, ("smbd_check_access_rights: rejected share access 0x%x "
79 "on %s (0x%x)\n",
80 (unsigned int)access_mask,
81 smb_fname_str_dbg(smb_fname),
82 (unsigned int)rejected_share_access ));
83 return NT_STATUS_ACCESS_DENIED;
86 if (get_current_uid(conn) == (uid_t)0) {
87 /* I'm sorry sir, I didn't know you were root... */
88 DEBUG(10,("smbd_check_access_rights: root override "
89 "on %s. Granting 0x%x\n",
90 smb_fname_str_dbg(smb_fname),
91 (unsigned int)access_mask ));
92 return NT_STATUS_OK;
95 if ((access_mask & DELETE_ACCESS) && !lp_acl_check_permissions(SNUM(conn))) {
96 DEBUG(10,("smbd_check_access_rights: not checking ACL "
97 "on DELETE_ACCESS on file %s. Granting 0x%x\n",
98 smb_fname_str_dbg(smb_fname),
99 (unsigned int)access_mask ));
100 return NT_STATUS_OK;
103 if (access_mask == DELETE_ACCESS &&
104 VALID_STAT(smb_fname->st) &&
105 S_ISLNK(smb_fname->st.st_ex_mode)) {
106 /* We can always delete a symlink. */
107 DEBUG(10,("smbd_check_access_rights: not checking ACL "
108 "on DELETE_ACCESS on symlink %s.\n",
109 smb_fname_str_dbg(smb_fname) ));
110 return NT_STATUS_OK;
113 status = SMB_VFS_GET_NT_ACL(conn, smb_fname->base_name,
114 (SECINFO_OWNER |
115 SECINFO_GROUP |
116 SECINFO_DACL),&sd);
118 if (!NT_STATUS_IS_OK(status)) {
119 DEBUG(10, ("smbd_check_access_rights: Could not get acl "
120 "on %s: %s\n",
121 smb_fname_str_dbg(smb_fname),
122 nt_errstr(status)));
124 if (NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
125 goto access_denied;
128 return status;
132 * Never test FILE_READ_ATTRIBUTES. se_file_access_check() also takes care of
133 * owner WRITE_DAC and READ_CONTROL.
135 status = se_file_access_check(sd,
136 get_current_nttok(conn),
137 false,
138 (access_mask & ~FILE_READ_ATTRIBUTES),
139 &rejected_mask);
141 DEBUG(10,("smbd_check_access_rights: file %s requesting "
142 "0x%x returning 0x%x (%s)\n",
143 smb_fname_str_dbg(smb_fname),
144 (unsigned int)access_mask,
145 (unsigned int)rejected_mask,
146 nt_errstr(status) ));
148 if (!NT_STATUS_IS_OK(status)) {
149 if (DEBUGLEVEL >= 10) {
150 DEBUG(10,("smbd_check_access_rights: acl for %s is:\n",
151 smb_fname_str_dbg(smb_fname) ));
152 NDR_PRINT_DEBUG(security_descriptor, sd);
156 TALLOC_FREE(sd);
158 if (NT_STATUS_IS_OK(status) ||
159 !NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
160 return status;
163 /* Here we know status == NT_STATUS_ACCESS_DENIED. */
165 access_denied:
167 if ((access_mask & FILE_WRITE_ATTRIBUTES) &&
168 (rejected_mask & FILE_WRITE_ATTRIBUTES) &&
169 !lp_store_dos_attributes(SNUM(conn)) &&
170 (lp_map_readonly(SNUM(conn)) ||
171 lp_map_archive(SNUM(conn)) ||
172 lp_map_hidden(SNUM(conn)) ||
173 lp_map_system(SNUM(conn)))) {
174 rejected_mask &= ~FILE_WRITE_ATTRIBUTES;
176 DEBUG(10,("smbd_check_access_rights: "
177 "overrode "
178 "FILE_WRITE_ATTRIBUTES "
179 "on file %s\n",
180 smb_fname_str_dbg(smb_fname)));
183 if (parent_override_delete(conn,
184 smb_fname,
185 access_mask,
186 rejected_mask)) {
187 /* Were we trying to do an open
188 * for delete and didn't get DELETE
189 * access (only) ? Check if the
190 * directory allows DELETE_CHILD.
191 * See here:
192 * http://blogs.msdn.com/oldnewthing/archive/2004/06/04/148426.aspx
193 * for details. */
195 rejected_mask &= ~DELETE_ACCESS;
197 DEBUG(10,("smbd_check_access_rights: "
198 "overrode "
199 "DELETE_ACCESS on "
200 "file %s\n",
201 smb_fname_str_dbg(smb_fname)));
204 if (rejected_mask != 0) {
205 return NT_STATUS_ACCESS_DENIED;
207 return NT_STATUS_OK;
210 static NTSTATUS check_parent_access(struct connection_struct *conn,
211 struct smb_filename *smb_fname,
212 uint32_t access_mask)
214 NTSTATUS status;
215 char *parent_dir = NULL;
216 struct security_descriptor *parent_sd = NULL;
217 uint32_t access_granted = 0;
219 if (!parent_dirname(talloc_tos(),
220 smb_fname->base_name,
221 &parent_dir,
222 NULL)) {
223 return NT_STATUS_NO_MEMORY;
226 if (get_current_uid(conn) == (uid_t)0) {
227 /* I'm sorry sir, I didn't know you were root... */
228 DEBUG(10,("check_parent_access: root override "
229 "on %s. Granting 0x%x\n",
230 smb_fname_str_dbg(smb_fname),
231 (unsigned int)access_mask ));
232 return NT_STATUS_OK;
235 status = SMB_VFS_GET_NT_ACL(conn,
236 parent_dir,
237 SECINFO_DACL,
238 &parent_sd);
240 if (!NT_STATUS_IS_OK(status)) {
241 DEBUG(5,("check_parent_access: SMB_VFS_GET_NT_ACL failed for "
242 "%s with error %s\n",
243 parent_dir,
244 nt_errstr(status)));
245 return status;
249 * Never test FILE_READ_ATTRIBUTES. se_file_access_check() also takes care of
250 * owner WRITE_DAC and READ_CONTROL.
252 status = se_file_access_check(parent_sd,
253 get_current_nttok(conn),
254 false,
255 (access_mask & ~FILE_READ_ATTRIBUTES),
256 &access_granted);
257 if(!NT_STATUS_IS_OK(status)) {
258 DEBUG(5,("check_parent_access: access check "
259 "on directory %s for "
260 "path %s for mask 0x%x returned (0x%x) %s\n",
261 parent_dir,
262 smb_fname->base_name,
263 access_mask,
264 access_granted,
265 nt_errstr(status) ));
266 return status;
269 return NT_STATUS_OK;
272 /****************************************************************************
273 fd support routines - attempt to do a dos_open.
274 ****************************************************************************/
276 static NTSTATUS fd_open(struct connection_struct *conn,
277 files_struct *fsp,
278 int flags,
279 mode_t mode)
281 struct smb_filename *smb_fname = fsp->fsp_name;
282 NTSTATUS status = NT_STATUS_OK;
284 #ifdef O_NOFOLLOW
286 * Never follow symlinks on a POSIX client. The
287 * client should be doing this.
290 if (fsp->posix_open || !lp_symlinks(SNUM(conn))) {
291 flags |= O_NOFOLLOW;
293 #endif
295 fsp->fh->fd = SMB_VFS_OPEN(conn, smb_fname, fsp, flags, mode);
296 if (fsp->fh->fd == -1) {
297 int posix_errno = errno;
298 #ifdef O_NOFOLLOW
299 #if defined(ENOTSUP) && defined(OSF1)
300 /* handle special Tru64 errno */
301 if (errno == ENOTSUP) {
302 posix_errno = ELOOP;
304 #endif /* ENOTSUP */
305 #ifdef EFTYPE
306 /* fix broken NetBSD errno */
307 if (errno == EFTYPE) {
308 posix_errno = ELOOP;
310 #endif /* EFTYPE */
311 /* fix broken FreeBSD errno */
312 if (errno == EMLINK) {
313 posix_errno = ELOOP;
315 #endif /* O_NOFOLLOW */
316 status = map_nt_error_from_unix(posix_errno);
317 if (errno == EMFILE) {
318 static time_t last_warned = 0L;
320 if (time((time_t *) NULL) > last_warned) {
321 DEBUG(0,("Too many open files, unable "
322 "to open more! smbd's max "
323 "open files = %d\n",
324 lp_max_open_files()));
325 last_warned = time((time_t *) NULL);
331 DEBUG(10,("fd_open: name %s, flags = 0%o mode = 0%o, fd = %d. %s\n",
332 smb_fname_str_dbg(smb_fname), flags, (int)mode, fsp->fh->fd,
333 (fsp->fh->fd == -1) ? strerror(errno) : "" ));
335 return status;
338 /****************************************************************************
339 Close the file associated with a fsp.
340 ****************************************************************************/
342 NTSTATUS fd_close(files_struct *fsp)
344 int ret;
346 if (fsp->dptr) {
347 dptr_CloseDir(fsp);
349 if (fsp->fh->fd == -1) {
350 return NT_STATUS_OK; /* What we used to call a stat open. */
352 if (fsp->fh->ref_count > 1) {
353 return NT_STATUS_OK; /* Shared handle. Only close last reference. */
356 ret = SMB_VFS_CLOSE(fsp);
357 fsp->fh->fd = -1;
358 if (ret == -1) {
359 return map_nt_error_from_unix(errno);
361 return NT_STATUS_OK;
364 /****************************************************************************
365 Change the ownership of a file to that of the parent directory.
366 Do this by fd if possible.
367 ****************************************************************************/
369 void change_file_owner_to_parent(connection_struct *conn,
370 const char *inherit_from_dir,
371 files_struct *fsp)
373 struct smb_filename *smb_fname_parent = NULL;
374 NTSTATUS status;
375 int ret;
377 status = create_synthetic_smb_fname(talloc_tos(), inherit_from_dir,
378 NULL, NULL, &smb_fname_parent);
379 if (!NT_STATUS_IS_OK(status)) {
380 return;
383 ret = SMB_VFS_STAT(conn, smb_fname_parent);
384 if (ret == -1) {
385 DEBUG(0,("change_file_owner_to_parent: failed to stat parent "
386 "directory %s. Error was %s\n",
387 smb_fname_str_dbg(smb_fname_parent),
388 strerror(errno)));
389 TALLOC_FREE(smb_fname_parent);
390 return;
393 if (smb_fname_parent->st.st_ex_uid == fsp->fsp_name->st.st_ex_uid) {
394 /* Already this uid - no need to change. */
395 DEBUG(10,("change_file_owner_to_parent: file %s "
396 "is already owned by uid %d\n",
397 fsp_str_dbg(fsp),
398 (int)fsp->fsp_name->st.st_ex_uid ));
399 TALLOC_FREE(smb_fname_parent);
400 return;
403 become_root();
404 ret = SMB_VFS_FCHOWN(fsp, smb_fname_parent->st.st_ex_uid, (gid_t)-1);
405 unbecome_root();
406 if (ret == -1) {
407 DEBUG(0,("change_file_owner_to_parent: failed to fchown "
408 "file %s to parent directory uid %u. Error "
409 "was %s\n", fsp_str_dbg(fsp),
410 (unsigned int)smb_fname_parent->st.st_ex_uid,
411 strerror(errno) ));
412 } else {
413 DEBUG(10,("change_file_owner_to_parent: changed new file %s to "
414 "parent directory uid %u.\n", fsp_str_dbg(fsp),
415 (unsigned int)smb_fname_parent->st.st_ex_uid));
416 /* Ensure the uid entry is updated. */
417 fsp->fsp_name->st.st_ex_uid = smb_fname_parent->st.st_ex_uid;
420 TALLOC_FREE(smb_fname_parent);
423 NTSTATUS change_dir_owner_to_parent(connection_struct *conn,
424 const char *inherit_from_dir,
425 const char *fname,
426 SMB_STRUCT_STAT *psbuf)
428 struct smb_filename *smb_fname_parent = NULL;
429 struct smb_filename *smb_fname_cwd = NULL;
430 char *saved_dir = NULL;
431 TALLOC_CTX *ctx = talloc_tos();
432 NTSTATUS status = NT_STATUS_OK;
433 int ret;
435 status = create_synthetic_smb_fname(ctx, inherit_from_dir, NULL, NULL,
436 &smb_fname_parent);
437 if (!NT_STATUS_IS_OK(status)) {
438 return status;
441 ret = SMB_VFS_STAT(conn, smb_fname_parent);
442 if (ret == -1) {
443 status = map_nt_error_from_unix(errno);
444 DEBUG(0,("change_dir_owner_to_parent: failed to stat parent "
445 "directory %s. Error was %s\n",
446 smb_fname_str_dbg(smb_fname_parent),
447 strerror(errno)));
448 goto out;
451 /* We've already done an lstat into psbuf, and we know it's a
452 directory. If we can cd into the directory and the dev/ino
453 are the same then we can safely chown without races as
454 we're locking the directory in place by being in it. This
455 should work on any UNIX (thanks tridge :-). JRA.
458 saved_dir = vfs_GetWd(ctx,conn);
459 if (!saved_dir) {
460 status = map_nt_error_from_unix(errno);
461 DEBUG(0,("change_dir_owner_to_parent: failed to get "
462 "current working directory. Error was %s\n",
463 strerror(errno)));
464 goto out;
467 /* Chdir into the new path. */
468 if (vfs_ChDir(conn, fname) == -1) {
469 status = map_nt_error_from_unix(errno);
470 DEBUG(0,("change_dir_owner_to_parent: failed to change "
471 "current working directory to %s. Error "
472 "was %s\n", fname, strerror(errno) ));
473 goto chdir;
476 status = create_synthetic_smb_fname(ctx, ".", NULL, NULL,
477 &smb_fname_cwd);
478 if (!NT_STATUS_IS_OK(status)) {
479 return status;
482 ret = SMB_VFS_STAT(conn, smb_fname_cwd);
483 if (ret == -1) {
484 status = map_nt_error_from_unix(errno);
485 DEBUG(0,("change_dir_owner_to_parent: failed to stat "
486 "directory '.' (%s) Error was %s\n",
487 fname, strerror(errno)));
488 goto chdir;
491 /* Ensure we're pointing at the same place. */
492 if (smb_fname_cwd->st.st_ex_dev != psbuf->st_ex_dev ||
493 smb_fname_cwd->st.st_ex_ino != psbuf->st_ex_ino) {
494 DEBUG(0,("change_dir_owner_to_parent: "
495 "device/inode on directory %s changed. "
496 "Refusing to chown !\n", fname ));
497 status = NT_STATUS_ACCESS_DENIED;
498 goto chdir;
501 if (smb_fname_parent->st.st_ex_uid == smb_fname_cwd->st.st_ex_uid) {
502 /* Already this uid - no need to change. */
503 DEBUG(10,("change_dir_owner_to_parent: directory %s "
504 "is already owned by uid %d\n",
505 fname,
506 (int)smb_fname_cwd->st.st_ex_uid ));
507 status = NT_STATUS_OK;
508 goto chdir;
511 become_root();
512 ret = SMB_VFS_LCHOWN(conn, ".", smb_fname_parent->st.st_ex_uid,
513 (gid_t)-1);
514 unbecome_root();
515 if (ret == -1) {
516 status = map_nt_error_from_unix(errno);
517 DEBUG(10,("change_dir_owner_to_parent: failed to chown "
518 "directory %s to parent directory uid %u. "
519 "Error was %s\n", fname,
520 (unsigned int)smb_fname_parent->st.st_ex_uid,
521 strerror(errno) ));
522 } else {
523 DEBUG(10,("change_dir_owner_to_parent: changed ownership of new "
524 "directory %s to parent directory uid %u.\n",
525 fname, (unsigned int)smb_fname_parent->st.st_ex_uid ));
526 /* Ensure the uid entry is updated. */
527 psbuf->st_ex_uid = smb_fname_parent->st.st_ex_uid;
530 chdir:
531 vfs_ChDir(conn,saved_dir);
532 out:
533 TALLOC_FREE(smb_fname_parent);
534 TALLOC_FREE(smb_fname_cwd);
535 return status;
538 /****************************************************************************
539 Open a file - returning a guaranteed ATOMIC indication of if the
540 file was created or not.
541 ****************************************************************************/
543 static NTSTATUS fd_open_atomic(struct connection_struct *conn,
544 files_struct *fsp,
545 int flags,
546 mode_t mode,
547 bool *file_created)
549 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
550 bool file_existed = VALID_STAT(fsp->fsp_name->st);
552 *file_created = false;
554 if (!(flags & O_CREAT)) {
556 * We're not creating the file, just pass through.
558 return fd_open(conn, fsp, flags, mode);
561 if (flags & O_EXCL) {
563 * Fail if already exists, just pass through.
565 status = fd_open(conn, fsp, flags, mode);
566 if (NT_STATUS_IS_OK(status)) {
568 * Here we've opened with O_CREAT|O_EXCL
569 * and got success. We *know* we created
570 * this file.
572 *file_created = true;
574 return status;
578 * Now it gets tricky. We have O_CREAT, but not O_EXCL.
579 * To know absolutely if we created the file or not,
580 * we can never call O_CREAT without O_EXCL. So if
581 * we think the file existed, try without O_CREAT|O_EXCL.
582 * If we think the file didn't exist, try with
583 * O_CREAT|O_EXCL. Keep bouncing between these two
584 * requests until either the file is created, or
585 * opened. Either way, we keep going until we get
586 * a returnable result (error, or open/create).
589 while(1) {
590 int curr_flags = flags;
592 if (file_existed) {
593 /* Just try open, do not create. */
594 curr_flags &= ~(O_CREAT);
595 status = fd_open(conn, fsp, curr_flags, mode);
596 if (NT_STATUS_EQUAL(status,
597 NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
599 * Someone deleted it in the meantime.
600 * Retry with O_EXCL.
602 file_existed = false;
603 DEBUG(10,("fd_open_atomic: file %s existed. "
604 "Retry.\n",
605 smb_fname_str_dbg(fsp->fsp_name)));
606 continue;
608 } else {
609 /* Try create exclusively, fail if it exists. */
610 curr_flags |= O_EXCL;
611 status = fd_open(conn, fsp, curr_flags, mode);
612 if (NT_STATUS_EQUAL(status,
613 NT_STATUS_OBJECT_NAME_COLLISION)) {
615 * Someone created it in the meantime.
616 * Retry without O_CREAT.
618 file_existed = true;
619 DEBUG(10,("fd_open_atomic: file %s "
620 "did not exist. Retry.\n",
621 smb_fname_str_dbg(fsp->fsp_name)));
622 continue;
624 if (NT_STATUS_IS_OK(status)) {
626 * Here we've opened with O_CREAT|O_EXCL
627 * and got success. We *know* we created
628 * this file.
630 *file_created = true;
633 /* Create is done, or failed. */
634 break;
636 return status;
639 /****************************************************************************
640 Open a file.
641 ****************************************************************************/
643 static NTSTATUS open_file(files_struct *fsp,
644 connection_struct *conn,
645 struct smb_request *req,
646 const char *parent_dir,
647 int flags,
648 mode_t unx_mode,
649 uint32 access_mask, /* client requested access mask. */
650 uint32 open_access_mask, /* what we're actually using in the open. */
651 bool *p_file_created)
653 struct smb_filename *smb_fname = fsp->fsp_name;
654 NTSTATUS status = NT_STATUS_OK;
655 int accmode = (flags & O_ACCMODE);
656 int local_flags = flags;
657 bool file_existed = VALID_STAT(fsp->fsp_name->st);
659 fsp->fh->fd = -1;
660 errno = EPERM;
662 /* Check permissions */
665 * This code was changed after seeing a client open request
666 * containing the open mode of (DENY_WRITE/read-only) with
667 * the 'create if not exist' bit set. The previous code
668 * would fail to open the file read only on a read-only share
669 * as it was checking the flags parameter directly against O_RDONLY,
670 * this was failing as the flags parameter was set to O_RDONLY|O_CREAT.
671 * JRA.
674 if (!CAN_WRITE(conn)) {
675 /* It's a read-only share - fail if we wanted to write. */
676 if(accmode != O_RDONLY || (flags & O_TRUNC) || (flags & O_APPEND)) {
677 DEBUG(3,("Permission denied opening %s\n",
678 smb_fname_str_dbg(smb_fname)));
679 return NT_STATUS_ACCESS_DENIED;
680 } else if(flags & O_CREAT) {
681 /* We don't want to write - but we must make sure that
682 O_CREAT doesn't create the file if we have write
683 access into the directory.
685 flags &= ~(O_CREAT|O_EXCL);
686 local_flags &= ~(O_CREAT|O_EXCL);
691 * This little piece of insanity is inspired by the
692 * fact that an NT client can open a file for O_RDONLY,
693 * but set the create disposition to FILE_EXISTS_TRUNCATE.
694 * If the client *can* write to the file, then it expects to
695 * truncate the file, even though it is opening for readonly.
696 * Quicken uses this stupid trick in backup file creation...
697 * Thanks *greatly* to "David W. Chapman Jr." <dwcjr@inethouston.net>
698 * for helping track this one down. It didn't bite us in 2.0.x
699 * as we always opened files read-write in that release. JRA.
702 if ((accmode == O_RDONLY) && ((flags & O_TRUNC) == O_TRUNC)) {
703 DEBUG(10,("open_file: truncate requested on read-only open "
704 "for file %s\n", smb_fname_str_dbg(smb_fname)));
705 local_flags = (flags & ~O_ACCMODE)|O_RDWR;
708 if ((open_access_mask & (FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_EXECUTE)) ||
709 (!file_existed && (local_flags & O_CREAT)) ||
710 ((local_flags & O_TRUNC) == O_TRUNC) ) {
711 const char *wild;
712 int ret;
715 * We can't actually truncate here as the file may be locked.
716 * open_file_ntcreate will take care of the truncate later. JRA.
719 local_flags &= ~O_TRUNC;
721 #if defined(O_NONBLOCK) && defined(S_ISFIFO)
723 * We would block on opening a FIFO with no one else on the
724 * other end. Do what we used to do and add O_NONBLOCK to the
725 * open flags. JRA.
728 if (file_existed && S_ISFIFO(smb_fname->st.st_ex_mode)) {
729 local_flags |= O_NONBLOCK;
731 #endif
733 /* Don't create files with Microsoft wildcard characters. */
734 if (fsp->base_fsp) {
736 * wildcard characters are allowed in stream names
737 * only test the basefilename
739 wild = fsp->base_fsp->fsp_name->base_name;
740 } else {
741 wild = smb_fname->base_name;
743 if ((local_flags & O_CREAT) && !file_existed &&
744 ms_has_wild(wild)) {
745 return NT_STATUS_OBJECT_NAME_INVALID;
748 /* Can we access this file ? */
749 if (!fsp->base_fsp) {
750 /* Only do this check on non-stream open. */
751 if (file_existed) {
752 status = smbd_check_access_rights(conn,
753 smb_fname,
754 access_mask);
755 } else if (local_flags & O_CREAT){
756 status = check_parent_access(conn,
757 smb_fname,
758 SEC_DIR_ADD_FILE);
759 } else {
760 /* File didn't exist and no O_CREAT. */
761 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
763 if (!NT_STATUS_IS_OK(status)) {
764 DEBUG(10,("open_file: "
765 "%s on file "
766 "%s returned %s\n",
767 file_existed ?
768 "smbd_check_access_rights" :
769 "check_parent_access",
770 smb_fname_str_dbg(smb_fname),
771 nt_errstr(status) ));
772 return status;
776 /* Actually do the open */
777 status = fd_open_atomic(conn, fsp, local_flags,
778 unx_mode, p_file_created);
779 if (!NT_STATUS_IS_OK(status)) {
780 DEBUG(3,("Error opening file %s (%s) (local_flags=%d) "
781 "(flags=%d)\n", smb_fname_str_dbg(smb_fname),
782 nt_errstr(status),local_flags,flags));
783 return status;
786 ret = SMB_VFS_FSTAT(fsp, &smb_fname->st);
787 if (ret == -1) {
788 /* If we have an fd, this stat should succeed. */
789 DEBUG(0,("Error doing fstat on open file %s "
790 "(%s)\n",
791 smb_fname_str_dbg(smb_fname),
792 strerror(errno) ));
793 status = map_nt_error_from_unix(errno);
794 fd_close(fsp);
795 return status;
798 if (*p_file_created) {
799 /* We created this file. */
801 bool need_re_stat = false;
802 /* Do all inheritance work after we've
803 done a successful fstat call and filled
804 in the stat struct in fsp->fsp_name. */
806 /* Inherit the ACL if required */
807 if (lp_inherit_perms(SNUM(conn))) {
808 inherit_access_posix_acl(conn, parent_dir,
809 smb_fname->base_name,
810 unx_mode);
811 need_re_stat = true;
814 /* Change the owner if required. */
815 if (lp_inherit_owner(SNUM(conn))) {
816 change_file_owner_to_parent(conn, parent_dir,
817 fsp);
818 need_re_stat = true;
821 if (need_re_stat) {
822 ret = SMB_VFS_FSTAT(fsp, &smb_fname->st);
823 /* If we have an fd, this stat should succeed. */
824 if (ret == -1) {
825 DEBUG(0,("Error doing fstat on open file %s "
826 "(%s)\n",
827 smb_fname_str_dbg(smb_fname),
828 strerror(errno) ));
832 notify_fname(conn, NOTIFY_ACTION_ADDED,
833 FILE_NOTIFY_CHANGE_FILE_NAME,
834 smb_fname->base_name);
836 } else {
837 fsp->fh->fd = -1; /* What we used to call a stat open. */
838 if (!file_existed) {
839 /* File must exist for a stat open. */
840 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
843 status = smbd_check_access_rights(conn,
844 smb_fname,
845 access_mask);
847 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND) &&
848 fsp->posix_open &&
849 S_ISLNK(smb_fname->st.st_ex_mode)) {
850 /* This is a POSIX stat open for delete
851 * or rename on a symlink that points
852 * nowhere. Allow. */
853 DEBUG(10,("open_file: allowing POSIX "
854 "open on bad symlink %s\n",
855 smb_fname_str_dbg(smb_fname)));
856 status = NT_STATUS_OK;
859 if (!NT_STATUS_IS_OK(status)) {
860 DEBUG(10,("open_file: "
861 "smbd_check_access_rights on file "
862 "%s returned %s\n",
863 smb_fname_str_dbg(smb_fname),
864 nt_errstr(status) ));
865 return status;
870 * POSIX allows read-only opens of directories. We don't
871 * want to do this (we use a different code path for this)
872 * so catch a directory open and return an EISDIR. JRA.
875 if(S_ISDIR(smb_fname->st.st_ex_mode)) {
876 fd_close(fsp);
877 errno = EISDIR;
878 return NT_STATUS_FILE_IS_A_DIRECTORY;
881 fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_fname->st);
882 fsp->vuid = req ? req->vuid : UID_FIELD_INVALID;
883 fsp->file_pid = req ? req->smbpid : 0;
884 fsp->can_lock = True;
885 fsp->can_read = ((access_mask & FILE_READ_DATA) != 0);
886 fsp->can_write =
887 CAN_WRITE(conn) &&
888 ((access_mask & (FILE_WRITE_DATA | FILE_APPEND_DATA)) != 0);
889 fsp->print_file = NULL;
890 fsp->modified = False;
891 fsp->sent_oplock_break = NO_BREAK_SENT;
892 fsp->is_directory = False;
893 if (conn->aio_write_behind_list &&
894 is_in_path(smb_fname->base_name, conn->aio_write_behind_list,
895 conn->case_sensitive)) {
896 fsp->aio_write_behind = True;
899 fsp->wcp = NULL; /* Write cache pointer. */
901 DEBUG(2,("%s opened file %s read=%s write=%s (numopen=%d)\n",
902 conn->session_info->unix_info->unix_name,
903 smb_fname_str_dbg(smb_fname),
904 BOOLSTR(fsp->can_read), BOOLSTR(fsp->can_write),
905 conn->num_files_open));
907 errno = 0;
908 return NT_STATUS_OK;
911 /****************************************************************************
912 Check if we can open a file with a share mode.
913 Returns True if conflict, False if not.
914 ****************************************************************************/
916 static bool share_conflict(struct share_mode_entry *entry,
917 uint32 access_mask,
918 uint32 share_access)
920 DEBUG(10,("share_conflict: entry->access_mask = 0x%x, "
921 "entry->share_access = 0x%x, "
922 "entry->private_options = 0x%x\n",
923 (unsigned int)entry->access_mask,
924 (unsigned int)entry->share_access,
925 (unsigned int)entry->private_options));
927 DEBUG(10,("share_conflict: access_mask = 0x%x, share_access = 0x%x\n",
928 (unsigned int)access_mask, (unsigned int)share_access));
930 if ((entry->access_mask & (FILE_WRITE_DATA|
931 FILE_APPEND_DATA|
932 FILE_READ_DATA|
933 FILE_EXECUTE|
934 DELETE_ACCESS)) == 0) {
935 DEBUG(10,("share_conflict: No conflict due to "
936 "entry->access_mask = 0x%x\n",
937 (unsigned int)entry->access_mask ));
938 return False;
941 if ((access_mask & (FILE_WRITE_DATA|
942 FILE_APPEND_DATA|
943 FILE_READ_DATA|
944 FILE_EXECUTE|
945 DELETE_ACCESS)) == 0) {
946 DEBUG(10,("share_conflict: No conflict due to "
947 "access_mask = 0x%x\n",
948 (unsigned int)access_mask ));
949 return False;
952 #if 1 /* JRA TEST - Superdebug. */
953 #define CHECK_MASK(num, am, right, sa, share) \
954 DEBUG(10,("share_conflict: [%d] am (0x%x) & right (0x%x) = 0x%x\n", \
955 (unsigned int)(num), (unsigned int)(am), \
956 (unsigned int)(right), (unsigned int)(am)&(right) )); \
957 DEBUG(10,("share_conflict: [%d] sa (0x%x) & share (0x%x) = 0x%x\n", \
958 (unsigned int)(num), (unsigned int)(sa), \
959 (unsigned int)(share), (unsigned int)(sa)&(share) )); \
960 if (((am) & (right)) && !((sa) & (share))) { \
961 DEBUG(10,("share_conflict: check %d conflict am = 0x%x, right = 0x%x, \
962 sa = 0x%x, share = 0x%x\n", (num), (unsigned int)(am), (unsigned int)(right), (unsigned int)(sa), \
963 (unsigned int)(share) )); \
964 return True; \
966 #else
967 #define CHECK_MASK(num, am, right, sa, share) \
968 if (((am) & (right)) && !((sa) & (share))) { \
969 DEBUG(10,("share_conflict: check %d conflict am = 0x%x, right = 0x%x, \
970 sa = 0x%x, share = 0x%x\n", (num), (unsigned int)(am), (unsigned int)(right), (unsigned int)(sa), \
971 (unsigned int)(share) )); \
972 return True; \
974 #endif
976 CHECK_MASK(1, entry->access_mask, FILE_WRITE_DATA | FILE_APPEND_DATA,
977 share_access, FILE_SHARE_WRITE);
978 CHECK_MASK(2, access_mask, FILE_WRITE_DATA | FILE_APPEND_DATA,
979 entry->share_access, FILE_SHARE_WRITE);
981 CHECK_MASK(3, entry->access_mask, FILE_READ_DATA | FILE_EXECUTE,
982 share_access, FILE_SHARE_READ);
983 CHECK_MASK(4, access_mask, FILE_READ_DATA | FILE_EXECUTE,
984 entry->share_access, FILE_SHARE_READ);
986 CHECK_MASK(5, entry->access_mask, DELETE_ACCESS,
987 share_access, FILE_SHARE_DELETE);
988 CHECK_MASK(6, access_mask, DELETE_ACCESS,
989 entry->share_access, FILE_SHARE_DELETE);
991 DEBUG(10,("share_conflict: No conflict.\n"));
992 return False;
995 #if defined(DEVELOPER)
996 static void validate_my_share_entries(struct smbd_server_connection *sconn,
997 int num,
998 struct share_mode_entry *share_entry)
1000 struct server_id self = messaging_server_id(sconn->msg_ctx);
1001 files_struct *fsp;
1003 if (!serverid_equal(&self, &share_entry->pid)) {
1004 return;
1007 if (is_deferred_open_entry(share_entry) &&
1008 !open_was_deferred(sconn, share_entry->op_mid)) {
1009 char *str = talloc_asprintf(talloc_tos(),
1010 "Got a deferred entry without a request: "
1011 "PANIC: %s\n",
1012 share_mode_str(talloc_tos(), num, share_entry));
1013 smb_panic(str);
1016 if (!is_valid_share_mode_entry(share_entry)) {
1017 return;
1020 fsp = file_find_dif(sconn, share_entry->id,
1021 share_entry->share_file_id);
1022 if (!fsp) {
1023 DEBUG(0,("validate_my_share_entries: PANIC : %s\n",
1024 share_mode_str(talloc_tos(), num, share_entry) ));
1025 smb_panic("validate_my_share_entries: Cannot match a "
1026 "share entry with an open file\n");
1029 if (is_deferred_open_entry(share_entry)) {
1030 goto panic;
1033 if ((share_entry->op_type == NO_OPLOCK) &&
1034 (fsp->oplock_type == FAKE_LEVEL_II_OPLOCK)) {
1035 /* Someone has already written to it, but I haven't yet
1036 * noticed */
1037 return;
1040 if (((uint16)fsp->oplock_type) != share_entry->op_type) {
1041 goto panic;
1044 return;
1046 panic:
1048 char *str;
1049 DEBUG(0,("validate_my_share_entries: PANIC : %s\n",
1050 share_mode_str(talloc_tos(), num, share_entry) ));
1051 str = talloc_asprintf(talloc_tos(),
1052 "validate_my_share_entries: "
1053 "file %s, oplock_type = 0x%x, op_type = 0x%x\n",
1054 fsp->fsp_name->base_name,
1055 (unsigned int)fsp->oplock_type,
1056 (unsigned int)share_entry->op_type );
1057 smb_panic(str);
1060 #endif
1062 bool is_stat_open(uint32 access_mask)
1064 return (access_mask &&
1065 ((access_mask & ~(SYNCHRONIZE_ACCESS| FILE_READ_ATTRIBUTES|
1066 FILE_WRITE_ATTRIBUTES))==0) &&
1067 ((access_mask & (SYNCHRONIZE_ACCESS|FILE_READ_ATTRIBUTES|
1068 FILE_WRITE_ATTRIBUTES)) != 0));
1071 /****************************************************************************
1072 Deal with share modes
1073 Invarient: Share mode must be locked on entry and exit.
1074 Returns -1 on error, or number of share modes on success (may be zero).
1075 ****************************************************************************/
1077 static NTSTATUS open_mode_check(connection_struct *conn,
1078 struct share_mode_lock *lck,
1079 uint32_t name_hash,
1080 uint32 access_mask,
1081 uint32 share_access,
1082 uint32 create_options,
1083 bool *file_existed)
1085 int i;
1087 if(lck->data->num_share_modes == 0) {
1088 return NT_STATUS_OK;
1091 /* A delete on close prohibits everything */
1093 if (is_delete_on_close_set(lck, name_hash)) {
1095 * Check the delete on close token
1096 * is valid. It could have been left
1097 * after a server crash.
1099 for(i = 0; i < lck->data->num_share_modes; i++) {
1100 if (!share_mode_stale_pid(lck->data, i)) {
1102 *file_existed = true;
1104 return NT_STATUS_DELETE_PENDING;
1107 return NT_STATUS_OK;
1110 if (is_stat_open(access_mask)) {
1111 /* Stat open that doesn't trigger oplock breaks or share mode
1112 * checks... ! JRA. */
1113 return NT_STATUS_OK;
1117 * Check if the share modes will give us access.
1120 #if defined(DEVELOPER)
1121 for(i = 0; i < lck->data->num_share_modes; i++) {
1122 validate_my_share_entries(conn->sconn, i,
1123 &lck->data->share_modes[i]);
1125 #endif
1127 /* Now we check the share modes, after any oplock breaks. */
1128 for(i = 0; i < lck->data->num_share_modes; i++) {
1130 if (!is_valid_share_mode_entry(&lck->data->share_modes[i])) {
1131 continue;
1134 /* someone else has a share lock on it, check to see if we can
1135 * too */
1136 if (share_conflict(&lck->data->share_modes[i],
1137 access_mask, share_access)) {
1139 if (share_mode_stale_pid(lck->data, i)) {
1140 continue;
1143 *file_existed = true;
1145 return NT_STATUS_SHARING_VIOLATION;
1149 if (lck->data->num_share_modes != 0) {
1150 *file_existed = true;
1153 return NT_STATUS_OK;
1156 static bool is_delete_request(files_struct *fsp) {
1157 return ((fsp->access_mask == DELETE_ACCESS) &&
1158 (fsp->oplock_type == NO_OPLOCK));
1162 * Send a break message to the oplock holder and delay the open for
1163 * our client.
1166 static NTSTATUS send_break_message(files_struct *fsp,
1167 struct share_mode_entry *exclusive,
1168 uint64_t mid,
1169 int oplock_request)
1171 NTSTATUS status;
1172 char msg[MSG_SMB_SHARE_MODE_ENTRY_SIZE];
1174 DEBUG(10, ("Sending break request to PID %s\n",
1175 procid_str_static(&exclusive->pid)));
1176 exclusive->op_mid = mid;
1178 /* Create the message. */
1179 share_mode_entry_to_message(msg, exclusive);
1181 /* Add in the FORCE_OPLOCK_BREAK_TO_NONE bit in the message if set. We
1182 don't want this set in the share mode struct pointed to by lck. */
1184 if (oplock_request & FORCE_OPLOCK_BREAK_TO_NONE) {
1185 SSVAL(msg,OP_BREAK_MSG_OP_TYPE_OFFSET,
1186 exclusive->op_type | FORCE_OPLOCK_BREAK_TO_NONE);
1189 status = messaging_send_buf(fsp->conn->sconn->msg_ctx, exclusive->pid,
1190 MSG_SMB_BREAK_REQUEST,
1191 (uint8 *)msg,
1192 MSG_SMB_SHARE_MODE_ENTRY_SIZE);
1193 if (!NT_STATUS_IS_OK(status)) {
1194 DEBUG(3, ("Could not send oplock break message: %s\n",
1195 nt_errstr(status)));
1198 return status;
1202 * Return share_mode_entry pointers for :
1203 * 1). Batch oplock entry.
1204 * 2). Batch or exclusive oplock entry (may be identical to #1).
1205 * bool have_level2_oplock
1206 * bool have_no_oplock.
1207 * Do internal consistency checks on the share mode for a file.
1210 static void find_oplock_types(files_struct *fsp,
1211 int oplock_request,
1212 const struct share_mode_lock *lck,
1213 struct share_mode_entry **pp_batch,
1214 struct share_mode_entry **pp_ex_or_batch,
1215 bool *got_level2,
1216 bool *got_no_oplock)
1218 int i;
1220 *pp_batch = NULL;
1221 *pp_ex_or_batch = NULL;
1222 *got_level2 = false;
1223 *got_no_oplock = false;
1225 /* Ignore stat or internal opens, as is done in
1226 delay_for_batch_oplocks() and
1227 delay_for_exclusive_oplocks().
1229 if ((oplock_request & INTERNAL_OPEN_ONLY) || is_stat_open(fsp->access_mask)) {
1230 return;
1233 for (i=0; i<lck->data->num_share_modes; i++) {
1234 if (!is_valid_share_mode_entry(&lck->data->share_modes[i])) {
1235 continue;
1238 if (lck->data->share_modes[i].op_type == NO_OPLOCK &&
1239 is_stat_open(lck->data->share_modes[i].access_mask)) {
1240 /* We ignore stat opens in the table - they
1241 always have NO_OPLOCK and never get or
1242 cause breaks. JRA. */
1243 continue;
1246 if (BATCH_OPLOCK_TYPE(lck->data->share_modes[i].op_type)) {
1247 /* batch - can only be one. */
1248 if (share_mode_stale_pid(lck->data, i)) {
1249 DEBUG(10, ("Found stale batch oplock\n"));
1250 continue;
1252 if (*pp_ex_or_batch || *pp_batch || *got_level2 || *got_no_oplock) {
1253 smb_panic("Bad batch oplock entry.");
1255 *pp_batch = &lck->data->share_modes[i];
1258 if (EXCLUSIVE_OPLOCK_TYPE(lck->data->share_modes[i].op_type)) {
1259 if (share_mode_stale_pid(lck->data, i)) {
1260 DEBUG(10, ("Found stale duplicate oplock\n"));
1261 continue;
1263 /* Exclusive or batch - can only be one. */
1264 if (*pp_ex_or_batch || *got_level2 || *got_no_oplock) {
1265 smb_panic("Bad exclusive or batch oplock entry.");
1267 *pp_ex_or_batch = &lck->data->share_modes[i];
1270 if (LEVEL_II_OPLOCK_TYPE(lck->data->share_modes[i].op_type)) {
1271 if (*pp_batch || *pp_ex_or_batch) {
1272 if (share_mode_stale_pid(lck->data, i)) {
1273 DEBUG(10, ("Found stale LevelII "
1274 "oplock\n"));
1275 continue;
1277 smb_panic("Bad levelII oplock entry.");
1279 *got_level2 = true;
1282 if (lck->data->share_modes[i].op_type == NO_OPLOCK) {
1283 if (*pp_batch || *pp_ex_or_batch) {
1284 if (share_mode_stale_pid(lck->data, i)) {
1285 DEBUG(10, ("Found stale NO_OPLOCK "
1286 "entry\n"));
1287 continue;
1289 smb_panic("Bad no oplock entry.");
1291 *got_no_oplock = true;
1296 static bool delay_for_batch_oplocks(files_struct *fsp,
1297 uint64_t mid,
1298 int oplock_request,
1299 struct share_mode_entry *batch_entry)
1301 if ((oplock_request & INTERNAL_OPEN_ONLY) || is_stat_open(fsp->access_mask)) {
1302 return false;
1304 if (batch_entry == NULL) {
1305 return false;
1308 /* Found a batch oplock */
1309 send_break_message(fsp, batch_entry, mid, oplock_request);
1310 return true;
1313 static bool delay_for_exclusive_oplocks(files_struct *fsp,
1314 uint64_t mid,
1315 int oplock_request,
1316 struct share_mode_entry *ex_entry)
1318 bool delay_it;
1320 if ((oplock_request & INTERNAL_OPEN_ONLY) || is_stat_open(fsp->access_mask)) {
1321 return false;
1323 if (ex_entry == NULL) {
1324 return false;
1327 /* Found an exclusive or batch oplock */
1329 delay_it = is_delete_request(fsp) ?
1330 BATCH_OPLOCK_TYPE(ex_entry->op_type) : true;
1332 if (!delay_it) {
1333 return false;
1336 send_break_message(fsp, ex_entry, mid, oplock_request);
1337 return true;
1340 static bool file_has_brlocks(files_struct *fsp)
1342 struct byte_range_lock *br_lck;
1344 br_lck = brl_get_locks_readonly(fsp);
1345 if (!br_lck)
1346 return false;
1348 return br_lck->num_locks > 0 ? true : false;
1351 static void grant_fsp_oplock_type(files_struct *fsp,
1352 int oplock_request,
1353 bool got_level2_oplock,
1354 bool got_a_none_oplock)
1356 bool allow_level2 = (global_client_caps & CAP_LEVEL_II_OPLOCKS) &&
1357 lp_level2_oplocks(SNUM(fsp->conn));
1359 /* Start by granting what the client asked for,
1360 but ensure no SAMBA_PRIVATE bits can be set. */
1361 fsp->oplock_type = (oplock_request & ~SAMBA_PRIVATE_OPLOCK_MASK);
1363 if (oplock_request & INTERNAL_OPEN_ONLY) {
1364 /* No oplocks on internal open. */
1365 fsp->oplock_type = NO_OPLOCK;
1366 DEBUG(10,("grant_fsp_oplock_type: oplock type 0x%x on file %s\n",
1367 fsp->oplock_type, fsp_str_dbg(fsp)));
1368 return;
1371 if (lp_locking(fsp->conn->params) && file_has_brlocks(fsp)) {
1372 DEBUG(10,("grant_fsp_oplock_type: file %s has byte range locks\n",
1373 fsp_str_dbg(fsp)));
1374 fsp->oplock_type = NO_OPLOCK;
1377 if (is_stat_open(fsp->access_mask)) {
1378 /* Leave the value already set. */
1379 DEBUG(10,("grant_fsp_oplock_type: oplock type 0x%x on file %s\n",
1380 fsp->oplock_type, fsp_str_dbg(fsp)));
1381 return;
1385 * Match what was requested (fsp->oplock_type) with
1386 * what was found in the existing share modes.
1389 if (got_a_none_oplock) {
1390 fsp->oplock_type = NO_OPLOCK;
1391 } else if (got_level2_oplock) {
1392 if (fsp->oplock_type == NO_OPLOCK ||
1393 fsp->oplock_type == FAKE_LEVEL_II_OPLOCK) {
1394 /* Store a level2 oplock, but don't tell the client */
1395 fsp->oplock_type = FAKE_LEVEL_II_OPLOCK;
1396 } else {
1397 fsp->oplock_type = LEVEL_II_OPLOCK;
1399 } else {
1400 /* All share_mode_entries are placeholders or deferred.
1401 * Silently upgrade to fake levelII if the client didn't
1402 * ask for an oplock. */
1403 if (fsp->oplock_type == NO_OPLOCK) {
1404 /* Store a level2 oplock, but don't tell the client */
1405 fsp->oplock_type = FAKE_LEVEL_II_OPLOCK;
1410 * Don't grant level2 to clients that don't want them
1411 * or if we've turned them off.
1413 if (fsp->oplock_type == LEVEL_II_OPLOCK && !allow_level2) {
1414 fsp->oplock_type = FAKE_LEVEL_II_OPLOCK;
1417 DEBUG(10,("grant_fsp_oplock_type: oplock type 0x%x on file %s\n",
1418 fsp->oplock_type, fsp_str_dbg(fsp)));
1421 static bool request_timed_out(struct timeval request_time,
1422 struct timeval timeout)
1424 struct timeval now, end_time;
1425 GetTimeOfDay(&now);
1426 end_time = timeval_sum(&request_time, &timeout);
1427 return (timeval_compare(&end_time, &now) < 0);
1430 /****************************************************************************
1431 Handle the 1 second delay in returning a SHARING_VIOLATION error.
1432 ****************************************************************************/
1434 static void defer_open(struct share_mode_lock *lck,
1435 struct timeval request_time,
1436 struct timeval timeout,
1437 struct smb_request *req,
1438 struct deferred_open_record *state)
1440 struct server_id self = messaging_server_id(req->sconn->msg_ctx);
1442 /* Paranoia check */
1444 if (lck) {
1445 int i;
1447 for (i=0; i<lck->data->num_share_modes; i++) {
1448 struct share_mode_entry *e = &lck->data->share_modes[i];
1450 if (is_deferred_open_entry(e) &&
1451 serverid_equal(&self, &e->pid) &&
1452 (e->op_mid == req->mid)) {
1453 DEBUG(0, ("Trying to defer an already deferred "
1454 "request: mid=%llu, exiting\n",
1455 (unsigned long long)req->mid));
1456 exit_server("attempt to defer a deferred request");
1461 /* End paranoia check */
1463 DEBUG(10,("defer_open_sharing_error: time [%u.%06u] adding deferred "
1464 "open entry for mid %llu\n",
1465 (unsigned int)request_time.tv_sec,
1466 (unsigned int)request_time.tv_usec,
1467 (unsigned long long)req->mid));
1469 if (!push_deferred_open_message_smb(req, request_time, timeout,
1470 state->id, (char *)state, sizeof(*state))) {
1471 exit_server("push_deferred_open_message_smb failed");
1473 if (lck) {
1474 add_deferred_open(lck, req->mid, request_time, self, state->id);
1479 /****************************************************************************
1480 On overwrite open ensure that the attributes match.
1481 ****************************************************************************/
1483 bool open_match_attributes(connection_struct *conn,
1484 uint32 old_dos_attr,
1485 uint32 new_dos_attr,
1486 mode_t existing_unx_mode,
1487 mode_t new_unx_mode,
1488 mode_t *returned_unx_mode)
1490 uint32 noarch_old_dos_attr, noarch_new_dos_attr;
1492 noarch_old_dos_attr = (old_dos_attr & ~FILE_ATTRIBUTE_ARCHIVE);
1493 noarch_new_dos_attr = (new_dos_attr & ~FILE_ATTRIBUTE_ARCHIVE);
1495 if((noarch_old_dos_attr == 0 && noarch_new_dos_attr != 0) ||
1496 (noarch_old_dos_attr != 0 && ((noarch_old_dos_attr & noarch_new_dos_attr) == noarch_old_dos_attr))) {
1497 *returned_unx_mode = new_unx_mode;
1498 } else {
1499 *returned_unx_mode = (mode_t)0;
1502 DEBUG(10,("open_match_attributes: old_dos_attr = 0x%x, "
1503 "existing_unx_mode = 0%o, new_dos_attr = 0x%x "
1504 "returned_unx_mode = 0%o\n",
1505 (unsigned int)old_dos_attr,
1506 (unsigned int)existing_unx_mode,
1507 (unsigned int)new_dos_attr,
1508 (unsigned int)*returned_unx_mode ));
1510 /* If we're mapping SYSTEM and HIDDEN ensure they match. */
1511 if (lp_map_system(SNUM(conn)) || lp_store_dos_attributes(SNUM(conn))) {
1512 if ((old_dos_attr & FILE_ATTRIBUTE_SYSTEM) &&
1513 !(new_dos_attr & FILE_ATTRIBUTE_SYSTEM)) {
1514 return False;
1517 if (lp_map_hidden(SNUM(conn)) || lp_store_dos_attributes(SNUM(conn))) {
1518 if ((old_dos_attr & FILE_ATTRIBUTE_HIDDEN) &&
1519 !(new_dos_attr & FILE_ATTRIBUTE_HIDDEN)) {
1520 return False;
1523 return True;
1526 /****************************************************************************
1527 Special FCB or DOS processing in the case of a sharing violation.
1528 Try and find a duplicated file handle.
1529 ****************************************************************************/
1531 static NTSTATUS fcb_or_dos_open(struct smb_request *req,
1532 connection_struct *conn,
1533 files_struct *fsp_to_dup_into,
1534 const struct smb_filename *smb_fname,
1535 struct file_id id,
1536 uint16 file_pid,
1537 uint64_t vuid,
1538 uint32 access_mask,
1539 uint32 share_access,
1540 uint32 create_options)
1542 files_struct *fsp;
1544 DEBUG(5,("fcb_or_dos_open: attempting old open semantics for "
1545 "file %s.\n", smb_fname_str_dbg(smb_fname)));
1547 for(fsp = file_find_di_first(conn->sconn, id); fsp;
1548 fsp = file_find_di_next(fsp)) {
1550 DEBUG(10,("fcb_or_dos_open: checking file %s, fd = %d, "
1551 "vuid = %llu, file_pid = %u, private_options = 0x%x "
1552 "access_mask = 0x%x\n", fsp_str_dbg(fsp),
1553 fsp->fh->fd, (unsigned long long)fsp->vuid,
1554 (unsigned int)fsp->file_pid,
1555 (unsigned int)fsp->fh->private_options,
1556 (unsigned int)fsp->access_mask ));
1558 if (fsp->fh->fd != -1 &&
1559 fsp->vuid == vuid &&
1560 fsp->file_pid == file_pid &&
1561 (fsp->fh->private_options & (NTCREATEX_OPTIONS_PRIVATE_DENY_DOS |
1562 NTCREATEX_OPTIONS_PRIVATE_DENY_FCB)) &&
1563 (fsp->access_mask & FILE_WRITE_DATA) &&
1564 strequal(fsp->fsp_name->base_name, smb_fname->base_name) &&
1565 strequal(fsp->fsp_name->stream_name,
1566 smb_fname->stream_name)) {
1567 DEBUG(10,("fcb_or_dos_open: file match\n"));
1568 break;
1572 if (!fsp) {
1573 return NT_STATUS_NOT_FOUND;
1576 /* quite an insane set of semantics ... */
1577 if (is_executable(smb_fname->base_name) &&
1578 (fsp->fh->private_options & NTCREATEX_OPTIONS_PRIVATE_DENY_DOS)) {
1579 DEBUG(10,("fcb_or_dos_open: file fail due to is_executable.\n"));
1580 return NT_STATUS_INVALID_PARAMETER;
1583 /* We need to duplicate this fsp. */
1584 return dup_file_fsp(req, fsp, access_mask, share_access,
1585 create_options, fsp_to_dup_into);
1588 static void schedule_defer_open(struct share_mode_lock *lck,
1589 struct timeval request_time,
1590 struct smb_request *req)
1592 struct deferred_open_record state;
1594 /* This is a relative time, added to the absolute
1595 request_time value to get the absolute timeout time.
1596 Note that if this is the second or greater time we enter
1597 this codepath for this particular request mid then
1598 request_time is left as the absolute time of the *first*
1599 time this request mid was processed. This is what allows
1600 the request to eventually time out. */
1602 struct timeval timeout;
1604 /* Normally the smbd we asked should respond within
1605 * OPLOCK_BREAK_TIMEOUT seconds regardless of whether
1606 * the client did, give twice the timeout as a safety
1607 * measure here in case the other smbd is stuck
1608 * somewhere else. */
1610 timeout = timeval_set(OPLOCK_BREAK_TIMEOUT*2, 0);
1612 /* Nothing actually uses state.delayed_for_oplocks
1613 but it's handy to differentiate in debug messages
1614 between a 30 second delay due to oplock break, and
1615 a 1 second delay for share mode conflicts. */
1617 state.delayed_for_oplocks = True;
1618 state.async_open = false;
1619 state.id = lck->data->id;
1621 if (!request_timed_out(request_time, timeout)) {
1622 defer_open(lck, request_time, timeout, req, &state);
1626 /****************************************************************************
1627 Reschedule an open call that went asynchronous.
1628 ****************************************************************************/
1630 static void schedule_async_open(struct timeval request_time,
1631 struct smb_request *req)
1633 struct deferred_open_record state;
1634 struct timeval timeout;
1636 timeout = timeval_set(20, 0);
1638 ZERO_STRUCT(state);
1639 state.delayed_for_oplocks = false;
1640 state.async_open = true;
1642 if (!request_timed_out(request_time, timeout)) {
1643 defer_open(NULL, request_time, timeout, req, &state);
1647 /****************************************************************************
1648 Work out what access_mask to use from what the client sent us.
1649 ****************************************************************************/
1651 static NTSTATUS smbd_calculate_maximum_allowed_access(
1652 connection_struct *conn,
1653 const struct smb_filename *smb_fname,
1654 uint32_t *p_access_mask)
1656 struct security_descriptor *sd;
1657 uint32_t access_granted;
1658 NTSTATUS status;
1660 if (get_current_uid(conn) == (uid_t)0) {
1661 *p_access_mask |= FILE_GENERIC_ALL;
1662 return NT_STATUS_OK;
1665 status = SMB_VFS_GET_NT_ACL(conn, smb_fname->base_name,
1666 (SECINFO_OWNER |
1667 SECINFO_GROUP |
1668 SECINFO_DACL),&sd);
1670 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
1672 * File did not exist
1674 *p_access_mask = FILE_GENERIC_ALL;
1675 return NT_STATUS_OK;
1677 if (!NT_STATUS_IS_OK(status)) {
1678 DEBUG(10,("smbd_calculate_access_mask: "
1679 "Could not get acl on file %s: %s\n",
1680 smb_fname_str_dbg(smb_fname),
1681 nt_errstr(status)));
1682 return NT_STATUS_ACCESS_DENIED;
1686 * Never test FILE_READ_ATTRIBUTES. se_file_access_check()
1687 * also takes care of owner WRITE_DAC and READ_CONTROL.
1689 status = se_file_access_check(sd,
1690 get_current_nttok(conn),
1691 false,
1692 (*p_access_mask & ~FILE_READ_ATTRIBUTES),
1693 &access_granted);
1695 TALLOC_FREE(sd);
1697 if (!NT_STATUS_IS_OK(status)) {
1698 DEBUG(10, ("smbd_calculate_access_mask: "
1699 "Access denied on file %s: "
1700 "when calculating maximum access\n",
1701 smb_fname_str_dbg(smb_fname)));
1702 return NT_STATUS_ACCESS_DENIED;
1704 *p_access_mask = (access_granted | FILE_READ_ATTRIBUTES);
1705 return NT_STATUS_OK;
1708 NTSTATUS smbd_calculate_access_mask(connection_struct *conn,
1709 const struct smb_filename *smb_fname,
1710 uint32_t access_mask,
1711 uint32_t *access_mask_out)
1713 NTSTATUS status;
1714 uint32_t orig_access_mask = access_mask;
1715 uint32_t rejected_share_access;
1718 * Convert GENERIC bits to specific bits.
1721 se_map_generic(&access_mask, &file_generic_mapping);
1723 /* Calculate MAXIMUM_ALLOWED_ACCESS if requested. */
1724 if (access_mask & MAXIMUM_ALLOWED_ACCESS) {
1726 status = smbd_calculate_maximum_allowed_access(
1727 conn, smb_fname, &access_mask);
1729 if (!NT_STATUS_IS_OK(status)) {
1730 return status;
1733 access_mask &= conn->share_access;
1736 rejected_share_access = access_mask & ~(conn->share_access);
1738 if (rejected_share_access) {
1739 DEBUG(10, ("smbd_calculate_access_mask: Access denied on "
1740 "file %s: rejected by share access mask[0x%08X] "
1741 "orig[0x%08X] mapped[0x%08X] reject[0x%08X]\n",
1742 smb_fname_str_dbg(smb_fname),
1743 conn->share_access,
1744 orig_access_mask, access_mask,
1745 rejected_share_access));
1746 return NT_STATUS_ACCESS_DENIED;
1749 *access_mask_out = access_mask;
1750 return NT_STATUS_OK;
1753 /****************************************************************************
1754 Remove the deferred open entry under lock.
1755 ****************************************************************************/
1757 void remove_deferred_open_entry(struct file_id id, uint64_t mid,
1758 struct server_id pid)
1760 struct share_mode_lock *lck = get_existing_share_mode_lock(
1761 talloc_tos(), id);
1762 if (lck == NULL) {
1763 DEBUG(0, ("could not get share mode lock\n"));
1764 return;
1766 del_deferred_open_entry(lck, mid, pid);
1767 TALLOC_FREE(lck);
1770 /****************************************************************************
1771 Return true if this is a state pointer to an asynchronous create.
1772 ****************************************************************************/
1774 bool is_deferred_open_async(const void *ptr)
1776 const struct deferred_open_record *state = (const struct deferred_open_record *)ptr;
1778 return state->async_open;
1781 /****************************************************************************
1782 Open a file with a share mode. Passed in an already created files_struct *.
1783 ****************************************************************************/
1785 static NTSTATUS open_file_ntcreate(connection_struct *conn,
1786 struct smb_request *req,
1787 uint32 access_mask, /* access bits (FILE_READ_DATA etc.) */
1788 uint32 share_access, /* share constants (FILE_SHARE_READ etc) */
1789 uint32 create_disposition, /* FILE_OPEN_IF etc. */
1790 uint32 create_options, /* options such as delete on close. */
1791 uint32 new_dos_attributes, /* attributes used for new file. */
1792 int oplock_request, /* internal Samba oplock codes. */
1793 /* Information (FILE_EXISTS etc.) */
1794 uint32_t private_flags, /* Samba specific flags. */
1795 int *pinfo,
1796 files_struct *fsp)
1798 struct smb_filename *smb_fname = fsp->fsp_name;
1799 int flags=0;
1800 int flags2=0;
1801 bool file_existed = VALID_STAT(smb_fname->st);
1802 bool def_acl = False;
1803 bool posix_open = False;
1804 bool new_file_created = False;
1805 bool clear_ads = false;
1806 NTSTATUS fsp_open = NT_STATUS_ACCESS_DENIED;
1807 mode_t new_unx_mode = (mode_t)0;
1808 mode_t unx_mode = (mode_t)0;
1809 int info;
1810 uint32 existing_dos_attributes = 0;
1811 struct timeval request_time = timeval_zero();
1812 struct share_mode_lock *lck = NULL;
1813 uint32 open_access_mask = access_mask;
1814 NTSTATUS status;
1815 char *parent_dir;
1816 SMB_STRUCT_STAT saved_stat = smb_fname->st;
1818 if (conn->printer) {
1820 * Printers are handled completely differently.
1821 * Most of the passed parameters are ignored.
1824 if (pinfo) {
1825 *pinfo = FILE_WAS_CREATED;
1828 DEBUG(10, ("open_file_ntcreate: printer open fname=%s\n",
1829 smb_fname_str_dbg(smb_fname)));
1831 if (!req) {
1832 DEBUG(0,("open_file_ntcreate: printer open without "
1833 "an SMB request!\n"));
1834 return NT_STATUS_INTERNAL_ERROR;
1837 return print_spool_open(fsp, smb_fname->base_name,
1838 req->vuid);
1841 if (!parent_dirname(talloc_tos(), smb_fname->base_name, &parent_dir,
1842 NULL)) {
1843 return NT_STATUS_NO_MEMORY;
1846 if (new_dos_attributes & FILE_FLAG_POSIX_SEMANTICS) {
1847 posix_open = True;
1848 unx_mode = (mode_t)(new_dos_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
1849 new_dos_attributes = 0;
1850 } else {
1851 /* Windows allows a new file to be created and
1852 silently removes a FILE_ATTRIBUTE_DIRECTORY
1853 sent by the client. Do the same. */
1855 new_dos_attributes &= ~FILE_ATTRIBUTE_DIRECTORY;
1857 /* We add FILE_ATTRIBUTE_ARCHIVE to this as this mode is only used if the file is
1858 * created new. */
1859 unx_mode = unix_mode(conn, new_dos_attributes | FILE_ATTRIBUTE_ARCHIVE,
1860 smb_fname, parent_dir);
1863 DEBUG(10, ("open_file_ntcreate: fname=%s, dos_attrs=0x%x "
1864 "access_mask=0x%x share_access=0x%x "
1865 "create_disposition = 0x%x create_options=0x%x "
1866 "unix mode=0%o oplock_request=%d private_flags = 0x%x\n",
1867 smb_fname_str_dbg(smb_fname), new_dos_attributes,
1868 access_mask, share_access, create_disposition,
1869 create_options, (unsigned int)unx_mode, oplock_request,
1870 (unsigned int)private_flags));
1872 if ((req == NULL) && ((oplock_request & INTERNAL_OPEN_ONLY) == 0)) {
1873 DEBUG(0, ("No smb request but not an internal only open!\n"));
1874 return NT_STATUS_INTERNAL_ERROR;
1878 * Only non-internal opens can be deferred at all
1881 if (req) {
1882 void *ptr;
1883 if (get_deferred_open_message_state(req,
1884 &request_time,
1885 &ptr)) {
1886 /* Remember the absolute time of the original
1887 request with this mid. We'll use it later to
1888 see if this has timed out. */
1890 /* If it was an async create retry, the file
1891 didn't exist. */
1893 if (is_deferred_open_async(ptr)) {
1894 SET_STAT_INVALID(smb_fname->st);
1895 file_existed = false;
1896 } else {
1897 struct deferred_open_record *state = (struct deferred_open_record *)ptr;
1898 /* Remove the deferred open entry under lock. */
1899 remove_deferred_open_entry(
1900 state->id, req->mid,
1901 messaging_server_id(req->sconn->msg_ctx));
1904 /* Ensure we don't reprocess this message. */
1905 remove_deferred_open_message_smb(req->sconn, req->mid);
1909 if (!posix_open) {
1910 new_dos_attributes &= SAMBA_ATTRIBUTES_MASK;
1911 if (file_existed) {
1912 existing_dos_attributes = dos_mode(conn, smb_fname);
1916 /* ignore any oplock requests if oplocks are disabled */
1917 if (!lp_oplocks(SNUM(conn)) ||
1918 IS_VETO_OPLOCK_PATH(conn, smb_fname->base_name)) {
1919 /* Mask off everything except the private Samba bits. */
1920 oplock_request &= SAMBA_PRIVATE_OPLOCK_MASK;
1923 /* this is for OS/2 long file names - say we don't support them */
1924 if (!lp_posix_pathnames() && strstr(smb_fname->base_name,".+,;=[].")) {
1925 /* OS/2 Workplace shell fix may be main code stream in a later
1926 * release. */
1927 DEBUG(5,("open_file_ntcreate: OS/2 long filenames are not "
1928 "supported.\n"));
1929 if (use_nt_status()) {
1930 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1932 return NT_STATUS_DOS(ERRDOS, ERRcannotopen);
1935 switch( create_disposition ) {
1937 * Currently we're using FILE_SUPERSEDE as the same as
1938 * FILE_OVERWRITE_IF but they really are
1939 * different. FILE_SUPERSEDE deletes an existing file
1940 * (requiring delete access) then recreates it.
1942 case FILE_SUPERSEDE:
1943 /* If file exists replace/overwrite. If file doesn't
1944 * exist create. */
1945 flags2 |= (O_CREAT | O_TRUNC);
1946 clear_ads = true;
1947 break;
1949 case FILE_OVERWRITE_IF:
1950 /* If file exists replace/overwrite. If file doesn't
1951 * exist create. */
1952 flags2 |= (O_CREAT | O_TRUNC);
1953 clear_ads = true;
1954 break;
1956 case FILE_OPEN:
1957 /* If file exists open. If file doesn't exist error. */
1958 if (!file_existed) {
1959 DEBUG(5,("open_file_ntcreate: FILE_OPEN "
1960 "requested for file %s and file "
1961 "doesn't exist.\n",
1962 smb_fname_str_dbg(smb_fname)));
1963 errno = ENOENT;
1964 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1966 break;
1968 case FILE_OVERWRITE:
1969 /* If file exists overwrite. If file doesn't exist
1970 * error. */
1971 if (!file_existed) {
1972 DEBUG(5,("open_file_ntcreate: FILE_OVERWRITE "
1973 "requested for file %s and file "
1974 "doesn't exist.\n",
1975 smb_fname_str_dbg(smb_fname) ));
1976 errno = ENOENT;
1977 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1979 flags2 |= O_TRUNC;
1980 clear_ads = true;
1981 break;
1983 case FILE_CREATE:
1984 /* If file exists error. If file doesn't exist
1985 * create. */
1986 if (file_existed) {
1987 DEBUG(5,("open_file_ntcreate: FILE_CREATE "
1988 "requested for file %s and file "
1989 "already exists.\n",
1990 smb_fname_str_dbg(smb_fname)));
1991 if (S_ISDIR(smb_fname->st.st_ex_mode)) {
1992 errno = EISDIR;
1993 } else {
1994 errno = EEXIST;
1996 return map_nt_error_from_unix(errno);
1998 flags2 |= (O_CREAT|O_EXCL);
1999 break;
2001 case FILE_OPEN_IF:
2002 /* If file exists open. If file doesn't exist
2003 * create. */
2004 flags2 |= O_CREAT;
2005 break;
2007 default:
2008 return NT_STATUS_INVALID_PARAMETER;
2011 /* We only care about matching attributes on file exists and
2012 * overwrite. */
2014 if (!posix_open && file_existed &&
2015 ((create_disposition == FILE_OVERWRITE) ||
2016 (create_disposition == FILE_OVERWRITE_IF))) {
2017 if (!open_match_attributes(conn, existing_dos_attributes,
2018 new_dos_attributes,
2019 smb_fname->st.st_ex_mode,
2020 unx_mode, &new_unx_mode)) {
2021 DEBUG(5,("open_file_ntcreate: attributes missmatch "
2022 "for file %s (%x %x) (0%o, 0%o)\n",
2023 smb_fname_str_dbg(smb_fname),
2024 existing_dos_attributes,
2025 new_dos_attributes,
2026 (unsigned int)smb_fname->st.st_ex_mode,
2027 (unsigned int)unx_mode ));
2028 errno = EACCES;
2029 return NT_STATUS_ACCESS_DENIED;
2033 status = smbd_calculate_access_mask(conn, smb_fname,
2034 access_mask,
2035 &access_mask);
2036 if (!NT_STATUS_IS_OK(status)) {
2037 DEBUG(10, ("open_file_ntcreate: smbd_calculate_access_mask "
2038 "on file %s returned %s\n",
2039 smb_fname_str_dbg(smb_fname), nt_errstr(status)));
2040 return status;
2043 open_access_mask = access_mask;
2045 if ((flags2 & O_TRUNC) || (oplock_request & FORCE_OPLOCK_BREAK_TO_NONE)) {
2046 open_access_mask |= FILE_WRITE_DATA; /* This will cause oplock breaks. */
2049 DEBUG(10, ("open_file_ntcreate: fname=%s, after mapping "
2050 "access_mask=0x%x\n", smb_fname_str_dbg(smb_fname),
2051 access_mask));
2054 * Note that we ignore the append flag as append does not
2055 * mean the same thing under DOS and Unix.
2058 if ((access_mask & (FILE_WRITE_DATA | FILE_APPEND_DATA)) ||
2059 (oplock_request & FORCE_OPLOCK_BREAK_TO_NONE)) {
2060 /* DENY_DOS opens are always underlying read-write on the
2061 file handle, no matter what the requested access mask
2062 says. */
2063 if ((private_flags & NTCREATEX_OPTIONS_PRIVATE_DENY_DOS) ||
2064 access_mask & (FILE_READ_ATTRIBUTES|FILE_READ_DATA|FILE_READ_EA|FILE_EXECUTE)) {
2065 flags = O_RDWR;
2066 } else {
2067 flags = O_WRONLY;
2069 } else {
2070 flags = O_RDONLY;
2074 * Currently we only look at FILE_WRITE_THROUGH for create options.
2077 #if defined(O_SYNC)
2078 if ((create_options & FILE_WRITE_THROUGH) && lp_strict_sync(SNUM(conn))) {
2079 flags2 |= O_SYNC;
2081 #endif /* O_SYNC */
2083 if (posix_open && (access_mask & FILE_APPEND_DATA)) {
2084 flags2 |= O_APPEND;
2087 if (!posix_open && !CAN_WRITE(conn)) {
2089 * We should really return a permission denied error if either
2090 * O_CREAT or O_TRUNC are set, but for compatibility with
2091 * older versions of Samba we just AND them out.
2093 flags2 &= ~(O_CREAT|O_TRUNC);
2097 * Ensure we can't write on a read-only share or file.
2100 if (flags != O_RDONLY && file_existed &&
2101 (!CAN_WRITE(conn) || IS_DOS_READONLY(existing_dos_attributes))) {
2102 DEBUG(5,("open_file_ntcreate: write access requested for "
2103 "file %s on read only %s\n",
2104 smb_fname_str_dbg(smb_fname),
2105 !CAN_WRITE(conn) ? "share" : "file" ));
2106 errno = EACCES;
2107 return NT_STATUS_ACCESS_DENIED;
2110 fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_fname->st);
2111 fsp->share_access = share_access;
2112 fsp->fh->private_options = private_flags;
2113 fsp->access_mask = open_access_mask; /* We change this to the
2114 * requested access_mask after
2115 * the open is done. */
2116 fsp->posix_open = posix_open;
2118 /* Ensure no SAMBA_PRIVATE bits can be set. */
2119 fsp->oplock_type = (oplock_request & ~SAMBA_PRIVATE_OPLOCK_MASK);
2121 if (timeval_is_zero(&request_time)) {
2122 request_time = fsp->open_time;
2125 if (file_existed) {
2126 struct share_mode_entry *batch_entry = NULL;
2127 struct share_mode_entry *exclusive_entry = NULL;
2128 bool got_level2_oplock = false;
2129 bool got_a_none_oplock = false;
2130 struct file_id id;
2132 struct timespec old_write_time = smb_fname->st.st_ex_mtime;
2133 id = vfs_file_id_from_sbuf(conn, &smb_fname->st);
2135 lck = get_share_mode_lock(talloc_tos(), id,
2136 conn->connectpath,
2137 smb_fname, &old_write_time);
2138 if (lck == NULL) {
2139 DEBUG(0, ("Could not get share mode lock\n"));
2140 return NT_STATUS_SHARING_VIOLATION;
2143 /* Get the types we need to examine. */
2144 find_oplock_types(fsp,
2145 oplock_request,
2146 lck,
2147 &batch_entry,
2148 &exclusive_entry,
2149 &got_level2_oplock,
2150 &got_a_none_oplock);
2152 /* First pass - send break only on batch oplocks. */
2153 if ((req != NULL) &&
2154 delay_for_batch_oplocks(fsp,
2155 req->mid,
2156 oplock_request,
2157 batch_entry)) {
2158 schedule_defer_open(lck, request_time, req);
2159 TALLOC_FREE(lck);
2160 return NT_STATUS_SHARING_VIOLATION;
2163 /* Use the client requested access mask here, not the one we
2164 * open with. */
2165 status = open_mode_check(conn, lck, fsp->name_hash,
2166 access_mask, share_access,
2167 create_options, &file_existed);
2169 if (NT_STATUS_IS_OK(status)) {
2170 /* We might be going to allow this open. Check oplock
2171 * status again. */
2172 /* Second pass - send break for both batch or
2173 * exclusive oplocks. */
2174 if ((req != NULL) &&
2175 delay_for_exclusive_oplocks(
2176 fsp,
2177 req->mid,
2178 oplock_request,
2179 exclusive_entry)) {
2180 schedule_defer_open(lck, request_time, req);
2181 TALLOC_FREE(lck);
2182 return NT_STATUS_SHARING_VIOLATION;
2186 if (NT_STATUS_EQUAL(status, NT_STATUS_DELETE_PENDING)) {
2187 /* DELETE_PENDING is not deferred for a second */
2188 TALLOC_FREE(lck);
2189 return status;
2192 grant_fsp_oplock_type(fsp,
2193 oplock_request,
2194 got_level2_oplock,
2195 got_a_none_oplock);
2197 if (!NT_STATUS_IS_OK(status)) {
2198 uint32 can_access_mask;
2199 bool can_access = True;
2201 SMB_ASSERT(NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION));
2203 /* Check if this can be done with the deny_dos and fcb
2204 * calls. */
2205 if (private_flags &
2206 (NTCREATEX_OPTIONS_PRIVATE_DENY_DOS|
2207 NTCREATEX_OPTIONS_PRIVATE_DENY_FCB)) {
2208 if (req == NULL) {
2209 DEBUG(0, ("DOS open without an SMB "
2210 "request!\n"));
2211 TALLOC_FREE(lck);
2212 return NT_STATUS_INTERNAL_ERROR;
2215 /* Use the client requested access mask here,
2216 * not the one we open with. */
2217 status = fcb_or_dos_open(req,
2218 conn,
2219 fsp,
2220 smb_fname,
2222 req->smbpid,
2223 req->vuid,
2224 access_mask,
2225 share_access,
2226 create_options);
2228 if (NT_STATUS_IS_OK(status)) {
2229 TALLOC_FREE(lck);
2230 if (pinfo) {
2231 *pinfo = FILE_WAS_OPENED;
2233 return NT_STATUS_OK;
2238 * This next line is a subtlety we need for
2239 * MS-Access. If a file open will fail due to share
2240 * permissions and also for security (access) reasons,
2241 * we need to return the access failed error, not the
2242 * share error. We can't open the file due to kernel
2243 * oplock deadlock (it's possible we failed above on
2244 * the open_mode_check()) so use a userspace check.
2247 if (flags & O_RDWR) {
2248 can_access_mask = FILE_READ_DATA|FILE_WRITE_DATA;
2249 } else if (flags & O_WRONLY) {
2250 can_access_mask = FILE_WRITE_DATA;
2251 } else {
2252 can_access_mask = FILE_READ_DATA;
2255 if (((can_access_mask & FILE_WRITE_DATA) &&
2256 !CAN_WRITE(conn)) ||
2257 !NT_STATUS_IS_OK(smbd_check_access_rights(conn,
2258 smb_fname, can_access_mask))) {
2259 can_access = False;
2263 * If we're returning a share violation, ensure we
2264 * cope with the braindead 1 second delay.
2267 if (!(oplock_request & INTERNAL_OPEN_ONLY) &&
2268 lp_defer_sharing_violations()) {
2269 struct timeval timeout;
2270 struct deferred_open_record state;
2271 int timeout_usecs;
2273 /* this is a hack to speed up torture tests
2274 in 'make test' */
2275 timeout_usecs = lp_parm_int(SNUM(conn),
2276 "smbd","sharedelay",
2277 SHARING_VIOLATION_USEC_WAIT);
2279 /* This is a relative time, added to the absolute
2280 request_time value to get the absolute timeout time.
2281 Note that if this is the second or greater time we enter
2282 this codepath for this particular request mid then
2283 request_time is left as the absolute time of the *first*
2284 time this request mid was processed. This is what allows
2285 the request to eventually time out. */
2287 timeout = timeval_set(0, timeout_usecs);
2289 /* Nothing actually uses state.delayed_for_oplocks
2290 but it's handy to differentiate in debug messages
2291 between a 30 second delay due to oplock break, and
2292 a 1 second delay for share mode conflicts. */
2294 state.delayed_for_oplocks = False;
2295 state.async_open = false;
2296 state.id = id;
2298 if ((req != NULL)
2299 && !request_timed_out(request_time,
2300 timeout)) {
2301 defer_open(lck, request_time, timeout,
2302 req, &state);
2306 TALLOC_FREE(lck);
2307 if (can_access) {
2309 * We have detected a sharing violation here
2310 * so return the correct error code
2312 status = NT_STATUS_SHARING_VIOLATION;
2313 } else {
2314 status = NT_STATUS_ACCESS_DENIED;
2316 return status;
2320 * We exit this block with the share entry *locked*.....
2324 SMB_ASSERT(!file_existed || (lck != NULL));
2327 * Ensure we pay attention to default ACLs on directories if required.
2330 if ((flags2 & O_CREAT) && lp_inherit_acls(SNUM(conn)) &&
2331 (def_acl = directory_has_default_acl(conn, parent_dir))) {
2332 unx_mode = (0777 & lp_create_mask(SNUM(conn)));
2335 DEBUG(4,("calling open_file with flags=0x%X flags2=0x%X mode=0%o, "
2336 "access_mask = 0x%x, open_access_mask = 0x%x\n",
2337 (unsigned int)flags, (unsigned int)flags2,
2338 (unsigned int)unx_mode, (unsigned int)access_mask,
2339 (unsigned int)open_access_mask));
2342 * open_file strips any O_TRUNC flags itself.
2345 fsp_open = open_file(fsp, conn, req, parent_dir,
2346 flags|flags2, unx_mode, access_mask,
2347 open_access_mask, &new_file_created);
2349 if (!NT_STATUS_IS_OK(fsp_open)) {
2350 if (NT_STATUS_EQUAL(fsp_open, NT_STATUS_RETRY)) {
2351 schedule_async_open(request_time, req);
2353 TALLOC_FREE(lck);
2354 return fsp_open;
2357 if (file_existed && !check_same_dev_ino(&saved_stat, &smb_fname->st)) {
2359 * The file did exist, but some other (local or NFS)
2360 * process either renamed/unlinked and re-created the
2361 * file with different dev/ino after we walked the path,
2362 * but before we did the open. We could retry the
2363 * open but it's a rare enough case it's easier to
2364 * just fail the open to prevent creating any problems
2365 * in the open file db having the wrong dev/ino key.
2367 TALLOC_FREE(lck);
2368 fd_close(fsp);
2369 DEBUG(1,("open_file_ntcreate: file %s - dev/ino mismatch. "
2370 "Old (dev=0x%llu, ino =0x%llu). "
2371 "New (dev=0x%llu, ino=0x%llu). Failing open "
2372 " with NT_STATUS_ACCESS_DENIED.\n",
2373 smb_fname_str_dbg(smb_fname),
2374 (unsigned long long)saved_stat.st_ex_dev,
2375 (unsigned long long)saved_stat.st_ex_ino,
2376 (unsigned long long)smb_fname->st.st_ex_dev,
2377 (unsigned long long)smb_fname->st.st_ex_ino));
2378 return NT_STATUS_ACCESS_DENIED;
2381 if (!file_existed) {
2382 struct share_mode_entry *batch_entry = NULL;
2383 struct share_mode_entry *exclusive_entry = NULL;
2384 bool got_level2_oplock = false;
2385 bool got_a_none_oplock = false;
2386 struct timespec old_write_time = smb_fname->st.st_ex_mtime;
2387 struct file_id id;
2389 * Deal with the race condition where two smbd's detect the
2390 * file doesn't exist and do the create at the same time. One
2391 * of them will win and set a share mode, the other (ie. this
2392 * one) should check if the requested share mode for this
2393 * create is allowed.
2397 * Now the file exists and fsp is successfully opened,
2398 * fsp->dev and fsp->inode are valid and should replace the
2399 * dev=0,inode=0 from a non existent file. Spotted by
2400 * Nadav Danieli <nadavd@exanet.com>. JRA.
2403 id = fsp->file_id;
2405 lck = get_share_mode_lock(talloc_tos(), id,
2406 conn->connectpath,
2407 smb_fname, &old_write_time);
2409 if (lck == NULL) {
2410 DEBUG(0, ("open_file_ntcreate: Could not get share "
2411 "mode lock for %s\n",
2412 smb_fname_str_dbg(smb_fname)));
2413 fd_close(fsp);
2414 return NT_STATUS_SHARING_VIOLATION;
2417 /* Get the types we need to examine. */
2418 find_oplock_types(fsp,
2419 oplock_request,
2420 lck,
2421 &batch_entry,
2422 &exclusive_entry,
2423 &got_level2_oplock,
2424 &got_a_none_oplock);
2426 /* First pass - send break only on batch oplocks. */
2427 if ((req != NULL) &&
2428 delay_for_batch_oplocks(fsp,
2429 req->mid,
2430 oplock_request,
2431 batch_entry)) {
2432 schedule_defer_open(lck, request_time, req);
2433 TALLOC_FREE(lck);
2434 fd_close(fsp);
2435 return NT_STATUS_SHARING_VIOLATION;
2438 status = open_mode_check(conn, lck, fsp->name_hash,
2439 access_mask, share_access,
2440 create_options, &file_existed);
2442 if (NT_STATUS_IS_OK(status)) {
2443 /* We might be going to allow this open. Check oplock
2444 * status again. */
2445 /* Second pass - send break for both batch or
2446 * exclusive oplocks. */
2447 if ((req != NULL) &&
2448 delay_for_exclusive_oplocks(
2449 fsp,
2450 req->mid,
2451 oplock_request,
2452 exclusive_entry)) {
2453 schedule_defer_open(lck, request_time, req);
2454 TALLOC_FREE(lck);
2455 fd_close(fsp);
2456 return NT_STATUS_SHARING_VIOLATION;
2460 if (!NT_STATUS_IS_OK(status)) {
2461 struct deferred_open_record state;
2463 state.delayed_for_oplocks = False;
2464 state.async_open = false;
2465 state.id = id;
2467 /* Do it all over again immediately. In the second
2468 * round we will find that the file existed and handle
2469 * the DELETE_PENDING and FCB cases correctly. No need
2470 * to duplicate the code here. Essentially this is a
2471 * "goto top of this function", but don't tell
2472 * anybody... */
2474 if (req != NULL) {
2475 defer_open(lck, request_time, timeval_zero(),
2476 req, &state);
2478 TALLOC_FREE(lck);
2479 fd_close(fsp);
2480 return status;
2483 grant_fsp_oplock_type(fsp,
2484 oplock_request,
2485 got_level2_oplock,
2486 got_a_none_oplock);
2489 * We exit this block with the share entry *locked*.....
2494 SMB_ASSERT(lck != NULL);
2496 /* Delete streams if create_disposition requires it */
2497 if (!new_file_created && clear_ads &&
2498 !is_ntfs_stream_smb_fname(smb_fname)) {
2499 status = delete_all_streams(conn, smb_fname->base_name);
2500 if (!NT_STATUS_IS_OK(status)) {
2501 TALLOC_FREE(lck);
2502 fd_close(fsp);
2503 return status;
2507 /* note that we ignore failure for the following. It is
2508 basically a hack for NFS, and NFS will never set one of
2509 these only read them. Nobody but Samba can ever set a deny
2510 mode and we have already checked our more authoritative
2511 locking database for permission to set this deny mode. If
2512 the kernel refuses the operations then the kernel is wrong.
2513 note that GPFS supports it as well - jmcd */
2515 if (fsp->fh->fd != -1) {
2516 int ret_flock;
2517 ret_flock = SMB_VFS_KERNEL_FLOCK(fsp, share_access, access_mask);
2518 if(ret_flock == -1 ){
2520 TALLOC_FREE(lck);
2521 fd_close(fsp);
2523 return NT_STATUS_SHARING_VIOLATION;
2528 * At this point onwards, we can guarentee that the share entry
2529 * is locked, whether we created the file or not, and that the
2530 * deny mode is compatible with all current opens.
2534 * If requested, truncate the file.
2537 if (!new_file_created && (flags2&O_TRUNC)) {
2539 * We are modifying the file after open - update the stat
2540 * struct..
2542 if ((SMB_VFS_FTRUNCATE(fsp, 0) == -1) ||
2543 (SMB_VFS_FSTAT(fsp, &smb_fname->st)==-1)) {
2544 status = map_nt_error_from_unix(errno);
2545 TALLOC_FREE(lck);
2546 fd_close(fsp);
2547 return status;
2552 * According to Samba4, SEC_FILE_READ_ATTRIBUTE is always granted,
2553 * but we don't have to store this - just ignore it on access check.
2555 if (conn->sconn->using_smb2) {
2557 * SMB2 doesn't return it (according to Microsoft tests).
2558 * Test Case: TestSuite_ScenarioNo009GrantedAccessTestS0
2559 * File created with access = 0x7 (Read, Write, Delete)
2560 * Query Info on file returns 0x87 (Read, Write, Delete, Read Attributes)
2562 fsp->access_mask = access_mask;
2563 } else {
2564 /* But SMB1 does. */
2565 fsp->access_mask = access_mask | FILE_READ_ATTRIBUTES;
2568 if (file_existed) {
2569 /* stat opens on existing files don't get oplocks. */
2570 if (is_stat_open(open_access_mask)) {
2571 fsp->oplock_type = NO_OPLOCK;
2575 if (new_file_created) {
2576 info = FILE_WAS_CREATED;
2577 } else {
2578 if (flags2 & O_TRUNC) {
2579 info = FILE_WAS_OVERWRITTEN;
2580 } else {
2581 info = FILE_WAS_OPENED;
2585 if (pinfo) {
2586 *pinfo = info;
2590 * Setup the oplock info in both the shared memory and
2591 * file structs.
2594 status = set_file_oplock(fsp, fsp->oplock_type);
2595 if (!NT_STATUS_IS_OK(status)) {
2597 * Could not get the kernel oplock or there are byte-range
2598 * locks on the file.
2600 fsp->oplock_type = NO_OPLOCK;
2603 set_share_mode(lck, fsp, get_current_uid(conn),
2604 req ? req->mid : 0,
2605 fsp->oplock_type);
2607 /* Handle strange delete on close create semantics. */
2608 if (create_options & FILE_DELETE_ON_CLOSE) {
2610 status = can_set_delete_on_close(fsp, new_dos_attributes);
2612 if (!NT_STATUS_IS_OK(status)) {
2613 /* Remember to delete the mode we just added. */
2614 del_share_mode(lck, fsp);
2615 TALLOC_FREE(lck);
2616 fd_close(fsp);
2617 return status;
2619 /* Note that here we set the *inital* delete on close flag,
2620 not the regular one. The magic gets handled in close. */
2621 fsp->initial_delete_on_close = True;
2624 if (info != FILE_WAS_OPENED) {
2625 /* Files should be initially set as archive */
2626 if (lp_map_archive(SNUM(conn)) ||
2627 lp_store_dos_attributes(SNUM(conn))) {
2628 if (!posix_open) {
2629 if (file_set_dosmode(conn, smb_fname,
2630 new_dos_attributes | FILE_ATTRIBUTE_ARCHIVE,
2631 parent_dir, true) == 0) {
2632 unx_mode = smb_fname->st.st_ex_mode;
2638 /* Determine sparse flag. */
2639 if (posix_open) {
2640 /* POSIX opens are sparse by default. */
2641 fsp->is_sparse = true;
2642 } else {
2643 fsp->is_sparse = (file_existed &&
2644 (existing_dos_attributes & FILE_ATTRIBUTE_SPARSE));
2648 * Take care of inherited ACLs on created files - if default ACL not
2649 * selected.
2652 if (!posix_open && new_file_created && !def_acl) {
2654 int saved_errno = errno; /* We might get ENOSYS in the next
2655 * call.. */
2657 if (SMB_VFS_FCHMOD_ACL(fsp, unx_mode) == -1 &&
2658 errno == ENOSYS) {
2659 errno = saved_errno; /* Ignore ENOSYS */
2662 } else if (new_unx_mode) {
2664 int ret = -1;
2666 /* Attributes need changing. File already existed. */
2669 int saved_errno = errno; /* We might get ENOSYS in the
2670 * next call.. */
2671 ret = SMB_VFS_FCHMOD_ACL(fsp, new_unx_mode);
2673 if (ret == -1 && errno == ENOSYS) {
2674 errno = saved_errno; /* Ignore ENOSYS */
2675 } else {
2676 DEBUG(5, ("open_file_ntcreate: reset "
2677 "attributes of file %s to 0%o\n",
2678 smb_fname_str_dbg(smb_fname),
2679 (unsigned int)new_unx_mode));
2680 ret = 0; /* Don't do the fchmod below. */
2684 if ((ret == -1) &&
2685 (SMB_VFS_FCHMOD(fsp, new_unx_mode) == -1))
2686 DEBUG(5, ("open_file_ntcreate: failed to reset "
2687 "attributes of file %s to 0%o\n",
2688 smb_fname_str_dbg(smb_fname),
2689 (unsigned int)new_unx_mode));
2692 /* If this is a successful open, we must remove any deferred open
2693 * records. */
2694 if (req != NULL) {
2695 del_deferred_open_entry(lck, req->mid,
2696 messaging_server_id(req->sconn->msg_ctx));
2698 TALLOC_FREE(lck);
2700 return NT_STATUS_OK;
2704 /****************************************************************************
2705 Open a file for for write to ensure that we can fchmod it.
2706 ****************************************************************************/
2708 NTSTATUS open_file_fchmod(connection_struct *conn,
2709 struct smb_filename *smb_fname,
2710 files_struct **result)
2712 if (!VALID_STAT(smb_fname->st)) {
2713 return NT_STATUS_INVALID_PARAMETER;
2716 return SMB_VFS_CREATE_FILE(
2717 conn, /* conn */
2718 NULL, /* req */
2719 0, /* root_dir_fid */
2720 smb_fname, /* fname */
2721 FILE_WRITE_DATA, /* access_mask */
2722 (FILE_SHARE_READ | FILE_SHARE_WRITE | /* share_access */
2723 FILE_SHARE_DELETE),
2724 FILE_OPEN, /* create_disposition*/
2725 0, /* create_options */
2726 0, /* file_attributes */
2727 INTERNAL_OPEN_ONLY, /* oplock_request */
2728 0, /* allocation_size */
2729 0, /* private_flags */
2730 NULL, /* sd */
2731 NULL, /* ea_list */
2732 result, /* result */
2733 NULL); /* pinfo */
2736 static NTSTATUS mkdir_internal(connection_struct *conn,
2737 struct smb_filename *smb_dname,
2738 uint32 file_attributes)
2740 mode_t mode;
2741 char *parent_dir = NULL;
2742 NTSTATUS status;
2743 bool posix_open = false;
2744 bool need_re_stat = false;
2745 uint32_t access_mask = SEC_DIR_ADD_SUBDIR;
2747 if(access_mask & ~(conn->share_access)) {
2748 DEBUG(5,("mkdir_internal: failing share access "
2749 "%s\n", lp_servicename(talloc_tos(), SNUM(conn))));
2750 return NT_STATUS_ACCESS_DENIED;
2753 if (!parent_dirname(talloc_tos(), smb_dname->base_name, &parent_dir,
2754 NULL)) {
2755 return NT_STATUS_NO_MEMORY;
2758 if (file_attributes & FILE_FLAG_POSIX_SEMANTICS) {
2759 posix_open = true;
2760 mode = (mode_t)(file_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
2761 } else {
2762 mode = unix_mode(conn, FILE_ATTRIBUTE_DIRECTORY, smb_dname, parent_dir);
2765 status = check_parent_access(conn,
2766 smb_dname,
2767 access_mask);
2768 if(!NT_STATUS_IS_OK(status)) {
2769 DEBUG(5,("mkdir_internal: check_parent_access "
2770 "on directory %s for path %s returned %s\n",
2771 parent_dir,
2772 smb_dname->base_name,
2773 nt_errstr(status) ));
2774 return status;
2777 if (SMB_VFS_MKDIR(conn, smb_dname->base_name, mode) != 0) {
2778 return map_nt_error_from_unix(errno);
2781 /* Ensure we're checking for a symlink here.... */
2782 /* We don't want to get caught by a symlink racer. */
2784 if (SMB_VFS_LSTAT(conn, smb_dname) == -1) {
2785 DEBUG(2, ("Could not stat directory '%s' just created: %s\n",
2786 smb_fname_str_dbg(smb_dname), strerror(errno)));
2787 return map_nt_error_from_unix(errno);
2790 if (!S_ISDIR(smb_dname->st.st_ex_mode)) {
2791 DEBUG(0, ("Directory '%s' just created is not a directory !\n",
2792 smb_fname_str_dbg(smb_dname)));
2793 return NT_STATUS_NOT_A_DIRECTORY;
2796 if (lp_store_dos_attributes(SNUM(conn))) {
2797 if (!posix_open) {
2798 file_set_dosmode(conn, smb_dname,
2799 file_attributes | FILE_ATTRIBUTE_DIRECTORY,
2800 parent_dir, true);
2804 if (lp_inherit_perms(SNUM(conn))) {
2805 inherit_access_posix_acl(conn, parent_dir,
2806 smb_dname->base_name, mode);
2807 need_re_stat = true;
2810 if (!posix_open) {
2812 * Check if high bits should have been set,
2813 * then (if bits are missing): add them.
2814 * Consider bits automagically set by UNIX, i.e. SGID bit from parent
2815 * dir.
2817 if ((mode & ~(S_IRWXU|S_IRWXG|S_IRWXO)) &&
2818 (mode & ~smb_dname->st.st_ex_mode)) {
2819 SMB_VFS_CHMOD(conn, smb_dname->base_name,
2820 (smb_dname->st.st_ex_mode |
2821 (mode & ~smb_dname->st.st_ex_mode)));
2822 need_re_stat = true;
2826 /* Change the owner if required. */
2827 if (lp_inherit_owner(SNUM(conn))) {
2828 change_dir_owner_to_parent(conn, parent_dir,
2829 smb_dname->base_name,
2830 &smb_dname->st);
2831 need_re_stat = true;
2834 if (need_re_stat) {
2835 if (SMB_VFS_LSTAT(conn, smb_dname) == -1) {
2836 DEBUG(2, ("Could not stat directory '%s' just created: %s\n",
2837 smb_fname_str_dbg(smb_dname), strerror(errno)));
2838 return map_nt_error_from_unix(errno);
2842 notify_fname(conn, NOTIFY_ACTION_ADDED, FILE_NOTIFY_CHANGE_DIR_NAME,
2843 smb_dname->base_name);
2845 return NT_STATUS_OK;
2848 /****************************************************************************
2849 Open a directory from an NT SMB call.
2850 ****************************************************************************/
2852 static NTSTATUS open_directory(connection_struct *conn,
2853 struct smb_request *req,
2854 struct smb_filename *smb_dname,
2855 uint32 access_mask,
2856 uint32 share_access,
2857 uint32 create_disposition,
2858 uint32 create_options,
2859 uint32 file_attributes,
2860 int *pinfo,
2861 files_struct **result)
2863 files_struct *fsp = NULL;
2864 bool dir_existed = VALID_STAT(smb_dname->st) ? True : False;
2865 struct share_mode_lock *lck = NULL;
2866 NTSTATUS status;
2867 struct timespec mtimespec;
2868 int info = 0;
2870 if (is_ntfs_stream_smb_fname(smb_dname)) {
2871 DEBUG(2, ("open_directory: %s is a stream name!\n",
2872 smb_fname_str_dbg(smb_dname)));
2873 return NT_STATUS_NOT_A_DIRECTORY;
2876 if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS)) {
2877 /* Ensure we have a directory attribute. */
2878 file_attributes |= FILE_ATTRIBUTE_DIRECTORY;
2881 DEBUG(5,("open_directory: opening directory %s, access_mask = 0x%x, "
2882 "share_access = 0x%x create_options = 0x%x, "
2883 "create_disposition = 0x%x, file_attributes = 0x%x\n",
2884 smb_fname_str_dbg(smb_dname),
2885 (unsigned int)access_mask,
2886 (unsigned int)share_access,
2887 (unsigned int)create_options,
2888 (unsigned int)create_disposition,
2889 (unsigned int)file_attributes));
2891 status = smbd_calculate_access_mask(conn, smb_dname,
2892 access_mask, &access_mask);
2893 if (!NT_STATUS_IS_OK(status)) {
2894 DEBUG(10, ("open_directory: smbd_calculate_access_mask "
2895 "on file %s returned %s\n",
2896 smb_fname_str_dbg(smb_dname),
2897 nt_errstr(status)));
2898 return status;
2901 if ((access_mask & SEC_FLAG_SYSTEM_SECURITY) &&
2902 !security_token_has_privilege(get_current_nttok(conn),
2903 SEC_PRIV_SECURITY)) {
2904 DEBUG(10, ("open_directory: open on %s "
2905 "failed - SEC_FLAG_SYSTEM_SECURITY denied.\n",
2906 smb_fname_str_dbg(smb_dname)));
2907 return NT_STATUS_PRIVILEGE_NOT_HELD;
2910 switch( create_disposition ) {
2911 case FILE_OPEN:
2913 if (!dir_existed) {
2914 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2917 info = FILE_WAS_OPENED;
2918 break;
2920 case FILE_CREATE:
2922 /* If directory exists error. If directory doesn't
2923 * exist create. */
2925 if (dir_existed) {
2926 status = NT_STATUS_OBJECT_NAME_COLLISION;
2927 DEBUG(2, ("open_directory: unable to create "
2928 "%s. Error was %s\n",
2929 smb_fname_str_dbg(smb_dname),
2930 nt_errstr(status)));
2931 return status;
2934 status = mkdir_internal(conn, smb_dname,
2935 file_attributes);
2937 if (!NT_STATUS_IS_OK(status)) {
2938 DEBUG(2, ("open_directory: unable to create "
2939 "%s. Error was %s\n",
2940 smb_fname_str_dbg(smb_dname),
2941 nt_errstr(status)));
2942 return status;
2945 info = FILE_WAS_CREATED;
2946 break;
2948 case FILE_OPEN_IF:
2950 * If directory exists open. If directory doesn't
2951 * exist create.
2954 if (dir_existed) {
2955 status = NT_STATUS_OK;
2956 info = FILE_WAS_OPENED;
2957 } else {
2958 status = mkdir_internal(conn, smb_dname,
2959 file_attributes);
2961 if (NT_STATUS_IS_OK(status)) {
2962 info = FILE_WAS_CREATED;
2963 } else {
2964 /* Cope with create race. */
2965 if (!NT_STATUS_EQUAL(status,
2966 NT_STATUS_OBJECT_NAME_COLLISION)) {
2967 DEBUG(2, ("open_directory: unable to create "
2968 "%s. Error was %s\n",
2969 smb_fname_str_dbg(smb_dname),
2970 nt_errstr(status)));
2971 return status;
2973 info = FILE_WAS_OPENED;
2977 break;
2979 case FILE_SUPERSEDE:
2980 case FILE_OVERWRITE:
2981 case FILE_OVERWRITE_IF:
2982 default:
2983 DEBUG(5,("open_directory: invalid create_disposition "
2984 "0x%x for directory %s\n",
2985 (unsigned int)create_disposition,
2986 smb_fname_str_dbg(smb_dname)));
2987 return NT_STATUS_INVALID_PARAMETER;
2990 if(!S_ISDIR(smb_dname->st.st_ex_mode)) {
2991 DEBUG(5,("open_directory: %s is not a directory !\n",
2992 smb_fname_str_dbg(smb_dname)));
2993 return NT_STATUS_NOT_A_DIRECTORY;
2996 if (info == FILE_WAS_OPENED) {
2997 status = smbd_check_access_rights(conn, smb_dname, access_mask);
2998 if (!NT_STATUS_IS_OK(status)) {
2999 DEBUG(10, ("open_directory: smbd_check_access_rights on "
3000 "file %s failed with %s\n",
3001 smb_fname_str_dbg(smb_dname),
3002 nt_errstr(status)));
3003 return status;
3007 status = file_new(req, conn, &fsp);
3008 if(!NT_STATUS_IS_OK(status)) {
3009 return status;
3013 * Setup the files_struct for it.
3016 fsp->file_id = vfs_file_id_from_sbuf(conn, &smb_dname->st);
3017 fsp->vuid = req ? req->vuid : UID_FIELD_INVALID;
3018 fsp->file_pid = req ? req->smbpid : 0;
3019 fsp->can_lock = False;
3020 fsp->can_read = False;
3021 fsp->can_write = False;
3023 fsp->share_access = share_access;
3024 fsp->fh->private_options = 0;
3026 * According to Samba4, SEC_FILE_READ_ATTRIBUTE is always granted,
3028 fsp->access_mask = access_mask | FILE_READ_ATTRIBUTES;
3029 fsp->print_file = NULL;
3030 fsp->modified = False;
3031 fsp->oplock_type = NO_OPLOCK;
3032 fsp->sent_oplock_break = NO_BREAK_SENT;
3033 fsp->is_directory = True;
3034 fsp->posix_open = (file_attributes & FILE_FLAG_POSIX_SEMANTICS) ? True : False;
3035 status = fsp_set_smb_fname(fsp, smb_dname);
3036 if (!NT_STATUS_IS_OK(status)) {
3037 file_free(req, fsp);
3038 return status;
3041 mtimespec = smb_dname->st.st_ex_mtime;
3043 #ifdef O_DIRECTORY
3044 status = fd_open(conn, fsp, O_RDONLY|O_DIRECTORY, 0);
3045 #else
3046 /* POSIX allows us to open a directory with O_RDONLY. */
3047 status = fd_open(conn, fsp, O_RDONLY, 0);
3048 #endif
3049 if (!NT_STATUS_IS_OK(status)) {
3050 DEBUG(5, ("open_directory: Could not open fd for "
3051 "%s (%s)\n",
3052 smb_fname_str_dbg(smb_dname),
3053 nt_errstr(status)));
3054 file_free(req, fsp);
3055 return status;
3058 status = vfs_stat_fsp(fsp);
3059 if (!NT_STATUS_IS_OK(status)) {
3060 fd_close(fsp);
3061 file_free(req, fsp);
3062 return status;
3065 /* Ensure there was no race condition. */
3066 if (!check_same_stat(&smb_dname->st, &fsp->fsp_name->st)) {
3067 DEBUG(5,("open_directory: stat struct differs for "
3068 "directory %s.\n",
3069 smb_fname_str_dbg(smb_dname)));
3070 fd_close(fsp);
3071 file_free(req, fsp);
3072 return NT_STATUS_ACCESS_DENIED;
3075 lck = get_share_mode_lock(talloc_tos(), fsp->file_id,
3076 conn->connectpath, smb_dname,
3077 &mtimespec);
3079 if (lck == NULL) {
3080 DEBUG(0, ("open_directory: Could not get share mode lock for "
3081 "%s\n", smb_fname_str_dbg(smb_dname)));
3082 fd_close(fsp);
3083 file_free(req, fsp);
3084 return NT_STATUS_SHARING_VIOLATION;
3087 status = open_mode_check(conn, lck, fsp->name_hash,
3088 access_mask, share_access,
3089 create_options, &dir_existed);
3091 if (!NT_STATUS_IS_OK(status)) {
3092 TALLOC_FREE(lck);
3093 fd_close(fsp);
3094 file_free(req, fsp);
3095 return status;
3098 set_share_mode(lck, fsp, get_current_uid(conn),
3099 req ? req->mid : 0, NO_OPLOCK);
3101 /* For directories the delete on close bit at open time seems
3102 always to be honored on close... See test 19 in Samba4 BASE-DELETE. */
3103 if (create_options & FILE_DELETE_ON_CLOSE) {
3104 status = can_set_delete_on_close(fsp, 0);
3105 if (!NT_STATUS_IS_OK(status) && !NT_STATUS_EQUAL(status, NT_STATUS_DIRECTORY_NOT_EMPTY)) {
3106 TALLOC_FREE(lck);
3107 fd_close(fsp);
3108 file_free(req, fsp);
3109 return status;
3112 if (NT_STATUS_IS_OK(status)) {
3113 /* Note that here we set the *inital* delete on close flag,
3114 not the regular one. The magic gets handled in close. */
3115 fsp->initial_delete_on_close = True;
3119 TALLOC_FREE(lck);
3121 if (pinfo) {
3122 *pinfo = info;
3125 *result = fsp;
3126 return NT_STATUS_OK;
3129 NTSTATUS create_directory(connection_struct *conn, struct smb_request *req,
3130 struct smb_filename *smb_dname)
3132 NTSTATUS status;
3133 files_struct *fsp;
3135 status = SMB_VFS_CREATE_FILE(
3136 conn, /* conn */
3137 req, /* req */
3138 0, /* root_dir_fid */
3139 smb_dname, /* fname */
3140 FILE_READ_ATTRIBUTES, /* access_mask */
3141 FILE_SHARE_NONE, /* share_access */
3142 FILE_CREATE, /* create_disposition*/
3143 FILE_DIRECTORY_FILE, /* create_options */
3144 FILE_ATTRIBUTE_DIRECTORY, /* file_attributes */
3145 0, /* oplock_request */
3146 0, /* allocation_size */
3147 0, /* private_flags */
3148 NULL, /* sd */
3149 NULL, /* ea_list */
3150 &fsp, /* result */
3151 NULL); /* pinfo */
3153 if (NT_STATUS_IS_OK(status)) {
3154 close_file(req, fsp, NORMAL_CLOSE);
3157 return status;
3160 /****************************************************************************
3161 Receive notification that one of our open files has been renamed by another
3162 smbd process.
3163 ****************************************************************************/
3165 void msg_file_was_renamed(struct messaging_context *msg,
3166 void *private_data,
3167 uint32_t msg_type,
3168 struct server_id server_id,
3169 DATA_BLOB *data)
3171 files_struct *fsp;
3172 char *frm = (char *)data->data;
3173 struct file_id id;
3174 const char *sharepath;
3175 const char *base_name;
3176 const char *stream_name;
3177 struct smb_filename *smb_fname = NULL;
3178 size_t sp_len, bn_len;
3179 NTSTATUS status;
3180 struct smbd_server_connection *sconn =
3181 talloc_get_type_abort(private_data,
3182 struct smbd_server_connection);
3184 if (data->data == NULL
3185 || data->length < MSG_FILE_RENAMED_MIN_SIZE + 2) {
3186 DEBUG(0, ("msg_file_was_renamed: Got invalid msg len %d\n",
3187 (int)data->length));
3188 return;
3191 /* Unpack the message. */
3192 pull_file_id_24(frm, &id);
3193 sharepath = &frm[24];
3194 sp_len = strlen(sharepath);
3195 base_name = sharepath + sp_len + 1;
3196 bn_len = strlen(base_name);
3197 stream_name = sharepath + sp_len + 1 + bn_len + 1;
3199 /* stream_name must always be NULL if there is no stream. */
3200 if (stream_name[0] == '\0') {
3201 stream_name = NULL;
3204 status = create_synthetic_smb_fname(talloc_tos(), base_name,
3205 stream_name, NULL, &smb_fname);
3206 if (!NT_STATUS_IS_OK(status)) {
3207 return;
3210 DEBUG(10,("msg_file_was_renamed: Got rename message for sharepath %s, new name %s, "
3211 "file_id %s\n",
3212 sharepath, smb_fname_str_dbg(smb_fname),
3213 file_id_string_tos(&id)));
3215 for(fsp = file_find_di_first(sconn, id); fsp;
3216 fsp = file_find_di_next(fsp)) {
3217 if (memcmp(fsp->conn->connectpath, sharepath, sp_len) == 0) {
3219 DEBUG(10,("msg_file_was_renamed: renaming file %s from %s -> %s\n",
3220 fsp_fnum_dbg(fsp), fsp_str_dbg(fsp),
3221 smb_fname_str_dbg(smb_fname)));
3222 status = fsp_set_smb_fname(fsp, smb_fname);
3223 if (!NT_STATUS_IS_OK(status)) {
3224 goto out;
3226 } else {
3227 /* TODO. JRA. */
3228 /* Now we have the complete path we can work out if this is
3229 actually within this share and adjust newname accordingly. */
3230 DEBUG(10,("msg_file_was_renamed: share mismatch (sharepath %s "
3231 "not sharepath %s) "
3232 "%s from %s -> %s\n",
3233 fsp->conn->connectpath,
3234 sharepath,
3235 fsp_fnum_dbg(fsp),
3236 fsp_str_dbg(fsp),
3237 smb_fname_str_dbg(smb_fname)));
3240 out:
3241 TALLOC_FREE(smb_fname);
3242 return;
3246 * If a main file is opened for delete, all streams need to be checked for
3247 * !FILE_SHARE_DELETE. Do this by opening with DELETE_ACCESS.
3248 * If that works, delete them all by setting the delete on close and close.
3251 NTSTATUS open_streams_for_delete(connection_struct *conn,
3252 const char *fname)
3254 struct stream_struct *stream_info = NULL;
3255 files_struct **streams = NULL;
3256 int i;
3257 unsigned int num_streams = 0;
3258 TALLOC_CTX *frame = talloc_stackframe();
3259 NTSTATUS status;
3261 status = vfs_streaminfo(conn, NULL, fname, talloc_tos(),
3262 &num_streams, &stream_info);
3264 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)
3265 || NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
3266 DEBUG(10, ("no streams around\n"));
3267 TALLOC_FREE(frame);
3268 return NT_STATUS_OK;
3271 if (!NT_STATUS_IS_OK(status)) {
3272 DEBUG(10, ("vfs_streaminfo failed: %s\n",
3273 nt_errstr(status)));
3274 goto fail;
3277 DEBUG(10, ("open_streams_for_delete found %d streams\n",
3278 num_streams));
3280 if (num_streams == 0) {
3281 TALLOC_FREE(frame);
3282 return NT_STATUS_OK;
3285 streams = talloc_array(talloc_tos(), files_struct *, num_streams);
3286 if (streams == NULL) {
3287 DEBUG(0, ("talloc failed\n"));
3288 status = NT_STATUS_NO_MEMORY;
3289 goto fail;
3292 for (i=0; i<num_streams; i++) {
3293 struct smb_filename *smb_fname = NULL;
3295 if (strequal(stream_info[i].name, "::$DATA")) {
3296 streams[i] = NULL;
3297 continue;
3300 status = create_synthetic_smb_fname(talloc_tos(), fname,
3301 stream_info[i].name,
3302 NULL, &smb_fname);
3303 if (!NT_STATUS_IS_OK(status)) {
3304 goto fail;
3307 if (SMB_VFS_STAT(conn, smb_fname) == -1) {
3308 DEBUG(10, ("Unable to stat stream: %s\n",
3309 smb_fname_str_dbg(smb_fname)));
3312 status = SMB_VFS_CREATE_FILE(
3313 conn, /* conn */
3314 NULL, /* req */
3315 0, /* root_dir_fid */
3316 smb_fname, /* fname */
3317 DELETE_ACCESS, /* access_mask */
3318 (FILE_SHARE_READ | /* share_access */
3319 FILE_SHARE_WRITE | FILE_SHARE_DELETE),
3320 FILE_OPEN, /* create_disposition*/
3321 0, /* create_options */
3322 FILE_ATTRIBUTE_NORMAL, /* file_attributes */
3323 0, /* oplock_request */
3324 0, /* allocation_size */
3325 NTCREATEX_OPTIONS_PRIVATE_STREAM_DELETE, /* private_flags */
3326 NULL, /* sd */
3327 NULL, /* ea_list */
3328 &streams[i], /* result */
3329 NULL); /* pinfo */
3331 if (!NT_STATUS_IS_OK(status)) {
3332 DEBUG(10, ("Could not open stream %s: %s\n",
3333 smb_fname_str_dbg(smb_fname),
3334 nt_errstr(status)));
3336 TALLOC_FREE(smb_fname);
3337 break;
3339 TALLOC_FREE(smb_fname);
3343 * don't touch the variable "status" beyond this point :-)
3346 for (i -= 1 ; i >= 0; i--) {
3347 if (streams[i] == NULL) {
3348 continue;
3351 DEBUG(10, ("Closing stream # %d, %s\n", i,
3352 fsp_str_dbg(streams[i])));
3353 close_file(NULL, streams[i], NORMAL_CLOSE);
3356 fail:
3357 TALLOC_FREE(frame);
3358 return status;
3361 /*********************************************************************
3362 Create a default ACL by inheriting from the parent. If no inheritance
3363 from the parent available, don't set anything. This will leave the actual
3364 permissions the new file or directory already got from the filesystem
3365 as the NT ACL when read.
3366 *********************************************************************/
3368 static NTSTATUS inherit_new_acl(files_struct *fsp)
3370 TALLOC_CTX *ctx = talloc_tos();
3371 char *parent_name = NULL;
3372 struct security_descriptor *parent_desc = NULL;
3373 NTSTATUS status = NT_STATUS_OK;
3374 struct security_descriptor *psd = NULL;
3375 struct dom_sid *owner_sid = NULL;
3376 struct dom_sid *group_sid = NULL;
3377 uint32_t security_info_sent = (SECINFO_OWNER | SECINFO_GROUP | SECINFO_DACL);
3378 bool inherit_owner = lp_inherit_owner(SNUM(fsp->conn));
3379 bool inheritable_components = false;
3380 size_t size = 0;
3382 if (!parent_dirname(ctx, fsp->fsp_name->base_name, &parent_name, NULL)) {
3383 return NT_STATUS_NO_MEMORY;
3386 status = SMB_VFS_GET_NT_ACL(fsp->conn,
3387 parent_name,
3388 (SECINFO_OWNER | SECINFO_GROUP | SECINFO_DACL),
3389 &parent_desc);
3390 if (!NT_STATUS_IS_OK(status)) {
3391 return status;
3394 inheritable_components = sd_has_inheritable_components(parent_desc,
3395 fsp->is_directory);
3397 if (!inheritable_components && !inherit_owner) {
3398 /* Nothing to inherit and not setting owner. */
3399 return NT_STATUS_OK;
3402 /* Create an inherited descriptor from the parent. */
3404 if (DEBUGLEVEL >= 10) {
3405 DEBUG(10,("inherit_new_acl: parent acl for %s is:\n",
3406 fsp_str_dbg(fsp) ));
3407 NDR_PRINT_DEBUG(security_descriptor, parent_desc);
3410 /* Inherit from parent descriptor if "inherit owner" set. */
3411 if (inherit_owner) {
3412 owner_sid = parent_desc->owner_sid;
3413 group_sid = parent_desc->group_sid;
3416 if (owner_sid == NULL) {
3417 owner_sid = &fsp->conn->session_info->security_token->sids[PRIMARY_USER_SID_INDEX];
3419 if (group_sid == NULL) {
3420 group_sid = &fsp->conn->session_info->security_token->sids[PRIMARY_GROUP_SID_INDEX];
3423 status = se_create_child_secdesc(ctx,
3424 &psd,
3425 &size,
3426 parent_desc,
3427 owner_sid,
3428 group_sid,
3429 fsp->is_directory);
3430 if (!NT_STATUS_IS_OK(status)) {
3431 return status;
3434 /* If inheritable_components == false,
3435 se_create_child_secdesc()
3436 creates a security desriptor with a NULL dacl
3437 entry, but with SEC_DESC_DACL_PRESENT. We need
3438 to remove that flag. */
3440 if (!inheritable_components) {
3441 security_info_sent &= ~SECINFO_DACL;
3442 psd->type &= ~SEC_DESC_DACL_PRESENT;
3445 if (DEBUGLEVEL >= 10) {
3446 DEBUG(10,("inherit_new_acl: child acl for %s is:\n",
3447 fsp_str_dbg(fsp) ));
3448 NDR_PRINT_DEBUG(security_descriptor, psd);
3451 if (inherit_owner) {
3452 /* We need to be root to force this. */
3453 become_root();
3455 status = SMB_VFS_FSET_NT_ACL(fsp,
3456 security_info_sent,
3457 psd);
3458 if (inherit_owner) {
3459 unbecome_root();
3461 return status;
3465 * Wrapper around open_file_ntcreate and open_directory
3468 static NTSTATUS create_file_unixpath(connection_struct *conn,
3469 struct smb_request *req,
3470 struct smb_filename *smb_fname,
3471 uint32_t access_mask,
3472 uint32_t share_access,
3473 uint32_t create_disposition,
3474 uint32_t create_options,
3475 uint32_t file_attributes,
3476 uint32_t oplock_request,
3477 uint64_t allocation_size,
3478 uint32_t private_flags,
3479 struct security_descriptor *sd,
3480 struct ea_list *ea_list,
3482 files_struct **result,
3483 int *pinfo)
3485 int info = FILE_WAS_OPENED;
3486 files_struct *base_fsp = NULL;
3487 files_struct *fsp = NULL;
3488 NTSTATUS status;
3490 DEBUG(10,("create_file_unixpath: access_mask = 0x%x "
3491 "file_attributes = 0x%x, share_access = 0x%x, "
3492 "create_disposition = 0x%x create_options = 0x%x "
3493 "oplock_request = 0x%x private_flags = 0x%x "
3494 "ea_list = 0x%p, sd = 0x%p, "
3495 "fname = %s\n",
3496 (unsigned int)access_mask,
3497 (unsigned int)file_attributes,
3498 (unsigned int)share_access,
3499 (unsigned int)create_disposition,
3500 (unsigned int)create_options,
3501 (unsigned int)oplock_request,
3502 (unsigned int)private_flags,
3503 ea_list, sd, smb_fname_str_dbg(smb_fname)));
3505 if (create_options & FILE_OPEN_BY_FILE_ID) {
3506 status = NT_STATUS_NOT_SUPPORTED;
3507 goto fail;
3510 if (create_options & NTCREATEX_OPTIONS_INVALID_PARAM_MASK) {
3511 status = NT_STATUS_INVALID_PARAMETER;
3512 goto fail;
3515 if (req == NULL) {
3516 oplock_request |= INTERNAL_OPEN_ONLY;
3519 if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
3520 && (access_mask & DELETE_ACCESS)
3521 && !is_ntfs_stream_smb_fname(smb_fname)) {
3523 * We can't open a file with DELETE access if any of the
3524 * streams is open without FILE_SHARE_DELETE
3526 status = open_streams_for_delete(conn, smb_fname->base_name);
3528 if (!NT_STATUS_IS_OK(status)) {
3529 goto fail;
3533 if ((access_mask & SEC_FLAG_SYSTEM_SECURITY) &&
3534 !security_token_has_privilege(get_current_nttok(conn),
3535 SEC_PRIV_SECURITY)) {
3536 DEBUG(10, ("create_file_unixpath: open on %s "
3537 "failed - SEC_FLAG_SYSTEM_SECURITY denied.\n",
3538 smb_fname_str_dbg(smb_fname)));
3539 status = NT_STATUS_PRIVILEGE_NOT_HELD;
3540 goto fail;
3543 if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
3544 && is_ntfs_stream_smb_fname(smb_fname)
3545 && (!(private_flags & NTCREATEX_OPTIONS_PRIVATE_STREAM_DELETE))) {
3546 uint32 base_create_disposition;
3547 struct smb_filename *smb_fname_base = NULL;
3549 if (create_options & FILE_DIRECTORY_FILE) {
3550 status = NT_STATUS_NOT_A_DIRECTORY;
3551 goto fail;
3554 switch (create_disposition) {
3555 case FILE_OPEN:
3556 base_create_disposition = FILE_OPEN;
3557 break;
3558 default:
3559 base_create_disposition = FILE_OPEN_IF;
3560 break;
3563 /* Create an smb_filename with stream_name == NULL. */
3564 status = create_synthetic_smb_fname(talloc_tos(),
3565 smb_fname->base_name,
3566 NULL, NULL,
3567 &smb_fname_base);
3568 if (!NT_STATUS_IS_OK(status)) {
3569 goto fail;
3572 if (SMB_VFS_STAT(conn, smb_fname_base) == -1) {
3573 DEBUG(10, ("Unable to stat stream: %s\n",
3574 smb_fname_str_dbg(smb_fname_base)));
3577 /* Open the base file. */
3578 status = create_file_unixpath(conn, NULL, smb_fname_base, 0,
3579 FILE_SHARE_READ
3580 | FILE_SHARE_WRITE
3581 | FILE_SHARE_DELETE,
3582 base_create_disposition,
3583 0, 0, 0, 0, 0, NULL, NULL,
3584 &base_fsp, NULL);
3585 TALLOC_FREE(smb_fname_base);
3587 if (!NT_STATUS_IS_OK(status)) {
3588 DEBUG(10, ("create_file_unixpath for base %s failed: "
3589 "%s\n", smb_fname->base_name,
3590 nt_errstr(status)));
3591 goto fail;
3593 /* we don't need to low level fd */
3594 fd_close(base_fsp);
3598 * If it's a request for a directory open, deal with it separately.
3601 if (create_options & FILE_DIRECTORY_FILE) {
3603 if (create_options & FILE_NON_DIRECTORY_FILE) {
3604 status = NT_STATUS_INVALID_PARAMETER;
3605 goto fail;
3608 /* Can't open a temp directory. IFS kit test. */
3609 if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS) &&
3610 (file_attributes & FILE_ATTRIBUTE_TEMPORARY)) {
3611 status = NT_STATUS_INVALID_PARAMETER;
3612 goto fail;
3616 * We will get a create directory here if the Win32
3617 * app specified a security descriptor in the
3618 * CreateDirectory() call.
3621 oplock_request = 0;
3622 status = open_directory(
3623 conn, req, smb_fname, access_mask, share_access,
3624 create_disposition, create_options, file_attributes,
3625 &info, &fsp);
3626 } else {
3629 * Ordinary file case.
3632 status = file_new(req, conn, &fsp);
3633 if(!NT_STATUS_IS_OK(status)) {
3634 goto fail;
3637 status = fsp_set_smb_fname(fsp, smb_fname);
3638 if (!NT_STATUS_IS_OK(status)) {
3639 goto fail;
3643 * We're opening the stream element of a base_fsp
3644 * we already opened. Set up the base_fsp pointer.
3646 if (base_fsp) {
3647 fsp->base_fsp = base_fsp;
3650 if (allocation_size) {
3651 fsp->initial_allocation_size = smb_roundup(fsp->conn,
3652 allocation_size);
3655 status = open_file_ntcreate(conn,
3656 req,
3657 access_mask,
3658 share_access,
3659 create_disposition,
3660 create_options,
3661 file_attributes,
3662 oplock_request,
3663 private_flags,
3664 &info,
3665 fsp);
3667 if(!NT_STATUS_IS_OK(status)) {
3668 file_free(req, fsp);
3669 fsp = NULL;
3672 if (NT_STATUS_EQUAL(status, NT_STATUS_FILE_IS_A_DIRECTORY)) {
3674 /* A stream open never opens a directory */
3676 if (base_fsp) {
3677 status = NT_STATUS_FILE_IS_A_DIRECTORY;
3678 goto fail;
3682 * Fail the open if it was explicitly a non-directory
3683 * file.
3686 if (create_options & FILE_NON_DIRECTORY_FILE) {
3687 status = NT_STATUS_FILE_IS_A_DIRECTORY;
3688 goto fail;
3691 oplock_request = 0;
3692 status = open_directory(
3693 conn, req, smb_fname, access_mask,
3694 share_access, create_disposition,
3695 create_options, file_attributes,
3696 &info, &fsp);
3700 if (!NT_STATUS_IS_OK(status)) {
3701 goto fail;
3704 fsp->base_fsp = base_fsp;
3706 if ((ea_list != NULL) &&
3707 ((info == FILE_WAS_CREATED) || (info == FILE_WAS_OVERWRITTEN))) {
3708 status = set_ea(conn, fsp, fsp->fsp_name, ea_list);
3709 if (!NT_STATUS_IS_OK(status)) {
3710 goto fail;
3714 if (!fsp->is_directory && S_ISDIR(fsp->fsp_name->st.st_ex_mode)) {
3715 status = NT_STATUS_ACCESS_DENIED;
3716 goto fail;
3719 /* Save the requested allocation size. */
3720 if ((info == FILE_WAS_CREATED) || (info == FILE_WAS_OVERWRITTEN)) {
3721 if (allocation_size
3722 && (allocation_size > fsp->fsp_name->st.st_ex_size)) {
3723 fsp->initial_allocation_size = smb_roundup(
3724 fsp->conn, allocation_size);
3725 if (fsp->is_directory) {
3726 /* Can't set allocation size on a directory. */
3727 status = NT_STATUS_ACCESS_DENIED;
3728 goto fail;
3730 if (vfs_allocate_file_space(
3731 fsp, fsp->initial_allocation_size) == -1) {
3732 status = NT_STATUS_DISK_FULL;
3733 goto fail;
3735 } else {
3736 fsp->initial_allocation_size = smb_roundup(
3737 fsp->conn, (uint64_t)fsp->fsp_name->st.st_ex_size);
3739 } else {
3740 fsp->initial_allocation_size = 0;
3743 if ((info == FILE_WAS_CREATED) && lp_nt_acl_support(SNUM(conn)) &&
3744 fsp->base_fsp == NULL) {
3745 if (sd != NULL) {
3747 * According to the MS documentation, the only time the security
3748 * descriptor is applied to the opened file is iff we *created* the
3749 * file; an existing file stays the same.
3751 * Also, it seems (from observation) that you can open the file with
3752 * any access mask but you can still write the sd. We need to override
3753 * the granted access before we call set_sd
3754 * Patch for bug #2242 from Tom Lackemann <cessnatomny@yahoo.com>.
3757 uint32_t sec_info_sent;
3758 uint32_t saved_access_mask = fsp->access_mask;
3760 sec_info_sent = get_sec_info(sd);
3762 fsp->access_mask = FILE_GENERIC_ALL;
3764 if (sec_info_sent & (SECINFO_OWNER|
3765 SECINFO_GROUP|
3766 SECINFO_DACL|
3767 SECINFO_SACL)) {
3768 status = set_sd(fsp, sd, sec_info_sent);
3771 fsp->access_mask = saved_access_mask;
3773 if (!NT_STATUS_IS_OK(status)) {
3774 goto fail;
3776 } else if (lp_inherit_acls(SNUM(conn))) {
3777 /* Inherit from parent. Errors here are not fatal. */
3778 status = inherit_new_acl(fsp);
3779 if (!NT_STATUS_IS_OK(status)) {
3780 DEBUG(10,("inherit_new_acl: failed for %s with %s\n",
3781 fsp_str_dbg(fsp),
3782 nt_errstr(status) ));
3787 DEBUG(10, ("create_file_unixpath: info=%d\n", info));
3789 *result = fsp;
3790 if (pinfo != NULL) {
3791 *pinfo = info;
3794 smb_fname->st = fsp->fsp_name->st;
3796 return NT_STATUS_OK;
3798 fail:
3799 DEBUG(10, ("create_file_unixpath: %s\n", nt_errstr(status)));
3801 if (fsp != NULL) {
3802 if (base_fsp && fsp->base_fsp == base_fsp) {
3804 * The close_file below will close
3805 * fsp->base_fsp.
3807 base_fsp = NULL;
3809 close_file(req, fsp, ERROR_CLOSE);
3810 fsp = NULL;
3812 if (base_fsp != NULL) {
3813 close_file(req, base_fsp, ERROR_CLOSE);
3814 base_fsp = NULL;
3816 return status;
3820 * Calculate the full path name given a relative fid.
3822 NTSTATUS get_relative_fid_filename(connection_struct *conn,
3823 struct smb_request *req,
3824 uint16_t root_dir_fid,
3825 const struct smb_filename *smb_fname,
3826 struct smb_filename **smb_fname_out)
3828 files_struct *dir_fsp;
3829 char *parent_fname = NULL;
3830 char *new_base_name = NULL;
3831 NTSTATUS status;
3833 if (root_dir_fid == 0 || !smb_fname) {
3834 status = NT_STATUS_INTERNAL_ERROR;
3835 goto out;
3838 dir_fsp = file_fsp(req, root_dir_fid);
3840 if (dir_fsp == NULL) {
3841 status = NT_STATUS_INVALID_HANDLE;
3842 goto out;
3845 if (is_ntfs_stream_smb_fname(dir_fsp->fsp_name)) {
3846 status = NT_STATUS_INVALID_HANDLE;
3847 goto out;
3850 if (!dir_fsp->is_directory) {
3853 * Check to see if this is a mac fork of some kind.
3856 if ((conn->fs_capabilities & FILE_NAMED_STREAMS) &&
3857 is_ntfs_stream_smb_fname(smb_fname)) {
3858 status = NT_STATUS_OBJECT_PATH_NOT_FOUND;
3859 goto out;
3863 we need to handle the case when we get a
3864 relative open relative to a file and the
3865 pathname is blank - this is a reopen!
3866 (hint from demyn plantenberg)
3869 status = NT_STATUS_INVALID_HANDLE;
3870 goto out;
3873 if (ISDOT(dir_fsp->fsp_name->base_name)) {
3875 * We're at the toplevel dir, the final file name
3876 * must not contain ./, as this is filtered out
3877 * normally by srvstr_get_path and unix_convert
3878 * explicitly rejects paths containing ./.
3880 parent_fname = talloc_strdup(talloc_tos(), "");
3881 if (parent_fname == NULL) {
3882 status = NT_STATUS_NO_MEMORY;
3883 goto out;
3885 } else {
3886 size_t dir_name_len = strlen(dir_fsp->fsp_name->base_name);
3889 * Copy in the base directory name.
3892 parent_fname = talloc_array(talloc_tos(), char,
3893 dir_name_len+2);
3894 if (parent_fname == NULL) {
3895 status = NT_STATUS_NO_MEMORY;
3896 goto out;
3898 memcpy(parent_fname, dir_fsp->fsp_name->base_name,
3899 dir_name_len+1);
3902 * Ensure it ends in a '/'.
3903 * We used TALLOC_SIZE +2 to add space for the '/'.
3906 if(dir_name_len
3907 && (parent_fname[dir_name_len-1] != '\\')
3908 && (parent_fname[dir_name_len-1] != '/')) {
3909 parent_fname[dir_name_len] = '/';
3910 parent_fname[dir_name_len+1] = '\0';
3914 new_base_name = talloc_asprintf(talloc_tos(), "%s%s", parent_fname,
3915 smb_fname->base_name);
3916 if (new_base_name == NULL) {
3917 status = NT_STATUS_NO_MEMORY;
3918 goto out;
3921 status = filename_convert(req,
3922 conn,
3923 req->flags2 & FLAGS2_DFS_PATHNAMES,
3924 new_base_name,
3926 NULL,
3927 smb_fname_out);
3928 if (!NT_STATUS_IS_OK(status)) {
3929 goto out;
3932 out:
3933 TALLOC_FREE(parent_fname);
3934 TALLOC_FREE(new_base_name);
3935 return status;
3938 NTSTATUS create_file_default(connection_struct *conn,
3939 struct smb_request *req,
3940 uint16_t root_dir_fid,
3941 struct smb_filename *smb_fname,
3942 uint32_t access_mask,
3943 uint32_t share_access,
3944 uint32_t create_disposition,
3945 uint32_t create_options,
3946 uint32_t file_attributes,
3947 uint32_t oplock_request,
3948 uint64_t allocation_size,
3949 uint32_t private_flags,
3950 struct security_descriptor *sd,
3951 struct ea_list *ea_list,
3952 files_struct **result,
3953 int *pinfo)
3955 int info = FILE_WAS_OPENED;
3956 files_struct *fsp = NULL;
3957 NTSTATUS status;
3958 bool stream_name = false;
3960 DEBUG(10,("create_file: access_mask = 0x%x "
3961 "file_attributes = 0x%x, share_access = 0x%x, "
3962 "create_disposition = 0x%x create_options = 0x%x "
3963 "oplock_request = 0x%x "
3964 "private_flags = 0x%x "
3965 "root_dir_fid = 0x%x, ea_list = 0x%p, sd = 0x%p, "
3966 "fname = %s\n",
3967 (unsigned int)access_mask,
3968 (unsigned int)file_attributes,
3969 (unsigned int)share_access,
3970 (unsigned int)create_disposition,
3971 (unsigned int)create_options,
3972 (unsigned int)oplock_request,
3973 (unsigned int)private_flags,
3974 (unsigned int)root_dir_fid,
3975 ea_list, sd, smb_fname_str_dbg(smb_fname)));
3978 * Calculate the filename from the root_dir_if if necessary.
3981 if (root_dir_fid != 0) {
3982 struct smb_filename *smb_fname_out = NULL;
3983 status = get_relative_fid_filename(conn, req, root_dir_fid,
3984 smb_fname, &smb_fname_out);
3985 if (!NT_STATUS_IS_OK(status)) {
3986 goto fail;
3988 smb_fname = smb_fname_out;
3992 * Check to see if this is a mac fork of some kind.
3995 stream_name = is_ntfs_stream_smb_fname(smb_fname);
3996 if (stream_name) {
3997 enum FAKE_FILE_TYPE fake_file_type;
3999 fake_file_type = is_fake_file(smb_fname);
4001 if (fake_file_type != FAKE_FILE_TYPE_NONE) {
4004 * Here we go! support for changing the disk quotas
4005 * --metze
4007 * We need to fake up to open this MAGIC QUOTA file
4008 * and return a valid FID.
4010 * w2k close this file directly after openening xp
4011 * also tries a QUERY_FILE_INFO on the file and then
4012 * close it
4014 status = open_fake_file(req, conn, req->vuid,
4015 fake_file_type, smb_fname,
4016 access_mask, &fsp);
4017 if (!NT_STATUS_IS_OK(status)) {
4018 goto fail;
4021 ZERO_STRUCT(smb_fname->st);
4022 goto done;
4025 if (!(conn->fs_capabilities & FILE_NAMED_STREAMS)) {
4026 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
4027 goto fail;
4031 if (is_ntfs_default_stream_smb_fname(smb_fname)) {
4032 int ret;
4033 smb_fname->stream_name = NULL;
4034 /* We have to handle this error here. */
4035 if (create_options & FILE_DIRECTORY_FILE) {
4036 status = NT_STATUS_NOT_A_DIRECTORY;
4037 goto fail;
4039 if (lp_posix_pathnames()) {
4040 ret = SMB_VFS_LSTAT(conn, smb_fname);
4041 } else {
4042 ret = SMB_VFS_STAT(conn, smb_fname);
4045 if (ret == 0 && VALID_STAT_OF_DIR(smb_fname->st)) {
4046 status = NT_STATUS_FILE_IS_A_DIRECTORY;
4047 goto fail;
4051 status = create_file_unixpath(
4052 conn, req, smb_fname, access_mask, share_access,
4053 create_disposition, create_options, file_attributes,
4054 oplock_request, allocation_size, private_flags,
4055 sd, ea_list,
4056 &fsp, &info);
4058 if (!NT_STATUS_IS_OK(status)) {
4059 goto fail;
4062 done:
4063 DEBUG(10, ("create_file: info=%d\n", info));
4065 *result = fsp;
4066 if (pinfo != NULL) {
4067 *pinfo = info;
4069 return NT_STATUS_OK;
4071 fail:
4072 DEBUG(10, ("create_file: %s\n", nt_errstr(status)));
4074 if (fsp != NULL) {
4075 close_file(req, fsp, ERROR_CLOSE);
4076 fsp = NULL;
4078 return status;