Fix bug #6082 - smbd_gpfs_getacl failed: Windows client canĀ“t rename or
authorJeremy Allison <jra@samba.org>
Sat, 28 Feb 2009 21:14:23 +0000 (13:14 -0800)
committerJeremy Allison <jra@samba.org>
Sat, 28 Feb 2009 21:14:23 +0000 (13:14 -0800)
delete file (directory fix).
Jeremy.

source3/smbd/open.c

index a42705adb6e83a3753c7acae1a4d61097d1853d4..569c2603192f811aef1c35299bda198a5e0e02ab 100644 (file)
@@ -2457,6 +2457,25 @@ static NTSTATUS open_directory(connection_struct *conn,
                                        fname,
                                        access_mask,
                                        &access_granted);
+
+               /* Were we trying to do a directory open
+                * for delete and didn't get DELETE
+                * access (only) ? Check if the
+                * directory allows DELETE_CHILD.
+                * See here:
+                * http://blogs.msdn.com/oldnewthing/archive/2004/06/04/148426.aspx
+                * for details. */
+
+               if ((NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED) &&
+                               (access_mask & DELETE_ACCESS) &&
+                               (access_granted == DELETE_ACCESS) &&
+                               can_delete_file_in_directory(conn, fname))) {
+                       DEBUG(10,("open_directory: overrode ACCESS_DENIED "
+                               "on directory %s\n",
+                               fname ));
+                       status = NT_STATUS_OK;
+               }
+
                if (!NT_STATUS_IS_OK(status)) {
                        DEBUG(10, ("open_directory: check_open_rights on "
                                "file %s failed with %s\n",