Fix bug 9633: recursive mget should continue on EPERM
authorDavid Disseldorp <ddiss@samba.org>
Mon, 4 Feb 2013 18:04:39 +0000 (19:04 +0100)
committerKarolin Seeger <kseeger@samba.org>
Tue, 12 Feb 2013 20:06:53 +0000 (21:06 +0100)
Regression introduced by 14ff2e8de9bd8d0064762234555260f5eea643fe.
When downloading files recursively, smbclient halts if it encounters
a folder to which it does not have permission to traverse.

source3/client/client.c

index ab0e77f50a5cdd9a53aa80892d5803791f5f461c..49519afddb5ca9bbafb8417cc134cac2908e0158 100644 (file)
@@ -1325,8 +1325,17 @@ static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
                return NT_STATUS_NO_MEMORY;
        }
 
-       status = do_list(mget_mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,do_mget,false, true);
-       if (!NT_STATUS_IS_OK(status)) {
+       status = do_list(mget_mask,
+                        (FILE_ATTRIBUTE_SYSTEM
+                         | FILE_ATTRIBUTE_HIDDEN
+                         | FILE_ATTRIBUTE_DIRECTORY),
+                        do_mget, false, true);
+       if (!NT_STATUS_IS_OK(status)
+        && !NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
+               /*
+                * Ignore access denied errors to ensure all permitted files are
+                * pulled down.
+                */
                return status;
        }