smbd: unix_convert: Ensure we don't call get_real_filename on POSIX paths.
authorJeremy Allison <jra@samba.org>
Sat, 23 Feb 2019 20:24:31 +0000 (12:24 -0800)
committerKarolin Seeger <kseeger@samba.org>
Mon, 4 Mar 2019 10:37:56 +0000 (10:37 +0000)
For posix_pathnames don't blunder into the name_has_wildcard OR
get_real_filename() codepaths as they may be doing case insensitive lookups.
So when creating a new POSIX directory 'Foo' they might
match on name 'foo'.

Remove POSIX-MKDIR from knownfail.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13803

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Sun Feb 24 14:04:14 CET 2019 on sn-devel-144

(cherry picked from commit 12da33e2bbce657f25abe9bc4cb936ca4615b30f)

selftest/knownfail
source3/smbd/filename.c

index 951fbdd758e0f94e71f7011343a5f0d61c58e7dc..baf3d57a31a0f58e565018ef8709adc3399b42ac 100644 (file)
@@ -9,7 +9,6 @@
  ^samba3.smbtorture_s3.crypt_server\(nt4_dc\).SMB2-SESSION-REAUTH # expected to give ACCESS_DENIED SMB2.1 doesn't have encryption
 ^samba3.smbtorture_s3.crypt_server\(nt4_dc\).SMB2-SESSION-RECONNECT # expected to give CONNECTION_DISCONNECTED, we need to fix the test
 ^samba3.smbtorture_s3.*ad_dc_ntvfs.*SMB2-DIR-FSYNC.*
-^samba3.smbtorture_s3.*.POSIX-MKDIR
 ^samba3.smb2.session enc.reconnect # expected to give CONNECTION_DISCONNECTED, we need to fix the test
 ^samba3.raw.session enc # expected to give ACCESS_DENIED as SMB1 encryption isn't used
 ^samba3.smbtorture_s3.crypt_server # expected to give ACCESS_DENIED as SMB1 encryption isn't used
index ffc33f30c7074248b5f91f92deee701de0c23f5e..d4059956b4a19cd49ad8959032fa978e11ba56e7 100644 (file)
@@ -906,6 +906,31 @@ NTSTATUS unix_convert(TALLOC_CTX *ctx,
                        /* Stat failed - ensure we don't use it. */
                        SET_STAT_INVALID(smb_fname->st);
 
+                       if (posix_pathnames) {
+                               /*
+                                * For posix_pathnames, we're done.
+                                * Don't blunder into the name_has_wildcard OR
+                                * get_real_filename() codepaths as they may
+                                * be doing case insensitive lookups. So when
+                                * creating a new POSIX directory Foo they might
+                                * match on name foo.
+                                *
+                                * BUG: https://bugzilla.samba.org/show_bug.cgi?id=13803
+                                */
+                               if (errno == ENOENT) {
+                                       /* New file or directory. */
+                                       goto done;
+                               }
+                               if ((errno == EACCES) &&
+                                   (ucf_flags & UCF_PREP_CREATEFILE)) {
+                                       /* POSIX Dropbox case. */
+                                       errno = 0;
+                                       goto done;
+                               }
+                               status = map_nt_error_from_unix(errno);
+                               goto fail;
+                       }
+
                        /*
                         * Reset errno so we can detect
                         * directory open errors.