Received: by 2002:ac0:946b:0:0:0:0:0 with SMTP id j40csp127222imj; Thu, 14 Feb 2019 16:54:28 -0800 (PST) X-Google-Smtp-Source: AHgI3IaGSF7BEFMmXVPwAylRfaNy8WszBFdwDdvhxSAEKtH/hG+YBtap7XgIB4+mFeY8vTo8T+Nw X-Received: by 2002:a17:902:8695:: with SMTP id g21mr7249347plo.83.1550192068027; Thu, 14 Feb 2019 16:54:28 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1550192068; cv=none; d=google.com; s=arc-20160816; b=H09DEXP9lddV7Ynd/+bez7QrhrkoumWcqot+v08VgpQSJnP2ms0pmaQ8FTPc0CVSg4 tv9FwOrUVWKdgsvstuSE0nI4u3+xdnSWDI8ZehRX0ZlH3wf09gYMmiwuxwmaesdvFh0s SV0Y59MCW0Bgm/ezy7IHHv0Le8HnquXTSkoJdN5tWo9aE2p0WdUm2iY1lAC1CgQUuCVc D97d9WzOsrKu0onfnj8SVlExAMNygmm5GZ6TkYZ2yHoMAkguug+big9GNDl6jOy4V1Hb OsGa6Yxcz4XHauVK94qdKZW4F/MWKukvaPn+U66GgphGto9IBZmZOGovG7g7bMw/AURp HLow== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=dGB9RBkZesdHOgFy6liuEtRqoMywJBqINem8etCnZ1Y=; b=gGKA0c7KUV3386YxoWYJE9NhHm/ekmE8MGimH8s8gzIaB1AaUlbNts/VeZJI4C82Us eRx9/Mjt8gx10Xoh3bQQ8xs2QyX/0DS/pHR42R9y7qa+ig8J64Nekd+on0atq4ZO2ayn Abw5aBeNDsnWLArrJWUThFKc8Ob9jOLvwdxT7ZkBrPRpvqbgJdDpXya5eT4ucBPoTkkc aCFUiWbbBG2VQ6zzDbx3wjTrFcuzEQjcZJFrFKFTVtYplkPOd1ZhUgobOOJWe5A2ONp6 ZiR+Fln8u+ib1vRLE6b6fNlgCsSekuHSG+APND7JlmRzcTLlFrqyZxLfxrCNmYFpogxl RxoQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v206si1616689pgb.138.2019.02.14.16.54.12; Thu, 14 Feb 2019 16:54:28 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2407972AbfBNQcB (ORCPT + 99 others); Thu, 14 Feb 2019 11:32:01 -0500 Received: from mx2.suse.de ([195.135.220.15]:49112 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S2407963AbfBNQb6 (ORCPT ); Thu, 14 Feb 2019 11:31:58 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id E9F93AF63; Thu, 14 Feb 2019 16:31:56 +0000 (UTC) Received: by quack2.suse.cz (Postfix, from userid 1000) id 0929E1E0900; Thu, 14 Feb 2019 17:31:56 +0100 (CET) Date: Thu, 14 Feb 2019 17:31:56 +0100 From: Jan Kara To: Michael Ellerman Cc: linuxppc-dev@ozlabs.org, aneesh.kumar@linux.vnet.ibm.com, jack@suse.cz, erhard_f@mailbox.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH] powerpc/64s: Fix possible corruption on big endian due to pgd/pud_present() Message-ID: <20190214163156.GB23000@quack2.suse.cz> References: <20190214062339.7139-1-mpe@ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190214062339.7139-1-mpe@ellerman.id.au> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu 14-02-19 17:23:39, Michael Ellerman wrote: > In v4.20 we changed our pgd/pud_present() to check for _PAGE_PRESENT > rather than just checking that the value is non-zero, e.g.: > > static inline int pgd_present(pgd_t pgd) > { > - return !pgd_none(pgd); > + return (pgd_raw(pgd) & cpu_to_be64(_PAGE_PRESENT)); > } > > Unfortunately this is broken on big endian, as the result of the > bitwise && is truncated to int, which is always zero because > _PAGE_PRESENT is 0x8000000000000000ul. This means pgd_present() and > pud_present() are always false at compile time, and the compiler > elides the subsequent code. > > Remarkably with that bug present we are still able to boot and run > with few noticeable effects. However under some work loads we are able > to trigger a warning in the ext4 code: Wow, good catch. I wouldn't believe there are so few bad effects from such a major breakage! :) Honza > > WARNING: CPU: 11 PID: 29593 at fs/ext4/inode.c:3927 .ext4_set_page_dirty+0x70/0xb0 > CPU: 11 PID: 29593 Comm: debugedit Not tainted 4.20.0-rc1 #1 > ... > NIP .ext4_set_page_dirty+0x70/0xb0 > LR .set_page_dirty+0xa0/0x150 > Call Trace: > .set_page_dirty+0xa0/0x150 > .unmap_page_range+0xbf0/0xe10 > .unmap_vmas+0x84/0x130 > .unmap_region+0xe8/0x190 > .__do_munmap+0x2f0/0x510 > .__vm_munmap+0x80/0x110 > .__se_sys_munmap+0x14/0x30 > system_call+0x5c/0x70 > > The fix is simple, we need to convert the result of the bitwise && to > an int before returning it. > > Thanks to Jan Kara and Aneesh for help with debugging. > > Fixes: da7ad366b497 ("powerpc/mm/book3s: Update pmd_present to look at _PAGE_PRESENT bit") > Cc: stable@vger.kernel.org # v4.20+ > Reported-by: Erhard F. > Reviewed-by: Aneesh Kumar K.V > Signed-off-by: Michael Ellerman > --- > arch/powerpc/include/asm/book3s/64/pgtable.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/powerpc/include/asm/book3s/64/pgtable.h b/arch/powerpc/include/asm/book3s/64/pgtable.h > index c9bfe526ca9d..d8c8d7c9df15 100644 > --- a/arch/powerpc/include/asm/book3s/64/pgtable.h > +++ b/arch/powerpc/include/asm/book3s/64/pgtable.h > @@ -904,7 +904,7 @@ static inline int pud_none(pud_t pud) > > static inline int pud_present(pud_t pud) > { > - return (pud_raw(pud) & cpu_to_be64(_PAGE_PRESENT)); > + return !!(pud_raw(pud) & cpu_to_be64(_PAGE_PRESENT)); > } > > extern struct page *pud_page(pud_t pud); > @@ -951,7 +951,7 @@ static inline int pgd_none(pgd_t pgd) > > static inline int pgd_present(pgd_t pgd) > { > - return (pgd_raw(pgd) & cpu_to_be64(_PAGE_PRESENT)); > + return !!(pgd_raw(pgd) & cpu_to_be64(_PAGE_PRESENT)); > } > > static inline pte_t pgd_pte(pgd_t pgd) > -- > 2.20.1 > -- Jan Kara SUSE Labs, CR