Re: [patch] quota: info leak in quota_getquota()

2013-11-04 Thread Jan Kara
On Fri 01-11-13 13:21:54, Dan Carpenter wrote: > The if_dqblk struct has a 4 byte hole at the end of the struct so > uninitialized stack information is leaked to user space. > > Signed-off-by: Dan Carpenter Thanks. I've merged the patch into my tree.

Re: [patch] quota: info leak in quota_getquota()

2013-11-04 Thread Jan Kara
On Fri 01-11-13 13:21:54, Dan Carpenter wrote: The if_dqblk struct has a 4 byte hole at the end of the struct so uninitialized stack information is leaked to user space. Signed-off-by: Dan Carpenter dan.carpen...@oracle.com Thanks. I've merged the patch into my tree.

[patch] quota: info leak in quota_getquota()

2013-11-01 Thread Dan Carpenter
The if_dqblk struct has a 4 byte hole at the end of the struct so uninitialized stack information is leaked to user space. Signed-off-by: Dan Carpenter diff --git a/fs/quota/quota.c b/fs/quota/quota.c index dea86e8..2b363e2 100644 --- a/fs/quota/quota.c +++ b/fs/quota/quota.c @@ -117,6 +117,7

[patch] quota: info leak in quota_getquota()

2013-11-01 Thread Dan Carpenter
The if_dqblk struct has a 4 byte hole at the end of the struct so uninitialized stack information is leaked to user space. Signed-off-by: Dan Carpenter dan.carpen...@oracle.com diff --git a/fs/quota/quota.c b/fs/quota/quota.c index dea86e8..2b363e2 100644 --- a/fs/quota/quota.c +++