From e66eae017775ddc7bcb65cac6a4b24434b5f651f Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Fri, 4 Aug 2017 16:33:51 -0500 Subject: [PATCH] xfs_metadump: properly handle obfuscation of all remote attribute blocks add_remote_vals assumes that it can subtract blocksize from each block that it processes, but with CRCs, there is a header on each block, so the assumption that each block consumes $BLOCKSIZE of the value length is incorrect. This causes us to stop adding remote blocks too soon, and the missed blocks do not get obfuscated. Fix this by accounting for the header size as appropriate, depending on whether or not we have a CRC filesystem. Signed-off-by: Eric Sandeen Reviewed-by: Brian Foster Signed-off-by: Eric Sandeen --- db/metadump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/metadump.c b/db/metadump.c index 96641e05a..31bb5959a 100644 --- a/db/metadump.c +++ b/db/metadump.c @@ -1609,7 +1609,7 @@ add_remote_vals( attr_data.remote_vals[attr_data.remote_val_count] = blockidx; attr_data.remote_val_count++; blockidx++; - length -= mp->m_sb.sb_blocksize; + length -= XFS_ATTR3_RMT_BUF_SPACE(mp, mp->m_sb.sb_blocksize); } if (attr_data.remote_val_count >= MAX_REMOTE_VALS) { -- 2.47.2