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 2 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, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 extern struct generic_mapping file_generic_mapping;
26 extern struct current_user current_user;
27 extern userdom_struct current_user_info;
28 extern uint16 global_smbpid;
29 extern BOOL global_client_failed_oplock_break;
31 struct deferred_open_record {
32 BOOL delayed_for_oplocks;
37 /****************************************************************************
38 fd support routines - attempt to do a dos_open.
39 ****************************************************************************/
41 static NTSTATUS fd_open(struct connection_struct *conn,
47 NTSTATUS status = NT_STATUS_OK;
51 * Never follow symlinks on a POSIX client. The
52 * client should be doing this.
55 if (fsp->posix_open || !lp_symlinks(SNUM(conn))) {
60 fsp->fh->fd = SMB_VFS_OPEN(conn,fname,fsp,flags,mode);
61 if (fsp->fh->fd == -1) {
62 status = map_nt_error_from_unix(errno);
65 DEBUG(10,("fd_open: name %s, flags = 0%o mode = 0%o, fd = %d. %s\n",
66 fname, flags, (int)mode, fsp->fh->fd,
67 (fsp->fh->fd == -1) ? strerror(errno) : "" ));
72 /****************************************************************************
73 Close the file associated with a fsp.
74 ****************************************************************************/
76 NTSTATUS fd_close(struct connection_struct *conn, files_struct *fsp)
78 if (fsp->fh->fd == -1) {
79 return NT_STATUS_OK; /* What we used to call a stat open. */
81 if (fsp->fh->ref_count > 1) {
82 return NT_STATUS_OK; /* Shared handle. Only close last reference. */
84 return fd_close_posix(conn, fsp);
87 /****************************************************************************
88 Change the ownership of a file to that of the parent directory.
89 Do this by fd if possible.
90 ****************************************************************************/
92 static void change_file_owner_to_parent(connection_struct *conn,
93 const char *inherit_from_dir,
96 SMB_STRUCT_STAT parent_st;
99 ret = SMB_VFS_STAT(conn, inherit_from_dir, &parent_st);
101 DEBUG(0,("change_file_owner_to_parent: failed to stat parent "
102 "directory %s. Error was %s\n",
103 inherit_from_dir, strerror(errno) ));
108 ret = SMB_VFS_FCHOWN(fsp, fsp->fh->fd, parent_st.st_uid, (gid_t)-1);
111 DEBUG(0,("change_file_owner_to_parent: failed to fchown "
112 "file %s to parent directory uid %u. Error "
113 "was %s\n", fsp->fsp_name,
114 (unsigned int)parent_st.st_uid,
118 DEBUG(10,("change_file_owner_to_parent: changed new file %s to "
119 "parent directory uid %u.\n", fsp->fsp_name,
120 (unsigned int)parent_st.st_uid ));
123 static void change_dir_owner_to_parent(connection_struct *conn,
124 const char *inherit_from_dir,
126 SMB_STRUCT_STAT *psbuf)
129 SMB_STRUCT_STAT sbuf;
130 SMB_STRUCT_STAT parent_st;
133 ret = SMB_VFS_STAT(conn, inherit_from_dir, &parent_st);
135 DEBUG(0,("change_dir_owner_to_parent: failed to stat parent "
136 "directory %s. Error was %s\n",
137 inherit_from_dir, strerror(errno) ));
141 /* We've already done an lstat into psbuf, and we know it's a
142 directory. If we can cd into the directory and the dev/ino
143 are the same then we can safely chown without races as
144 we're locking the directory in place by being in it. This
145 should work on any UNIX (thanks tridge :-). JRA.
148 if (!vfs_GetWd(conn,saved_dir)) {
149 DEBUG(0,("change_dir_owner_to_parent: failed to get "
150 "current working directory\n"));
154 /* Chdir into the new path. */
155 if (vfs_ChDir(conn, fname) == -1) {
156 DEBUG(0,("change_dir_owner_to_parent: failed to change "
157 "current working directory to %s. Error "
158 "was %s\n", fname, strerror(errno) ));
162 if (SMB_VFS_STAT(conn,".",&sbuf) == -1) {
163 DEBUG(0,("change_dir_owner_to_parent: failed to stat "
164 "directory '.' (%s) Error was %s\n",
165 fname, strerror(errno)));
169 /* Ensure we're pointing at the same place. */
170 if (sbuf.st_dev != psbuf->st_dev ||
171 sbuf.st_ino != psbuf->st_ino ||
172 sbuf.st_mode != psbuf->st_mode ) {
173 DEBUG(0,("change_dir_owner_to_parent: "
174 "device/inode/mode on directory %s changed. "
175 "Refusing to chown !\n", fname ));
180 ret = SMB_VFS_CHOWN(conn, ".", parent_st.st_uid, (gid_t)-1);
183 DEBUG(10,("change_dir_owner_to_parent: failed to chown "
184 "directory %s to parent directory uid %u. "
185 "Error was %s\n", fname,
186 (unsigned int)parent_st.st_uid, strerror(errno) ));
190 DEBUG(10,("change_dir_owner_to_parent: changed ownership of new "
191 "directory %s to parent directory uid %u.\n",
192 fname, (unsigned int)parent_st.st_uid ));
196 vfs_ChDir(conn,saved_dir);
199 /****************************************************************************
201 ****************************************************************************/
203 static NTSTATUS open_file(files_struct *fsp,
204 connection_struct *conn,
205 const char *parent_dir,
208 SMB_STRUCT_STAT *psbuf,
211 uint32 access_mask, /* client requested access mask. */
212 uint32 open_access_mask) /* what we're actually using in the open. */
214 NTSTATUS status = NT_STATUS_OK;
215 int accmode = (flags & O_ACCMODE);
216 int local_flags = flags;
217 BOOL file_existed = VALID_STAT(*psbuf);
222 /* Check permissions */
225 * This code was changed after seeing a client open request
226 * containing the open mode of (DENY_WRITE/read-only) with
227 * the 'create if not exist' bit set. The previous code
228 * would fail to open the file read only on a read-only share
229 * as it was checking the flags parameter directly against O_RDONLY,
230 * this was failing as the flags parameter was set to O_RDONLY|O_CREAT.
234 if (!CAN_WRITE(conn)) {
235 /* It's a read-only share - fail if we wanted to write. */
236 if(accmode != O_RDONLY) {
237 DEBUG(3,("Permission denied opening %s\n", path));
238 return NT_STATUS_ACCESS_DENIED;
239 } else if(flags & O_CREAT) {
240 /* We don't want to write - but we must make sure that
241 O_CREAT doesn't create the file if we have write
242 access into the directory.
245 local_flags &= ~O_CREAT;
250 * This little piece of insanity is inspired by the
251 * fact that an NT client can open a file for O_RDONLY,
252 * but set the create disposition to FILE_EXISTS_TRUNCATE.
253 * If the client *can* write to the file, then it expects to
254 * truncate the file, even though it is opening for readonly.
255 * Quicken uses this stupid trick in backup file creation...
256 * Thanks *greatly* to "David W. Chapman Jr." <dwcjr@inethouston.net>
257 * for helping track this one down. It didn't bite us in 2.0.x
258 * as we always opened files read-write in that release. JRA.
261 if ((accmode == O_RDONLY) && ((flags & O_TRUNC) == O_TRUNC)) {
262 DEBUG(10,("open_file: truncate requested on read-only open "
263 "for file %s\n", path));
264 local_flags = (flags & ~O_ACCMODE)|O_RDWR;
267 if ((open_access_mask & (FILE_READ_DATA|FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_EXECUTE)) ||
268 (!file_existed && (local_flags & O_CREAT)) ||
269 ((local_flags & O_TRUNC) == O_TRUNC) ) {
272 * We can't actually truncate here as the file may be locked.
273 * open_file_ntcreate will take care of the truncate later. JRA.
276 local_flags &= ~O_TRUNC;
278 #if defined(O_NONBLOCK) && defined(S_ISFIFO)
280 * We would block on opening a FIFO with no one else on the
281 * other end. Do what we used to do and add O_NONBLOCK to the
285 if (file_existed && S_ISFIFO(psbuf->st_mode)) {
286 local_flags |= O_NONBLOCK;
290 /* Don't create files with Microsoft wildcard characters. */
291 if ((local_flags & O_CREAT) && !file_existed &&
293 return NT_STATUS_OBJECT_NAME_INVALID;
296 /* Actually do the open */
297 status = fd_open(conn, path, fsp, local_flags, unx_mode);
298 if (!NT_STATUS_IS_OK(status)) {
299 DEBUG(3,("Error opening file %s (%s) (local_flags=%d) "
301 path,nt_errstr(status),local_flags,flags));
305 if ((local_flags & O_CREAT) && !file_existed) {
307 /* Inherit the ACL if required */
308 if (lp_inherit_perms(SNUM(conn))) {
309 inherit_access_acl(conn, parent_dir, path,
313 /* Change the owner if required. */
314 if (lp_inherit_owner(SNUM(conn))) {
315 change_file_owner_to_parent(conn, parent_dir,
319 notify_fname(conn, NOTIFY_ACTION_ADDED,
320 FILE_NOTIFY_CHANGE_FILE_NAME, path);
324 fsp->fh->fd = -1; /* What we used to call a stat open. */
330 if (fsp->fh->fd == -1) {
331 ret = SMB_VFS_STAT(conn, path, psbuf);
333 ret = SMB_VFS_FSTAT(fsp,fsp->fh->fd,psbuf);
334 /* If we have an fd, this stat should succeed. */
336 DEBUG(0,("Error doing fstat on open file %s "
337 "(%s)\n", path,strerror(errno) ));
341 /* For a non-io open, this stat failing means file not found. JRA */
343 status = map_nt_error_from_unix(errno);
350 * POSIX allows read-only opens of directories. We don't
351 * want to do this (we use a different code path for this)
352 * so catch a directory open and return an EISDIR. JRA.
355 if(S_ISDIR(psbuf->st_mode)) {
358 return NT_STATUS_FILE_IS_A_DIRECTORY;
361 fsp->mode = psbuf->st_mode;
362 fsp->inode = psbuf->st_ino;
363 fsp->dev = psbuf->st_dev;
364 fsp->vuid = current_user.vuid;
365 fsp->file_pid = global_smbpid;
366 fsp->can_lock = True;
367 fsp->can_read = (access_mask & (FILE_READ_DATA)) ? True : False;
368 if (!CAN_WRITE(conn)) {
369 fsp->can_write = False;
371 fsp->can_write = (access_mask & (FILE_WRITE_DATA | FILE_APPEND_DATA)) ?
374 fsp->print_file = False;
375 fsp->modified = False;
376 fsp->sent_oplock_break = NO_BREAK_SENT;
377 fsp->is_directory = False;
378 fsp->is_stat = False;
380 string_set(&fsp->fsp_name, path);
381 fsp->wcp = NULL; /* Write cache pointer. */
383 DEBUG(2,("%s opened file %s read=%s write=%s (numopen=%d)\n",
384 *current_user_info.smb_name ?
385 current_user_info.smb_name : conn->user,fsp->fsp_name,
386 BOOLSTR(fsp->can_read), BOOLSTR(fsp->can_write),
387 conn->num_files_open + 1));
393 /*******************************************************************
394 Return True if the filename is one of the special executable types.
395 ********************************************************************/
397 static BOOL is_executable(const char *fname)
399 if ((fname = strrchr_m(fname,'.'))) {
400 if (strequal(fname,".com") ||
401 strequal(fname,".dll") ||
402 strequal(fname,".exe") ||
403 strequal(fname,".sym")) {
410 /****************************************************************************
411 Check if we can open a file with a share mode.
412 Returns True if conflict, False if not.
413 ****************************************************************************/
415 static BOOL share_conflict(struct share_mode_entry *entry,
419 DEBUG(10,("share_conflict: entry->access_mask = 0x%x, "
420 "entry->share_access = 0x%x, "
421 "entry->private_options = 0x%x\n",
422 (unsigned int)entry->access_mask,
423 (unsigned int)entry->share_access,
424 (unsigned int)entry->private_options));
426 DEBUG(10,("share_conflict: access_mask = 0x%x, share_access = 0x%x\n",
427 (unsigned int)access_mask, (unsigned int)share_access));
429 if ((entry->access_mask & (FILE_WRITE_DATA|
433 DELETE_ACCESS)) == 0) {
434 DEBUG(10,("share_conflict: No conflict due to "
435 "entry->access_mask = 0x%x\n",
436 (unsigned int)entry->access_mask ));
440 if ((access_mask & (FILE_WRITE_DATA|
444 DELETE_ACCESS)) == 0) {
445 DEBUG(10,("share_conflict: No conflict due to "
446 "access_mask = 0x%x\n",
447 (unsigned int)access_mask ));
451 #if 1 /* JRA TEST - Superdebug. */
452 #define CHECK_MASK(num, am, right, sa, share) \
453 DEBUG(10,("share_conflict: [%d] am (0x%x) & right (0x%x) = 0x%x\n", \
454 (unsigned int)(num), (unsigned int)(am), \
455 (unsigned int)(right), (unsigned int)(am)&(right) )); \
456 DEBUG(10,("share_conflict: [%d] sa (0x%x) & share (0x%x) = 0x%x\n", \
457 (unsigned int)(num), (unsigned int)(sa), \
458 (unsigned int)(share), (unsigned int)(sa)&(share) )); \
459 if (((am) & (right)) && !((sa) & (share))) { \
460 DEBUG(10,("share_conflict: check %d conflict am = 0x%x, right = 0x%x, \
461 sa = 0x%x, share = 0x%x\n", (num), (unsigned int)(am), (unsigned int)(right), (unsigned int)(sa), \
462 (unsigned int)(share) )); \
466 #define CHECK_MASK(num, am, right, sa, share) \
467 if (((am) & (right)) && !((sa) & (share))) { \
468 DEBUG(10,("share_conflict: check %d conflict am = 0x%x, right = 0x%x, \
469 sa = 0x%x, share = 0x%x\n", (num), (unsigned int)(am), (unsigned int)(right), (unsigned int)(sa), \
470 (unsigned int)(share) )); \
475 CHECK_MASK(1, entry->access_mask, FILE_WRITE_DATA | FILE_APPEND_DATA,
476 share_access, FILE_SHARE_WRITE);
477 CHECK_MASK(2, access_mask, FILE_WRITE_DATA | FILE_APPEND_DATA,
478 entry->share_access, FILE_SHARE_WRITE);
480 CHECK_MASK(3, entry->access_mask, FILE_READ_DATA | FILE_EXECUTE,
481 share_access, FILE_SHARE_READ);
482 CHECK_MASK(4, access_mask, FILE_READ_DATA | FILE_EXECUTE,
483 entry->share_access, FILE_SHARE_READ);
485 CHECK_MASK(5, entry->access_mask, DELETE_ACCESS,
486 share_access, FILE_SHARE_DELETE);
487 CHECK_MASK(6, access_mask, DELETE_ACCESS,
488 entry->share_access, FILE_SHARE_DELETE);
490 DEBUG(10,("share_conflict: No conflict.\n"));
494 #if defined(DEVELOPER)
495 static void validate_my_share_entries(int num,
496 struct share_mode_entry *share_entry)
500 if (!procid_is_me(&share_entry->pid)) {
504 if (is_deferred_open_entry(share_entry) &&
505 !open_was_deferred(share_entry->op_mid)) {
507 pstr_sprintf(str, "Got a deferred entry without a request: "
508 "PANIC: %s\n", share_mode_str(num, share_entry));
512 if (!is_valid_share_mode_entry(share_entry)) {
516 fsp = file_find_dif(share_entry->dev, share_entry->inode,
517 share_entry->share_file_id);
519 DEBUG(0,("validate_my_share_entries: PANIC : %s\n",
520 share_mode_str(num, share_entry) ));
521 smb_panic("validate_my_share_entries: Cannot match a "
522 "share entry with an open file\n");
525 if (is_deferred_open_entry(share_entry) ||
526 is_unused_share_mode_entry(share_entry)) {
530 if ((share_entry->op_type == NO_OPLOCK) &&
531 (fsp->oplock_type == FAKE_LEVEL_II_OPLOCK)) {
532 /* Someone has already written to it, but I haven't yet
537 if (((uint16)fsp->oplock_type) != share_entry->op_type) {
546 DEBUG(0,("validate_my_share_entries: PANIC : %s\n",
547 share_mode_str(num, share_entry) ));
548 slprintf(str, sizeof(str)-1, "validate_my_share_entries: "
549 "file %s, oplock_type = 0x%x, op_type = 0x%x\n",
550 fsp->fsp_name, (unsigned int)fsp->oplock_type,
551 (unsigned int)share_entry->op_type );
557 static BOOL is_stat_open(uint32 access_mask)
559 return (access_mask &&
560 ((access_mask & ~(SYNCHRONIZE_ACCESS| FILE_READ_ATTRIBUTES|
561 FILE_WRITE_ATTRIBUTES))==0) &&
562 ((access_mask & (SYNCHRONIZE_ACCESS|FILE_READ_ATTRIBUTES|
563 FILE_WRITE_ATTRIBUTES)) != 0));
566 /****************************************************************************
567 Deal with share modes
568 Invarient: Share mode must be locked on entry and exit.
569 Returns -1 on error, or number of share modes on success (may be zero).
570 ****************************************************************************/
572 static NTSTATUS open_mode_check(connection_struct *conn,
574 struct share_mode_lock *lck,
577 uint32 create_options,
582 if(lck->num_share_modes == 0) {
586 *file_existed = True;
588 if (is_stat_open(access_mask)) {
589 /* Stat open that doesn't trigger oplock breaks or share mode
590 * checks... ! JRA. */
594 /* A delete on close prohibits everything */
596 if (lck->delete_on_close) {
597 return NT_STATUS_DELETE_PENDING;
601 * Check if the share modes will give us access.
604 #if defined(DEVELOPER)
605 for(i = 0; i < lck->num_share_modes; i++) {
606 validate_my_share_entries(i, &lck->share_modes[i]);
610 if (!lp_share_modes(SNUM(conn))) {
614 /* Now we check the share modes, after any oplock breaks. */
615 for(i = 0; i < lck->num_share_modes; i++) {
617 if (!is_valid_share_mode_entry(&lck->share_modes[i])) {
621 /* someone else has a share lock on it, check to see if we can
623 if (share_conflict(&lck->share_modes[i],
624 access_mask, share_access)) {
625 return NT_STATUS_SHARING_VIOLATION;
632 static BOOL is_delete_request(files_struct *fsp) {
633 return ((fsp->access_mask == DELETE_ACCESS) &&
634 (fsp->oplock_type == NO_OPLOCK));
638 * 1) No files open at all or internal open: Grant whatever the client wants.
640 * 2) Exclusive (or batch) oplock around: If the requested access is a delete
641 * request, break if the oplock around is a batch oplock. If it's another
642 * requested access type, break.
644 * 3) Only level2 around: Grant level2 and do nothing else.
647 static BOOL delay_for_oplocks(struct share_mode_lock *lck,
653 struct share_mode_entry *exclusive = NULL;
654 BOOL valid_entry = False;
655 BOOL delay_it = False;
656 BOOL have_level2 = False;
658 char msg[MSG_SMB_SHARE_MODE_ENTRY_SIZE];
660 if (oplock_request & INTERNAL_OPEN_ONLY) {
661 fsp->oplock_type = NO_OPLOCK;
664 if ((oplock_request & INTERNAL_OPEN_ONLY) || is_stat_open(fsp->access_mask)) {
668 for (i=0; i<lck->num_share_modes; i++) {
670 if (!is_valid_share_mode_entry(&lck->share_modes[i])) {
674 /* At least one entry is not an invalid or deferred entry. */
677 if (pass_number == 1) {
678 if (BATCH_OPLOCK_TYPE(lck->share_modes[i].op_type)) {
679 SMB_ASSERT(exclusive == NULL);
680 exclusive = &lck->share_modes[i];
683 if (EXCLUSIVE_OPLOCK_TYPE(lck->share_modes[i].op_type)) {
684 SMB_ASSERT(exclusive == NULL);
685 exclusive = &lck->share_modes[i];
689 if (lck->share_modes[i].op_type == LEVEL_II_OPLOCK) {
690 SMB_ASSERT(exclusive == NULL);
696 /* All entries are placeholders or deferred.
697 * Directly grant whatever the client wants. */
698 if (fsp->oplock_type == NO_OPLOCK) {
699 /* Store a level2 oplock, but don't tell the client */
700 fsp->oplock_type = FAKE_LEVEL_II_OPLOCK;
705 if (exclusive != NULL) { /* Found an exclusive oplock */
706 SMB_ASSERT(!have_level2);
707 delay_it = is_delete_request(fsp) ?
708 BATCH_OPLOCK_TYPE(exclusive->op_type) : True;
711 if (EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
712 /* We can at most grant level2 as there are other
713 * level2 or NO_OPLOCK entries. */
714 fsp->oplock_type = LEVEL_II_OPLOCK;
717 if ((fsp->oplock_type == NO_OPLOCK) && have_level2) {
718 /* Store a level2 oplock, but don't tell the client */
719 fsp->oplock_type = FAKE_LEVEL_II_OPLOCK;
727 * Send a break message to the oplock holder and delay the open for
731 DEBUG(10, ("Sending break request to PID %s\n",
732 procid_str_static(&exclusive->pid)));
733 exclusive->op_mid = get_current_mid();
735 /* Create the message. */
736 share_mode_entry_to_message(msg, exclusive);
738 /* Add in the FORCE_OPLOCK_BREAK_TO_NONE bit in the message if set. We
739 don't want this set in the share mode struct pointed to by lck. */
741 if (oplock_request & FORCE_OPLOCK_BREAK_TO_NONE) {
742 SSVAL(msg,6,exclusive->op_type | FORCE_OPLOCK_BREAK_TO_NONE);
745 status = messaging_send_buf(smbd_messaging_context(), exclusive->pid,
746 MSG_SMB_BREAK_REQUEST,
748 MSG_SMB_SHARE_MODE_ENTRY_SIZE);
749 if (!NT_STATUS_IS_OK(status)) {
750 DEBUG(3, ("Could not send oplock break message: %s\n",
757 static BOOL request_timed_out(struct timeval request_time,
758 struct timeval timeout)
760 struct timeval now, end_time;
762 end_time = timeval_sum(&request_time, &timeout);
763 return (timeval_compare(&end_time, &now) < 0);
766 /****************************************************************************
767 Handle the 1 second delay in returning a SHARING_VIOLATION error.
768 ****************************************************************************/
770 static void defer_open(struct share_mode_lock *lck,
771 struct timeval request_time,
772 struct timeval timeout,
773 struct deferred_open_record *state)
775 uint16 mid = get_current_mid();
780 for (i=0; i<lck->num_share_modes; i++) {
781 struct share_mode_entry *e = &lck->share_modes[i];
783 if (!is_deferred_open_entry(e)) {
787 if (procid_is_me(&e->pid) && (e->op_mid == mid)) {
788 DEBUG(0, ("Trying to defer an already deferred "
789 "request: mid=%d, exiting\n", mid));
790 exit_server("attempt to defer a deferred request");
794 /* End paranoia check */
796 DEBUG(10,("defer_open_sharing_error: time [%u.%06u] adding deferred "
797 "open entry for mid %u\n",
798 (unsigned int)request_time.tv_sec,
799 (unsigned int)request_time.tv_usec,
802 if (!push_deferred_smb_message(mid, request_time, timeout,
803 (char *)state, sizeof(*state))) {
804 exit_server("push_deferred_smb_message failed");
806 add_deferred_open(lck, mid, request_time, state->dev, state->inode);
809 * Push the MID of this packet on the signing queue.
810 * We only do this once, the first time we push the packet
811 * onto the deferred open queue, as this has a side effect
812 * of incrementing the response sequence number.
815 srv_defer_sign_response(mid);
819 /****************************************************************************
820 On overwrite open ensure that the attributes match.
821 ****************************************************************************/
823 static BOOL open_match_attributes(connection_struct *conn,
827 mode_t existing_unx_mode,
829 mode_t *returned_unx_mode)
831 uint32 noarch_old_dos_attr, noarch_new_dos_attr;
833 noarch_old_dos_attr = (old_dos_attr & ~FILE_ATTRIBUTE_ARCHIVE);
834 noarch_new_dos_attr = (new_dos_attr & ~FILE_ATTRIBUTE_ARCHIVE);
836 if((noarch_old_dos_attr == 0 && noarch_new_dos_attr != 0) ||
837 (noarch_old_dos_attr != 0 && ((noarch_old_dos_attr & noarch_new_dos_attr) == noarch_old_dos_attr))) {
838 *returned_unx_mode = new_unx_mode;
840 *returned_unx_mode = (mode_t)0;
843 DEBUG(10,("open_match_attributes: file %s old_dos_attr = 0x%x, "
844 "existing_unx_mode = 0%o, new_dos_attr = 0x%x "
845 "returned_unx_mode = 0%o\n",
847 (unsigned int)old_dos_attr,
848 (unsigned int)existing_unx_mode,
849 (unsigned int)new_dos_attr,
850 (unsigned int)*returned_unx_mode ));
852 /* If we're mapping SYSTEM and HIDDEN ensure they match. */
853 if (lp_map_system(SNUM(conn)) || lp_store_dos_attributes(SNUM(conn))) {
854 if ((old_dos_attr & FILE_ATTRIBUTE_SYSTEM) &&
855 !(new_dos_attr & FILE_ATTRIBUTE_SYSTEM)) {
859 if (lp_map_hidden(SNUM(conn)) || lp_store_dos_attributes(SNUM(conn))) {
860 if ((old_dos_attr & FILE_ATTRIBUTE_HIDDEN) &&
861 !(new_dos_attr & FILE_ATTRIBUTE_HIDDEN)) {
868 /****************************************************************************
869 Special FCB or DOS processing in the case of a sharing violation.
870 Try and find a duplicated file handle.
871 ****************************************************************************/
873 static files_struct *fcb_or_dos_open(connection_struct *conn,
874 const char *fname, SMB_DEV_T dev,
878 uint32 create_options)
881 files_struct *dup_fsp;
883 DEBUG(5,("fcb_or_dos_open: attempting old open semantics for "
884 "file %s.\n", fname ));
886 for(fsp = file_find_di_first(dev, inode); fsp;
887 fsp = file_find_di_next(fsp)) {
889 DEBUG(10,("fcb_or_dos_open: checking file %s, fd = %d, "
890 "vuid = %u, file_pid = %u, private_options = 0x%x "
891 "access_mask = 0x%x\n", fsp->fsp_name,
892 fsp->fh->fd, (unsigned int)fsp->vuid,
893 (unsigned int)fsp->file_pid,
894 (unsigned int)fsp->fh->private_options,
895 (unsigned int)fsp->access_mask ));
897 if (fsp->fh->fd != -1 &&
898 fsp->vuid == current_user.vuid &&
899 fsp->file_pid == global_smbpid &&
900 (fsp->fh->private_options & (NTCREATEX_OPTIONS_PRIVATE_DENY_DOS |
901 NTCREATEX_OPTIONS_PRIVATE_DENY_FCB)) &&
902 (fsp->access_mask & FILE_WRITE_DATA) &&
903 strequal(fsp->fsp_name, fname)) {
904 DEBUG(10,("fcb_or_dos_open: file match\n"));
913 /* quite an insane set of semantics ... */
914 if (is_executable(fname) &&
915 (fsp->fh->private_options & NTCREATEX_OPTIONS_PRIVATE_DENY_DOS)) {
916 DEBUG(10,("fcb_or_dos_open: file fail due to is_executable.\n"));
920 /* We need to duplicate this fsp. */
921 if (!NT_STATUS_IS_OK(dup_file_fsp(fsp, access_mask, share_access,
922 create_options, &dup_fsp))) {
929 /****************************************************************************
930 Open a file with a share mode - old openX method - map into NTCreate.
931 ****************************************************************************/
933 BOOL map_open_params_to_ntcreate(const char *fname, int deny_mode, int open_func,
934 uint32 *paccess_mask,
936 uint32 *pcreate_disposition,
937 uint32 *pcreate_options)
941 uint32 create_disposition;
942 uint32 create_options = 0;
944 DEBUG(10,("map_open_params_to_ntcreate: fname = %s, deny_mode = 0x%x, "
945 "open_func = 0x%x\n",
946 fname, (unsigned int)deny_mode, (unsigned int)open_func ));
948 /* Create the NT compatible access_mask. */
949 switch (GET_OPENX_MODE(deny_mode)) {
950 case DOS_OPEN_EXEC: /* Implies read-only - used to be FILE_READ_DATA */
951 case DOS_OPEN_RDONLY:
952 access_mask = FILE_GENERIC_READ;
954 case DOS_OPEN_WRONLY:
955 access_mask = FILE_GENERIC_WRITE;
959 access_mask = FILE_GENERIC_READ|FILE_GENERIC_WRITE;
962 DEBUG(10,("map_open_params_to_ntcreate: bad open mode = 0x%x\n",
963 (unsigned int)GET_OPENX_MODE(deny_mode)));
967 /* Create the NT compatible create_disposition. */
969 case OPENX_FILE_EXISTS_FAIL|OPENX_FILE_CREATE_IF_NOT_EXIST:
970 create_disposition = FILE_CREATE;
973 case OPENX_FILE_EXISTS_OPEN:
974 create_disposition = FILE_OPEN;
977 case OPENX_FILE_EXISTS_OPEN|OPENX_FILE_CREATE_IF_NOT_EXIST:
978 create_disposition = FILE_OPEN_IF;
981 case OPENX_FILE_EXISTS_TRUNCATE:
982 create_disposition = FILE_OVERWRITE;
985 case OPENX_FILE_EXISTS_TRUNCATE|OPENX_FILE_CREATE_IF_NOT_EXIST:
986 create_disposition = FILE_OVERWRITE_IF;
990 /* From samba4 - to be confirmed. */
991 if (GET_OPENX_MODE(deny_mode) == DOS_OPEN_EXEC) {
992 create_disposition = FILE_CREATE;
995 DEBUG(10,("map_open_params_to_ntcreate: bad "
996 "open_func 0x%x\n", (unsigned int)open_func));
1000 /* Create the NT compatible share modes. */
1001 switch (GET_DENY_MODE(deny_mode)) {
1003 share_mode = FILE_SHARE_NONE;
1007 share_mode = FILE_SHARE_READ;
1011 share_mode = FILE_SHARE_WRITE;
1015 share_mode = FILE_SHARE_READ|FILE_SHARE_WRITE;
1019 create_options |= NTCREATEX_OPTIONS_PRIVATE_DENY_DOS;
1020 if (is_executable(fname)) {
1021 share_mode = FILE_SHARE_READ|FILE_SHARE_WRITE;
1023 if (GET_OPENX_MODE(deny_mode) == DOS_OPEN_RDONLY) {
1024 share_mode = FILE_SHARE_READ;
1026 share_mode = FILE_SHARE_NONE;
1032 create_options |= NTCREATEX_OPTIONS_PRIVATE_DENY_FCB;
1033 share_mode = FILE_SHARE_NONE;
1037 DEBUG(10,("map_open_params_to_ntcreate: bad deny_mode 0x%x\n",
1038 (unsigned int)GET_DENY_MODE(deny_mode) ));
1042 DEBUG(10,("map_open_params_to_ntcreate: file %s, access_mask = 0x%x, "
1043 "share_mode = 0x%x, create_disposition = 0x%x, "
1044 "create_options = 0x%x\n",
1046 (unsigned int)access_mask,
1047 (unsigned int)share_mode,
1048 (unsigned int)create_disposition,
1049 (unsigned int)create_options ));
1052 *paccess_mask = access_mask;
1055 *pshare_mode = share_mode;
1057 if (pcreate_disposition) {
1058 *pcreate_disposition = create_disposition;
1060 if (pcreate_options) {
1061 *pcreate_options = create_options;
1068 static void schedule_defer_open(struct share_mode_lock *lck, struct timeval request_time)
1070 struct deferred_open_record state;
1072 /* This is a relative time, added to the absolute
1073 request_time value to get the absolute timeout time.
1074 Note that if this is the second or greater time we enter
1075 this codepath for this particular request mid then
1076 request_time is left as the absolute time of the *first*
1077 time this request mid was processed. This is what allows
1078 the request to eventually time out. */
1080 struct timeval timeout;
1082 /* Normally the smbd we asked should respond within
1083 * OPLOCK_BREAK_TIMEOUT seconds regardless of whether
1084 * the client did, give twice the timeout as a safety
1085 * measure here in case the other smbd is stuck
1086 * somewhere else. */
1088 timeout = timeval_set(OPLOCK_BREAK_TIMEOUT*2, 0);
1090 /* Nothing actually uses state.delayed_for_oplocks
1091 but it's handy to differentiate in debug messages
1092 between a 30 second delay due to oplock break, and
1093 a 1 second delay for share mode conflicts. */
1095 state.delayed_for_oplocks = True;
1096 state.dev = lck->dev;
1097 state.inode = lck->ino;
1099 if (!request_timed_out(request_time, timeout)) {
1100 defer_open(lck, request_time, timeout, &state);
1104 /****************************************************************************
1105 Open a file with a share mode.
1106 ****************************************************************************/
1108 NTSTATUS open_file_ntcreate(connection_struct *conn,
1110 SMB_STRUCT_STAT *psbuf,
1111 uint32 access_mask, /* access bits (FILE_READ_DATA etc.) */
1112 uint32 share_access, /* share constants (FILE_SHARE_READ etc) */
1113 uint32 create_disposition, /* FILE_OPEN_IF etc. */
1114 uint32 create_options, /* options such as delete on close. */
1115 uint32 new_dos_attributes, /* attributes used for new file. */
1116 int oplock_request, /* internal Samba oplock codes. */
1117 /* Information (FILE_EXISTS etc.) */
1119 files_struct **result)
1123 BOOL file_existed = VALID_STAT(*psbuf);
1124 BOOL def_acl = False;
1125 BOOL posix_open = False;
1126 BOOL new_file_created = False;
1128 SMB_INO_T inode = 0;
1129 NTSTATUS fsp_open = NT_STATUS_ACCESS_DENIED;
1130 files_struct *fsp = NULL;
1131 mode_t new_unx_mode = (mode_t)0;
1132 mode_t unx_mode = (mode_t)0;
1134 uint32 existing_dos_attributes = 0;
1135 struct pending_message_list *pml = NULL;
1136 uint16 mid = get_current_mid();
1137 struct timeval request_time = timeval_zero();
1138 struct share_mode_lock *lck = NULL;
1139 uint32 open_access_mask = access_mask;
1143 const char *newname;
1145 if (conn->printer) {
1147 * Printers are handled completely differently.
1148 * Most of the passed parameters are ignored.
1152 *pinfo = FILE_WAS_CREATED;
1155 DEBUG(10, ("open_file_ntcreate: printer open fname=%s\n", fname));
1157 return print_fsp_open(conn, fname, result);
1160 if (!parent_dirname_talloc(tmp_talloc_ctx(), fname, &parent_dir,
1162 return NT_STATUS_NO_MEMORY;
1165 if (new_dos_attributes & FILE_FLAG_POSIX_SEMANTICS) {
1167 unx_mode = (mode_t)(new_dos_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
1168 new_dos_attributes = 0;
1170 /* We add aARCH to this as this mode is only used if the file is
1172 unx_mode = unix_mode(conn, new_dos_attributes | aARCH, fname,
1176 DEBUG(10, ("open_file_ntcreate: fname=%s, dos_attrs=0x%x "
1177 "access_mask=0x%x share_access=0x%x "
1178 "create_disposition = 0x%x create_options=0x%x "
1179 "unix mode=0%o oplock_request=%d\n",
1180 fname, new_dos_attributes, access_mask, share_access,
1181 create_disposition, create_options, unx_mode,
1184 if ((pml = get_open_deferred_message(mid)) != NULL) {
1185 struct deferred_open_record *state =
1186 (struct deferred_open_record *)pml->private_data.data;
1188 /* Remember the absolute time of the original
1189 request with this mid. We'll use it later to
1190 see if this has timed out. */
1192 request_time = pml->request_time;
1194 /* Remove the deferred open entry under lock. */
1195 lck = get_share_mode_lock(NULL, state->dev, state->inode, NULL, NULL);
1197 DEBUG(0, ("could not get share mode lock\n"));
1199 del_deferred_open_entry(lck, mid);
1203 /* Ensure we don't reprocess this message. */
1204 remove_deferred_open_smb_message(mid);
1207 status = check_name(conn, fname);
1208 if (!NT_STATUS_IS_OK(status)) {
1213 new_dos_attributes &= SAMBA_ATTRIBUTES_MASK;
1215 existing_dos_attributes = dos_mode(conn, fname, psbuf);
1219 /* ignore any oplock requests if oplocks are disabled */
1220 if (!lp_oplocks(SNUM(conn)) || global_client_failed_oplock_break ||
1221 IS_VETO_OPLOCK_PATH(conn, fname)) {
1222 /* Mask off everything except the private Samba bits. */
1223 oplock_request &= SAMBA_PRIVATE_OPLOCK_MASK;
1226 /* this is for OS/2 long file names - say we don't support them */
1227 if (!lp_posix_pathnames() && strstr(fname,".+,;=[].")) {
1228 /* OS/2 Workplace shell fix may be main code stream in a later
1230 DEBUG(5,("open_file_ntcreate: OS/2 long filenames are not "
1232 if (use_nt_status()) {
1233 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1235 return NT_STATUS_DOS(ERRDOS, ERRcannotopen);
1238 switch( create_disposition ) {
1240 * Currently we're using FILE_SUPERSEDE as the same as
1241 * FILE_OVERWRITE_IF but they really are
1242 * different. FILE_SUPERSEDE deletes an existing file
1243 * (requiring delete access) then recreates it.
1245 case FILE_SUPERSEDE:
1246 /* If file exists replace/overwrite. If file doesn't
1248 flags2 |= (O_CREAT | O_TRUNC);
1251 case FILE_OVERWRITE_IF:
1252 /* If file exists replace/overwrite. If file doesn't
1254 flags2 |= (O_CREAT | O_TRUNC);
1258 /* If file exists open. If file doesn't exist error. */
1259 if (!file_existed) {
1260 DEBUG(5,("open_file_ntcreate: FILE_OPEN "
1261 "requested for file %s and file "
1262 "doesn't exist.\n", fname ));
1264 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1268 case FILE_OVERWRITE:
1269 /* If file exists overwrite. If file doesn't exist
1271 if (!file_existed) {
1272 DEBUG(5,("open_file_ntcreate: FILE_OVERWRITE "
1273 "requested for file %s and file "
1274 "doesn't exist.\n", fname ));
1276 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1282 /* If file exists error. If file doesn't exist
1285 DEBUG(5,("open_file_ntcreate: FILE_CREATE "
1286 "requested for file %s and file "
1287 "already exists.\n", fname ));
1288 if (S_ISDIR(psbuf->st_mode)) {
1293 return map_nt_error_from_unix(errno);
1295 flags2 |= (O_CREAT|O_EXCL);
1299 /* If file exists open. If file doesn't exist
1305 return NT_STATUS_INVALID_PARAMETER;
1308 /* We only care about matching attributes on file exists and
1311 if (!posix_open && file_existed && ((create_disposition == FILE_OVERWRITE) ||
1312 (create_disposition == FILE_OVERWRITE_IF))) {
1313 if (!open_match_attributes(conn, fname,
1314 existing_dos_attributes,
1315 new_dos_attributes, psbuf->st_mode,
1316 unx_mode, &new_unx_mode)) {
1317 DEBUG(5,("open_file_ntcreate: attributes missmatch "
1318 "for file %s (%x %x) (0%o, 0%o)\n",
1319 fname, existing_dos_attributes,
1321 (unsigned int)psbuf->st_mode,
1322 (unsigned int)unx_mode ));
1324 return NT_STATUS_ACCESS_DENIED;
1328 /* This is a nasty hack - must fix... JRA. */
1329 if (access_mask == MAXIMUM_ALLOWED_ACCESS) {
1330 open_access_mask = access_mask = FILE_GENERIC_ALL;
1334 * Convert GENERIC bits to specific bits.
1337 se_map_generic(&access_mask, &file_generic_mapping);
1338 open_access_mask = access_mask;
1340 if (flags2 & O_TRUNC) {
1341 open_access_mask |= FILE_WRITE_DATA; /* This will cause oplock breaks. */
1344 DEBUG(10, ("open_file_ntcreate: fname=%s, after mapping "
1345 "access_mask=0x%x\n", fname, access_mask ));
1348 * Note that we ignore the append flag as append does not
1349 * mean the same thing under DOS and Unix.
1352 if (access_mask & (FILE_WRITE_DATA | FILE_APPEND_DATA)) {
1353 /* DENY_DOS opens are always underlying read-write on the
1354 file handle, no matter what the requested access mask
1356 if ((create_options & NTCREATEX_OPTIONS_PRIVATE_DENY_DOS) ||
1357 access_mask & (FILE_READ_ATTRIBUTES|FILE_READ_DATA|FILE_READ_EA|FILE_EXECUTE)) {
1367 * Currently we only look at FILE_WRITE_THROUGH for create options.
1371 if ((create_options & FILE_WRITE_THROUGH) && lp_strict_sync(SNUM(conn))) {
1376 if (posix_open & (access_mask & FILE_APPEND_DATA)) {
1380 if (!posix_open && !CAN_WRITE(conn)) {
1382 * We should really return a permission denied error if either
1383 * O_CREAT or O_TRUNC are set, but for compatibility with
1384 * older versions of Samba we just AND them out.
1386 flags2 &= ~(O_CREAT|O_TRUNC);
1390 * Ensure we can't write on a read-only share or file.
1393 if (flags != O_RDONLY && file_existed &&
1394 (!CAN_WRITE(conn) || IS_DOS_READONLY(existing_dos_attributes))) {
1395 DEBUG(5,("open_file_ntcreate: write access requested for "
1396 "file %s on read only %s\n",
1397 fname, !CAN_WRITE(conn) ? "share" : "file" ));
1399 return NT_STATUS_ACCESS_DENIED;
1402 status = file_new(conn, &fsp);
1403 if(!NT_STATUS_IS_OK(status)) {
1407 fsp->dev = psbuf->st_dev;
1408 fsp->inode = psbuf->st_ino;
1409 fsp->share_access = share_access;
1410 fsp->fh->private_options = create_options;
1411 fsp->access_mask = open_access_mask; /* We change this to the
1412 * requested access_mask after
1413 * the open is done. */
1414 fsp->posix_open = posix_open;
1416 /* Ensure no SAMBA_PRIVATE bits can be set. */
1417 fsp->oplock_type = (oplock_request & ~SAMBA_PRIVATE_OPLOCK_MASK);
1419 if (timeval_is_zero(&request_time)) {
1420 request_time = fsp->open_time;
1424 dev = psbuf->st_dev;
1425 inode = psbuf->st_ino;
1427 lck = get_share_mode_lock(NULL, dev, inode,
1433 DEBUG(0, ("Could not get share mode lock\n"));
1434 return NT_STATUS_SHARING_VIOLATION;
1437 /* First pass - send break only on batch oplocks. */
1438 if (delay_for_oplocks(lck, fsp, 1, oplock_request)) {
1439 schedule_defer_open(lck, request_time);
1442 return NT_STATUS_SHARING_VIOLATION;
1445 /* Use the client requested access mask here, not the one we
1447 status = open_mode_check(conn, fname, lck,
1448 access_mask, share_access,
1449 create_options, &file_existed);
1451 if (NT_STATUS_IS_OK(status)) {
1452 /* We might be going to allow this open. Check oplock
1454 /* Second pass - send break for both batch or
1455 * exclusive oplocks. */
1456 if (delay_for_oplocks(lck, fsp, 2, oplock_request)) {
1457 schedule_defer_open(lck, request_time);
1460 return NT_STATUS_SHARING_VIOLATION;
1464 if (NT_STATUS_EQUAL(status, NT_STATUS_DELETE_PENDING)) {
1465 /* DELETE_PENDING is not deferred for a second */
1471 if (!NT_STATUS_IS_OK(status)) {
1472 uint32 can_access_mask;
1473 BOOL can_access = True;
1475 SMB_ASSERT(NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION));
1477 /* Check if this can be done with the deny_dos and fcb
1479 if (create_options &
1480 (NTCREATEX_OPTIONS_PRIVATE_DENY_DOS|
1481 NTCREATEX_OPTIONS_PRIVATE_DENY_FCB)) {
1482 files_struct *fsp_dup;
1484 /* Use the client requested access mask here,
1485 * not the one we open with. */
1486 fsp_dup = fcb_or_dos_open(conn, fname, dev,
1495 *pinfo = FILE_WAS_OPENED;
1497 conn->num_files_open++;
1499 return NT_STATUS_OK;
1504 * This next line is a subtlety we need for
1505 * MS-Access. If a file open will fail due to share
1506 * permissions and also for security (access) reasons,
1507 * we need to return the access failed error, not the
1508 * share error. We can't open the file due to kernel
1509 * oplock deadlock (it's possible we failed above on
1510 * the open_mode_check()) so use a userspace check.
1513 if (flags & O_RDWR) {
1514 can_access_mask = FILE_READ_DATA|FILE_WRITE_DATA;
1515 } else if (flags & O_WRONLY) {
1516 can_access_mask = FILE_WRITE_DATA;
1518 can_access_mask = FILE_READ_DATA;
1521 if (((can_access_mask & FILE_WRITE_DATA) && !CAN_WRITE(conn)) ||
1522 !can_access_file(conn,fname,psbuf,can_access_mask)) {
1527 * If we're returning a share violation, ensure we
1528 * cope with the braindead 1 second delay.
1531 if (!(oplock_request & INTERNAL_OPEN_ONLY) &&
1532 lp_defer_sharing_violations()) {
1533 struct timeval timeout;
1534 struct deferred_open_record state;
1537 /* this is a hack to speed up torture tests
1539 timeout_usecs = lp_parm_int(SNUM(conn),
1540 "smbd","sharedelay",
1541 SHARING_VIOLATION_USEC_WAIT);
1543 /* This is a relative time, added to the absolute
1544 request_time value to get the absolute timeout time.
1545 Note that if this is the second or greater time we enter
1546 this codepath for this particular request mid then
1547 request_time is left as the absolute time of the *first*
1548 time this request mid was processed. This is what allows
1549 the request to eventually time out. */
1551 timeout = timeval_set(0, timeout_usecs);
1553 /* Nothing actually uses state.delayed_for_oplocks
1554 but it's handy to differentiate in debug messages
1555 between a 30 second delay due to oplock break, and
1556 a 1 second delay for share mode conflicts. */
1558 state.delayed_for_oplocks = False;
1560 state.inode = inode;
1562 if (!request_timed_out(request_time,
1564 defer_open(lck, request_time, timeout,
1572 * We have detected a sharing violation here
1573 * so return the correct error code
1575 status = NT_STATUS_SHARING_VIOLATION;
1577 status = NT_STATUS_ACCESS_DENIED;
1584 * We exit this block with the share entry *locked*.....
1588 SMB_ASSERT(!file_existed || (lck != NULL));
1591 * Ensure we pay attention to default ACLs on directories if required.
1594 if ((flags2 & O_CREAT) && lp_inherit_acls(SNUM(conn)) &&
1595 (def_acl = directory_has_default_acl(conn, parent_dir))) {
1599 DEBUG(4,("calling open_file with flags=0x%X flags2=0x%X mode=0%o, "
1600 "access_mask = 0x%x, open_access_mask = 0x%x\n",
1601 (unsigned int)flags, (unsigned int)flags2,
1602 (unsigned int)unx_mode, (unsigned int)access_mask,
1603 (unsigned int)open_access_mask));
1606 * open_file strips any O_TRUNC flags itself.
1609 fsp_open = open_file(fsp, conn, parent_dir, newname, fname, psbuf,
1610 flags|flags2, unx_mode, access_mask,
1613 if (!NT_STATUS_IS_OK(fsp_open)) {
1621 if (!file_existed) {
1624 * Deal with the race condition where two smbd's detect the
1625 * file doesn't exist and do the create at the same time. One
1626 * of them will win and set a share mode, the other (ie. this
1627 * one) should check if the requested share mode for this
1628 * create is allowed.
1632 * Now the file exists and fsp is successfully opened,
1633 * fsp->dev and fsp->inode are valid and should replace the
1634 * dev=0,inode=0 from a non existent file. Spotted by
1635 * Nadav Danieli <nadavd@exanet.com>. JRA.
1641 lck = get_share_mode_lock(NULL, dev, inode,
1646 DEBUG(0, ("open_file_ntcreate: Could not get share "
1647 "mode lock for %s\n", fname));
1648 fd_close(conn, fsp);
1650 return NT_STATUS_SHARING_VIOLATION;
1653 status = open_mode_check(conn, fname, lck,
1654 access_mask, share_access,
1655 create_options, &file_existed);
1657 if (!NT_STATUS_IS_OK(status)) {
1658 struct deferred_open_record state;
1660 fd_close(conn, fsp);
1663 state.delayed_for_oplocks = False;
1665 state.inode = inode;
1667 /* Do it all over again immediately. In the second
1668 * round we will find that the file existed and handle
1669 * the DELETE_PENDING and FCB cases correctly. No need
1670 * to duplicate the code here. Essentially this is a
1671 * "goto top of this function", but don't tell
1674 defer_open(lck, request_time, timeval_zero(),
1681 * We exit this block with the share entry *locked*.....
1686 SMB_ASSERT(lck != NULL);
1688 /* note that we ignore failure for the following. It is
1689 basically a hack for NFS, and NFS will never set one of
1690 these only read them. Nobody but Samba can ever set a deny
1691 mode and we have already checked our more authoritative
1692 locking database for permission to set this deny mode. If
1693 the kernel refuses the operations then the kernel is wrong.
1694 note that GPFS supports it as well - jmcd */
1696 ret_flock = SMB_VFS_KERNEL_FLOCK(fsp, fsp->fh->fd, share_access);
1697 if(ret_flock == -1 ){
1700 fd_close(conn, fsp);
1703 return NT_STATUS_SHARING_VIOLATION;
1707 * At this point onwards, we can guarentee that the share entry
1708 * is locked, whether we created the file or not, and that the
1709 * deny mode is compatible with all current opens.
1713 * If requested, truncate the file.
1716 if (flags2&O_TRUNC) {
1718 * We are modifing the file after open - update the stat
1721 if ((SMB_VFS_FTRUNCATE(fsp,fsp->fh->fd,0) == -1) ||
1722 (SMB_VFS_FSTAT(fsp,fsp->fh->fd,psbuf)==-1)) {
1723 status = map_nt_error_from_unix(errno);
1731 /* Record the options we were opened with. */
1732 fsp->share_access = share_access;
1733 fsp->fh->private_options = create_options;
1734 fsp->access_mask = access_mask;
1737 /* stat opens on existing files don't get oplocks. */
1738 if (is_stat_open(open_access_mask)) {
1739 fsp->oplock_type = NO_OPLOCK;
1742 if (!(flags2 & O_TRUNC)) {
1743 info = FILE_WAS_OPENED;
1745 info = FILE_WAS_OVERWRITTEN;
1748 info = FILE_WAS_CREATED;
1756 * Setup the oplock info in both the shared memory and
1760 if ((fsp->oplock_type != NO_OPLOCK) &&
1761 (fsp->oplock_type != FAKE_LEVEL_II_OPLOCK)) {
1762 if (!set_file_oplock(fsp, fsp->oplock_type)) {
1763 /* Could not get the kernel oplock */
1764 fsp->oplock_type = NO_OPLOCK;
1768 if (info == FILE_WAS_OVERWRITTEN || info == FILE_WAS_CREATED || info == FILE_WAS_SUPERSEDED) {
1769 new_file_created = True;
1772 set_share_mode(lck, fsp, current_user.ut.uid, 0, fsp->oplock_type, new_file_created);
1774 /* Handle strange delete on close create semantics. */
1775 if ((create_options & FILE_DELETE_ON_CLOSE) && can_set_initial_delete_on_close(lck)) {
1776 status = can_set_delete_on_close(fsp, True, new_dos_attributes);
1778 if (!NT_STATUS_IS_OK(status)) {
1779 /* Remember to delete the mode we just added. */
1780 del_share_mode(lck, fsp);
1786 /* Note that here we set the *inital* delete on close flag,
1787 not the regular one. The magic gets handled in close. */
1788 fsp->initial_delete_on_close = True;
1791 if (new_file_created) {
1792 /* Files should be initially set as archive */
1793 if (lp_map_archive(SNUM(conn)) ||
1794 lp_store_dos_attributes(SNUM(conn))) {
1796 file_set_dosmode(conn, fname,
1797 new_dos_attributes | aARCH, NULL,
1804 * Take care of inherited ACLs on created files - if default ACL not
1808 if (!posix_open && !file_existed && !def_acl) {
1810 int saved_errno = errno; /* We might get ENOSYS in the next
1813 if (SMB_VFS_FCHMOD_ACL(fsp, fsp->fh->fd, unx_mode) == -1 &&
1815 errno = saved_errno; /* Ignore ENOSYS */
1818 } else if (new_unx_mode) {
1822 /* Attributes need changing. File already existed. */
1825 int saved_errno = errno; /* We might get ENOSYS in the
1827 ret = SMB_VFS_FCHMOD_ACL(fsp, fsp->fh->fd,
1830 if (ret == -1 && errno == ENOSYS) {
1831 errno = saved_errno; /* Ignore ENOSYS */
1833 DEBUG(5, ("open_file_ntcreate: reset "
1834 "attributes of file %s to 0%o\n",
1835 fname, (unsigned int)new_unx_mode));
1836 ret = 0; /* Don't do the fchmod below. */
1841 (SMB_VFS_FCHMOD(fsp, fsp->fh->fd, new_unx_mode) == -1))
1842 DEBUG(5, ("open_file_ntcreate: failed to reset "
1843 "attributes of file %s to 0%o\n",
1844 fname, (unsigned int)new_unx_mode));
1847 /* If this is a successful open, we must remove any deferred open
1849 del_deferred_open_entry(lck, mid);
1852 conn->num_files_open++;
1855 return NT_STATUS_OK;
1858 /****************************************************************************
1859 Open a file for for write to ensure that we can fchmod it.
1860 ****************************************************************************/
1862 NTSTATUS open_file_fchmod(connection_struct *conn, const char *fname,
1863 SMB_STRUCT_STAT *psbuf, files_struct **result)
1865 files_struct *fsp = NULL;
1868 if (!VALID_STAT(*psbuf)) {
1869 return NT_STATUS_INVALID_PARAMETER;
1872 status = file_new(conn, &fsp);
1873 if(!NT_STATUS_IS_OK(status)) {
1877 /* note! we must use a non-zero desired access or we don't get
1878 a real file descriptor. Oh what a twisted web we weave. */
1879 status = open_file(fsp, conn, NULL, NULL, fname, psbuf, O_WRONLY, 0,
1880 FILE_WRITE_DATA, FILE_WRITE_DATA);
1883 * This is not a user visible file open.
1884 * Don't set a share mode and don't increment
1885 * the conn->num_files_open.
1888 if (!NT_STATUS_IS_OK(status)) {
1894 return NT_STATUS_OK;
1897 /****************************************************************************
1898 Close the fchmod file fd - ensure no locks are lost.
1899 ****************************************************************************/
1901 NTSTATUS close_file_fchmod(files_struct *fsp)
1903 NTSTATUS status = fd_close(fsp->conn, fsp);
1908 static NTSTATUS mkdir_internal(connection_struct *conn,
1910 uint32 file_attributes,
1911 SMB_STRUCT_STAT *psbuf)
1915 const char *dirname;
1918 if(!CAN_WRITE(conn)) {
1919 DEBUG(5,("mkdir_internal: failing create on read-only share "
1920 "%s\n", lp_servicename(SNUM(conn))));
1921 return NT_STATUS_ACCESS_DENIED;
1924 status = check_name(conn, name);
1925 if (!NT_STATUS_IS_OK(status)) {
1929 if (!parent_dirname_talloc(tmp_talloc_ctx(), name, &parent_dir,
1931 return NT_STATUS_NO_MEMORY;
1934 if (file_attributes & FILE_FLAG_POSIX_SEMANTICS) {
1935 mode = (mode_t)(file_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
1937 mode = unix_mode(conn, aDIR, name, parent_dir);
1940 if (SMB_VFS_MKDIR(conn, name, mode) != 0) {
1941 return map_nt_error_from_unix(errno);
1944 /* Ensure we're checking for a symlink here.... */
1945 /* We don't want to get caught by a symlink racer. */
1947 if (SMB_VFS_LSTAT(conn, name, psbuf) == -1) {
1948 DEBUG(2, ("Could not stat directory '%s' just created: %s\n",
1949 name, strerror(errno)));
1950 return map_nt_error_from_unix(errno);
1953 if (!S_ISDIR(psbuf->st_mode)) {
1954 DEBUG(0, ("Directory just '%s' created is not a directory\n",
1956 return NT_STATUS_ACCESS_DENIED;
1959 if (lp_inherit_perms(SNUM(conn))) {
1960 inherit_access_acl(conn, parent_dir, name, mode);
1963 if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS)) {
1965 * Check if high bits should have been set,
1966 * then (if bits are missing): add them.
1967 * Consider bits automagically set by UNIX, i.e. SGID bit from parent
1970 if (mode & ~(S_IRWXU|S_IRWXG|S_IRWXO) && (mode & ~psbuf->st_mode)) {
1971 SMB_VFS_CHMOD(conn, name,
1972 psbuf->st_mode | (mode & ~psbuf->st_mode));
1976 /* Change the owner if required. */
1977 if (lp_inherit_owner(SNUM(conn))) {
1978 change_dir_owner_to_parent(conn, parent_dir, name, psbuf);
1981 notify_fname(conn, NOTIFY_ACTION_ADDED, FILE_NOTIFY_CHANGE_DIR_NAME,
1984 return NT_STATUS_OK;
1987 /****************************************************************************
1988 Open a directory from an NT SMB call.
1989 ****************************************************************************/
1991 NTSTATUS open_directory(connection_struct *conn,
1993 SMB_STRUCT_STAT *psbuf,
1995 uint32 share_access,
1996 uint32 create_disposition,
1997 uint32 create_options,
1998 uint32 file_attributes,
2000 files_struct **result)
2002 files_struct *fsp = NULL;
2003 BOOL dir_existed = VALID_STAT(*psbuf) ? True : False;
2004 struct share_mode_lock *lck = NULL;
2008 DEBUG(5,("open_directory: opening directory %s, access_mask = 0x%x, "
2009 "share_access = 0x%x create_options = 0x%x, "
2010 "create_disposition = 0x%x, file_attributes = 0x%x\n",
2012 (unsigned int)access_mask,
2013 (unsigned int)share_access,
2014 (unsigned int)create_options,
2015 (unsigned int)create_disposition,
2016 (unsigned int)file_attributes));
2018 if (is_ntfs_stream_name(fname)) {
2019 DEBUG(0,("open_directory: %s is a stream name!\n", fname ));
2020 return NT_STATUS_NOT_A_DIRECTORY;
2023 switch( create_disposition ) {
2026 info = FILE_WAS_OPENED;
2029 * We want to follow symlinks here.
2032 if (SMB_VFS_STAT(conn, fname, psbuf) != 0) {
2033 return map_nt_error_from_unix(errno);
2040 /* If directory exists error. If directory doesn't
2043 status = mkdir_internal(conn,
2048 if (!NT_STATUS_IS_OK(status)) {
2049 DEBUG(2, ("open_directory: unable to create "
2050 "%s. Error was %s\n", fname,
2051 nt_errstr(status)));
2055 info = FILE_WAS_CREATED;
2060 * If directory exists open. If directory doesn't
2064 status = mkdir_internal(conn,
2069 if (NT_STATUS_IS_OK(status)) {
2070 info = FILE_WAS_CREATED;
2073 if (NT_STATUS_EQUAL(status,
2074 NT_STATUS_OBJECT_NAME_COLLISION)) {
2075 info = FILE_WAS_OPENED;
2076 status = NT_STATUS_OK;
2081 case FILE_SUPERSEDE:
2082 case FILE_OVERWRITE:
2083 case FILE_OVERWRITE_IF:
2085 DEBUG(5,("open_directory: invalid create_disposition "
2086 "0x%x for directory %s\n",
2087 (unsigned int)create_disposition, fname));
2088 return NT_STATUS_INVALID_PARAMETER;
2091 if(!S_ISDIR(psbuf->st_mode)) {
2092 DEBUG(5,("open_directory: %s is not a directory !\n",
2094 return NT_STATUS_NOT_A_DIRECTORY;
2097 status = file_new(conn, &fsp);
2098 if(!NT_STATUS_IS_OK(status)) {
2103 * Setup the files_struct for it.
2106 fsp->mode = psbuf->st_mode;
2107 fsp->inode = psbuf->st_ino;
2108 fsp->dev = psbuf->st_dev;
2109 fsp->vuid = current_user.vuid;
2110 fsp->file_pid = global_smbpid;
2111 fsp->can_lock = False;
2112 fsp->can_read = False;
2113 fsp->can_write = False;
2115 fsp->share_access = share_access;
2116 fsp->fh->private_options = create_options;
2117 fsp->access_mask = access_mask;
2119 fsp->print_file = False;
2120 fsp->modified = False;
2121 fsp->oplock_type = NO_OPLOCK;
2122 fsp->sent_oplock_break = NO_BREAK_SENT;
2123 fsp->is_directory = True;
2124 fsp->is_stat = False;
2125 fsp->posix_open = (file_attributes & FILE_FLAG_POSIX_SEMANTICS) ? True : False;
2127 string_set(&fsp->fsp_name,fname);
2129 lck = get_share_mode_lock(NULL, fsp->dev, fsp->inode,
2134 DEBUG(0, ("open_directory: Could not get share mode lock for %s\n", fname));
2136 return NT_STATUS_SHARING_VIOLATION;
2139 status = open_mode_check(conn, fname, lck,
2140 access_mask, share_access,
2141 create_options, &dir_existed);
2143 if (!NT_STATUS_IS_OK(status)) {
2149 set_share_mode(lck, fsp, current_user.ut.uid, 0, NO_OPLOCK, True);
2151 /* For directories the delete on close bit at open time seems
2152 always to be honored on close... See test 19 in Samba4 BASE-DELETE. */
2153 if (create_options & FILE_DELETE_ON_CLOSE) {
2154 status = can_set_delete_on_close(fsp, True, 0);
2155 if (!NT_STATUS_IS_OK(status) && !NT_STATUS_EQUAL(status, NT_STATUS_DIRECTORY_NOT_EMPTY)) {
2161 if (NT_STATUS_IS_OK(status)) {
2162 /* Note that here we set the *inital* delete on close flag,
2163 not the regular one. The magic gets handled in close. */
2164 fsp->initial_delete_on_close = True;
2174 conn->num_files_open++;
2177 return NT_STATUS_OK;
2180 NTSTATUS create_directory(connection_struct *conn, const char *directory)
2183 SMB_STRUCT_STAT sbuf;
2186 SET_STAT_INVALID(sbuf);
2188 status = open_directory(conn, directory, &sbuf,
2189 FILE_READ_ATTRIBUTES, /* Just a stat open */
2190 FILE_SHARE_NONE, /* Ignored for stat opens */
2193 FILE_ATTRIBUTE_DIRECTORY,
2197 if (NT_STATUS_IS_OK(status)) {
2198 close_file(fsp, NORMAL_CLOSE);
2204 /****************************************************************************
2205 Open a pseudo-file (no locking checks - a 'stat' open).
2206 ****************************************************************************/
2208 NTSTATUS open_file_stat(connection_struct *conn, const char *fname,
2209 SMB_STRUCT_STAT *psbuf, files_struct **result)
2211 files_struct *fsp = NULL;
2214 if (!VALID_STAT(*psbuf)) {
2215 return NT_STATUS_INVALID_PARAMETER;
2218 /* Can't 'stat' open directories. */
2219 if(S_ISDIR(psbuf->st_mode)) {
2220 return NT_STATUS_FILE_IS_A_DIRECTORY;
2223 status = file_new(conn, &fsp);
2224 if(!NT_STATUS_IS_OK(status)) {
2228 DEBUG(5,("open_file_stat: 'opening' file %s\n", fname));
2231 * Setup the files_struct for it.
2234 fsp->mode = psbuf->st_mode;
2235 fsp->inode = psbuf->st_ino;
2236 fsp->dev = psbuf->st_dev;
2237 fsp->vuid = current_user.vuid;
2238 fsp->file_pid = global_smbpid;
2239 fsp->can_lock = False;
2240 fsp->can_read = False;
2241 fsp->can_write = False;
2242 fsp->print_file = False;
2243 fsp->modified = False;
2244 fsp->oplock_type = NO_OPLOCK;
2245 fsp->sent_oplock_break = NO_BREAK_SENT;
2246 fsp->is_directory = False;
2247 fsp->is_stat = True;
2248 string_set(&fsp->fsp_name,fname);
2250 conn->num_files_open++;
2253 return NT_STATUS_OK;
2256 /****************************************************************************
2257 Receive notification that one of our open files has been renamed by another
2259 ****************************************************************************/
2261 void msg_file_was_renamed(struct messaging_context *msg,
2264 struct server_id server_id,
2268 char *frm = (char *)data->data;
2271 const char *sharepath;
2272 const char *newname;
2275 if (data->data == NULL
2276 || data->length < MSG_FILE_RENAMED_MIN_SIZE + 2) {
2277 DEBUG(0, ("msg_file_was_renamed: Got invalid msg len %d\n",
2282 /* Unpack the message. */
2283 dev = DEV_T_VAL(frm,0);
2284 inode = INO_T_VAL(frm,8);
2285 sharepath = &frm[16];
2286 newname = sharepath + strlen(sharepath) + 1;
2287 sp_len = strlen(sharepath);
2289 DEBUG(10,("msg_file_was_renamed: Got rename message for sharepath %s, new name %s, "
2290 "dev %x, inode %.0f\n",
2291 sharepath, newname, (unsigned int)dev, (double)inode ));
2293 for(fsp = file_find_di_first(dev, inode); fsp; fsp = file_find_di_next(fsp)) {
2294 if (memcmp(fsp->conn->connectpath, sharepath, sp_len) == 0) {
2295 DEBUG(10,("msg_file_was_renamed: renaming file fnum %d from %s -> %s\n",
2296 fsp->fnum, fsp->fsp_name, newname ));
2297 string_set(&fsp->fsp_name, newname);
2300 /* Now we have the complete path we can work out if this is
2301 actually within this share and adjust newname accordingly. */
2302 DEBUG(10,("msg_file_was_renamed: share mismatch (sharepath %s "
2303 "not sharepath %s) "
2304 "fnum %d from %s -> %s\n",
2305 fsp->conn->connectpath,