s3/torture: use stack buffer for rbtree loop
[Samba.git] / source3 / smbd / close.c
blobda28559e49b9c5fb09091c1a8993b3950509cdae
1 /*
2 Unix SMB/CIFS implementation.
3 file closing
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/>.
22 #include "includes.h"
23 #include "system/filesys.h"
24 #include "lib/util/server_id.h"
25 #include "printing.h"
26 #include "smbd/smbd.h"
27 #include "smbd/globals.h"
28 #include "smbd/scavenger.h"
29 #include "fake_file.h"
30 #include "transfer_file.h"
31 #include "auth.h"
32 #include "messages.h"
33 #include "../librpc/gen_ndr/open_files.h"
34 #include "lib/util/tevent_ntstatus.h"
36 /****************************************************************************
37 Run a file if it is a magic script.
38 ****************************************************************************/
40 static NTSTATUS check_magic(struct files_struct *fsp)
42 int ret;
43 const struct loadparm_substitution *lp_sub =
44 loadparm_s3_global_substitution();
45 const char *magic_output = NULL;
46 SMB_STRUCT_STAT st;
47 int tmp_fd, outfd;
48 TALLOC_CTX *ctx = NULL;
49 const char *p;
50 struct connection_struct *conn = fsp->conn;
51 char *fname = NULL;
52 NTSTATUS status;
54 if (!*lp_magic_script(talloc_tos(), lp_sub, SNUM(conn))) {
55 return NT_STATUS_OK;
58 DEBUG(5,("checking magic for %s\n", fsp_str_dbg(fsp)));
60 ctx = talloc_stackframe();
62 fname = fsp->fsp_name->base_name;
64 if (!(p = strrchr_m(fname,'/'))) {
65 p = fname;
66 } else {
67 p++;
70 if (!strequal(lp_magic_script(talloc_tos(), lp_sub, SNUM(conn)),p)) {
71 status = NT_STATUS_OK;
72 goto out;
75 if (*lp_magic_output(talloc_tos(), lp_sub, SNUM(conn))) {
76 magic_output = lp_magic_output(talloc_tos(), lp_sub, SNUM(conn));
77 } else {
78 magic_output = talloc_asprintf(ctx,
79 "%s.out",
80 fname);
82 if (!magic_output) {
83 status = NT_STATUS_NO_MEMORY;
84 goto out;
87 /* Ensure we don't depend on user's PATH. */
88 p = talloc_asprintf(ctx, "./%s", fname);
89 if (!p) {
90 status = NT_STATUS_NO_MEMORY;
91 goto out;
94 if (chmod(fname, 0755) == -1) {
95 status = map_nt_error_from_unix(errno);
96 goto out;
98 ret = smbrun(p, &tmp_fd, NULL);
99 DEBUG(3,("Invoking magic command %s gave %d\n",
100 p,ret));
102 unlink(fname);
103 if (ret != 0 || tmp_fd == -1) {
104 if (tmp_fd != -1) {
105 close(tmp_fd);
107 status = NT_STATUS_UNSUCCESSFUL;
108 goto out;
110 outfd = open(magic_output, O_CREAT|O_EXCL|O_RDWR, 0600);
111 if (outfd == -1) {
112 int err = errno;
113 close(tmp_fd);
114 status = map_nt_error_from_unix(err);
115 goto out;
118 if (sys_fstat(tmp_fd, &st, false) == -1) {
119 int err = errno;
120 close(tmp_fd);
121 close(outfd);
122 status = map_nt_error_from_unix(err);
123 goto out;
126 if (transfer_file(tmp_fd,outfd,(off_t)st.st_ex_size) == (off_t)-1) {
127 int err = errno;
128 close(tmp_fd);
129 close(outfd);
130 status = map_nt_error_from_unix(err);
131 goto out;
133 close(tmp_fd);
134 if (close(outfd) == -1) {
135 status = map_nt_error_from_unix(errno);
136 goto out;
139 status = NT_STATUS_OK;
141 out:
142 TALLOC_FREE(ctx);
143 return status;
146 /****************************************************************************
147 Delete all streams
148 ****************************************************************************/
150 NTSTATUS delete_all_streams(connection_struct *conn,
151 const struct smb_filename *smb_fname)
153 struct stream_struct *stream_info = NULL;
154 unsigned int i;
155 unsigned int num_streams = 0;
156 TALLOC_CTX *frame = talloc_stackframe();
157 NTSTATUS status;
159 status = vfs_streaminfo(conn, NULL, smb_fname, talloc_tos(),
160 &num_streams, &stream_info);
162 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) {
163 DEBUG(10, ("no streams around\n"));
164 TALLOC_FREE(frame);
165 return NT_STATUS_OK;
168 if (!NT_STATUS_IS_OK(status)) {
169 DEBUG(10, ("vfs_streaminfo failed: %s\n",
170 nt_errstr(status)));
171 goto fail;
174 DEBUG(10, ("delete_all_streams found %d streams\n",
175 num_streams));
177 if (num_streams == 0) {
178 TALLOC_FREE(frame);
179 return NT_STATUS_OK;
182 for (i=0; i<num_streams; i++) {
183 int res;
184 struct smb_filename *smb_fname_stream;
186 if (strequal(stream_info[i].name, "::$DATA")) {
187 continue;
190 smb_fname_stream = synthetic_smb_fname(talloc_tos(),
191 smb_fname->base_name,
192 stream_info[i].name,
193 NULL,
194 smb_fname->twrp,
195 (smb_fname->flags &
196 ~SMB_FILENAME_POSIX_PATH));
198 if (smb_fname_stream == NULL) {
199 DEBUG(0, ("talloc_aprintf failed\n"));
200 status = NT_STATUS_NO_MEMORY;
201 goto fail;
204 res = SMB_VFS_UNLINKAT(conn,
205 conn->cwd_fsp,
206 smb_fname_stream,
209 if (res == -1) {
210 status = map_nt_error_from_unix(errno);
211 DEBUG(10, ("Could not delete stream %s: %s\n",
212 smb_fname_str_dbg(smb_fname_stream),
213 strerror(errno)));
214 TALLOC_FREE(smb_fname_stream);
215 break;
217 TALLOC_FREE(smb_fname_stream);
220 fail:
221 TALLOC_FREE(frame);
222 return status;
225 struct has_other_nonposix_opens_state {
226 files_struct *fsp;
227 bool found_another;
230 static bool has_other_nonposix_opens_fn(
231 struct share_mode_entry *e,
232 bool *modified,
233 void *private_data)
235 struct has_other_nonposix_opens_state *state = private_data;
236 struct files_struct *fsp = state->fsp;
238 if (e->name_hash != fsp->name_hash) {
239 return false;
241 if ((fsp->posix_flags & FSP_POSIX_FLAGS_OPEN) &&
242 (e->flags & SHARE_MODE_FLAG_POSIX_OPEN)) {
243 return false;
245 if (e->share_file_id == fsp->fh->gen_id) {
246 struct server_id self = messaging_server_id(
247 fsp->conn->sconn->msg_ctx);
248 if (server_id_equal(&self, &e->pid)) {
249 return false;
252 if (share_entry_stale_pid(e)) {
253 return false;
256 state->found_another = true;
257 return true;
260 bool has_other_nonposix_opens(struct share_mode_lock *lck,
261 struct files_struct *fsp)
263 struct has_other_nonposix_opens_state state = { .fsp = fsp };
264 bool ok;
266 ok = share_mode_forall_entries(
267 lck, has_other_nonposix_opens_fn, &state);
268 if (!ok) {
269 return false;
271 return state.found_another;
274 /****************************************************************************
275 Deal with removing a share mode on last close.
276 ****************************************************************************/
278 static NTSTATUS close_remove_share_mode(files_struct *fsp,
279 enum file_close_type close_type)
281 connection_struct *conn = fsp->conn;
282 bool delete_file = false;
283 bool changed_user = false;
284 struct share_mode_lock *lck = NULL;
285 NTSTATUS status = NT_STATUS_OK;
286 NTSTATUS tmp_status;
287 struct file_id id;
288 const struct security_unix_token *del_token = NULL;
289 const struct security_token *del_nt_token = NULL;
290 bool got_tokens = false;
291 bool normal_close;
292 int ret;
294 /* Ensure any pending write time updates are done. */
295 if (fsp->update_write_time_event) {
296 fsp_flush_write_time_update(fsp);
300 * Lock the share entries, and determine if we should delete
301 * on close. If so delete whilst the lock is still in effect.
302 * This prevents race conditions with the file being created. JRA.
305 lck = get_existing_share_mode_lock(talloc_tos(), fsp->file_id);
306 if (lck == NULL) {
307 DEBUG(0, ("close_remove_share_mode: Could not get share mode "
308 "lock for file %s\n", fsp_str_dbg(fsp)));
309 return NT_STATUS_INVALID_PARAMETER;
312 /* Remove the oplock before potentially deleting the file. */
313 if(fsp->oplock_type) {
314 remove_oplock(fsp);
317 if (fsp->fsp_flags.write_time_forced) {
318 struct timespec ts;
320 DEBUG(10,("close_remove_share_mode: write time forced "
321 "for file %s\n",
322 fsp_str_dbg(fsp)));
323 ts = nt_time_to_full_timespec(lck->data->changed_write_time);
324 set_close_write_time(fsp, ts);
325 } else if (fsp->fsp_flags.update_write_time_on_close) {
326 /* Someone had a pending write. */
327 if (is_omit_timespec(&fsp->close_write_time)) {
328 DEBUG(10,("close_remove_share_mode: update to current time "
329 "for file %s\n",
330 fsp_str_dbg(fsp)));
331 /* Update to current time due to "normal" write. */
332 set_close_write_time(fsp, timespec_current());
333 } else {
334 DEBUG(10,("close_remove_share_mode: write time pending "
335 "for file %s\n",
336 fsp_str_dbg(fsp)));
337 /* Update to time set on close call. */
338 set_close_write_time(fsp, fsp->close_write_time);
342 if (fsp->fsp_flags.initial_delete_on_close &&
343 !is_delete_on_close_set(lck, fsp->name_hash)) {
344 struct auth_session_info *session_info = NULL;
346 /* Initial delete on close was set and no one else
347 * wrote a real delete on close. */
349 status = smbXsrv_session_info_lookup(conn->sconn->client,
350 fsp->vuid,
351 &session_info);
352 if (!NT_STATUS_IS_OK(status)) {
353 return NT_STATUS_INTERNAL_ERROR;
355 fsp->fsp_flags.delete_on_close = true;
356 set_delete_on_close_lck(fsp, lck,
357 session_info->security_token,
358 session_info->unix_token);
361 delete_file = is_delete_on_close_set(lck, fsp->name_hash) &&
362 !has_other_nonposix_opens(lck, fsp);
365 * NT can set delete_on_close of the last open
366 * reference to a file.
369 normal_close = (close_type == NORMAL_CLOSE || close_type == SHUTDOWN_CLOSE);
371 if (!normal_close || !delete_file) {
372 status = NT_STATUS_OK;
373 goto done;
377 * Ok, we have to delete the file
380 DEBUG(5,("close_remove_share_mode: file %s. Delete on close was set "
381 "- deleting file.\n", fsp_str_dbg(fsp)));
384 * Don't try to update the write time when we delete the file
386 fsp->fsp_flags.update_write_time_on_close = false;
388 got_tokens = get_delete_on_close_token(lck, fsp->name_hash,
389 &del_nt_token, &del_token);
390 SMB_ASSERT(got_tokens);
392 if (!unix_token_equal(del_token, get_current_utok(conn))) {
393 /* Become the user who requested the delete. */
395 DEBUG(5,("close_remove_share_mode: file %s. "
396 "Change user to uid %u\n",
397 fsp_str_dbg(fsp),
398 (unsigned int)del_token->uid));
400 if (!push_sec_ctx()) {
401 smb_panic("close_remove_share_mode: file %s. failed to push "
402 "sec_ctx.\n");
405 set_sec_ctx(del_token->uid,
406 del_token->gid,
407 del_token->ngroups,
408 del_token->groups,
409 del_nt_token);
411 changed_user = true;
414 /* We can only delete the file if the name we have is still valid and
415 hasn't been renamed. */
417 tmp_status = vfs_stat_fsp(fsp);
418 if (!NT_STATUS_IS_OK(tmp_status)) {
419 DEBUG(5,("close_remove_share_mode: file %s. Delete on close "
420 "was set and stat failed with error %s\n",
421 fsp_str_dbg(fsp), nt_errstr(tmp_status)));
423 * Don't save the errno here, we ignore this error
425 goto done;
428 id = vfs_file_id_from_sbuf(conn, &fsp->fsp_name->st);
430 if (!file_id_equal(&fsp->file_id, &id)) {
431 struct file_id_buf ftmp1, ftmp2;
432 DEBUG(5,("close_remove_share_mode: file %s. Delete on close "
433 "was set and dev and/or inode does not match\n",
434 fsp_str_dbg(fsp)));
435 DEBUG(5,("close_remove_share_mode: file %s. stored file_id %s, "
436 "stat file_id %s\n",
437 fsp_str_dbg(fsp),
438 file_id_str_buf(fsp->file_id, &ftmp1),
439 file_id_str_buf(id, &ftmp2)));
441 * Don't save the errno here, we ignore this error
443 goto done;
446 if ((conn->fs_capabilities & FILE_NAMED_STREAMS)
447 && !is_ntfs_stream_smb_fname(fsp->fsp_name)) {
449 status = delete_all_streams(conn, fsp->fsp_name);
451 if (!NT_STATUS_IS_OK(status)) {
452 DEBUG(5, ("delete_all_streams failed: %s\n",
453 nt_errstr(status)));
454 goto done;
458 if (fsp->fsp_flags.kernel_share_modes_taken) {
459 int ret_flock;
462 * A file system sharemode could block the unlink;
463 * remove filesystem sharemodes first.
465 ret_flock = SMB_VFS_KERNEL_FLOCK(fsp, 0, 0);
466 if (ret_flock == -1) {
467 DBG_INFO("removing kernel flock for %s failed: %s\n",
468 fsp_str_dbg(fsp), strerror(errno));
471 fsp->fsp_flags.kernel_share_modes_taken = false;
475 ret = SMB_VFS_UNLINKAT(conn,
476 conn->cwd_fsp,
477 fsp->fsp_name,
479 if (ret != 0) {
481 * This call can potentially fail as another smbd may
482 * have had the file open with delete on close set and
483 * deleted it when its last reference to this file
484 * went away. Hence we log this but not at debug level
485 * zero.
488 DEBUG(5,("close_remove_share_mode: file %s. Delete on close "
489 "was set and unlink failed with error %s\n",
490 fsp_str_dbg(fsp), strerror(errno)));
492 status = map_nt_error_from_unix(errno);
495 /* As we now have POSIX opens which can unlink
496 * with other open files we may have taken
497 * this code path with more than one share mode
498 * entry - ensure we only delete once by resetting
499 * the delete on close flag. JRA.
502 fsp->fsp_flags.delete_on_close = false;
503 reset_delete_on_close_lck(fsp, lck);
505 done:
507 if (changed_user) {
508 /* unbecome user. */
509 pop_sec_ctx();
512 if (fsp->fsp_flags.kernel_share_modes_taken) {
513 int ret_flock;
515 /* remove filesystem sharemodes */
516 ret_flock = SMB_VFS_KERNEL_FLOCK(fsp, 0, 0);
517 if (ret_flock == -1) {
518 DEBUG(2, ("close_remove_share_mode: removing kernel "
519 "flock for %s failed: %s\n",
520 fsp_str_dbg(fsp), strerror(errno)));
524 if (!del_share_mode(lck, fsp)) {
525 DEBUG(0, ("close_remove_share_mode: Could not delete share "
526 "entry for file %s\n", fsp_str_dbg(fsp)));
529 TALLOC_FREE(lck);
531 if (delete_file) {
533 * Do the notification after we released the share
534 * mode lock. Inside notify_fname we take out another
535 * tdb lock. With ctdb also accessing our databases,
536 * this can lead to deadlocks. Putting this notify
537 * after the TALLOC_FREE(lck) above we avoid locking
538 * two records simultaneously. Notifies are async and
539 * informational only, so calling the notify_fname
540 * without holding the share mode lock should not do
541 * any harm.
543 notify_fname(conn, NOTIFY_ACTION_REMOVED,
544 FILE_NOTIFY_CHANGE_FILE_NAME,
545 fsp->fsp_name->base_name);
548 return status;
551 void set_close_write_time(struct files_struct *fsp, struct timespec ts)
553 DEBUG(6,("close_write_time: %s" , time_to_asc(convert_timespec_to_time_t(ts))));
555 if (is_omit_timespec(&ts)) {
556 return;
558 fsp->fsp_flags.write_time_forced = false;
559 fsp->fsp_flags.update_write_time_on_close = true;
560 fsp->close_write_time = ts;
563 static NTSTATUS update_write_time_on_close(struct files_struct *fsp)
565 struct smb_file_time ft;
566 NTSTATUS status;
567 struct share_mode_lock *lck = NULL;
569 init_smb_file_time(&ft);
571 if (!(fsp->fsp_flags.update_write_time_on_close)) {
572 return NT_STATUS_OK;
575 if (is_omit_timespec(&fsp->close_write_time)) {
576 fsp->close_write_time = timespec_current();
579 /* Ensure we have a valid stat struct for the source. */
580 status = vfs_stat_fsp(fsp);
581 if (!NT_STATUS_IS_OK(status)) {
582 return status;
585 if (!VALID_STAT(fsp->fsp_name->st)) {
586 /* if it doesn't seem to be a real file */
587 return NT_STATUS_OK;
591 * get_existing_share_mode_lock() isn't really the right
592 * call here, as we're being called after
593 * close_remove_share_mode() inside close_normal_file()
594 * so it's quite normal to not have an existing share
595 * mode here. However, get_share_mode_lock() doesn't
596 * work because that will create a new share mode if
597 * one doesn't exist - so stick with this call (just
598 * ignore any error we get if the share mode doesn't
599 * exist.
602 lck = get_existing_share_mode_lock(talloc_tos(), fsp->file_id);
603 if (lck) {
604 /* On close if we're changing the real file time we
605 * must update it in the open file db too. */
606 (void)set_write_time(fsp->file_id, fsp->close_write_time);
608 /* Close write times overwrite sticky write times
609 so we must replace any sticky write time here. */
610 if (!null_nttime(lck->data->changed_write_time)) {
611 (void)set_sticky_write_time(fsp->file_id, fsp->close_write_time);
613 TALLOC_FREE(lck);
616 ft.mtime = fsp->close_write_time;
617 /* As this is a close based update, we are not directly changing the
618 file attributes from a client call, but indirectly from a write. */
619 status = smb_set_file_time(fsp->conn, fsp, fsp->fsp_name, &ft, false);
620 if (!NT_STATUS_IS_OK(status)) {
621 DEBUG(10,("update_write_time_on_close: smb_set_file_time "
622 "on file %s returned %s\n",
623 fsp_str_dbg(fsp),
624 nt_errstr(status)));
625 return status;
628 return status;
631 static NTSTATUS ntstatus_keeperror(NTSTATUS s1, NTSTATUS s2)
633 if (!NT_STATUS_IS_OK(s1)) {
634 return s1;
636 return s2;
639 static void assert_no_pending_aio(struct files_struct *fsp,
640 enum file_close_type close_type)
642 unsigned num_requests = fsp->num_aio_requests;
644 if (num_requests == 0) {
645 return;
648 DBG_ERR("fsp->num_aio_requests=%u\n", num_requests);
649 smb_panic("can not close with outstanding aio requests");
650 return;
653 /****************************************************************************
654 Close a file.
656 close_type can be NORMAL_CLOSE=0,SHUTDOWN_CLOSE,ERROR_CLOSE.
657 printing and magic scripts are only run on normal close.
658 delete on close is done on normal and shutdown close.
659 ****************************************************************************/
661 static NTSTATUS close_normal_file(struct smb_request *req, files_struct *fsp,
662 enum file_close_type close_type)
664 NTSTATUS status = NT_STATUS_OK;
665 NTSTATUS tmp;
666 connection_struct *conn = fsp->conn;
667 bool is_durable = false;
669 assert_no_pending_aio(fsp, close_type);
671 while (talloc_array_length(fsp->blocked_smb1_lock_reqs) != 0) {
672 smbd_smb1_brl_finish_by_req(
673 fsp->blocked_smb1_lock_reqs[0],
674 NT_STATUS_RANGE_NOT_LOCKED);
678 * If we're flushing on a close we can get a write
679 * error here, we must remember this.
682 if (NT_STATUS_IS_OK(status) && fsp->op != NULL) {
683 is_durable = fsp->op->global->durable;
686 if (close_type != SHUTDOWN_CLOSE) {
687 is_durable = false;
690 if (is_durable) {
691 DATA_BLOB new_cookie = data_blob_null;
693 tmp = SMB_VFS_DURABLE_DISCONNECT(fsp,
694 fsp->op->global->backend_cookie,
695 fsp->op,
696 &new_cookie);
697 if (NT_STATUS_IS_OK(tmp)) {
698 struct timeval tv;
699 NTTIME now;
701 if (req != NULL) {
702 tv = req->request_time;
703 } else {
704 tv = timeval_current();
706 now = timeval_to_nttime(&tv);
708 data_blob_free(&fsp->op->global->backend_cookie);
709 fsp->op->global->backend_cookie = new_cookie;
711 fsp->op->compat = NULL;
712 tmp = smbXsrv_open_close(fsp->op, now);
713 if (!NT_STATUS_IS_OK(tmp)) {
714 DEBUG(1, ("Failed to update smbXsrv_open "
715 "record when disconnecting durable "
716 "handle for file %s: %s - "
717 "proceeding with normal close\n",
718 fsp_str_dbg(fsp), nt_errstr(tmp)));
720 scavenger_schedule_disconnected(fsp);
721 } else {
722 DEBUG(1, ("Failed to disconnect durable handle for "
723 "file %s: %s - proceeding with normal "
724 "close\n", fsp_str_dbg(fsp), nt_errstr(tmp)));
726 if (!NT_STATUS_IS_OK(tmp)) {
727 is_durable = false;
731 if (is_durable) {
733 * This is the case where we successfully disconnected
734 * a durable handle and closed the underlying file.
735 * In all other cases, we proceed with a genuine close.
737 DEBUG(10, ("%s disconnected durable handle for file %s\n",
738 conn->session_info->unix_info->unix_name,
739 fsp_str_dbg(fsp)));
740 file_free(req, fsp);
741 return NT_STATUS_OK;
744 if (fsp->op != NULL) {
746 * Make sure the handle is not marked as durable anymore
748 fsp->op->global->durable = false;
751 if (fsp->print_file) {
752 /* FIXME: return spool errors */
753 print_spool_end(fsp, close_type);
754 file_free(req, fsp);
755 return NT_STATUS_OK;
758 /* If this is an old DOS or FCB open and we have multiple opens on
759 the same handle we only have one share mode. Ensure we only remove
760 the share mode on the last close. */
762 if (fsp->fh->ref_count == 1) {
763 /* Should we return on error here... ? */
764 tmp = close_remove_share_mode(fsp, close_type);
765 status = ntstatus_keeperror(status, tmp);
768 locking_close_file(fsp, close_type);
770 tmp = fd_close(fsp);
771 status = ntstatus_keeperror(status, tmp);
773 /* check for magic scripts */
774 if (close_type == NORMAL_CLOSE) {
775 tmp = check_magic(fsp);
776 status = ntstatus_keeperror(status, tmp);
780 * Ensure pending modtime is set after close.
783 tmp = update_write_time_on_close(fsp);
784 if (NT_STATUS_EQUAL(tmp, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
785 /* Someone renamed the file or a parent directory containing
786 * this file. We can't do anything about this, we don't have
787 * an "update timestamp by fd" call in POSIX. Eat the error. */
789 tmp = NT_STATUS_OK;
792 status = ntstatus_keeperror(status, tmp);
794 DEBUG(2,("%s closed file %s (numopen=%d) %s\n",
795 conn->session_info->unix_info->unix_name, fsp_str_dbg(fsp),
796 conn->num_files_open - 1,
797 nt_errstr(status) ));
799 file_free(req, fsp);
800 return status;
802 /****************************************************************************
803 Function used by reply_rmdir to delete an entire directory
804 tree recursively. Return True on ok, False on fail.
805 ****************************************************************************/
807 bool recursive_rmdir(TALLOC_CTX *ctx,
808 connection_struct *conn,
809 struct smb_filename *smb_dname)
811 const char *dname = NULL;
812 char *talloced = NULL;
813 bool ret = True;
814 long offset = 0;
815 SMB_STRUCT_STAT st;
816 struct smb_Dir *dir_hnd;
817 int retval;
819 SMB_ASSERT(!is_ntfs_stream_smb_fname(smb_dname));
821 dir_hnd = OpenDir(talloc_tos(), conn, smb_dname, NULL, 0);
822 if(dir_hnd == NULL)
823 return False;
825 while((dname = ReadDirName(dir_hnd, &offset, &st, &talloced))) {
826 struct smb_filename *smb_dname_full = NULL;
827 char *fullname = NULL;
828 bool do_break = true;
830 if (ISDOT(dname) || ISDOTDOT(dname)) {
831 TALLOC_FREE(talloced);
832 continue;
835 if (!is_visible_file(conn,
836 dir_hnd,
837 dname,
838 &st,
839 false)) {
840 TALLOC_FREE(talloced);
841 continue;
844 /* Construct the full name. */
845 fullname = talloc_asprintf(ctx,
846 "%s/%s",
847 smb_dname->base_name,
848 dname);
849 if (!fullname) {
850 errno = ENOMEM;
851 goto err_break;
854 smb_dname_full = synthetic_smb_fname(talloc_tos(),
855 fullname,
856 NULL,
857 NULL,
858 smb_dname->twrp,
859 smb_dname->flags);
860 if (smb_dname_full == NULL) {
861 errno = ENOMEM;
862 goto err_break;
865 if(SMB_VFS_LSTAT(conn, smb_dname_full) != 0) {
866 goto err_break;
869 if(smb_dname_full->st.st_ex_mode & S_IFDIR) {
870 if(!recursive_rmdir(ctx, conn, smb_dname_full)) {
871 goto err_break;
873 retval = SMB_VFS_UNLINKAT(conn,
874 conn->cwd_fsp,
875 smb_dname_full,
876 AT_REMOVEDIR);
877 if (retval != 0) {
878 goto err_break;
880 } else {
881 retval = SMB_VFS_UNLINKAT(conn,
882 conn->cwd_fsp,
883 smb_dname_full,
885 if (retval != 0) {
886 goto err_break;
890 /* Successful iteration. */
891 do_break = false;
893 err_break:
894 TALLOC_FREE(smb_dname_full);
895 TALLOC_FREE(fullname);
896 TALLOC_FREE(talloced);
897 if (do_break) {
898 ret = false;
899 break;
902 TALLOC_FREE(dir_hnd);
903 return ret;
906 /****************************************************************************
907 The internals of the rmdir code - called elsewhere.
908 ****************************************************************************/
910 static NTSTATUS rmdir_internals(TALLOC_CTX *ctx, files_struct *fsp)
912 connection_struct *conn = fsp->conn;
913 struct smb_filename *smb_dname = fsp->fsp_name;
914 const struct loadparm_substitution *lp_sub =
915 loadparm_s3_global_substitution();
916 int ret;
918 SMB_ASSERT(!is_ntfs_stream_smb_fname(smb_dname));
920 /* Might be a symlink. */
921 if(SMB_VFS_LSTAT(conn, smb_dname) != 0) {
922 return map_nt_error_from_unix(errno);
925 if (S_ISLNK(smb_dname->st.st_ex_mode)) {
926 /* Is what it points to a directory ? */
927 if(SMB_VFS_STAT(conn, smb_dname) != 0) {
928 return map_nt_error_from_unix(errno);
930 if (!(S_ISDIR(smb_dname->st.st_ex_mode))) {
931 return NT_STATUS_NOT_A_DIRECTORY;
933 ret = SMB_VFS_UNLINKAT(conn,
934 conn->cwd_fsp,
935 smb_dname,
937 } else {
938 ret = SMB_VFS_UNLINKAT(conn,
939 conn->cwd_fsp,
940 smb_dname,
941 AT_REMOVEDIR);
943 if (ret == 0) {
944 notify_fname(conn, NOTIFY_ACTION_REMOVED,
945 FILE_NOTIFY_CHANGE_DIR_NAME,
946 smb_dname->base_name);
947 return NT_STATUS_OK;
950 if(((errno == ENOTEMPTY)||(errno == EEXIST)) && *lp_veto_files(talloc_tos(), lp_sub, SNUM(conn))) {
952 * Check to see if the only thing in this directory are
953 * vetoed files/directories. If so then delete them and
954 * retry. If we fail to delete any of them (and we *don't*
955 * do a recursive delete) then fail the rmdir.
957 SMB_STRUCT_STAT st;
958 const char *dname = NULL;
959 char *talloced = NULL;
960 long dirpos = 0;
961 struct smb_Dir *dir_hnd = OpenDir(talloc_tos(), conn,
962 smb_dname, NULL,
965 if(dir_hnd == NULL) {
966 errno = ENOTEMPTY;
967 goto err;
970 while ((dname = ReadDirName(dir_hnd, &dirpos, &st,
971 &talloced)) != NULL) {
972 if((strcmp(dname, ".") == 0) || (strcmp(dname, "..")==0)) {
973 TALLOC_FREE(talloced);
974 continue;
976 if (!is_visible_file(conn,
977 dir_hnd,
978 dname,
979 &st,
980 false)) {
981 TALLOC_FREE(talloced);
982 continue;
984 if(!IS_VETO_PATH(conn, dname)) {
985 TALLOC_FREE(dir_hnd);
986 TALLOC_FREE(talloced);
987 errno = ENOTEMPTY;
988 goto err;
990 TALLOC_FREE(talloced);
993 /* We only have veto files/directories.
994 * Are we allowed to delete them ? */
996 if(!lp_delete_veto_files(SNUM(conn))) {
997 TALLOC_FREE(dir_hnd);
998 errno = ENOTEMPTY;
999 goto err;
1002 /* Do a recursive delete. */
1003 RewindDir(dir_hnd,&dirpos);
1004 while ((dname = ReadDirName(dir_hnd, &dirpos, &st,
1005 &talloced)) != NULL) {
1006 struct smb_filename *smb_dname_full = NULL;
1007 char *fullname = NULL;
1008 bool do_break = true;
1010 if (ISDOT(dname) || ISDOTDOT(dname)) {
1011 TALLOC_FREE(talloced);
1012 continue;
1014 if (!is_visible_file(conn,
1015 dir_hnd,
1016 dname,
1017 &st,
1018 false)) {
1019 TALLOC_FREE(talloced);
1020 continue;
1023 fullname = talloc_asprintf(ctx,
1024 "%s/%s",
1025 smb_dname->base_name,
1026 dname);
1028 if(!fullname) {
1029 errno = ENOMEM;
1030 goto err_break;
1033 smb_dname_full = synthetic_smb_fname(talloc_tos(),
1034 fullname,
1035 NULL,
1036 NULL,
1037 smb_dname->twrp,
1038 smb_dname->flags);
1039 if (smb_dname_full == NULL) {
1040 errno = ENOMEM;
1041 goto err_break;
1044 if(SMB_VFS_LSTAT(conn, smb_dname_full) != 0) {
1045 goto err_break;
1047 if(smb_dname_full->st.st_ex_mode & S_IFDIR) {
1048 int retval;
1049 if(!recursive_rmdir(ctx, conn,
1050 smb_dname_full)) {
1051 goto err_break;
1053 retval = SMB_VFS_UNLINKAT(conn,
1054 conn->cwd_fsp,
1055 smb_dname_full,
1056 AT_REMOVEDIR);
1057 if(retval != 0) {
1058 goto err_break;
1060 } else {
1061 int retval = SMB_VFS_UNLINKAT(conn,
1062 conn->cwd_fsp,
1063 smb_dname_full,
1065 if(retval != 0) {
1066 goto err_break;
1070 /* Successful iteration. */
1071 do_break = false;
1073 err_break:
1074 TALLOC_FREE(fullname);
1075 TALLOC_FREE(smb_dname_full);
1076 TALLOC_FREE(talloced);
1077 if (do_break)
1078 break;
1080 TALLOC_FREE(dir_hnd);
1081 /* Retry the rmdir */
1082 ret = SMB_VFS_UNLINKAT(conn,
1083 conn->cwd_fsp,
1084 smb_dname,
1085 AT_REMOVEDIR);
1088 err:
1090 if (ret != 0) {
1091 DEBUG(3,("rmdir_internals: couldn't remove directory %s : "
1092 "%s\n", smb_fname_str_dbg(smb_dname),
1093 strerror(errno)));
1094 return map_nt_error_from_unix(errno);
1097 notify_fname(conn, NOTIFY_ACTION_REMOVED,
1098 FILE_NOTIFY_CHANGE_DIR_NAME,
1099 smb_dname->base_name);
1101 return NT_STATUS_OK;
1104 /****************************************************************************
1105 Close a directory opened by an NT SMB call.
1106 ****************************************************************************/
1108 static NTSTATUS close_directory(struct smb_request *req, files_struct *fsp,
1109 enum file_close_type close_type)
1111 struct share_mode_lock *lck = NULL;
1112 bool delete_dir = False;
1113 NTSTATUS status = NT_STATUS_OK;
1114 NTSTATUS status1 = NT_STATUS_OK;
1115 const struct security_token *del_nt_token = NULL;
1116 const struct security_unix_token *del_token = NULL;
1117 NTSTATUS notify_status;
1119 if (fsp->conn->sconn->using_smb2) {
1120 notify_status = STATUS_NOTIFY_CLEANUP;
1121 } else {
1122 notify_status = NT_STATUS_OK;
1125 assert_no_pending_aio(fsp, close_type);
1128 * NT can set delete_on_close of the last open
1129 * reference to a directory also.
1132 lck = get_existing_share_mode_lock(talloc_tos(), fsp->file_id);
1133 if (lck == NULL) {
1134 DEBUG(0, ("close_directory: Could not get share mode lock for "
1135 "%s\n", fsp_str_dbg(fsp)));
1136 file_free(req, fsp);
1137 return NT_STATUS_INVALID_PARAMETER;
1140 if (fsp->fsp_flags.initial_delete_on_close) {
1141 struct auth_session_info *session_info = NULL;
1143 /* Initial delete on close was set - for
1144 * directories we don't care if anyone else
1145 * wrote a real delete on close. */
1147 status = smbXsrv_session_info_lookup(fsp->conn->sconn->client,
1148 fsp->vuid,
1149 &session_info);
1150 if (!NT_STATUS_IS_OK(status)) {
1151 return NT_STATUS_INTERNAL_ERROR;
1154 send_stat_cache_delete_message(fsp->conn->sconn->msg_ctx,
1155 fsp->fsp_name->base_name);
1156 set_delete_on_close_lck(fsp, lck,
1157 session_info->security_token,
1158 session_info->unix_token);
1159 fsp->fsp_flags.delete_on_close = true;
1162 delete_dir = get_delete_on_close_token(
1163 lck, fsp->name_hash, &del_nt_token, &del_token) &&
1164 !has_other_nonposix_opens(lck, fsp);
1166 if ((close_type == NORMAL_CLOSE || close_type == SHUTDOWN_CLOSE) &&
1167 delete_dir) {
1169 /* Become the user who requested the delete. */
1171 if (!push_sec_ctx()) {
1172 smb_panic("close_directory: failed to push sec_ctx.\n");
1175 set_sec_ctx(del_token->uid,
1176 del_token->gid,
1177 del_token->ngroups,
1178 del_token->groups,
1179 del_nt_token);
1181 if (!del_share_mode(lck, fsp)) {
1182 DEBUG(0, ("close_directory: Could not delete share entry for "
1183 "%s\n", fsp_str_dbg(fsp)));
1186 TALLOC_FREE(lck);
1188 if ((fsp->conn->fs_capabilities & FILE_NAMED_STREAMS)
1189 && !is_ntfs_stream_smb_fname(fsp->fsp_name)) {
1191 status = delete_all_streams(fsp->conn, fsp->fsp_name);
1192 if (!NT_STATUS_IS_OK(status)) {
1193 DEBUG(5, ("delete_all_streams failed: %s\n",
1194 nt_errstr(status)));
1195 file_free(req, fsp);
1196 return status;
1200 status = rmdir_internals(talloc_tos(), fsp);
1202 DEBUG(5,("close_directory: %s. Delete on close was set - "
1203 "deleting directory returned %s.\n",
1204 fsp_str_dbg(fsp), nt_errstr(status)));
1206 /* unbecome user. */
1207 pop_sec_ctx();
1210 * Ensure we remove any change notify requests that would
1211 * now fail as the directory has been deleted.
1214 if (NT_STATUS_IS_OK(status)) {
1215 notify_status = NT_STATUS_DELETE_PENDING;
1217 } else {
1218 if (!del_share_mode(lck, fsp)) {
1219 DEBUG(0, ("close_directory: Could not delete share entry for "
1220 "%s\n", fsp_str_dbg(fsp)));
1223 TALLOC_FREE(lck);
1226 remove_pending_change_notify_requests_by_fid(fsp, notify_status);
1228 status1 = fd_close(fsp);
1230 if (!NT_STATUS_IS_OK(status1)) {
1231 DEBUG(0, ("Could not close dir! fname=%s, fd=%d, err=%d=%s\n",
1232 fsp_str_dbg(fsp), fsp->fh->fd, errno,
1233 strerror(errno)));
1237 * Do the code common to files and directories.
1239 file_free(req, fsp);
1241 if (NT_STATUS_IS_OK(status) && !NT_STATUS_IS_OK(status1)) {
1242 status = status1;
1244 return status;
1247 /****************************************************************************
1248 Close a files_struct.
1249 ****************************************************************************/
1251 NTSTATUS close_file(struct smb_request *req, files_struct *fsp,
1252 enum file_close_type close_type)
1254 NTSTATUS status;
1255 struct files_struct *base_fsp = fsp->base_fsp;
1257 if (fsp->fsp_flags.is_dirfsp) {
1259 * The typical way to get here is via file_close_[conn|user]()
1260 * and this is taken care of below.
1262 return NT_STATUS_OK;
1265 if (fsp->dirfsp != NULL &&
1266 fsp->dirfsp != fsp->conn->cwd_fsp)
1268 status = fd_close(fsp->dirfsp);
1269 if (!NT_STATUS_IS_OK(status)) {
1270 return status;
1273 file_free(NULL, fsp->dirfsp);
1274 fsp->dirfsp = NULL;
1277 if (fsp->fsp_flags.is_directory) {
1278 status = close_directory(req, fsp, close_type);
1279 } else if (fsp->fake_file_handle != NULL) {
1280 status = close_fake_file(req, fsp);
1281 } else {
1282 status = close_normal_file(req, fsp, close_type);
1285 if ((base_fsp != NULL) && (close_type != SHUTDOWN_CLOSE)) {
1288 * fsp was a stream, the base fsp can't be a stream as well
1290 * For SHUTDOWN_CLOSE this is not possible here, because
1291 * SHUTDOWN_CLOSE only happens from files.c which walks the
1292 * complete list of files. If we mess with more than one fsp
1293 * those loops will become confused.
1296 SMB_ASSERT(base_fsp->base_fsp == NULL);
1297 close_file(req, base_fsp, close_type);
1300 return status;
1303 /****************************************************************************
1304 Deal with an (authorized) message to close a file given the share mode
1305 entry.
1306 ****************************************************************************/
1308 void msg_close_file(struct messaging_context *msg_ctx,
1309 void *private_data,
1310 uint32_t msg_type,
1311 struct server_id server_id,
1312 DATA_BLOB *data)
1314 files_struct *fsp = NULL;
1315 struct file_id id;
1316 struct share_mode_entry e;
1317 struct smbd_server_connection *sconn =
1318 talloc_get_type_abort(private_data,
1319 struct smbd_server_connection);
1321 message_to_share_mode_entry(&id, &e, (char *)data->data);
1323 if(DEBUGLVL(10)) {
1324 char *sm_str = share_mode_str(NULL, 0, &id, &e);
1325 if (!sm_str) {
1326 smb_panic("talloc failed");
1328 DEBUG(10,("msg_close_file: got request to close share mode "
1329 "entry %s\n", sm_str));
1330 TALLOC_FREE(sm_str);
1333 fsp = file_find_dif(sconn, id, e.share_file_id);
1334 if (!fsp) {
1335 DEBUG(10,("msg_close_file: failed to find file.\n"));
1336 return;
1338 close_file(NULL, fsp, NORMAL_CLOSE);