All of lore.kernel.org
 help / color / mirror / Atom feed
* [Patch] quota: do not leak info to user-space
@ 2013-05-10  9:24 Cong Wang
  2013-05-13 10:04   ` Jan Kara
  0 siblings, 1 reply; 7+ messages in thread
From: Cong Wang @ 2013-05-10  9:24 UTC (permalink / raw)
  To: linux-kernel; +Cc: Andrew Morton, Jan Kara, Cong Wang

From: Cong Wang <amwang@redhat.com>

There is a hole in struct fs_quota_stat, so we have to
zero the struct on stack before copying it to user-space.

Cc: Jan Kara <jack@suse.cz>
Signed-off-by: Cong Wang <amwang@redhat.com>

---
diff --git a/fs/quota/quota.c b/fs/quota/quota.c
index c7314f1..2b0c182 100644
--- a/fs/quota/quota.c
+++ b/fs/quota/quota.c
@@ -211,6 +211,7 @@ static int quota_getxstate(struct super_block *sb, void __user *addr)
 
 	if (!sb->s_qcop->get_xstate)
 		return -ENOSYS;
+	memset(&fqs, 0, sizeof(fqs));
 	ret = sb->s_qcop->get_xstate(sb, &fqs);
 	if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
 		return -EFAULT;

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

* Re: [Patch] quota: do not leak info to user-space
  2013-05-10  9:24 [Patch] quota: do not leak info to user-space Cong Wang
@ 2013-05-13 10:04   ` Jan Kara
  0 siblings, 0 replies; 7+ messages in thread
From: Jan Kara @ 2013-05-13 10:04 UTC (permalink / raw)
  To: Cong Wang; +Cc: linux-kernel, Andrew Morton, Jan Kara, xfs

On Fri 10-05-13 17:24:33, Cong Wang wrote:
> From: Cong Wang <amwang@redhat.com>
> 
> There is a hole in struct fs_quota_stat, so we have to
> zero the struct on stack before copying it to user-space.
> 
> Cc: Jan Kara <jack@suse.cz>
> Signed-off-by: Cong Wang <amwang@redhat.com>
  Good point. I've merged the patch.

BTW for XFS folks: The structure definition looks somewhat odd (unaligned
definition of qs_flags, qs_uquota starts only at 32-bit boundary although
it has 64-bit fields in it) and I wouldn't be surprised if it needed compat
wrapper for 32-bit apps on some architectures...

								Honza
> 
> ---
> diff --git a/fs/quota/quota.c b/fs/quota/quota.c
> index c7314f1..2b0c182 100644
> --- a/fs/quota/quota.c
> +++ b/fs/quota/quota.c
> @@ -211,6 +211,7 @@ static int quota_getxstate(struct super_block *sb, void __user *addr)
>  
>  	if (!sb->s_qcop->get_xstate)
>  		return -ENOSYS;
> +	memset(&fqs, 0, sizeof(fqs));
>  	ret = sb->s_qcop->get_xstate(sb, &fqs);
>  	if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
>  		return -EFAULT;
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

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

* Re: [Patch] quota: do not leak info to user-space
@ 2013-05-13 10:04   ` Jan Kara
  0 siblings, 0 replies; 7+ messages in thread
From: Jan Kara @ 2013-05-13 10:04 UTC (permalink / raw)
  To: Cong Wang; +Cc: Andrew Morton, Jan Kara, linux-kernel, xfs

On Fri 10-05-13 17:24:33, Cong Wang wrote:
> From: Cong Wang <amwang@redhat.com>
> 
> There is a hole in struct fs_quota_stat, so we have to
> zero the struct on stack before copying it to user-space.
> 
> Cc: Jan Kara <jack@suse.cz>
> Signed-off-by: Cong Wang <amwang@redhat.com>
  Good point. I've merged the patch.

BTW for XFS folks: The structure definition looks somewhat odd (unaligned
definition of qs_flags, qs_uquota starts only at 32-bit boundary although
it has 64-bit fields in it) and I wouldn't be surprised if it needed compat
wrapper for 32-bit apps on some architectures...

								Honza
> 
> ---
> diff --git a/fs/quota/quota.c b/fs/quota/quota.c
> index c7314f1..2b0c182 100644
> --- a/fs/quota/quota.c
> +++ b/fs/quota/quota.c
> @@ -211,6 +211,7 @@ static int quota_getxstate(struct super_block *sb, void __user *addr)
>  
>  	if (!sb->s_qcop->get_xstate)
>  		return -ENOSYS;
> +	memset(&fqs, 0, sizeof(fqs));
>  	ret = sb->s_qcop->get_xstate(sb, &fqs);
>  	if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
>  		return -EFAULT;
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

* Re: [Patch] quota: do not leak info to user-space
  2013-05-13 10:04   ` Jan Kara
@ 2013-05-13 10:18     ` Jan Kara
  -1 siblings, 0 replies; 7+ messages in thread
From: Jan Kara @ 2013-05-13 10:18 UTC (permalink / raw)
  To: Cong Wang; +Cc: linux-kernel, Andrew Morton, Jan Kara, xfs

On Mon 13-05-13 12:04:23, Jan Kara wrote:
> On Fri 10-05-13 17:24:33, Cong Wang wrote:
> > From: Cong Wang <amwang@redhat.com>
> > 
> > There is a hole in struct fs_quota_stat, so we have to
> > zero the struct on stack before copying it to user-space.
> > 
> > Cc: Jan Kara <jack@suse.cz>
> > Signed-off-by: Cong Wang <amwang@redhat.com>
>   Good point. I've merged the patch.
  Ah, now I've noticed that XFS (the only user of the callback you are
fixing) is zeroing the structure on its own (xfs_qm_scall_getqstat). So
there's no real problem. I'm somewhat wondering whether clearing the field
in the place where you did it isn't more future-proof but usually we don't
pass in prezeroed buffers so I've decided to leave things as they are.

								Honza

> BTW for XFS folks: The structure definition looks somewhat odd (unaligned
> definition of qs_flags, qs_uquota starts only at 32-bit boundary although
> it has 64-bit fields in it) and I wouldn't be surprised if it needed compat
> wrapper for 32-bit apps on some architectures...
> 
> 								Honza
> > 
> > ---
> > diff --git a/fs/quota/quota.c b/fs/quota/quota.c
> > index c7314f1..2b0c182 100644
> > --- a/fs/quota/quota.c
> > +++ b/fs/quota/quota.c
> > @@ -211,6 +211,7 @@ static int quota_getxstate(struct super_block *sb, void __user *addr)
> >  
> >  	if (!sb->s_qcop->get_xstate)
> >  		return -ENOSYS;
> > +	memset(&fqs, 0, sizeof(fqs));
> >  	ret = sb->s_qcop->get_xstate(sb, &fqs);
> >  	if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
> >  		return -EFAULT;
> -- 
> Jan Kara <jack@suse.cz>
> SUSE Labs, CR
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

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

* Re: [Patch] quota: do not leak info to user-space
@ 2013-05-13 10:18     ` Jan Kara
  0 siblings, 0 replies; 7+ messages in thread
From: Jan Kara @ 2013-05-13 10:18 UTC (permalink / raw)
  To: Cong Wang; +Cc: Andrew Morton, Jan Kara, linux-kernel, xfs

On Mon 13-05-13 12:04:23, Jan Kara wrote:
> On Fri 10-05-13 17:24:33, Cong Wang wrote:
> > From: Cong Wang <amwang@redhat.com>
> > 
> > There is a hole in struct fs_quota_stat, so we have to
> > zero the struct on stack before copying it to user-space.
> > 
> > Cc: Jan Kara <jack@suse.cz>
> > Signed-off-by: Cong Wang <amwang@redhat.com>
>   Good point. I've merged the patch.
  Ah, now I've noticed that XFS (the only user of the callback you are
fixing) is zeroing the structure on its own (xfs_qm_scall_getqstat). So
there's no real problem. I'm somewhat wondering whether clearing the field
in the place where you did it isn't more future-proof but usually we don't
pass in prezeroed buffers so I've decided to leave things as they are.

								Honza

> BTW for XFS folks: The structure definition looks somewhat odd (unaligned
> definition of qs_flags, qs_uquota starts only at 32-bit boundary although
> it has 64-bit fields in it) and I wouldn't be surprised if it needed compat
> wrapper for 32-bit apps on some architectures...
> 
> 								Honza
> > 
> > ---
> > diff --git a/fs/quota/quota.c b/fs/quota/quota.c
> > index c7314f1..2b0c182 100644
> > --- a/fs/quota/quota.c
> > +++ b/fs/quota/quota.c
> > @@ -211,6 +211,7 @@ static int quota_getxstate(struct super_block *sb, void __user *addr)
> >  
> >  	if (!sb->s_qcop->get_xstate)
> >  		return -ENOSYS;
> > +	memset(&fqs, 0, sizeof(fqs));
> >  	ret = sb->s_qcop->get_xstate(sb, &fqs);
> >  	if (!ret && copy_to_user(addr, &fqs, sizeof(fqs)))
> >  		return -EFAULT;
> -- 
> Jan Kara <jack@suse.cz>
> SUSE Labs, CR
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

* Re: [Patch] quota: do not leak info to user-space
  2013-05-13 10:18     ` Jan Kara
@ 2013-05-14  5:33       ` Cong Wang
  -1 siblings, 0 replies; 7+ messages in thread
From: Cong Wang @ 2013-05-14  5:33 UTC (permalink / raw)
  To: Jan Kara; +Cc: linux-kernel, Andrew Morton, xfs

On Mon, 2013-05-13 at 12:18 +0200, Jan Kara wrote:
> On Mon 13-05-13 12:04:23, Jan Kara wrote:
> > On Fri 10-05-13 17:24:33, Cong Wang wrote:
> > > From: Cong Wang <amwang@redhat.com>
> > > 
> > > There is a hole in struct fs_quota_stat, so we have to
> > > zero the struct on stack before copying it to user-space.
> > > 
> > > Cc: Jan Kara <jack@suse.cz>
> > > Signed-off-by: Cong Wang <amwang@redhat.com>
> >   Good point. I've merged the patch.
>   Ah, now I've noticed that XFS (the only user of the callback you are
> fixing) is zeroing the structure on its own (xfs_qm_scall_getqstat). So
> there's no real problem. I'm somewhat wondering whether clearing the field
> in the place where you did it isn't more future-proof but usually we don't
> pass in prezeroed buffers so I've decided to leave things as they are.
> 

You are right. Thanks for looking into this!



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

* Re: [Patch] quota: do not leak info to user-space
@ 2013-05-14  5:33       ` Cong Wang
  0 siblings, 0 replies; 7+ messages in thread
From: Cong Wang @ 2013-05-14  5:33 UTC (permalink / raw)
  To: Jan Kara; +Cc: Andrew Morton, linux-kernel, xfs

On Mon, 2013-05-13 at 12:18 +0200, Jan Kara wrote:
> On Mon 13-05-13 12:04:23, Jan Kara wrote:
> > On Fri 10-05-13 17:24:33, Cong Wang wrote:
> > > From: Cong Wang <amwang@redhat.com>
> > > 
> > > There is a hole in struct fs_quota_stat, so we have to
> > > zero the struct on stack before copying it to user-space.
> > > 
> > > Cc: Jan Kara <jack@suse.cz>
> > > Signed-off-by: Cong Wang <amwang@redhat.com>
> >   Good point. I've merged the patch.
>   Ah, now I've noticed that XFS (the only user of the callback you are
> fixing) is zeroing the structure on its own (xfs_qm_scall_getqstat). So
> there's no real problem. I'm somewhat wondering whether clearing the field
> in the place where you did it isn't more future-proof but usually we don't
> pass in prezeroed buffers so I've decided to leave things as they are.
> 

You are right. Thanks for looking into this!


_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

end of thread, other threads:[~2013-05-14  5:33 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-10  9:24 [Patch] quota: do not leak info to user-space Cong Wang
2013-05-13 10:04 ` Jan Kara
2013-05-13 10:04   ` Jan Kara
2013-05-13 10:18   ` Jan Kara
2013-05-13 10:18     ` Jan Kara
2013-05-14  5:33     ` Cong Wang
2013-05-14  5:33       ` Cong Wang

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.