From 94c6fde541f2f8c5b93f8c779f0a1714a446e490 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 12 Nov 2004 02:45:52 +0000 Subject: r3694: added support for the RENAME_INFORMATION level of setfileinfo and setpathinfo. pvfs now passes the RAW-SFILEINFO test. (This used to be commit 31ac31398ba52dfc554e58edaa7ae257caf5fdc6) --- source4/ntvfs/posix/pvfs_resolve.c | 2 +- source4/ntvfs/posix/pvfs_setfileinfo.c | 58 ++++++++++++++++++++++++++++------ 2 files changed, 49 insertions(+), 11 deletions(-) (limited to 'source4/ntvfs/posix') diff --git a/source4/ntvfs/posix/pvfs_resolve.c b/source4/ntvfs/posix/pvfs_resolve.c index 5c650440c3..354cdd4bb4 100644 --- a/source4/ntvfs/posix/pvfs_resolve.c +++ b/source4/ntvfs/posix/pvfs_resolve.c @@ -527,7 +527,7 @@ NTSTATUS pvfs_resolve_name_fd(struct pvfs_state *pvfs, int fd, be someone trying to exploit a race condition. Certainly we don't want to continue operating on this file */ - DEBUG(0,("pvfs: WARNING: file '%s' changed during resole - failing\n", + DEBUG(0,("pvfs: WARNING: file '%s' changed during resolve - failing\n", name->full_name)); return NT_STATUS_UNEXPECTED_IO_ERROR; } diff --git a/source4/ntvfs/posix/pvfs_setfileinfo.c b/source4/ntvfs/posix/pvfs_setfileinfo.c index a550fb03e4..391a2e9d82 100644 --- a/source4/ntvfs/posix/pvfs_setfileinfo.c +++ b/source4/ntvfs/posix/pvfs_setfileinfo.c @@ -34,10 +34,9 @@ static NTSTATUS pvfs_setfileinfo_rename(struct pvfs_state *pvfs, struct pvfs_filename *name, struct smb_rename_information *r) { -#if 0 NTSTATUS status; struct pvfs_filename *name2; - char *base_dir, *p; + char *new_name, *p; /* renames are only allowed within a directory */ if (strchr_m(r->new_name, '\\')) { @@ -49,22 +48,61 @@ static NTSTATUS pvfs_setfileinfo_rename(struct pvfs_state *pvfs, return NT_STATUS_FILE_IS_A_DIRECTORY; } - /* work out the base directory that the source file is in */ - base_dir = talloc_strdup(name, name->full_name); - p = strrchr(base_dir, '/'); + /* w2k3 does not appear to allow relative rename */ + if (r->root_fid != 0) { + return NT_STATUS_INVALID_PARAMETER; + } + + /* construct the fully qualified windows name for the new file name */ + new_name = talloc_strdup(req, name->original_name); + if (new_name == NULL) { + return NT_STATUS_NO_MEMORY; + } + p = strrchr_m(new_name, '\\'); + if (p == NULL) { + return NT_STATUS_OBJECT_NAME_INVALID; + } *p = 0; + new_name = talloc_asprintf(req, "%s\\%s", new_name, r->new_name); + if (new_name == NULL) { + return NT_STATUS_NO_MEMORY; + } + /* resolve the new name */ - status = pvfs_resolve_partial(pvfs, req, base_dir, r->new_name, &name2); + status = pvfs_resolve_name(pvfs, name, new_name, PVFS_RESOLVE_NO_WILDCARD, &name2); if (!NT_STATUS_IS_OK(status)) { return status; } - if (name2->exists && !r->overwrite) { - return NT_STATUS_OBJECT_NAME_COLLISION; + /* if the destination exists, then check the rename is allowed */ + if (name2->exists) { + if (strcmp(name2->full_name, name->full_name) == 0) { + /* rename to same name is null-op */ + return NT_STATUS_OK; + } + + if (!r->overwrite) { + return NT_STATUS_OBJECT_NAME_COLLISION; + } + + status = pvfs_can_delete(pvfs, name2); + if (NT_STATUS_EQUAL(status, NT_STATUS_SHARING_VIOLATION)) { + return NT_STATUS_ACCESS_DENIED; + } + if (!NT_STATUS_IS_OK(status)) { + return status; + } + } + + if (rename(name->full_name, name2->full_name) == -1) { + return map_nt_error_from_unix(errno); } -#endif - return NT_STATUS_UNSUCCESSFUL; + + name->full_name = talloc_steal(name, name2->full_name); + name->original_name = talloc_steal(name, name2->original_name); + + return NT_STATUS_OK; } /* -- cgit