2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Jeremy Allison 1992-2007.
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/>.
23 #include "system/filesys.h"
25 #include "smbd/smbd.h"
26 #include "smbd/globals.h"
27 #include "fake_file.h"
28 #include "transfer_file.h"
31 #include "../librpc/gen_ndr/open_files.h"
33 /****************************************************************************
34 Run a file if it is a magic script.
35 ****************************************************************************/
37 static NTSTATUS
check_magic(struct files_struct
*fsp
)
40 const char *magic_output
= NULL
;
43 TALLOC_CTX
*ctx
= NULL
;
45 struct connection_struct
*conn
= fsp
->conn
;
49 if (!*lp_magicscript(SNUM(conn
))) {
53 DEBUG(5,("checking magic for %s\n", fsp_str_dbg(fsp
)));
55 ctx
= talloc_stackframe();
57 fname
= fsp
->fsp_name
->base_name
;
59 if (!(p
= strrchr_m(fname
,'/'))) {
65 if (!strequal(lp_magicscript(SNUM(conn
)),p
)) {
66 status
= NT_STATUS_OK
;
70 if (*lp_magicoutput(SNUM(conn
))) {
71 magic_output
= lp_magicoutput(SNUM(conn
));
73 magic_output
= talloc_asprintf(ctx
,
78 status
= NT_STATUS_NO_MEMORY
;
82 /* Ensure we don't depend on user's PATH. */
83 p
= talloc_asprintf(ctx
, "./%s", fname
);
85 status
= NT_STATUS_NO_MEMORY
;
89 if (chmod(fname
, 0755) == -1) {
90 status
= map_nt_error_from_unix(errno
);
93 ret
= smbrun(p
,&tmp_fd
);
94 DEBUG(3,("Invoking magic command %s gave %d\n",
98 if (ret
!= 0 || tmp_fd
== -1) {
102 status
= NT_STATUS_UNSUCCESSFUL
;
105 outfd
= open(magic_output
, O_CREAT
|O_EXCL
|O_RDWR
, 0600);
109 status
= map_nt_error_from_unix(err
);
113 if (sys_fstat(tmp_fd
, &st
, false) == -1) {
117 status
= map_nt_error_from_unix(err
);
121 if (transfer_file(tmp_fd
,outfd
,(off_t
)st
.st_ex_size
) == (off_t
)-1) {
125 status
= map_nt_error_from_unix(err
);
129 if (close(outfd
) == -1) {
130 status
= map_nt_error_from_unix(errno
);
134 status
= NT_STATUS_OK
;
141 /****************************************************************************
142 Common code to close a file or a directory.
143 ****************************************************************************/
145 static NTSTATUS
close_filestruct(files_struct
*fsp
)
147 NTSTATUS status
= NT_STATUS_OK
;
149 if (fsp
->fh
->fd
!= -1) {
150 if(flush_write_cache(fsp
, CLOSE_FLUSH
) == -1) {
151 status
= map_nt_error_from_unix(errno
);
153 delete_write_cache(fsp
);
159 static int compare_share_mode_times(const void *p1
, const void *p2
)
161 const struct share_mode_entry
*s1
= (const struct share_mode_entry
*)p1
;
162 const struct share_mode_entry
*s2
= (const struct share_mode_entry
*)p2
;
163 return timeval_compare(&s1
->time
, &s2
->time
);
166 /****************************************************************************
167 If any deferred opens are waiting on this close, notify them.
168 ****************************************************************************/
170 static void notify_deferred_opens(struct smbd_server_connection
*sconn
,
171 struct share_mode_lock
*lck
)
173 uint32_t i
, num_deferred
;
174 struct share_mode_entry
*deferred
;
176 if (!should_notify_deferred_opens()) {
181 for (i
=0; i
<lck
->data
->num_share_modes
; i
++) {
182 if (is_deferred_open_entry(&lck
->data
->share_modes
[i
])) {
186 if (num_deferred
== 0) {
190 deferred
= talloc_array(talloc_tos(), struct share_mode_entry
,
192 if (deferred
== NULL
) {
197 for (i
=0; i
<lck
->data
->num_share_modes
; i
++) {
198 struct share_mode_entry
*e
= &lck
->data
->share_modes
[i
];
199 if (is_deferred_open_entry(e
)) {
200 deferred
[num_deferred
] = *e
;
206 * We need to sort the notifications by initial request time. Imagine
207 * two opens come in asyncronously, both conflicting with the open we
208 * just close here. If we don't sort the notifications, the one that
209 * came in last might get the response before the one that came in
210 * first. This is demonstrated with the smbtorture4 raw.mux test.
212 * As long as we had the UNUSED_SHARE_MODE_ENTRY, we happened to
213 * survive this particular test. Without UNUSED_SHARE_MODE_ENTRY, we
214 * shuffle the share mode entries around a bit, so that we do not
215 * survive raw.mux anymore.
217 * We could have kept the ordering in del_share_mode, but as the
218 * ordering was never formalized I think it is better to do it here
219 * where it is necessary.
222 qsort(deferred
, num_deferred
, sizeof(struct share_mode_entry
),
223 compare_share_mode_times
);
225 for (i
=0; i
<num_deferred
; i
++) {
226 struct share_mode_entry
*e
= &deferred
[i
];
228 if (procid_is_me(&e
->pid
)) {
230 * We need to notify ourself to retry the open. Do
231 * this by finding the queued SMB record, moving it to
232 * the head of the queue and changing the wait time to
235 schedule_deferred_open_message_smb(sconn
, e
->op_mid
);
237 char msg
[MSG_SMB_SHARE_MODE_ENTRY_SIZE
];
239 share_mode_entry_to_message(msg
, e
);
241 messaging_send_buf(sconn
->msg_ctx
, e
->pid
,
244 MSG_SMB_SHARE_MODE_ENTRY_SIZE
);
247 TALLOC_FREE(deferred
);
250 /****************************************************************************
252 ****************************************************************************/
254 NTSTATUS
delete_all_streams(connection_struct
*conn
, const char *fname
)
256 struct stream_struct
*stream_info
= NULL
;
258 unsigned int num_streams
= 0;
259 TALLOC_CTX
*frame
= talloc_stackframe();
262 status
= vfs_streaminfo(conn
, NULL
, fname
, talloc_tos(),
263 &num_streams
, &stream_info
);
265 if (NT_STATUS_EQUAL(status
, NT_STATUS_NOT_IMPLEMENTED
)) {
266 DEBUG(10, ("no streams around\n"));
271 if (!NT_STATUS_IS_OK(status
)) {
272 DEBUG(10, ("vfs_streaminfo failed: %s\n",
277 DEBUG(10, ("delete_all_streams found %d streams\n",
280 if (num_streams
== 0) {
285 for (i
=0; i
<num_streams
; i
++) {
287 struct smb_filename
*smb_fname_stream
= NULL
;
289 if (strequal(stream_info
[i
].name
, "::$DATA")) {
293 status
= create_synthetic_smb_fname(talloc_tos(), fname
,
294 stream_info
[i
].name
, NULL
,
297 if (!NT_STATUS_IS_OK(status
)) {
298 DEBUG(0, ("talloc_aprintf failed\n"));
302 res
= SMB_VFS_UNLINK(conn
, smb_fname_stream
);
305 status
= map_nt_error_from_unix(errno
);
306 DEBUG(10, ("Could not delete stream %s: %s\n",
307 smb_fname_str_dbg(smb_fname_stream
),
309 TALLOC_FREE(smb_fname_stream
);
312 TALLOC_FREE(smb_fname_stream
);
320 /****************************************************************************
321 Deal with removing a share mode on last close.
322 ****************************************************************************/
324 static NTSTATUS
close_remove_share_mode(files_struct
*fsp
,
325 enum file_close_type close_type
)
327 connection_struct
*conn
= fsp
->conn
;
328 bool delete_file
= false;
329 bool changed_user
= false;
330 struct share_mode_lock
*lck
= NULL
;
331 NTSTATUS status
= NT_STATUS_OK
;
334 const struct security_unix_token
*del_token
= NULL
;
335 const struct security_token
*del_nt_token
= NULL
;
336 bool got_tokens
= false;
338 /* Ensure any pending write time updates are done. */
339 if (fsp
->update_write_time_event
) {
340 update_write_time_handler(fsp
->conn
->sconn
->ev_ctx
,
341 fsp
->update_write_time_event
,
347 * Lock the share entries, and determine if we should delete
348 * on close. If so delete whilst the lock is still in effect.
349 * This prevents race conditions with the file being created. JRA.
352 lck
= get_existing_share_mode_lock(talloc_tos(), fsp
->file_id
);
354 DEBUG(0, ("close_remove_share_mode: Could not get share mode "
355 "lock for file %s\n", fsp_str_dbg(fsp
)));
356 status
= NT_STATUS_INVALID_PARAMETER
;
360 if (fsp
->write_time_forced
) {
361 DEBUG(10,("close_remove_share_mode: write time forced "
364 set_close_write_time(fsp
, lck
->data
->changed_write_time
);
365 } else if (fsp
->update_write_time_on_close
) {
366 /* Someone had a pending write. */
367 if (null_timespec(fsp
->close_write_time
)) {
368 DEBUG(10,("close_remove_share_mode: update to current time "
371 /* Update to current time due to "normal" write. */
372 set_close_write_time(fsp
, timespec_current());
374 DEBUG(10,("close_remove_share_mode: write time pending "
377 /* Update to time set on close call. */
378 set_close_write_time(fsp
, fsp
->close_write_time
);
382 if (!del_share_mode(lck
, fsp
)) {
383 DEBUG(0, ("close_remove_share_mode: Could not delete share "
384 "entry for file %s\n",
388 if (fsp
->initial_delete_on_close
&&
389 !is_delete_on_close_set(lck
, fsp
->name_hash
)) {
390 bool became_user
= False
;
392 /* Initial delete on close was set and no one else
393 * wrote a real delete on close. */
395 if (get_current_vuid(conn
) != fsp
->vuid
) {
396 become_user(conn
, fsp
->vuid
);
399 fsp
->delete_on_close
= true;
400 set_delete_on_close_lck(fsp
, lck
, True
,
401 get_current_nttok(conn
),
402 get_current_utok(conn
));
408 delete_file
= is_delete_on_close_set(lck
, fsp
->name_hash
);
412 /* See if others still have the file open via this pathname.
413 If this is the case, then don't delete. If all opens are
415 for (i
=0; i
<lck
->data
->num_share_modes
; i
++) {
416 struct share_mode_entry
*e
= &lck
->data
->share_modes
[i
];
417 if (is_valid_share_mode_entry(e
) &&
418 e
->name_hash
== fsp
->name_hash
) {
419 if (fsp
->posix_open
&& (e
->flags
& SHARE_MODE_FLAG_POSIX_OPEN
)) {
428 /* Notify any deferred opens waiting on this close. */
429 notify_deferred_opens(conn
->sconn
, lck
);
430 reply_to_oplock_break_requests(fsp
);
433 * NT can set delete_on_close of the last open
434 * reference to a file.
437 if (!(close_type
== NORMAL_CLOSE
|| close_type
== SHUTDOWN_CLOSE
) ||
444 * Ok, we have to delete the file
447 DEBUG(5,("close_remove_share_mode: file %s. Delete on close was set "
448 "- deleting file.\n", fsp_str_dbg(fsp
)));
451 * Don't try to update the write time when we delete the file
453 fsp
->update_write_time_on_close
= false;
455 got_tokens
= get_delete_on_close_token(lck
, fsp
->name_hash
,
456 &del_nt_token
, &del_token
);
457 SMB_ASSERT(got_tokens
);
459 if (!unix_token_equal(del_token
, get_current_utok(conn
))) {
460 /* Become the user who requested the delete. */
462 DEBUG(5,("close_remove_share_mode: file %s. "
463 "Change user to uid %u\n",
465 (unsigned int)del_token
->uid
));
467 if (!push_sec_ctx()) {
468 smb_panic("close_remove_share_mode: file %s. failed to push "
472 set_sec_ctx(del_token
->uid
,
481 /* We can only delete the file if the name we have is still valid and
482 hasn't been renamed. */
484 tmp_status
= vfs_stat_fsp(fsp
);
485 if (!NT_STATUS_IS_OK(tmp_status
)) {
486 DEBUG(5,("close_remove_share_mode: file %s. Delete on close "
487 "was set and stat failed with error %s\n",
488 fsp_str_dbg(fsp
), nt_errstr(tmp_status
)));
490 * Don't save the errno here, we ignore this error
495 id
= vfs_file_id_from_sbuf(conn
, &fsp
->fsp_name
->st
);
497 if (!file_id_equal(&fsp
->file_id
, &id
)) {
498 DEBUG(5,("close_remove_share_mode: file %s. Delete on close "
499 "was set and dev and/or inode does not match\n",
501 DEBUG(5,("close_remove_share_mode: file %s. stored file_id %s, "
504 file_id_string_tos(&fsp
->file_id
),
505 file_id_string_tos(&id
)));
507 * Don't save the errno here, we ignore this error
512 if ((conn
->fs_capabilities
& FILE_NAMED_STREAMS
)
513 && !is_ntfs_stream_smb_fname(fsp
->fsp_name
)) {
515 status
= delete_all_streams(conn
, fsp
->fsp_name
->base_name
);
517 if (!NT_STATUS_IS_OK(status
)) {
518 DEBUG(5, ("delete_all_streams failed: %s\n",
525 if (SMB_VFS_UNLINK(conn
, fsp
->fsp_name
) != 0) {
527 * This call can potentially fail as another smbd may
528 * have had the file open with delete on close set and
529 * deleted it when its last reference to this file
530 * went away. Hence we log this but not at debug level
534 DEBUG(5,("close_remove_share_mode: file %s. Delete on close "
535 "was set and unlink failed with error %s\n",
536 fsp_str_dbg(fsp
), strerror(errno
)));
538 status
= map_nt_error_from_unix(errno
);
541 /* As we now have POSIX opens which can unlink
542 * with other open files we may have taken
543 * this code path with more than one share mode
544 * entry - ensure we only delete once by resetting
545 * the delete on close flag. JRA.
548 fsp
->delete_on_close
= false;
549 set_delete_on_close_lck(fsp
, lck
, false, NULL
, NULL
);
562 * Do the notification after we released the share
563 * mode lock. Inside notify_fname we take out another
564 * tdb lock. With ctdb also accessing our databases,
565 * this can lead to deadlocks. Putting this notify
566 * after the TALLOC_FREE(lck) above we avoid locking
567 * two records simultaneously. Notifies are async and
568 * informational only, so calling the notify_fname
569 * without holding the share mode lock should not do
572 notify_fname(conn
, NOTIFY_ACTION_REMOVED
,
573 FILE_NOTIFY_CHANGE_FILE_NAME
,
574 fsp
->fsp_name
->base_name
);
580 void set_close_write_time(struct files_struct
*fsp
, struct timespec ts
)
582 DEBUG(6,("close_write_time: %s" , time_to_asc(convert_timespec_to_time_t(ts
))));
584 if (null_timespec(ts
)) {
587 fsp
->write_time_forced
= false;
588 fsp
->update_write_time_on_close
= true;
589 fsp
->close_write_time
= ts
;
592 static NTSTATUS
update_write_time_on_close(struct files_struct
*fsp
)
594 struct smb_file_time ft
;
596 struct share_mode_lock
*lck
= NULL
;
600 if (!fsp
->update_write_time_on_close
) {
604 if (null_timespec(fsp
->close_write_time
)) {
605 fsp
->close_write_time
= timespec_current();
608 /* Ensure we have a valid stat struct for the source. */
609 status
= vfs_stat_fsp(fsp
);
610 if (!NT_STATUS_IS_OK(status
)) {
614 if (!VALID_STAT(fsp
->fsp_name
->st
)) {
615 /* if it doesn't seem to be a real file */
619 /* On close if we're changing the real file time we
620 * must update it in the open file db too. */
621 (void)set_write_time(fsp
->file_id
, fsp
->close_write_time
);
623 lck
= get_existing_share_mode_lock(talloc_tos(), fsp
->file_id
);
625 /* Close write times overwrite sticky write times
626 so we must replace any sticky write time here. */
627 if (!null_timespec(lck
->data
->changed_write_time
)) {
628 (void)set_sticky_write_time(fsp
->file_id
, fsp
->close_write_time
);
633 ft
.mtime
= fsp
->close_write_time
;
634 /* As this is a close based update, we are not directly changing the
635 file attributes from a client call, but indirectly from a write. */
636 status
= smb_set_file_time(fsp
->conn
, fsp
, fsp
->fsp_name
, &ft
, false);
637 if (!NT_STATUS_IS_OK(status
)) {
638 DEBUG(10,("update_write_time_on_close: smb_set_file_time "
639 "on file %s returned %s\n",
648 static NTSTATUS
ntstatus_keeperror(NTSTATUS s1
, NTSTATUS s2
)
650 if (!NT_STATUS_IS_OK(s1
)) {
656 /****************************************************************************
659 close_type can be NORMAL_CLOSE=0,SHUTDOWN_CLOSE,ERROR_CLOSE.
660 printing and magic scripts are only run on normal close.
661 delete on close is done on normal and shutdown close.
662 ****************************************************************************/
664 static NTSTATUS
close_normal_file(struct smb_request
*req
, files_struct
*fsp
,
665 enum file_close_type close_type
)
667 NTSTATUS status
= NT_STATUS_OK
;
669 connection_struct
*conn
= fsp
->conn
;
673 * If we're finishing async io on a close we can get a write
674 * error here, we must remember this.
676 ret
= wait_for_aio_completion(fsp
);
678 status
= ntstatus_keeperror(
679 status
, map_nt_error_from_unix(ret
));
683 * If we're flushing on a close we can get a write
684 * error here, we must remember this.
687 tmp
= close_filestruct(fsp
);
688 status
= ntstatus_keeperror(status
, tmp
);
690 if (fsp
->print_file
) {
691 /* FIXME: return spool errors */
692 print_spool_end(fsp
, close_type
);
697 /* Remove the oplock before potentially deleting the file. */
698 if(fsp
->oplock_type
) {
699 release_file_oplock(fsp
);
702 /* If this is an old DOS or FCB open and we have multiple opens on
703 the same handle we only have one share mode. Ensure we only remove
704 the share mode on the last close. */
706 if (fsp
->fh
->ref_count
== 1) {
707 /* Should we return on error here... ? */
708 tmp
= close_remove_share_mode(fsp
, close_type
);
709 status
= ntstatus_keeperror(status
, tmp
);
712 locking_close_file(conn
->sconn
->msg_ctx
, fsp
, close_type
);
715 status
= ntstatus_keeperror(status
, tmp
);
717 /* check for magic scripts */
718 if (close_type
== NORMAL_CLOSE
) {
719 tmp
= check_magic(fsp
);
720 status
= ntstatus_keeperror(status
, tmp
);
724 * Ensure pending modtime is set after close.
727 tmp
= update_write_time_on_close(fsp
);
728 if (NT_STATUS_EQUAL(tmp
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
729 /* Someone renamed the file or a parent directory containing
730 * this file. We can't do anything about this, we don't have
731 * an "update timestamp by fd" call in POSIX. Eat the error. */
736 status
= ntstatus_keeperror(status
, tmp
);
738 DEBUG(2,("%s closed file %s (numopen=%d) %s\n",
739 conn
->session_info
->unix_info
->unix_name
, fsp_str_dbg(fsp
),
740 conn
->num_files_open
- 1,
741 nt_errstr(status
) ));
746 /****************************************************************************
747 Static function used by reply_rmdir to delete an entire directory
748 tree recursively. Return True on ok, False on fail.
749 ****************************************************************************/
751 static bool recursive_rmdir(TALLOC_CTX
*ctx
,
752 connection_struct
*conn
,
753 struct smb_filename
*smb_dname
)
755 const char *dname
= NULL
;
756 char *talloced
= NULL
;
760 struct smb_Dir
*dir_hnd
;
762 SMB_ASSERT(!is_ntfs_stream_smb_fname(smb_dname
));
764 dir_hnd
= OpenDir(talloc_tos(), conn
, smb_dname
->base_name
, NULL
, 0);
768 while((dname
= ReadDirName(dir_hnd
, &offset
, &st
, &talloced
))) {
769 struct smb_filename
*smb_dname_full
= NULL
;
770 char *fullname
= NULL
;
771 bool do_break
= true;
774 if (ISDOT(dname
) || ISDOTDOT(dname
)) {
775 TALLOC_FREE(talloced
);
779 if (!is_visible_file(conn
, smb_dname
->base_name
, dname
, &st
,
781 TALLOC_FREE(talloced
);
785 /* Construct the full name. */
786 fullname
= talloc_asprintf(ctx
,
788 smb_dname
->base_name
,
795 status
= create_synthetic_smb_fname(talloc_tos(), fullname
,
798 if (!NT_STATUS_IS_OK(status
)) {
802 if(SMB_VFS_LSTAT(conn
, smb_dname_full
) != 0) {
806 if(smb_dname_full
->st
.st_ex_mode
& S_IFDIR
) {
807 if(!recursive_rmdir(ctx
, conn
, smb_dname_full
)) {
810 if(SMB_VFS_RMDIR(conn
,
811 smb_dname_full
->base_name
) != 0) {
814 } else if(SMB_VFS_UNLINK(conn
, smb_dname_full
) != 0) {
818 /* Successful iteration. */
822 TALLOC_FREE(smb_dname_full
);
823 TALLOC_FREE(fullname
);
824 TALLOC_FREE(talloced
);
830 TALLOC_FREE(dir_hnd
);
834 /****************************************************************************
835 The internals of the rmdir code - called elsewhere.
836 ****************************************************************************/
838 static NTSTATUS
rmdir_internals(TALLOC_CTX
*ctx
, files_struct
*fsp
)
840 connection_struct
*conn
= fsp
->conn
;
841 struct smb_filename
*smb_dname
= fsp
->fsp_name
;
844 SMB_ASSERT(!is_ntfs_stream_smb_fname(smb_dname
));
846 /* Might be a symlink. */
847 if(SMB_VFS_LSTAT(conn
, smb_dname
) != 0) {
848 return map_nt_error_from_unix(errno
);
851 if (S_ISLNK(smb_dname
->st
.st_ex_mode
)) {
852 /* Is what it points to a directory ? */
853 if(SMB_VFS_STAT(conn
, smb_dname
) != 0) {
854 return map_nt_error_from_unix(errno
);
856 if (!(S_ISDIR(smb_dname
->st
.st_ex_mode
))) {
857 return NT_STATUS_NOT_A_DIRECTORY
;
859 ret
= SMB_VFS_UNLINK(conn
, smb_dname
);
861 ret
= SMB_VFS_RMDIR(conn
, smb_dname
->base_name
);
864 notify_fname(conn
, NOTIFY_ACTION_REMOVED
,
865 FILE_NOTIFY_CHANGE_DIR_NAME
,
866 smb_dname
->base_name
);
870 if(((errno
== ENOTEMPTY
)||(errno
== EEXIST
)) && *lp_veto_files(SNUM(conn
))) {
872 * Check to see if the only thing in this directory are
873 * vetoed files/directories. If so then delete them and
874 * retry. If we fail to delete any of them (and we *don't*
875 * do a recursive delete) then fail the rmdir.
878 const char *dname
= NULL
;
879 char *talloced
= NULL
;
881 struct smb_Dir
*dir_hnd
= OpenDir(talloc_tos(), conn
,
882 smb_dname
->base_name
, NULL
,
885 if(dir_hnd
== NULL
) {
890 while ((dname
= ReadDirName(dir_hnd
, &dirpos
, &st
,
891 &talloced
)) != NULL
) {
892 if((strcmp(dname
, ".") == 0) || (strcmp(dname
, "..")==0)) {
893 TALLOC_FREE(talloced
);
896 if (!is_visible_file(conn
, smb_dname
->base_name
, dname
,
898 TALLOC_FREE(talloced
);
901 if(!IS_VETO_PATH(conn
, dname
)) {
902 TALLOC_FREE(dir_hnd
);
903 TALLOC_FREE(talloced
);
907 TALLOC_FREE(talloced
);
910 /* We only have veto files/directories.
911 * Are we allowed to delete them ? */
913 if(!lp_recursive_veto_delete(SNUM(conn
))) {
914 TALLOC_FREE(dir_hnd
);
919 /* Do a recursive delete. */
920 RewindDir(dir_hnd
,&dirpos
);
921 while ((dname
= ReadDirName(dir_hnd
, &dirpos
, &st
,
922 &talloced
)) != NULL
) {
923 struct smb_filename
*smb_dname_full
= NULL
;
924 char *fullname
= NULL
;
925 bool do_break
= true;
928 if (ISDOT(dname
) || ISDOTDOT(dname
)) {
929 TALLOC_FREE(talloced
);
932 if (!is_visible_file(conn
, smb_dname
->base_name
, dname
,
934 TALLOC_FREE(talloced
);
938 fullname
= talloc_asprintf(ctx
,
940 smb_dname
->base_name
,
948 status
= create_synthetic_smb_fname(talloc_tos(),
952 if (!NT_STATUS_IS_OK(status
)) {
953 errno
= map_errno_from_nt_status(status
);
957 if(SMB_VFS_LSTAT(conn
, smb_dname_full
) != 0) {
960 if(smb_dname_full
->st
.st_ex_mode
& S_IFDIR
) {
961 if(!recursive_rmdir(ctx
, conn
,
965 if(SMB_VFS_RMDIR(conn
,
966 smb_dname_full
->base_name
) != 0) {
969 } else if(SMB_VFS_UNLINK(conn
, smb_dname_full
) != 0) {
973 /* Successful iteration. */
977 TALLOC_FREE(fullname
);
978 TALLOC_FREE(smb_dname_full
);
979 TALLOC_FREE(talloced
);
983 TALLOC_FREE(dir_hnd
);
984 /* Retry the rmdir */
985 ret
= SMB_VFS_RMDIR(conn
, smb_dname
->base_name
);
991 DEBUG(3,("rmdir_internals: couldn't remove directory %s : "
992 "%s\n", smb_fname_str_dbg(smb_dname
),
994 return map_nt_error_from_unix(errno
);
997 notify_fname(conn
, NOTIFY_ACTION_REMOVED
,
998 FILE_NOTIFY_CHANGE_DIR_NAME
,
999 smb_dname
->base_name
);
1001 return NT_STATUS_OK
;
1004 /****************************************************************************
1005 Close a directory opened by an NT SMB call.
1006 ****************************************************************************/
1008 static NTSTATUS
close_directory(struct smb_request
*req
, files_struct
*fsp
,
1009 enum file_close_type close_type
)
1011 struct share_mode_lock
*lck
= NULL
;
1012 bool delete_dir
= False
;
1013 NTSTATUS status
= NT_STATUS_OK
;
1014 NTSTATUS status1
= NT_STATUS_OK
;
1015 const struct security_token
*del_nt_token
= NULL
;
1016 const struct security_unix_token
*del_token
= NULL
;
1019 * NT can set delete_on_close of the last open
1020 * reference to a directory also.
1023 lck
= get_existing_share_mode_lock(talloc_tos(), fsp
->file_id
);
1025 DEBUG(0, ("close_directory: Could not get share mode lock for "
1026 "%s\n", fsp_str_dbg(fsp
)));
1027 status
= NT_STATUS_INVALID_PARAMETER
;
1031 if (!del_share_mode(lck
, fsp
)) {
1032 DEBUG(0, ("close_directory: Could not delete share entry for "
1033 "%s\n", fsp_str_dbg(fsp
)));
1036 if (fsp
->initial_delete_on_close
) {
1037 bool became_user
= False
;
1039 /* Initial delete on close was set - for
1040 * directories we don't care if anyone else
1041 * wrote a real delete on close. */
1043 if (get_current_vuid(fsp
->conn
) != fsp
->vuid
) {
1044 become_user(fsp
->conn
, fsp
->vuid
);
1047 send_stat_cache_delete_message(fsp
->conn
->sconn
->msg_ctx
,
1048 fsp
->fsp_name
->base_name
);
1049 set_delete_on_close_lck(fsp
, lck
, true,
1050 get_current_nttok(fsp
->conn
),
1051 get_current_utok(fsp
->conn
));
1052 fsp
->delete_on_close
= true;
1058 delete_dir
= get_delete_on_close_token(lck
, fsp
->name_hash
,
1059 &del_nt_token
, &del_token
);
1063 /* See if others still have the dir open. If this is the
1064 * case, then don't delete. If all opens are POSIX delete now. */
1065 for (i
=0; i
<lck
->data
->num_share_modes
; i
++) {
1066 struct share_mode_entry
*e
= &lck
->data
->share_modes
[i
];
1067 if (is_valid_share_mode_entry(e
) &&
1068 e
->name_hash
== fsp
->name_hash
) {
1069 if (fsp
->posix_open
&& (e
->flags
& SHARE_MODE_FLAG_POSIX_OPEN
)) {
1078 if ((close_type
== NORMAL_CLOSE
|| close_type
== SHUTDOWN_CLOSE
) &&
1081 /* Become the user who requested the delete. */
1083 if (!push_sec_ctx()) {
1084 smb_panic("close_directory: failed to push sec_ctx.\n");
1087 set_sec_ctx(del_token
->uid
,
1095 if ((fsp
->conn
->fs_capabilities
& FILE_NAMED_STREAMS
)
1096 && !is_ntfs_stream_smb_fname(fsp
->fsp_name
)) {
1098 status
= delete_all_streams(fsp
->conn
, fsp
->fsp_name
->base_name
);
1099 if (!NT_STATUS_IS_OK(status
)) {
1100 DEBUG(5, ("delete_all_streams failed: %s\n",
1101 nt_errstr(status
)));
1106 status
= rmdir_internals(talloc_tos(), fsp
);
1108 DEBUG(5,("close_directory: %s. Delete on close was set - "
1109 "deleting directory returned %s.\n",
1110 fsp_str_dbg(fsp
), nt_errstr(status
)));
1112 /* unbecome user. */
1116 * Ensure we remove any change notify requests that would
1117 * now fail as the directory has been deleted.
1120 if(NT_STATUS_IS_OK(status
)) {
1121 remove_pending_change_notify_requests_by_fid(fsp
, NT_STATUS_DELETE_PENDING
);
1125 remove_pending_change_notify_requests_by_fid(
1129 status1
= fd_close(fsp
);
1131 if (!NT_STATUS_IS_OK(status1
)) {
1132 DEBUG(0, ("Could not close dir! fname=%s, fd=%d, err=%d=%s\n",
1133 fsp_str_dbg(fsp
), fsp
->fh
->fd
, errno
,
1138 * Do the code common to files and directories.
1140 close_filestruct(fsp
);
1141 file_free(req
, fsp
);
1145 if (NT_STATUS_IS_OK(status
) && !NT_STATUS_IS_OK(status1
)) {
1151 /****************************************************************************
1152 Close a files_struct.
1153 ****************************************************************************/
1155 NTSTATUS
close_file(struct smb_request
*req
, files_struct
*fsp
,
1156 enum file_close_type close_type
)
1159 struct files_struct
*base_fsp
= fsp
->base_fsp
;
1161 if(fsp
->is_directory
) {
1162 status
= close_directory(req
, fsp
, close_type
);
1163 } else if (fsp
->fake_file_handle
!= NULL
) {
1164 status
= close_fake_file(req
, fsp
);
1166 status
= close_normal_file(req
, fsp
, close_type
);
1169 if ((base_fsp
!= NULL
) && (close_type
!= SHUTDOWN_CLOSE
)) {
1172 * fsp was a stream, the base fsp can't be a stream as well
1174 * For SHUTDOWN_CLOSE this is not possible here, because
1175 * SHUTDOWN_CLOSE only happens from files.c which walks the
1176 * complete list of files. If we mess with more than one fsp
1177 * those loops will become confused.
1180 SMB_ASSERT(base_fsp
->base_fsp
== NULL
);
1181 close_file(req
, base_fsp
, close_type
);
1187 /****************************************************************************
1188 Deal with an (authorized) message to close a file given the share mode
1190 ****************************************************************************/
1192 void msg_close_file(struct messaging_context
*msg_ctx
,
1195 struct server_id server_id
,
1198 files_struct
*fsp
= NULL
;
1199 struct share_mode_entry e
;
1200 struct smbd_server_connection
*sconn
=
1201 talloc_get_type_abort(private_data
,
1202 struct smbd_server_connection
);
1204 message_to_share_mode_entry(&e
, (char *)data
->data
);
1207 char *sm_str
= share_mode_str(NULL
, 0, &e
);
1209 smb_panic("talloc failed");
1211 DEBUG(10,("msg_close_file: got request to close share mode "
1212 "entry %s\n", sm_str
));
1213 TALLOC_FREE(sm_str
);
1216 fsp
= file_find_dif(sconn
, e
.id
, e
.share_file_id
);
1218 DEBUG(10,("msg_close_file: failed to find file.\n"));
1221 close_file(NULL
, fsp
, NORMAL_CLOSE
);