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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D50E6C54EAA for ; Mon, 30 Jan 2023 08:16:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235979AbjA3IQz (ORCPT ); Mon, 30 Jan 2023 03:16:55 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44456 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235973AbjA3IQv (ORCPT ); Mon, 30 Jan 2023 03:16:51 -0500 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 88E2246A9 for ; Mon, 30 Jan 2023 00:16:19 -0800 (PST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 831EE1FB; Mon, 30 Jan 2023 00:16:58 -0800 (PST) Received: from [10.162.43.6] (unknown [10.162.43.6]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id A23123F885; Mon, 30 Jan 2023 00:16:13 -0800 (PST) Message-ID: <78d22aaf-e04f-2828-54c1-1ebf0f8d06c1@arm.com> Date: Mon, 30 Jan 2023 13:46:10 +0530 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.2.2 Subject: Re: [PATCH V2] arm64/mm: Intercept pfn changes in set_pte_at() Content-Language: en-US To: Mark Rutland , Will Deacon Cc: linux-arm-kernel@lists.infradead.org, catalin.marinas@arm.com, Andrew Morton , linux-kernel@vger.kernel.org, Mark Brown , robin.murphy@arm.com References: <20230109052816.405335-1-anshuman.khandual@arm.com> <20230126133321.GB29148@willie-the-truck> From: Anshuman Khandual In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 1/27/23 20:46, Mark Rutland wrote: > On Thu, Jan 26, 2023 at 01:33:22PM +0000, Will Deacon wrote: >> On Tue, Jan 24, 2023 at 11:11:49AM +0530, Anshuman Khandual wrote: >>> On 1/9/23 10:58, Anshuman Khandual wrote: >>>> Changing pfn on a user page table mapped entry, without first going through >>>> break-before-make (BBM) procedure is unsafe. This just updates set_pte_at() >>>> to intercept such changes, via an updated pgattr_change_is_safe(). This new >>>> check happens via __check_racy_pte_update(), which has now been renamed as >>>> __check_safe_pte_update(). >>>> >>>> Cc: Catalin Marinas >>>> Cc: Will Deacon >>>> Cc: Mark Rutland >>>> Cc: Andrew Morton >>>> Cc: linux-arm-kernel@lists.infradead.org >>>> Cc: linux-kernel@vger.kernel.org >>>> Signed-off-by: Anshuman Khandual >>>> --- >>>> This applies on v6.2-rc3. This patch had some test time on an internal CI >>>> system without any issues being reported. >>> >>> Gentle ping, any updates on this patch ? Still any concerns ? >> >> I don't think we really got to the bottom of Mark's concerns with >> unreachable ptes on the stack, did we? I also have vague recollections >> of somebody (Robin?) running into issues with the vmap code not honouring >> BBM. >> >> So I think we should confirm/fix the vmap issue before we enable this check >> and also try to get some testing coverage to address Mark's worries. I think >> he has a syzkaller instance set up, so that sound like a good place to >> start. > > I've thrown my Syzkaller instance at this patch; if it doesn't find anything by > Monday I reckon we should pick this up. > > That said, I had some minor nits on the patch; I'm not sure if you'd be happy > to apply the suggested changes when applying or if you'd prefer that Anshuman > applies those locally and sense a v3. I could send out a V3, running some stress-ng based memory tests with the suggested changes applied on the patch.