From patchwork Tue Jan 27 08:44:13 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yijing Wang X-Patchwork-Id: 5715691 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: X-Original-To: patchwork-linux-pci@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 5AC93C058D for ; Tue, 27 Jan 2015 08:47:02 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 72141201F5 for ; Tue, 27 Jan 2015 08:47:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 71E1F200E9 for ; Tue, 27 Jan 2015 08:47:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754593AbbA0Iq7 (ORCPT ); Tue, 27 Jan 2015 03:46:59 -0500 Received: from szxga02-in.huawei.com ([119.145.14.65]:18418 "EHLO szxga02-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754453AbbA0Iq6 (ORCPT ); Tue, 27 Jan 2015 03:46:58 -0500 Received: from 172.24.2.119 (EHLO szxeml431-hub.china.huawei.com) ([172.24.2.119]) by szxrg02-dlp.huawei.com (MOS 4.3.7-GA FastPath queued) with ESMTP id CGJ64191; Tue, 27 Jan 2015 16:45:38 +0800 (CST) Received: from localhost.localdomain (10.175.100.166) by szxeml431-hub.china.huawei.com (10.82.67.208) with Microsoft SMTP Server id 14.3.158.1; Tue, 27 Jan 2015 16:45:30 +0800 From: Yijing Wang To: CC: , Yijing Wang Subject: [PATCH] PCI: Add guard to avoid mapping a invalid msix base address Date: Tue, 27 Jan 2015 16:44:13 +0800 Message-ID: <1422348253-13990-1-git-send-email-wangyijing@huawei.com> X-Mailer: git-send-email 1.7.1 MIME-Version: 1.0 X-Originating-IP: [10.175.100.166] X-CFilter-Loop: Reflected Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Sometimes, a pci bridge device BAR was not assigned properly. After we call pci_bus_assign_resources(), the resource of the BAR would be reseted. So if we try to enable msix for this device, it will map a invalid resource as the msix base address, and a warning call trace will report. pci_bus_assign_resources() __pci_bus_assign_resources() pbus_assign_resources_sorted() __assign_resources_sorted() assign_requested_resources_sorted() pci_assign_resource() -->fail reset_resource() -->res->start/end/flags = 0 pcie_port_device_register() init_service_irqs() pcie_port_enable_msix() ... msix_capability_init() msix_map_region() phys_addr = pci_resource_start(dev, bir) + table_offset; If BAR(index=bir) was not assign properly, pci_resource_start(dev, bir) here would return 0, so phys_addr is a invalid physical address of msix. [ 43.094087] ------------[ cut here ]------------ [ 43.097418] WARNING: CPU: 1 PID: 1800 at arch/arm64/mm/ioremap.c:58 __ioremap_caller+0xd4/0xe8() ... [ 43.121694] CPU: 1 PID: 1800 Comm: insmod Tainted: G O 3.16.0 #5 [ 43.127374] Call trace: [ 43.128522] [] dump_backtrace+0x0/0x130 [ 43.132637] [] show_stack+0x10/0x1c [ 43.136402] [] dump_stack+0x74/0x94 [ 43.140166] [] warn_slowpath_common+0x8c/0xb4 [ 43.144804] [] warn_slowpath_null+0x14/0x20 [ 43.149266] [] __ioremap_caller+0xd0/0xe8 [ 43.153555] [] __ioremap+0xc/0x18 [ 43.157145] [] pci_enable_msix+0x238/0x44c [ 43.161521] [] pci_enable_msix_range+0x34/0x80 [ 43.166243] [] pcie_port_device_register+0x104/0x480 [ 43.171491] [] pcie_portdrv_probe+0x38/0xa0 [ 43.175952] [] pci_device_probe+0x78/0xd4 [ 43.180238] [] really_probe+0x6c/0x22c [ 43.184265] [] __device_attach+0x5c/0x6c [ 43.188466] [] bus_for_each_drv+0x50/0x94 [ 43.192755] [] device_attach+0x9c/0xc0 [ 43.196780] [] pci_bus_add_device+0x38/0x80 [ 43.201243] [] pci_bus_add_devices+0x4c/0xd4 [ 43.205791] [] pci_common_init+0x274/0x378 [ 43.210170] [] $x+0xb8c/0xc88 [pcie] [ 43.214024] [] platform_drv_probe+0x20/0x58 [ 43.218483] [] really_probe+0xc4/0x22c [ 43.222510] [] __driver_attach+0xa0/0xa8 [ 43.226708] [] bus_for_each_dev+0x54/0x98 [ 43.231000] [] driver_attach+0x1c/0x28 [ 43.235024] [] bus_add_driver+0x14c/0x204 [ 43.239309] [] driver_register+0x64/0x130 [ 43.243598] [] __platform_driver_register+0x5c/0x68 [ 43.248757] [] platform_driver_probe+0x28/0xac [ 43.253485] [] pv660_pcie_init+0x30/0x3c [pcie] [ 43.258293] [] do_one_initcall+0x88/0x19c [ 43.262585] [] load_module+0xc2c/0xf2c [ 43.266609] [] SyS_finit_module+0x78/0x88 [ 43.270897] ---[ end trace ea5eb60837afb5aa ]--- Reported-by: Zhang Jukuo Tested-by: Zhang Jukuo Signed-off-by: Yijing Wang --- drivers/pci/msi.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index fd60806..cd401a2 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c @@ -699,6 +699,9 @@ static void __iomem *msix_map_region(struct pci_dev *dev, unsigned nr_entries) pci_read_config_dword(dev, dev->msix_cap + PCI_MSIX_TABLE, &table_offset); bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR); + if (!pci_resource_flags(dev, bir)) + return NULL; + table_offset &= PCI_MSIX_TABLE_OFFSET; phys_addr = pci_resource_start(dev, bir) + table_offset;