RE: [PATCH v2] erofs: fix partially uninitialized misuse in z_erofs_onlinepage_fixup

From: 金红宇 (Hongyu Jin)
Date: Fri Jun 19 2020 - 05:14:04 EST


Hi xiang:

Hongyu reported "id != index" in z_erofs_onlinepage_fixup() with specific aarch64 environment easily, which wasn't shown before.

After digging into that, I found that high 32 bits of page->private was set to 0xaaaaaaaa rather than 0 (due to z_erofs_onlinepage_init behavior with specific compiler options). Actually we only use low
32 bits to keep the page information since page->private is only 4 bytes on most 32-bit platforms. However z_erofs_onlinepage_fixup() uses the upper 32 bits by mistake.

Tested-by: hongyu.jin@xxxxxxxxxx

It's ok.

-----Original Message-----
From: Gao Xiang [mailto:hsiangkao@xxxxxxx]
Sent: Friday, June 19, 2020 7:44 AM
To: linux-erofs@xxxxxxxxxxxxxxxx; Chao Yu <yuchao0@xxxxxxxxxx>
Cc: Chao Yu <chao@xxxxxxxxxx>; Li Guifu <bluce.liguifu@xxxxxxxxxx>; Fang Wei <fangwei1@xxxxxxxxxx>; LKML <linux-kernel@xxxxxxxxxxxxxxx>; Gao Xiang <hsiangkao@xxxxxxxxxx>; 金红宇 (Hongyu Jin) <hongyu.jin@xxxxxxxxxx>; stable@xxxxxxxxxxxxxxx
Subject: [PATCH v2] erofs: fix partially uninitialized misuse in z_erofs_onlinepage_fixup

From: Gao Xiang <hsiangkao@xxxxxxxxxx>

Hongyu reported "id != index" in z_erofs_onlinepage_fixup() with specific aarch64 environment easily, which wasn't shown before.

After digging into that, I found that high 32 bits of page->private was set to 0xaaaaaaaa rather than 0 (due to z_erofs_onlinepage_init behavior with specific compiler options). Actually we only use low
32 bits to keep the page information since page->private is only 4 bytes on most 32-bit platforms. However z_erofs_onlinepage_fixup() uses the upper 32 bits by mistake.

Let's fix it now.

Reported-by: Hongyu Jin <hongyu.jin@xxxxxxxxxx>
Fixes: 3883a79abd02 ("staging: erofs: introduce VLE decompression support")
Cc: <stable@xxxxxxxxxxxxxxx> # 4.19+
Signed-off-by: Gao Xiang <hsiangkao@xxxxxxxxxx>
---
change since v1:
move .v assignment out since it doesn't need for every loop;

fs/erofs/zdata.h | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/fs/erofs/zdata.h b/fs/erofs/zdata.h index 7824f5563a55..9b66c28b3ae9 100644
--- a/fs/erofs/zdata.h
+++ b/fs/erofs/zdata.h
@@ -144,22 +144,22 @@ static inline void z_erofs_onlinepage_init(struct page *page) static inline void z_erofs_onlinepage_fixup(struct page *page,
uintptr_t index, bool down)
{
-unsigned long *p, o, v, id;
-repeat:
-p = &page_private(page);
-o = READ_ONCE(*p);
+union z_erofs_onlinepage_converter u = { .v = &page_private(page) };
+int orig, orig_index, val;

-id = o >> Z_EROFS_ONLINEPAGE_INDEX_SHIFT;
-if (id) {
+repeat:
+orig = atomic_read(u.o);
+orig_index = orig >> Z_EROFS_ONLINEPAGE_INDEX_SHIFT;
+if (orig_index) {
if (!index)
return;

-DBG_BUGON(id != index);
+DBG_BUGON(orig_index != index);
}

-v = (index << Z_EROFS_ONLINEPAGE_INDEX_SHIFT) |
-((o & Z_EROFS_ONLINEPAGE_COUNT_MASK) + (unsigned int)down);
-if (cmpxchg(p, o, v) != o)
+val = (index << Z_EROFS_ONLINEPAGE_INDEX_SHIFT) |
+((orig & Z_EROFS_ONLINEPAGE_COUNT_MASK) + (unsigned int)down);
+if (atomic_cmpxchg(u.o, orig, val) != orig)
goto repeat;
}

--
2.24.0

________________________________
This email (including its attachments) is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Unauthorized use, dissemination, distribution or copying of this email or the information herein or taking any action in reliance on the contents of this email or the information herein, by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is strictly prohibited. If you are not the intended recipient, please do not read, copy, use or disclose any part of this e-mail to others. Please notify the sender immediately and permanently delete this e-mail and any attachments if you received it in error. Internet communications cannot be guaranteed to be timely, secure, error-free or virus-free. The sender does not accept liability for any errors or omissions.
本邮件及其附件具有保密性质,受法律保护不得泄露,仅发送给本邮件所指特定收件人。严禁非经授权使用、宣传、发布或复制本邮件或其内容。若非该特定收件人,请勿阅读、复制、 使用或披露本邮件的任何内容。若误收本邮件,请从系统中永久性删除本邮件及所有附件,并以回复邮件的方式即刻告知发件人。无法保证互联网通信及时、安全、无误或防毒。发件人对任何错漏均不承担责任。