All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH/RFC]  Make nfs_file_cred more robust.
@ 2008-10-15 22:28 Neil Brown
       [not found] ` <18678.28273.285015.747371-wvvUuzkyo1EYVZTmpyfIwg@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Neil Brown @ 2008-10-15 22:28 UTC (permalink / raw)
  To: Trond Myklebust; +Cc: linux-nfs


Hi Trond,
 I wonder if you would consider including the following patch which
 makes nfs_file_cred a little more robust.

 It isn't strictly needed with current mainline.  However we have a patch
 set which (among other things) passes a 'struct file' down (via
 ATTR_FILE) for a chmod call.
 If chmod is called on e.g. a device special file, this will cause
 nfs3_proc_setattr to call nfs_file_cred on a 'struct file' which does
 not have an associated open context or credential.  That goes Oops.

 Thanks for your consideration,
NeilBrown

--------------

From: NeilBrown <neilb@suse.de>

As not all files have an associated open_context (e.g. device special
files), it is safest to test for the existence of the open context
before de-referencing it.

Signed-off-by: NeilBrown <neilb@suse.de>


diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h
index 78a5922..63bf8f0 100644
--- a/include/linux/nfs_fs.h
+++ b/include/linux/nfs_fs.h
@@ -372,8 +372,12 @@ static inline struct nfs_open_context *nfs_file_open_context(struct file *filp)
 
 static inline struct rpc_cred *nfs_file_cred(struct file *file)
 {
-	if (file != NULL)
-		return nfs_file_open_context(file)->cred;
+	if (file != NULL) {
+		struct nfs_open_context *ctx =
+			nfs_file_open_context(file);
+		if (ctx)
+			return ctx->cred;
+	}
 	return NULL;
 }
 

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

* Re: [PATCH/RFC]  Make nfs_file_cred more robust.
       [not found] ` <18678.28273.285015.747371-wvvUuzkyo1EYVZTmpyfIwg@public.gmane.org>
@ 2008-10-15 22:44   ` Trond Myklebust
  2008-10-16  3:15     ` Neil Brown
  0 siblings, 1 reply; 3+ messages in thread
From: Trond Myklebust @ 2008-10-15 22:44 UTC (permalink / raw)
  To: Neil Brown; +Cc: linux-nfs

On Thu, 2008-10-16 at 09:28 +1100, Neil Brown wrote:
> Hi Trond,
>  I wonder if you would consider including the following patch which
>  makes nfs_file_cred a little more robust.
> 
>  It isn't strictly needed with current mainline.  However we have a patch
>  set which (among other things) passes a 'struct file' down (via
>  ATTR_FILE) for a chmod call.
>  If chmod is called on e.g. a device special file, this will cause
>  nfs3_proc_setattr to call nfs_file_cred on a 'struct file' which does
>  not have an associated open context or credential.  That goes Oops.
> 
>  Thanks for your consideration,
> NeilBrown

Hi Neil,

Won't this still end up exploding in nfs4_proc_setattr?

Cheers
  Trond

> --------------
> 
> From: NeilBrown <neilb@suse.de>
> 
> As not all files have an associated open_context (e.g. device special
> files), it is safest to test for the existence of the open context
> before de-referencing it.
> 
> Signed-off-by: NeilBrown <neilb@suse.de>
> 
> 
> diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h
> index 78a5922..63bf8f0 100644
> --- a/include/linux/nfs_fs.h
> +++ b/include/linux/nfs_fs.h
> @@ -372,8 +372,12 @@ static inline struct nfs_open_context *nfs_file_open_context(struct file *filp)
>  
>  static inline struct rpc_cred *nfs_file_cred(struct file *file)
>  {
> -	if (file != NULL)
> -		return nfs_file_open_context(file)->cred;
> +	if (file != NULL) {
> +		struct nfs_open_context *ctx =
> +			nfs_file_open_context(file);
> +		if (ctx)
> +			return ctx->cred;
> +	}
>  	return NULL;
>  }
>  
-- 
Trond Myklebust
Linux NFS client maintainer

NetApp
Trond.Myklebust@netapp.com
www.netapp.com

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

* Re: [PATCH/RFC]  Make nfs_file_cred more robust.
  2008-10-15 22:44   ` Trond Myklebust
@ 2008-10-16  3:15     ` Neil Brown
  0 siblings, 0 replies; 3+ messages in thread
From: Neil Brown @ 2008-10-16  3:15 UTC (permalink / raw)
  To: Trond Myklebust; +Cc: linux-nfs

On Wednesday October 15, Trond.Myklebust@netapp.com wrote:
> On Thu, 2008-10-16 at 09:28 +1100, Neil Brown wrote:
> > Hi Trond,
> >  I wonder if you would consider including the following patch which
> >  makes nfs_file_cred a little more robust.
> > 
> >  It isn't strictly needed with current mainline.  However we have a patch
> >  set which (among other things) passes a 'struct file' down (via
> >  ATTR_FILE) for a chmod call.
> >  If chmod is called on e.g. a device special file, this will cause
> >  nfs3_proc_setattr to call nfs_file_cred on a 'struct file' which does
> >  not have an associated open context or credential.  That goes Oops.
> > 
> >  Thanks for your consideration,
> > NeilBrown
> 
> Hi Neil,
> 
> Won't this still end up exploding in nfs4_proc_setattr?
> 

Yes, of course.  I guess NFSv4 wasn't tested.

How's this?

Thanks,
NeilBrown


From: Neil Brown <neilb-wvvUuzkyo1EYVZTmpyfIwg@public.gmane.org>
Subject: [PATCH] Make nfs_file_cred more robust.

As not all files have an associated open_context (e.g. device special
files), it is safest to test for the existence of the open context
before de-referencing it.

Signed-off-by: NeilBrown <neilb@suse.de>
---
 fs/nfs/nfs4proc.c      |    6 ++++--
 include/linux/nfs_fs.h |    8 ++++++--
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index c910413..83e700a 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -1659,8 +1659,10 @@ nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
 		struct nfs_open_context *ctx;
 
 		ctx = nfs_file_open_context(sattr->ia_file);
-		cred = ctx->cred;
-		state = ctx->state;
+		if (ctx) {
+			cred = ctx->cred;
+			state = ctx->state;
+		}
 	}
 
 	status = nfs4_do_setattr(inode, cred, fattr, sattr, state);
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h
index 78a5922..63bf8f0 100644
--- a/include/linux/nfs_fs.h
+++ b/include/linux/nfs_fs.h
@@ -372,8 +372,12 @@ static inline struct nfs_open_context *nfs_file_open_context(struct file *filp)
 
 static inline struct rpc_cred *nfs_file_cred(struct file *file)
 {
-	if (file != NULL)
-		return nfs_file_open_context(file)->cred;
+	if (file != NULL) {
+		struct nfs_open_context *ctx =
+			nfs_file_open_context(file);
+		if (ctx)
+			return ctx->cred;
+	}
 	return NULL;
 }
 
-- 
1.5.6.5


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

end of thread, other threads:[~2008-10-16  3:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-15 22:28 [PATCH/RFC] Make nfs_file_cred more robust Neil Brown
     [not found] ` <18678.28273.285015.747371-wvvUuzkyo1EYVZTmpyfIwg@public.gmane.org>
2008-10-15 22:44   ` Trond Myklebust
2008-10-16  3:15     ` Neil Brown

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.