All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [CIFS] ls on mounts to WindowsCE failing with invalid level message
@ 2011-08-24  3:16 Steve French
       [not found] ` <CAH2r5mvmVNySCiSMc9Bz=yi4Zhzg=sYwxLSpiwapAyn6-HEqDQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Steve French @ 2011-08-24  3:16 UTC (permalink / raw)
  To: linux-cifs-u79uwXL29TY76Z2rM5mHXA

>From 9b7b518633fd3187c7efe260fe20a0961e4a5f0b Mon Sep 17 00:00:00 2001
From: Steve French <sfrench-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Date: Tue, 23 Aug 2011 22:00:26 -0500
Subject: [CIFS] ls on mounts to WindowsCE failing with invalid level message

Mount succeeds to WindowsCE but when user tries
to access the contents of the directory gets "NT Status:
STATUS_INVALID_LEVEL" according to wireshark.

This server does not support the common windows
readdir (Findfirst) level 257 nor level 258, so "fall back"
to level 260 if get an EOPNOTSUPP on level FIND_FILE_DIRECTORY_INFO
and while we are at it fall back to level 1 (FILE_INFO_STANDARD)
for very old servers if we get an EOPNOTSUPP on level 260.
(Note that the server returned errors on queries for inode
numbers via QueryPathInfo so we don't use the infolevel
SMB_FIND_FILE_ID_FULL_DIR_INFO)

Reported-and-tested-by: Bryan James <Bryan.James.Krone-EXT-zES+1Ur7hjI@public.gmane.org>
Signed-off-by: Steve French <smfrench-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 fs/cifs/readdir.c |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/fs/cifs/readdir.c b/fs/cifs/readdir.c
index 5de03ec..ed29706 100644
--- a/fs/cifs/readdir.c
+++ b/fs/cifs/readdir.c
@@ -270,6 +270,7 @@ ffirst_retry:
 		cifsFile->srch_inf.info_level = SMB_FIND_FILE_DIRECTORY_INFO;
 	}

+ffirst_retry_with_std_level:
 	rc = CIFSFindFirst(xid, pTcon, full_path, cifs_sb->local_nls,
 		&cifsFile->netfid, &cifsFile->srch_inf,
 		cifs_sb->mnt_cifs_flags &
@@ -283,7 +284,23 @@ ffirst_retry:
 		(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)) {
 		cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM;
 		goto ffirst_retry;
+	} else if ((rc == -EOPNOTSUPP) && (cifsFile->srch_inf.info_level ==
+					SMB_FIND_FILE_DIRECTORY_INFO)) {
+		/* Windows CE can return EOPNOTSUPP on FILE_DIRECTORY_INFO */
+		cifsFile->srch_inf.info_level =
+				SMB_FIND_FILE_BOTH_DIRECTORY_INFO;
+		goto ffirst_retry_with_std_level;
+	} else if ((rc == -EOPNOTSUPP) && (cifsFile->srch_inf.info_level ==
+					SMB_FIND_FILE_BOTH_DIRECTORY_INFO)) {
+		cifsFile->srch_inf.info_level =
+				SMB_FIND_FILE_FULL_DIRECTORY_INFO;
+		goto ffirst_retry_with_std_level;
+	} else if ((rc == -EOPNOTSUPP) && (cifsFile->srch_inf.info_level ==
+					SMB_FIND_FILE_FULL_DIRECTORY_INFO)) {
+		cifsFile->srch_inf.info_level = SMB_FIND_FILE_INFO_STANDARD;
+		goto ffirst_retry_with_std_level;
 	}
+
 error_exit:
 	kfree(full_path);
 	cifs_put_tlink(tlink);
-- 

-- 
Thanks,

Steve

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-08-24 19:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-24  3:16 [PATCH] [CIFS] ls on mounts to WindowsCE failing with invalid level message Steve French
     [not found] ` <CAH2r5mvmVNySCiSMc9Bz=yi4Zhzg=sYwxLSpiwapAyn6-HEqDQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-08-24 19:08   ` Jeff Layton
     [not found]     ` <20110824150852.5a9f911f-9yPaYZwiELC+kQycOl6kW4xkIHaj4LzF@public.gmane.org>
2011-08-24 19:15       ` Steve French

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.