From patchwork Tue Apr 12 07:25:46 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tong Tiangen X-Patchwork-Id: 12810164 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by smtp.lore.kernel.org (Postfix) with ESMTP id E46D8C433FE for ; Tue, 12 Apr 2022 07:07:27 +0000 (UTC) Received: by kanga.kvack.org (Postfix) id C049D6B0075; Tue, 12 Apr 2022 03:07:26 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id B36806B007E; Tue, 12 Apr 2022 03:07:26 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 8E9CD6B007B; Tue, 12 Apr 2022 03:07:26 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0190.hostedemail.com [216.40.44.190]) by kanga.kvack.org (Postfix) with ESMTP id 729256B0078 for ; Tue, 12 Apr 2022 03:07:26 -0400 (EDT) Received: from smtpin29.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay05.hostedemail.com (Postfix) with ESMTP id 27EA7183C8AA0 for ; Tue, 12 Apr 2022 07:07:26 +0000 (UTC) X-FDA: 79347346092.29.6A7B9FB Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by imf13.hostedemail.com (Postfix) with ESMTP id AD63F20009 for ; Tue, 12 Apr 2022 07:07:24 +0000 (UTC) Received: from kwepemi100009.china.huawei.com (unknown [172.30.72.56]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4Kcxbp1tdSzdZpy; Tue, 12 Apr 2022 15:06:46 +0800 (CST) Received: from kwepemm600017.china.huawei.com (7.193.23.234) by kwepemi100009.china.huawei.com (7.221.188.242) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Tue, 12 Apr 2022 15:07:20 +0800 Received: from localhost.localdomain (10.175.112.125) by kwepemm600017.china.huawei.com (7.193.23.234) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Tue, 12 Apr 2022 15:07:19 +0800 From: Tong Tiangen To: Mark Rutland , James Morse , Andrew Morton , Thomas Gleixner , Ingo Molnar , Borislav Petkov , Robin Murphy , Dave Hansen , Catalin Marinas , Will Deacon , Alexander Viro , , "H . Peter Anvin" CC: , , , Kefeng Wang , Xie XiuQi , Tong Tiangen Subject: [RFC PATCH -next V3 0/6]arm64: add machine check safe support Date: Tue, 12 Apr 2022 07:25:46 +0000 Message-ID: <20220412072552.2526871-1-tongtiangen@huawei.com> X-Mailer: git-send-email 2.18.0.huawei.25 MIME-Version: 1.0 X-Originating-IP: [10.175.112.125] X-ClientProxiedBy: dggems705-chm.china.huawei.com (10.3.19.182) To kwepemm600017.china.huawei.com (7.193.23.234) X-CFilter-Loop: Reflected X-Rspamd-Server: rspam05 X-Rspamd-Queue-Id: AD63F20009 X-Stat-Signature: 8941qhsoomcaw8d1o17i5ts5wsz4p597 X-Rspam-User: Authentication-Results: imf13.hostedemail.com; dkim=none; dmarc=pass (policy=quarantine) header.from=huawei.com; spf=pass (imf13.hostedemail.com: domain of tongtiangen@huawei.com designates 45.249.212.187 as permitted sender) smtp.mailfrom=tongtiangen@huawei.com X-HE-Tag: 1649747244-212524 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: With the increase of memory capacity and density, the probability of memory error increases. The increasing size and density of server RAM in the data center and cloud have shown increased uncorrectable memory errors. Currently, the kernel has a mechanism to recover from hardware memory errors. This patchset provides an new recovery mechanism. For arm64, the hardware memory error handling is do_sea() which divided into two cases: 1. The user state consumed the memory errors, the solution is kill the user process and isolate the error page. 2. The kernel state consumed the memory errors, the solution is panic. For case 2, Undifferentiated panic maybe not the optimal choice, it can be handled better, in some scenes, we can avoid panic, such as uaccess, if the uaccess fails due to memory error, only the user process will be affected, kill the user process and isolate the user page with hardware memory errors is a better choice. This patchset can be divided into three parts: 1. Patch 0/1 - make some minor fixes to the associated code. 2. Patch 3 - arm64 add support for machine check safe framework. 3. Pathc 4/5/6 - arm64 add uaccess and cow to machine check safe. Since V3: 1. According to Mark's suggestion, all uaccess can be recovered due to memory error. 2. Scenario pagecache reading is also supported as part of uaccess (copy_to_user()) and duplication code problem is also solved. Thanks for Robin's suggestion. 3. According Mark's suggestion, update commit message of patch 2/5. 4. According Borisllav's suggestion, update commit message of patch 1/5. Since V2: 1.Consistent with PPC/x86, Using CONFIG_ARCH_HAS_COPY_MC instead of ARM64_UCE_KERNEL_RECOVERY. 2.Add two new scenes, cow and pagecache reading. 3.Fix two small bug(the first two patch). V1 in here: https://lore.kernel.org/lkml/20220323033705.3966643-1-tongtiangen@huawei.com/ Tong Tiangen (6): x86: fix function define in copy_mc_to_user arm64: fix types in copy_highpage() arm64: add support for machine check error safe arm64: add copy_{to, from}_user to machine check safe arm64: add {get, put}_user to machine check safe arm64: add cow to machine check safe arch/arm64/Kconfig | 1 + arch/arm64/include/asm/asm-extable.h | 30 +++++++++ arch/arm64/include/asm/asm-uaccess.h | 16 +++++ arch/arm64/include/asm/extable.h | 1 + arch/arm64/include/asm/page.h | 10 +++ arch/arm64/include/asm/uaccess.h | 4 +- arch/arm64/lib/Makefile | 2 + arch/arm64/lib/copy_from_user.S | 15 +++-- arch/arm64/lib/copy_page_mc.S | 99 ++++++++++++++++++++++++++++ arch/arm64/lib/copy_to_user.S | 25 ++++--- arch/arm64/mm/copypage.c | 36 ++++++++-- arch/arm64/mm/extable.c | 22 +++++++ arch/arm64/mm/fault.c | 28 ++++++++ arch/x86/include/asm/uaccess.h | 1 + include/linux/highmem.h | 8 +++ include/linux/uaccess.h | 8 +++ mm/memory.c | 2 +- 17 files changed, 286 insertions(+), 22 deletions(-) create mode 100644 arch/arm64/lib/copy_page_mc.S