Received: by 2002:a5b:505:0:0:0:0:0 with SMTP id o5csp6920593ybp; Wed, 16 Oct 2019 00:40:11 -0700 (PDT) X-Google-Smtp-Source: APXvYqzpaF46RKpBwfHoef5gLjhVr9EiBPwf6vJ3ZQq72Rwvu+gBUE5hVdE9kfsXrdYgRWVY7wvn X-Received: by 2002:a17:906:9aa:: with SMTP id q10mr37157371eje.93.1571211610932; Wed, 16 Oct 2019 00:40:10 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1571211610; cv=none; d=google.com; s=arc-20160816; b=ULiKXMZoXPCYI/z/UiuirqtaITIjnRSgr6/8B0uJleYcRqkp95Ut+45wG93LGJPESV rDKn3kZoA/q7CgPkDfn399hgNX3GIz/c42O1XMY5iV5FzpF+38ZutV8ZSNL7v1YtEwh4 jqS3gKloNEs7nzLgS0ukAJ3Htn1qoapJLf/SocOwk4kxrkZ3yen8vEin+ZHd5H2tEV1h XZGXTDJXd8zWkzX7IuNqYZ7lHnLOZ4+x22uK5DunHxD+py1v0orScsldeofKmPV3ML0F V9SW/XLGsIZeDqVFsjBfGyf55sdkCC12iDlROkjW84kOY8nTqHwRYid7SkGRbGo+d/02 /pyA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=nLULlkiCeV3Hzzr+X2Q5t6fRDT0PhKYz8B4PNa56nS8=; b=rbRMX6u1hXdINdeEHuK6TTdc6WtDD0pqWbjSPgtUjTI/UUZpENsBv77VY+r2+b1X7o aX6G361xDSbfFqiyJic/LwmyNDZ79mgYfoX4jXam5IvKCdCwIAPDKraLPwZth/U4a3IP bw6ZFPd/PK/9YCmSpW+KRabNQKF/ws8fnbphZ/oVnxqPUt9WzEIsNqm//yvoij2oEkJ2 WotRPqz+QDsRP+9nftlZesIoOdY75ej7VHklQSs1EwDkGu1sg37sV/H7eMXxmNa9TXZx f/7cdwn0meC45o5iuGSnuBCO7e745IWLqiDyTEhnUhU46c2eXl3sUluyltxdsZhTMx7I mLNQ== 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; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=intel.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id b20si15992104edc.359.2019.10.16.00.39.47; Wed, 16 Oct 2019 00:40:10 -0700 (PDT) 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; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=intel.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732983AbfJOXzG (ORCPT + 99 others); Tue, 15 Oct 2019 19:55:06 -0400 Received: from mga06.intel.com ([134.134.136.31]:62992 "EHLO mga06.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727439AbfJOXzF (ORCPT ); Tue, 15 Oct 2019 19:55:05 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 Oct 2019 16:55:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,301,1566889200"; d="scan'208";a="370629838" Received: from oux.sc.intel.com ([10.3.52.57]) by orsmga005.jf.intel.com with ESMTP; 15 Oct 2019 16:55:04 -0700 From: Yian Chen To: iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org, linux-ia64@vger.kernel.org, David Woodhouse , Joerg Roedel , Ashok Raj , Sohil Mehta , Tony Luck Cc: Yian Chen Subject: [PATCH] iommu/vt-d: Check VT-d RMRR region in BIOS is reported as reserved Date: Tue, 15 Oct 2019 09:49:32 -0700 Message-Id: <20191015164932.18185-1-yian.chen@intel.com> X-Mailer: git-send-email 2.17.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org VT-d RMRR (Reserved Memory Region Reporting) regions are reserved for device use only and should not be part of allocable memory pool of OS. BIOS e820_table reports complete memory map to OS, including OS usable memory ranges and BIOS reserved memory ranges etc. x86 BIOS may not be trusted to include RMRR regions as reserved type of memory in its e820 memory map, hence validate every RMRR entry with the e820 memory map to make sure the RMRR regions will not be used by OS for any other purposes. ia64 EFI is working fine so implement RMRR validation as a dummy function Reviewed-by: Sohil Mehta Signed-off-by: Yian Chen --- arch/ia64/include/asm/iommu.h | 5 +++++ arch/x86/include/asm/iommu.h | 18 ++++++++++++++++++ drivers/iommu/intel-iommu.c | 8 +++++++- 3 files changed, 30 insertions(+), 1 deletion(-) diff --git a/arch/ia64/include/asm/iommu.h b/arch/ia64/include/asm/iommu.h index 7904f591a79b..eb0db20c9d4c 100644 --- a/arch/ia64/include/asm/iommu.h +++ b/arch/ia64/include/asm/iommu.h @@ -2,6 +2,8 @@ #ifndef _ASM_IA64_IOMMU_H #define _ASM_IA64_IOMMU_H 1 +#include + /* 10 seconds */ #define DMAR_OPERATION_TIMEOUT (((cycles_t) local_cpu_data->itc_freq)*10) @@ -9,6 +11,9 @@ extern void no_iommu_init(void); #ifdef CONFIG_INTEL_IOMMU extern int force_iommu, no_iommu; extern int iommu_detected; + +static inline int __init +arch_rmrr_sanity_check(struct acpi_dmar_reserved_memory *rmrr) { return 0; } #else #define no_iommu (1) #define iommu_detected (0) diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h index b91623d521d9..95fa65a5f0dc 100644 --- a/arch/x86/include/asm/iommu.h +++ b/arch/x86/include/asm/iommu.h @@ -2,10 +2,28 @@ #ifndef _ASM_X86_IOMMU_H #define _ASM_X86_IOMMU_H +#include + +#include + extern int force_iommu, no_iommu; extern int iommu_detected; /* 10 seconds */ #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000) +static inline int __init +arch_rmrr_sanity_check(struct acpi_dmar_reserved_memory *rmrr) +{ + u64 start = rmrr->base_address; + u64 end = rmrr->end_address + 1; + + if (e820__mapped_all(start, end, E820_TYPE_RESERVED)) + return 0; + + pr_err(FW_BUG "No firmware reserved region can cover this RMRR [%#018Lx-%#018Lx], contact BIOS vendor for fixes\n", + start, end - 1); + return -EFAULT; +} + #endif /* _ASM_X86_IOMMU_H */ diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c index 3f974919d3bd..722290014143 100644 --- a/drivers/iommu/intel-iommu.c +++ b/drivers/iommu/intel-iommu.c @@ -4306,13 +4306,19 @@ int __init dmar_parse_one_rmrr(struct acpi_dmar_header *header, void *arg) { struct acpi_dmar_reserved_memory *rmrr; struct dmar_rmrr_unit *rmrru; + int ret; + + rmrr = (struct acpi_dmar_reserved_memory *)header; + ret = arch_rmrr_sanity_check(rmrr); + if (ret) + return ret; rmrru = kzalloc(sizeof(*rmrru), GFP_KERNEL); if (!rmrru) goto out; rmrru->hdr = header; - rmrr = (struct acpi_dmar_reserved_memory *)header; + rmrru->base_address = rmrr->base_address; rmrru->end_address = rmrr->end_address; -- 2.17.1