All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] afs: Fix dynamic root getattr
@ 2022-06-01 11:55 David Howells
  2022-06-16 18:04 ` Marc Dionne
  0 siblings, 1 reply; 3+ messages in thread
From: David Howells @ 2022-06-01 11:55 UTC (permalink / raw)
  To: marc.dionne; +Cc: linux-afs, dhowells, linux-fsdevel, linux-kernel

The recent patch to make afs_getattr consult the server didn't account for
the pseudo-inodes employed by the dynamic root-type afs superblock not
having a volume or a server to access, and thus an oops occurs if such a
directory is stat'd.

Fix this by checking to see if the vnode->volume pointer actually points
anywhere before following it in afs_getattr().

This can be tested by stat'ing a directory in /afs.  It may be sufficient
just to do "ls /afs" and the oops looks something like:

	BUG: kernel NULL pointer dereference, address: 0000000000000020
	...
	RIP: 0010:afs_getattr+0x8b/0x14b
	...
	Call Trace:
	 <TASK>
	 vfs_statx+0x79/0xf5
	 vfs_fstatat+0x49/0x62

Fixes: 2aeb8c86d499 ("afs: Fix afs_getattr() to refetch file status if callback break occurred")
Reported-by: Marc Dionne <marc.dionne@auristor.com>
Signed-off-by: David Howells <dhowells@redhat.com>
cc: linux-afs@lists.infradead.org
---

 fs/afs/inode.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/afs/inode.c b/fs/afs/inode.c
index 30b066299d39..33ecbfea0199 100644
--- a/fs/afs/inode.c
+++ b/fs/afs/inode.c
@@ -745,7 +745,8 @@ int afs_getattr(struct user_namespace *mnt_userns, const struct path *path,
 
 	_enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation);
 
-	if (!(query_flags & AT_STATX_DONT_SYNC) &&
+	if (vnode->volume &&
+	    !(query_flags & AT_STATX_DONT_SYNC) &&
 	    !test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
 		key = afs_request_key(vnode->volume->cell);
 		if (IS_ERR(key))



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

* Re: [PATCH] afs: Fix dynamic root getattr
  2022-06-01 11:55 [PATCH] afs: Fix dynamic root getattr David Howells
@ 2022-06-16 18:04 ` Marc Dionne
  0 siblings, 0 replies; 3+ messages in thread
From: Marc Dionne @ 2022-06-16 18:04 UTC (permalink / raw)
  To: David Howells; +Cc: linux-afs, linux-fsdevel, linux-kernel

On Wed, Jun 1, 2022 at 8:55 AM David Howells <dhowells@redhat.com> wrote:
>
> The recent patch to make afs_getattr consult the server didn't account for
> the pseudo-inodes employed by the dynamic root-type afs superblock not
> having a volume or a server to access, and thus an oops occurs if such a
> directory is stat'd.
>
> Fix this by checking to see if the vnode->volume pointer actually points
> anywhere before following it in afs_getattr().
>
> This can be tested by stat'ing a directory in /afs.  It may be sufficient
> just to do "ls /afs" and the oops looks something like:
>
>         BUG: kernel NULL pointer dereference, address: 0000000000000020
>         ...
>         RIP: 0010:afs_getattr+0x8b/0x14b
>         ...
>         Call Trace:
>          <TASK>
>          vfs_statx+0x79/0xf5
>          vfs_fstatat+0x49/0x62
>
> Fixes: 2aeb8c86d499 ("afs: Fix afs_getattr() to refetch file status if callback break occurred")
> Reported-by: Marc Dionne <marc.dionne@auristor.com>
> Signed-off-by: David Howells <dhowells@redhat.com>
> cc: linux-afs@lists.infradead.org
> ---
>
>  fs/afs/inode.c |    3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/fs/afs/inode.c b/fs/afs/inode.c
> index 30b066299d39..33ecbfea0199 100644
> --- a/fs/afs/inode.c
> +++ b/fs/afs/inode.c
> @@ -745,7 +745,8 @@ int afs_getattr(struct user_namespace *mnt_userns, const struct path *path,
>
>         _enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation);
>
> -       if (!(query_flags & AT_STATX_DONT_SYNC) &&
> +       if (vnode->volume &&
> +           !(query_flags & AT_STATX_DONT_SYNC) &&
>             !test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
>                 key = afs_request_key(vnode->volume->cell);
>                 if (IS_ERR(key))

Reviewed-by: Marc Dionne <marc.dionne@auristor.com>
Tested-by: Marc Dionne <marc.dionne@auristor.com>

Marc

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

* [PATCH] afs: Fix dynamic root getattr
@ 2022-06-21 14:59 David Howells
  0 siblings, 0 replies; 3+ messages in thread
From: David Howells @ 2022-06-21 14:59 UTC (permalink / raw)
  To: torvalds; +Cc: dhowells, marc.dionne, linux-afs, linux-fsdevel, linux-kernel

Hi Linus,

Could you apply this please?  It fixes an oops inadvertently introduced by
the fix to make afs_getattr() update the status from the server if it was
no longer valid.

Thanks,
David
---
afs: Fix dynamic root getattr

The recent patch to make afs_getattr consult the server didn't account for
the pseudo-inodes employed by the dynamic root-type afs superblock not
having a volume or a server to access, and thus an oops occurs if such a
directory is stat'd.

Fix this by checking to see if the vnode->volume pointer actually points
anywhere before following it in afs_getattr().

This can be tested by stat'ing a directory in /afs.  It may be sufficient
just to do "ls /afs" and the oops looks something like:

        BUG: kernel NULL pointer dereference, address: 0000000000000020
        ...
        RIP: 0010:afs_getattr+0x8b/0x14b
        ...
        Call Trace:
         <TASK>
         vfs_statx+0x79/0xf5
         vfs_fstatat+0x49/0x62

Fixes: 2aeb8c86d499 ("afs: Fix afs_getattr() to refetch file status if callback break occurred")
Reported-by: Marc Dionne <marc.dionne@auristor.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Marc Dionne <marc.dionne@auristor.com>
Tested-by: Marc Dionne <marc.dionne@auristor.com>
cc: linux-afs@lists.infradead.org
Link: https://lore.kernel.org/r/165408450783.1031787.7941404776393751186.stgit@warthog.procyon.org.uk/
---
 fs/afs/inode.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/afs/inode.c b/fs/afs/inode.c
index 89630acbc2cc..64dab70d4a4f 100644
--- a/fs/afs/inode.c
+++ b/fs/afs/inode.c
@@ -745,7 +745,8 @@ int afs_getattr(struct user_namespace *mnt_userns, const struct path *path,
 
 	_enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation);
 
-	if (!(query_flags & AT_STATX_DONT_SYNC) &&
+	if (vnode->volume &&
+	    !(query_flags & AT_STATX_DONT_SYNC) &&
 	    !test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
 		key = afs_request_key(vnode->volume->cell);
 		if (IS_ERR(key))


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

end of thread, other threads:[~2022-06-21 15:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-01 11:55 [PATCH] afs: Fix dynamic root getattr David Howells
2022-06-16 18:04 ` Marc Dionne
2022-06-21 14:59 David Howells

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.