* [PATCH] cifs: handle FindFirst failure gracefully
@ 2010-10-01 15:53 Suresh Jayaraman
[not found] ` <4CA603FD.6040308-l3A5Bk7waGM@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Suresh Jayaraman @ 2010-10-01 15:53 UTC (permalink / raw)
To: Steve French; +Cc: linux-cifs
FindFirst failure due to permission errors or any other errors are silently
ignored by cifs_readdir(). This could cause problem to applications that depend
on the error to do further processing.
Reproducer:
- mount a cifs share
- mkdir tdir;touch tdir/1 tdir/2 tdir/3
- chmod -x tdir
- ls tdir
Currently, we start calling filldir() for '.' and '..' before we know we
whether FindFirst could succeed or not. If FindFirst fails later, there is no
way to notify VFS by setting buf.error and so VFS won't be able to catch this.
Fix this by moving the call to initiate_cifs_search() before we start doing
filldir().
This fixes https://bugzilla.samba.org/show_bug.cgi?id=7535
Reported-by: Tom Dexter <digitalaudiorock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Signed-off-by: Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org>
---
fs/cifs/readdir.c | 19 +++++++++++--------
1 files changed, 11 insertions(+), 8 deletions(-)
diff --git a/fs/cifs/readdir.c b/fs/cifs/readdir.c
index 887a7e2..edb69a9 100644
--- a/fs/cifs/readdir.c
+++ b/fs/cifs/readdir.c
@@ -786,6 +786,17 @@ int cifs_readdir(struct file *file, void *direntry, filldir_t filldir)
cifs_sb = CIFS_SB(file->f_path.dentry->d_sb);
+ /*
+ * Ensure FindFirst doesn't fail before doing filldir() for '.' and
+ * '..'. Otherwise we won't be able to notify VFS in case of failure.
+ */
+ if (file->private_data == NULL) {
+ rc = initiate_cifs_search(xid, file);
+ cFYI(1, "initiate cifs search rc %d", rc);
+ if (rc)
+ goto rddir2_exit;
+ }
+
switch ((int) file->f_pos) {
case 0:
if (filldir(direntry, ".", 1, file->f_pos,
@@ -810,14 +821,6 @@ int cifs_readdir(struct file *file, void *direntry, filldir_t filldir)
if after then keep searching till find it */
if (file->private_data == NULL) {
- rc = initiate_cifs_search(xid, file);
- cFYI(1, "initiate cifs search rc %d", rc);
- if (rc) {
- FreeXid(xid);
- return rc;
- }
- }
- if (file->private_data == NULL) {
rc = -EINVAL;
FreeXid(xid);
return rc;
^ permalink raw reply related [flat|nested] 2+ messages in thread[parent not found: <4CA603FD.6040308-l3A5Bk7waGM@public.gmane.org>]
* Re: [PATCH] cifs: handle FindFirst failure gracefully [not found] ` <4CA603FD.6040308-l3A5Bk7waGM@public.gmane.org> @ 2010-10-02 1:29 ` Jeff Layton 0 siblings, 0 replies; 2+ messages in thread From: Jeff Layton @ 2010-10-02 1:29 UTC (permalink / raw) To: Suresh Jayaraman; +Cc: Steve French, linux-cifs On Fri, 01 Oct 2010 21:23:33 +0530 Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org> wrote: > FindFirst failure due to permission errors or any other errors are silently > ignored by cifs_readdir(). This could cause problem to applications that depend > on the error to do further processing. > > Reproducer: > - mount a cifs share > - mkdir tdir;touch tdir/1 tdir/2 tdir/3 > - chmod -x tdir > - ls tdir > > Currently, we start calling filldir() for '.' and '..' before we know we > whether FindFirst could succeed or not. If FindFirst fails later, there is no > way to notify VFS by setting buf.error and so VFS won't be able to catch this. > Fix this by moving the call to initiate_cifs_search() before we start doing > filldir(). > > This fixes https://bugzilla.samba.org/show_bug.cgi?id=7535 > > Reported-by: Tom Dexter <digitalaudiorock-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > Signed-off-by: Suresh Jayaraman <sjayaraman-l3A5Bk7waGM@public.gmane.org> > --- > fs/cifs/readdir.c | 19 +++++++++++-------- > 1 files changed, 11 insertions(+), 8 deletions(-) > > diff --git a/fs/cifs/readdir.c b/fs/cifs/readdir.c > index 887a7e2..edb69a9 100644 > --- a/fs/cifs/readdir.c > +++ b/fs/cifs/readdir.c > @@ -786,6 +786,17 @@ int cifs_readdir(struct file *file, void *direntry, filldir_t filldir) > > cifs_sb = CIFS_SB(file->f_path.dentry->d_sb); > > + /* > + * Ensure FindFirst doesn't fail before doing filldir() for '.' and > + * '..'. Otherwise we won't be able to notify VFS in case of failure. > + */ > + if (file->private_data == NULL) { > + rc = initiate_cifs_search(xid, file); > + cFYI(1, "initiate cifs search rc %d", rc); > + if (rc) > + goto rddir2_exit; > + } > + > switch ((int) file->f_pos) { > case 0: > if (filldir(direntry, ".", 1, file->f_pos, > @@ -810,14 +821,6 @@ int cifs_readdir(struct file *file, void *direntry, filldir_t filldir) > if after then keep searching till find it */ > > if (file->private_data == NULL) { > - rc = initiate_cifs_search(xid, file); > - cFYI(1, "initiate cifs search rc %d", rc); > - if (rc) { > - FreeXid(xid); > - return rc; > - } > - } > - if (file->private_data == NULL) { > rc = -EINVAL; > FreeXid(xid); > return rc; > -- > To unsubscribe from this list: send the line "unsubscribe linux-cifs" in > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Looks correct to me. Reviewed-by: Jeff Layton <jlayton-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-10-02 1:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-01 15:53 [PATCH] cifs: handle FindFirst failure gracefully Suresh Jayaraman
[not found] ` <4CA603FD.6040308-l3A5Bk7waGM@public.gmane.org>
2010-10-02 1:29 ` Jeff Layton
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.