From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9636BC433DF for ; Mon, 22 Jun 2020 09:27:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 66D502071A for ; Mon, 22 Jun 2020 09:27:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592818049; bh=hWYKPFE9P3J3avt6bqZOYDK5HSShSgcf4lckraPXxZA=; h=From:To:Cc:Subject:Date:List-ID:From; b=qJUoKGojyni5+ngWEPCMLhsbyakd1+NiOwRzHsfuXaCIbQzmSnAF5pCpYmVyp0xkW slos4izYBV1lZNTTVHNNcdj5nI8yiDTULCXQ0mIdEb8GXXjs12GIOv53WPVrnfo9kn xbwoUwQS9y/hCrA09FC5taNutWC0iOHH/uesYXts= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726511AbgFVJ13 (ORCPT ); Mon, 22 Jun 2020 05:27:29 -0400 Received: from mail.kernel.org ([198.145.29.99]:50990 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726380AbgFVJ12 (ORCPT ); Mon, 22 Jun 2020 05:27:28 -0400 Received: from dogfood.home (lfbn-nic-1-188-42.w2-15.abo.wanadoo.fr [2.15.37.42]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id A2D0820708; Mon, 22 Jun 2020 09:27:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592818048; bh=hWYKPFE9P3J3avt6bqZOYDK5HSShSgcf4lckraPXxZA=; h=From:To:Cc:Subject:Date:From; b=bE16+dF6SMSB5UO6GsVEiN6JX0rN2w/xk+OGYKNTJUb+jGdZHEf7uhLnvFNC8fgn5 Mr55iwAYSjwONJdCYnZn47MA3E/cI6HCCIsD4uAI8lk2WI/oUkrLWVdRioBvc3fBJv WTFEQKNTOlPW3mjJXXTFlE0tK5F/mPg4jxf13T/c= From: Ard Biesheuvel To: linux-arm-kernel@lists.infradead.org Cc: linux-acpi@vger.kernel.org, will@kernel.org, catalin.marinas@arm.com, lorenzo.pieralisi@arm.com, sudeep.holla@arm.com, kernel-hardening@lists.openwall.com, Ard Biesheuvel , "Jason A . Donenfeld" Subject: [RFC PATCH] arm64/acpi: disallow AML memory opregions to access kernel memory Date: Mon, 22 Jun 2020 11:27:19 +0200 Message-Id: <20200622092719.1380968-1-ardb@kernel.org> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org ACPI provides support for SystemMemory opregions, to allow AML methods to access MMIO registers of, e.g., GPIO controllers, or access reserved regions of memory that are owned by the firmware. Currently, we also permit AML methods to access memory that is owned by the kernel and mapped via the linear region, which does not seem to be supported by a valid use case, and exposes the kernel's internal state to AML methods that may be buggy and exploitable. So close the door on this, and simply reject AML remapping requests for any memory that has a valid mapping in the linear region. Reported-by: Jason A. Donenfeld Signed-off-by: Ard Biesheuvel --- arch/arm64/include/asm/acpi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/include/asm/acpi.h b/arch/arm64/include/asm/acpi.h index a45366c3909b..18dcef4e6764 100644 --- a/arch/arm64/include/asm/acpi.h +++ b/arch/arm64/include/asm/acpi.h @@ -50,9 +50,9 @@ pgprot_t __acpi_get_mem_attribute(phys_addr_t addr); static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys, acpi_size size) { - /* For normal memory we already have a cacheable mapping. */ + /* Don't allow access to kernel memory from AML code */ if (memblock_is_map_memory(phys)) - return (void __iomem *)__phys_to_virt(phys); + return NULL; /* * We should still honor the memory's attribute here because -- 2.27.0