mirror of
https://github.com/samba-team/samba.git
synced 2025-03-05 20:58:40 +03:00
s3/libsmb: Explicitly set delete_on_close token for rmdir
The current implementation of `rmdir` hopes to get the directory deleted on closing last open handle when FILE_DELETE_ON_CLOSE is set on it. But for non-empty directories Windows doesn't error out during an open call. Following that we internally refuse to set initial delete_on_close while opening a non-empty directory. This prevents us from trying to delete the directory when last open handle is closed. Instead of relying on FILE_DELETE_ON_CLOSE during an open we explicitly set delete_on_close token on directory handle once it is available. This ensures that NT_STATUS_DIRECTORY_NOT_EMPTY is returned for `rmdir` on non-empty directories while closing open directory handle. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13204 Signed-off-by: Anoop C S <anoopcs@redhat.com> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
parent
75287495f2
commit
6b68e3eca6
@ -683,7 +683,7 @@ NTSTATUS cli_smb2_rmdir(struct cli_state *cli, const char *dname)
|
||||
FILE_ATTRIBUTE_DIRECTORY, /* file attributes */
|
||||
FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE, /* share_access */
|
||||
FILE_OPEN, /* create_disposition */
|
||||
FILE_DIRECTORY_FILE|FILE_DELETE_ON_CLOSE, /* create_options */
|
||||
FILE_DIRECTORY_FILE, /* create_options */
|
||||
&fnum,
|
||||
NULL);
|
||||
|
||||
@ -711,6 +711,13 @@ NTSTATUS cli_smb2_rmdir(struct cli_state *cli, const char *dname)
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
}
|
||||
|
||||
status = cli_smb2_delete_on_close(cli, fnum, true);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
cli_smb2_close_fnum(cli, fnum);
|
||||
return status;
|
||||
}
|
||||
|
||||
return cli_smb2_close_fnum(cli, fnum);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user