stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH] xfs: remote attribute overwrite causes transaction overrun
@ 2015-04-29  1:55 Sheng Yong
  2015-04-29  1:55 ` [PATCH] " Sheng Yong
  0 siblings, 1 reply; 7+ messages in thread
From: Sheng Yong @ 2015-04-29  1:55 UTC (permalink / raw)
  To: gregkh, david; +Cc: stable

hi, Greg and Dave Chinner,

This patch is to address CVE-2015-0274, which is caused by commit 7ae077802
("xfs: remote attribute lookups require the value length"). Dave Chinner,
could you review this patch, please? Thank you :-)

Thanks,
Sheng

Sheng Yong (1):
  xfs: remote attribute overwrite causes transaction overrun

 fs/xfs/xfs_attr.c        | 24 +++++++++++++++++++++++-
 fs/xfs/xfs_attr_leaf.c   | 22 ++++++++++++----------
 fs/xfs/xfs_attr_remote.c |  8 +++++---
 fs/xfs/xfs_da_btree.h    |  2 ++
 4 files changed, 42 insertions(+), 14 deletions(-)

-- 
1.8.3.4


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

* [PATCH] xfs: remote attribute overwrite causes transaction overrun
  2015-04-29  1:55 [RFC PATCH] xfs: remote attribute overwrite causes transaction overrun Sheng Yong
@ 2015-04-29  1:55 ` Sheng Yong
  2015-04-29  7:43   ` Dave Chinner
  0 siblings, 1 reply; 7+ messages in thread
From: Sheng Yong @ 2015-04-29  1:55 UTC (permalink / raw)
  To: gregkh, david; +Cc: stable

commit 8275cdd0e7ac550dcce2b3ef6d2fb3b808c1ae59 upstream.

Commit e461fcb ("xfs: remote attribute lookups require the value
length") passes the remote attribute length in the xfs_da_args
structure on lookup so that CRC calculations and validity checking
can be performed correctly by related code. This, unfortunately has
the side effect of changing the args->valuelen parameter in cases
where it shouldn't.

That is, when we replace a remote attribute, the incoming
replacement stores the value and length in args->value and
args->valuelen, but then the lookup which finds the existing remote
attribute overwrites args->valuelen with the length of the remote
attribute being replaced. Hence when we go to create the new
attribute, we create it of the size of the existing remote
attribute, not the size it is supposed to be. When the new attribute
is much smaller than the old attribute, this results in a
transaction overrun and an ASSERT() failure on a debug kernel:

XFS: Assertion failed: tp->t_blk_res_used <= tp->t_blk_res, file: fs/xfs/xfs_trans.c, line: 331

Fix this by keeping the remote attribute value length separate to
the attribute value length in the xfs_da_args structure. The enables
us to pass the length of the remote attribute to be removed without
overwriting the new attribute's length.

Also, ensure that when we save remote block contexts for a later
rename we zero the original state variables so that we don't confuse
the state of the attribute to be removes with the state of the new
attribute that we just added. [Spotted by Brain Foster.]

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
[shengyong: backport to 3.10
 - Addresse: CVE-2015-0274
 - adjust context
 - fs/xfs/xfs_attr_list.c comes from fs/xfs/xfs_attr.c and
   fs/xfs/xfs_attr_leaf.c in linux 3.12]
Signed-off-by: Sheng Yong <shengyong1@huawei.com>
---
 fs/xfs/xfs_attr.c        | 24 +++++++++++++++++++++++-
 fs/xfs/xfs_attr_leaf.c   | 22 ++++++++++++----------
 fs/xfs/xfs_attr_remote.c |  8 +++++---
 fs/xfs/xfs_da_btree.h    |  2 ++
 4 files changed, 42 insertions(+), 14 deletions(-)

diff --git a/fs/xfs/xfs_attr.c b/fs/xfs/xfs_attr.c
index 20fe3fe..0ccc319 100644
--- a/fs/xfs/xfs_attr.c
+++ b/fs/xfs/xfs_attr.c
@@ -211,7 +211,7 @@ xfs_attr_calc_size(
 		 * Out of line attribute, cannot double split, but
 		 * make room for the attribute value itself.
 		 */
-		uint	dblocks = XFS_B_TO_FSB(mp, valuelen);
+		uint	dblocks = xfs_attr3_rmt_blocks(mp, valuelen);
 		nblks += dblocks;
 		nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
 	}
@@ -919,11 +919,22 @@ xfs_attr_leaf_addname(xfs_da_args_t *args)
 
 		trace_xfs_attr_leaf_replace(args);
 
+		/* save the attribute state for later removal*/
 		args->op_flags |= XFS_DA_OP_RENAME;	/* an atomic rename */
 		args->blkno2 = args->blkno;		/* set 2nd entry info*/
 		args->index2 = args->index;
 		args->rmtblkno2 = args->rmtblkno;
 		args->rmtblkcnt2 = args->rmtblkcnt;
+		args->rmtvaluelen2 = args->rmtvaluelen;
+
+		/*
+		 * clear the remote attr state now that it is saved so that the
+		 * values reflect the state of the attribute we are about to
+		 * add, not the attribute we just found and will remove later.
+		 */
+		args->rmtblkno = 0;
+		args->rmtblkcnt = 0;
+		args->rmtvaluelen = 0;
 	}
 
 	/*
@@ -1015,6 +1026,7 @@ xfs_attr_leaf_addname(xfs_da_args_t *args)
 		args->blkno = args->blkno2;
 		args->rmtblkno = args->rmtblkno2;
 		args->rmtblkcnt = args->rmtblkcnt2;
+		args->rmtvaluelen = args->rmtvaluelen2;
 		if (args->rmtblkno) {
 			error = xfs_attr_rmtval_remove(args);
 			if (error)
@@ -1242,13 +1254,22 @@ restart:
 
 		trace_xfs_attr_node_replace(args);
 
+		/* save the attribute state for later removal*/
 		args->op_flags |= XFS_DA_OP_RENAME;	/* atomic rename op */
 		args->blkno2 = args->blkno;		/* set 2nd entry info*/
 		args->index2 = args->index;
 		args->rmtblkno2 = args->rmtblkno;
 		args->rmtblkcnt2 = args->rmtblkcnt;
+		args->rmtvaluelen2 = args->rmtvaluelen;
+
+		/*
+		 * clear the remote attr state now that it is saved so that the
+		 * values reflect the state of the attribute we are about to
+		 * add, not the attribute we just found and will remove later.
+		 */
 		args->rmtblkno = 0;
 		args->rmtblkcnt = 0;
+		args->rmtvaluelen = 0;
 	}
 
 	retval = xfs_attr3_leaf_add(blk->bp, state->args);
@@ -1375,6 +1396,7 @@ restart:
 		args->blkno = args->blkno2;
 		args->rmtblkno = args->rmtblkno2;
 		args->rmtblkcnt = args->rmtblkcnt2;
+		args->rmtvaluelen = args->rmtvaluelen2;
 		if (args->rmtblkno) {
 			error = xfs_attr_rmtval_remove(args);
 			if (error)
diff --git a/fs/xfs/xfs_attr_leaf.c b/fs/xfs/xfs_attr_leaf.c
index 31d3cd1..29054db 100644
--- a/fs/xfs/xfs_attr_leaf.c
+++ b/fs/xfs/xfs_attr_leaf.c
@@ -1413,6 +1413,7 @@ xfs_attr3_leaf_add_work(
 		name_rmt->valueblk = 0;
 		args->rmtblkno = 1;
 		args->rmtblkcnt = xfs_attr3_rmt_blocks(mp, args->valuelen);
+		args->rmtvaluelen = args->valuelen;
 	}
 	xfs_trans_log_buf(args->trans, bp,
 	     XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
@@ -2352,11 +2353,11 @@ xfs_attr3_leaf_lookup_int(
 			if (!xfs_attr_namesp_match(args->flags, entry->flags))
 				continue;
 			args->index = probe;
-			args->valuelen = be32_to_cpu(name_rmt->valuelen);
+			args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen);
 			args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
 			args->rmtblkcnt = xfs_attr3_rmt_blocks(
 							args->dp->i_mount,
-							args->valuelen);
+							args->rmtvaluelen);
 			return XFS_ERROR(EEXIST);
 		}
 	}
@@ -2405,19 +2406,19 @@ xfs_attr3_leaf_getvalue(
 		name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
 		ASSERT(name_rmt->namelen == args->namelen);
 		ASSERT(memcmp(args->name, name_rmt->name, args->namelen) == 0);
-		valuelen = be32_to_cpu(name_rmt->valuelen);
+		args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen);
 		args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
 		args->rmtblkcnt = xfs_attr3_rmt_blocks(args->dp->i_mount,
-						       valuelen);
+						       args->rmtvaluelen);
 		if (args->flags & ATTR_KERNOVAL) {
-			args->valuelen = valuelen;
+			args->valuelen = args->rmtvaluelen;
 			return 0;
 		}
-		if (args->valuelen < valuelen) {
-			args->valuelen = valuelen;
+		if (args->valuelen < args->rmtvaluelen) {
+			args->valuelen = args->rmtvaluelen;
 			return XFS_ERROR(ERANGE);
 		}
-		args->valuelen = valuelen;
+		args->valuelen = args->rmtvaluelen;
 	}
 	return 0;
 }
@@ -2732,6 +2733,7 @@ xfs_attr3_leaf_list_int(
 				args.dp = context->dp;
 				args.whichfork = XFS_ATTR_FORK;
 				args.valuelen = valuelen;
+				args.rmtvaluelen = valuelen;
 				args.value = kmem_alloc(valuelen, KM_SLEEP | KM_NOFS);
 				args.rmtblkno = be32_to_cpu(name_rmt->valueblk);
 				args.rmtblkcnt = xfs_attr3_rmt_blocks(
@@ -2828,7 +2830,7 @@ xfs_attr3_leaf_clearflag(
 		ASSERT((entry->flags & XFS_ATTR_LOCAL) == 0);
 		name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
 		name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
-		name_rmt->valuelen = cpu_to_be32(args->valuelen);
+		name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen);
 		xfs_trans_log_buf(args->trans, bp,
 			 XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
 	}
@@ -2986,7 +2988,7 @@ xfs_attr3_leaf_flipflags(
 		ASSERT((entry1->flags & XFS_ATTR_LOCAL) == 0);
 		name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
 		name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
-		name_rmt->valuelen = cpu_to_be32(args->valuelen);
+		name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen);
 		xfs_trans_log_buf(args->trans, bp1,
 			 XFS_DA_LOGRANGE(leaf1, name_rmt, sizeof(*name_rmt)));
 	}
diff --git a/fs/xfs/xfs_attr_remote.c b/fs/xfs/xfs_attr_remote.c
index ef6b0c1..2006e0d 100644
--- a/fs/xfs/xfs_attr_remote.c
+++ b/fs/xfs/xfs_attr_remote.c
@@ -338,7 +338,7 @@ xfs_attr_rmtval_get(
 	struct xfs_buf		*bp;
 	xfs_dablk_t		lblkno = args->rmtblkno;
 	char			*dst = args->value;
-	int			valuelen = args->valuelen;
+	int			valuelen;
 	int			nmap;
 	int			error;
 	int			blkcnt = args->rmtblkcnt;
@@ -348,7 +348,9 @@ xfs_attr_rmtval_get(
 	trace_xfs_attr_rmtval_get(args);
 
 	ASSERT(!(args->flags & ATTR_KERNOVAL));
+	ASSERT(args->rmtvaluelen == args->valuelen);
 
+	valuelen = args->rmtvaluelen;
 	while (valuelen > 0) {
 		nmap = ATTR_RMTVALUE_MAPSIZE;
 		error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
@@ -416,7 +418,7 @@ xfs_attr_rmtval_set(
 	 * attributes have headers, we can't just do a straight byte to FSB
 	 * conversion and have to take the header space into account.
 	 */
-	blkcnt = xfs_attr3_rmt_blocks(mp, args->valuelen);
+	blkcnt = xfs_attr3_rmt_blocks(mp, args->rmtvaluelen);
 	error = xfs_bmap_first_unused(args->trans, args->dp, blkcnt, &lfileoff,
 						   XFS_ATTR_FORK);
 	if (error)
@@ -481,7 +483,7 @@ xfs_attr_rmtval_set(
 	 */
 	lblkno = args->rmtblkno;
 	blkcnt = args->rmtblkcnt;
-	valuelen = args->valuelen;
+	valuelen = args->rmtvaluelen;
 	while (valuelen > 0) {
 		struct xfs_buf	*bp;
 		xfs_daddr_t	dblkno;
diff --git a/fs/xfs/xfs_da_btree.h b/fs/xfs/xfs_da_btree.h
index 6fb3371c..0c4772e 100644
--- a/fs/xfs/xfs_da_btree.h
+++ b/fs/xfs/xfs_da_btree.h
@@ -191,10 +191,12 @@ typedef struct xfs_da_args {
 	int		index;		/* index of attr of interest in blk */
 	xfs_dablk_t	rmtblkno;	/* remote attr value starting blkno */
 	int		rmtblkcnt;	/* remote attr value block count */
+	int		rmtvaluelen;	/* remote attr value length in bytes */
 	xfs_dablk_t	blkno2;		/* blkno of 2nd attr leaf of interest */
 	int		index2;		/* index of 2nd attr in blk */
 	xfs_dablk_t	rmtblkno2;	/* remote attr value starting blkno */
 	int		rmtblkcnt2;	/* remote attr value block count */
+	int		rmtvaluelen2;	/* remote attr value length in bytes */
 	int		op_flags;	/* operation flags */
 	enum xfs_dacmp	cmpresult;	/* name compare result for lookups */
 } xfs_da_args_t;
-- 
1.8.3.4


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

* Re: [PATCH] xfs: remote attribute overwrite causes transaction overrun
  2015-04-29  1:55 ` [PATCH] " Sheng Yong
@ 2015-04-29  7:43   ` Dave Chinner
  2015-04-29  9:05     ` Sheng Yong
  0 siblings, 1 reply; 7+ messages in thread
From: Dave Chinner @ 2015-04-29  7:43 UTC (permalink / raw)
  To: Sheng Yong; +Cc: gregkh, stable

On Wed, Apr 29, 2015 at 01:55:25AM +0000, Sheng Yong wrote:
> commit 8275cdd0e7ac550dcce2b3ef6d2fb3b808c1ae59 upstream.
> 
> Commit e461fcb ("xfs: remote attribute lookups require the value
> length") passes the remote attribute length in the xfs_da_args
> structure on lookup so that CRC calculations and validity checking
> can be performed correctly by related code. This, unfortunately has
> the side effect of changing the args->valuelen parameter in cases
> where it shouldn't.
> 
> That is, when we replace a remote attribute, the incoming
> replacement stores the value and length in args->value and
> args->valuelen, but then the lookup which finds the existing remote
> attribute overwrites args->valuelen with the length of the remote
> attribute being replaced. Hence when we go to create the new
> attribute, we create it of the size of the existing remote
> attribute, not the size it is supposed to be. When the new attribute
> is much smaller than the old attribute, this results in a
> transaction overrun and an ASSERT() failure on a debug kernel:
> 
> XFS: Assertion failed: tp->t_blk_res_used <= tp->t_blk_res, file: fs/xfs/xfs_trans.c, line: 331
> 
> Fix this by keeping the remote attribute value length separate to
> the attribute value length in the xfs_da_args structure. The enables
> us to pass the length of the remote attribute to be removed without
> overwriting the new attribute's length.
> 
> Also, ensure that when we save remote block contexts for a later
> rename we zero the original state variables so that we don't confuse
> the state of the attribute to be removes with the state of the new
> attribute that we just added. [Spotted by Brain Foster.]
> 
> Signed-off-by: Dave Chinner <dchinner@redhat.com>
> Reviewed-by: Brian Foster <bfoster@redhat.com>
> Signed-off-by: Dave Chinner <david@fromorbit.com>
> [shengyong: backport to 3.10
>  - Addresse: CVE-2015-0274
>  - adjust context
>  - fs/xfs/xfs_attr_list.c comes from fs/xfs/xfs_attr.c and
>    fs/xfs/xfs_attr_leaf.c in linux 3.12]
> Signed-off-by: Sheng Yong <shengyong1@huawei.com>

You are backporting to 3.10?

Check when Commit e461fcb ("xfs: remote attribute lookups require
the value length") was introduced:

$ git describe --contains e461fcb
for-linus-v3.11-rc1~53
$

Seems to me like the problem the CVE describes didn't exist in 3.10...

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

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

* Re: [PATCH] xfs: remote attribute overwrite causes transaction overrun
  2015-04-29  7:43   ` Dave Chinner
@ 2015-04-29  9:05     ` Sheng Yong
  2015-05-02 18:36       ` Greg KH
  0 siblings, 1 reply; 7+ messages in thread
From: Sheng Yong @ 2015-04-29  9:05 UTC (permalink / raw)
  To: Dave Chinner; +Cc: gregkh, stable

Hi, Dave,
Thanks for your review.

On 4/29/2015 3:43 PM, Dave Chinner wrote:
> On Wed, Apr 29, 2015 at 01:55:25AM +0000, Sheng Yong wrote:
>> commit 8275cdd0e7ac550dcce2b3ef6d2fb3b808c1ae59 upstream.
>>
>> Commit e461fcb ("xfs: remote attribute lookups require the value
>> length") passes the remote attribute length in the xfs_da_args
>> structure on lookup so that CRC calculations and validity checking
>> can be performed correctly by related code. This, unfortunately has
>> the side effect of changing the args->valuelen parameter in cases
>> where it shouldn't.
>>
>> That is, when we replace a remote attribute, the incoming
>> replacement stores the value and length in args->value and
>> args->valuelen, but then the lookup which finds the existing remote
>> attribute overwrites args->valuelen with the length of the remote
>> attribute being replaced. Hence when we go to create the new
>> attribute, we create it of the size of the existing remote
>> attribute, not the size it is supposed to be. When the new attribute
>> is much smaller than the old attribute, this results in a
>> transaction overrun and an ASSERT() failure on a debug kernel:
>>
>> XFS: Assertion failed: tp->t_blk_res_used <= tp->t_blk_res, file: fs/xfs/xfs_trans.c, line: 331
>>
>> Fix this by keeping the remote attribute value length separate to
>> the attribute value length in the xfs_da_args structure. The enables
>> us to pass the length of the remote attribute to be removed without
>> overwriting the new attribute's length.
>>
>> Also, ensure that when we save remote block contexts for a later
>> rename we zero the original state variables so that we don't confuse
>> the state of the attribute to be removes with the state of the new
>> attribute that we just added. [Spotted by Brain Foster.]
>>
>> Signed-off-by: Dave Chinner <dchinner@redhat.com>
>> Reviewed-by: Brian Foster <bfoster@redhat.com>
>> Signed-off-by: Dave Chinner <david@fromorbit.com>
>> [shengyong: backport to 3.10
>>  - Addresse: CVE-2015-0274
>>  - adjust context
>>  - fs/xfs/xfs_attr_list.c comes from fs/xfs/xfs_attr.c and
>>    fs/xfs/xfs_attr_leaf.c in linux 3.12]
>> Signed-off-by: Sheng Yong <shengyong1@huawei.com>
> 
> You are backporting to 3.10?
> 
> Check when Commit e461fcb ("xfs: remote attribute lookups require
> the value length") was introduced:
You are right, commit e461fcb is not merged into 3.10, but as I mentioned in
the cover letter, commit 7ae077802 cherry-picked from e461fcb, and the cherry-pick
one is merged into 3.10 :-)

linux-stable$ git log --oneline 7ae077802 -n 1
7ae0778 xfs: remote attribute lookups require the value length

linux-stable$ git describe --contains 7ae077802
v3.10-rc3~5^2

thanks,
Sheng
> 
> $ git describe --contains e461fcb
> for-linus-v3.11-rc1~53
> $
> 
> Seems to me like the problem the CVE describes didn't exist in 3.10...
> 
> Cheers,
> 
> Dave.
> 


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

* Re: [PATCH] xfs: remote attribute overwrite causes transaction overrun
  2015-04-29  9:05     ` Sheng Yong
@ 2015-05-02 18:36       ` Greg KH
  2015-05-04  1:45         ` Sheng Yong
  0 siblings, 1 reply; 7+ messages in thread
From: Greg KH @ 2015-05-02 18:36 UTC (permalink / raw)
  To: Sheng Yong; +Cc: Dave Chinner, stable

On Wed, Apr 29, 2015 at 05:05:17PM +0800, Sheng Yong wrote:
> Hi, Dave,
> Thanks for your review.
> 
> On 4/29/2015 3:43 PM, Dave Chinner wrote:
> > On Wed, Apr 29, 2015 at 01:55:25AM +0000, Sheng Yong wrote:
> >> commit 8275cdd0e7ac550dcce2b3ef6d2fb3b808c1ae59 upstream.
> >>
> >> Commit e461fcb ("xfs: remote attribute lookups require the value
> >> length") passes the remote attribute length in the xfs_da_args
> >> structure on lookup so that CRC calculations and validity checking
> >> can be performed correctly by related code. This, unfortunately has
> >> the side effect of changing the args->valuelen parameter in cases
> >> where it shouldn't.
> >>
> >> That is, when we replace a remote attribute, the incoming
> >> replacement stores the value and length in args->value and
> >> args->valuelen, but then the lookup which finds the existing remote
> >> attribute overwrites args->valuelen with the length of the remote
> >> attribute being replaced. Hence when we go to create the new
> >> attribute, we create it of the size of the existing remote
> >> attribute, not the size it is supposed to be. When the new attribute
> >> is much smaller than the old attribute, this results in a
> >> transaction overrun and an ASSERT() failure on a debug kernel:
> >>
> >> XFS: Assertion failed: tp->t_blk_res_used <= tp->t_blk_res, file: fs/xfs/xfs_trans.c, line: 331
> >>
> >> Fix this by keeping the remote attribute value length separate to
> >> the attribute value length in the xfs_da_args structure. The enables
> >> us to pass the length of the remote attribute to be removed without
> >> overwriting the new attribute's length.
> >>
> >> Also, ensure that when we save remote block contexts for a later
> >> rename we zero the original state variables so that we don't confuse
> >> the state of the attribute to be removes with the state of the new
> >> attribute that we just added. [Spotted by Brain Foster.]
> >>
> >> Signed-off-by: Dave Chinner <dchinner@redhat.com>
> >> Reviewed-by: Brian Foster <bfoster@redhat.com>
> >> Signed-off-by: Dave Chinner <david@fromorbit.com>
> >> [shengyong: backport to 3.10
> >>  - Addresse: CVE-2015-0274
> >>  - adjust context
> >>  - fs/xfs/xfs_attr_list.c comes from fs/xfs/xfs_attr.c and
> >>    fs/xfs/xfs_attr_leaf.c in linux 3.12]
> >> Signed-off-by: Sheng Yong <shengyong1@huawei.com>
> > 
> > You are backporting to 3.10?
> > 
> > Check when Commit e461fcb ("xfs: remote attribute lookups require
> > the value length") was introduced:
> You are right, commit e461fcb is not merged into 3.10, but as I mentioned in
> the cover letter, commit 7ae077802 cherry-picked from e461fcb, and the cherry-pick
> one is merged into 3.10 :-)
> 
> linux-stable$ git log --oneline 7ae077802 -n 1
> 7ae0778 xfs: remote attribute lookups require the value length
> 
> linux-stable$ git describe --contains 7ae077802
> v3.10-rc3~5^2

I don't understand this at all, what do you mean?

confused,

greg k-h

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

* Re: [PATCH] xfs: remote attribute overwrite causes transaction overrun
  2015-05-02 18:36       ` Greg KH
@ 2015-05-04  1:45         ` Sheng Yong
  2015-05-04  3:34           ` Dave Chinner
  0 siblings, 1 reply; 7+ messages in thread
From: Sheng Yong @ 2015-05-04  1:45 UTC (permalink / raw)
  To: Greg KH; +Cc: Dave Chinner, stable

Hi, Greg

On 5/3/2015 2:36 AM, Greg KH wrote:
> On Wed, Apr 29, 2015 at 05:05:17PM +0800, Sheng Yong wrote:
>> Hi, Dave,
>> Thanks for your review.
>>
>> On 4/29/2015 3:43 PM, Dave Chinner wrote:
>>> On Wed, Apr 29, 2015 at 01:55:25AM +0000, Sheng Yong wrote:
>>>> commit 8275cdd0e7ac550dcce2b3ef6d2fb3b808c1ae59 upstream.
>>>>
>>>> Commit e461fcb ("xfs: remote attribute lookups require the value
>>>> length") passes the remote attribute length in the xfs_da_args
>>>> structure on lookup so that CRC calculations and validity checking
>>>> can be performed correctly by related code. This, unfortunately has
>>>> the side effect of changing the args->valuelen parameter in cases
>>>> where it shouldn't.
>>>>
>>>> That is, when we replace a remote attribute, the incoming
>>>> replacement stores the value and length in args->value and
>>>> args->valuelen, but then the lookup which finds the existing remote
>>>> attribute overwrites args->valuelen with the length of the remote
>>>> attribute being replaced. Hence when we go to create the new
>>>> attribute, we create it of the size of the existing remote
>>>> attribute, not the size it is supposed to be. When the new attribute
>>>> is much smaller than the old attribute, this results in a
>>>> transaction overrun and an ASSERT() failure on a debug kernel:
>>>>
>>>> XFS: Assertion failed: tp->t_blk_res_used <= tp->t_blk_res, file: fs/xfs/xfs_trans.c, line: 331
>>>>
>>>> Fix this by keeping the remote attribute value length separate to
>>>> the attribute value length in the xfs_da_args structure. The enables
>>>> us to pass the length of the remote attribute to be removed without
>>>> overwriting the new attribute's length.
>>>>
>>>> Also, ensure that when we save remote block contexts for a later
>>>> rename we zero the original state variables so that we don't confuse
>>>> the state of the attribute to be removes with the state of the new
>>>> attribute that we just added. [Spotted by Brain Foster.]
>>>>
>>>> Signed-off-by: Dave Chinner <dchinner@redhat.com>
>>>> Reviewed-by: Brian Foster <bfoster@redhat.com>
>>>> Signed-off-by: Dave Chinner <david@fromorbit.com>
>>>> [shengyong: backport to 3.10
>>>>  - Addresse: CVE-2015-0274
>>>>  - adjust context
>>>>  - fs/xfs/xfs_attr_list.c comes from fs/xfs/xfs_attr.c and
>>>>    fs/xfs/xfs_attr_leaf.c in linux 3.12]
>>>> Signed-off-by: Sheng Yong <shengyong1@huawei.com>
>>>
>>> You are backporting to 3.10?
>>>
>>> Check when Commit e461fcb ("xfs: remote attribute lookups require
>>> the value length") was introduced:
>> You are right, commit e461fcb is not merged into 3.10, but as I mentioned in
>> the cover letter, commit 7ae077802 cherry-picked from e461fcb, and the cherry-pick
>> one is merged into 3.10 :-)
>>
>> linux-stable$ git log --oneline 7ae077802 -n 1
>> 7ae0778 xfs: remote attribute lookups require the value length
>>
>> linux-stable$ git describe --contains 7ae077802
>> v3.10-rc3~5^2
> 
> I don't understand this at all, what do you mean?
> 
> confused,
CVE-2015-0274 is caused by commit e461fcb ("xfs: remote attribute lookups require
the value length"), which was introduced in 3.11. It should have had nothing to
do with 3.10-stable. However, when we checked 3.10, we found that this commit was
check-picked from (maybe) the xfs tree. The patch ("xfs: remote attribute lookups
require the value length") was also included in 3.10, and its commit is 7ae077802.
So 3.10-stable is affected by the CVE.

thanks,
Sheng
> 
> greg k-h
> --
> To unsubscribe from this list: send the line "unsubscribe stable" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> .
> 


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

* Re: [PATCH] xfs: remote attribute overwrite causes transaction overrun
  2015-05-04  1:45         ` Sheng Yong
@ 2015-05-04  3:34           ` Dave Chinner
  0 siblings, 0 replies; 7+ messages in thread
From: Dave Chinner @ 2015-05-04  3:34 UTC (permalink / raw)
  To: Sheng Yong; +Cc: Greg KH, stable

On Mon, May 04, 2015 at 09:45:36AM +0800, Sheng Yong wrote:
> CVE-2015-0274 is caused by commit e461fcb ("xfs: remote attribute
> lookups require the value length"), which was introduced in 3.11.
> It should have had nothing to do with 3.10-stable. However, when
> we checked 3.10, we found that this commit was check-picked from
> (maybe) the xfs tree. The patch ("xfs: remote attribute lookups
> require the value length") was also included in 3.10, and its
> commit is 7ae077802.  So 3.10-stable is affected by the CVE.

So aparently it is needed if there is any bug exposed, which I can't
tell from the complete lack of information in the CVE about it.

Indeed, I originally found the problem on a CONFIG_XFS_DEBUG=y
kernel, which flags lots of issues that have no effect on run-time
behaviour of production systems. A transaction overrun does *not*
cause a production system to fail, so I'm really not sure that there
is a problem that needs to be fixed here.

Regardless of whether there is a bug to be fixed or not, what
regression testing have you done on your backport to ensure you
haven't introduced any new problems?

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

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

end of thread, other threads:[~2015-05-04  3:34 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-29  1:55 [RFC PATCH] xfs: remote attribute overwrite causes transaction overrun Sheng Yong
2015-04-29  1:55 ` [PATCH] " Sheng Yong
2015-04-29  7:43   ` Dave Chinner
2015-04-29  9:05     ` Sheng Yong
2015-05-02 18:36       ` Greg KH
2015-05-04  1:45         ` Sheng Yong
2015-05-04  3:34           ` Dave Chinner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).