public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix fencepost error in x86_64 IOMMU (2.4)
@ 2004-02-17 21:14 Jim Paradis
  2004-02-18 21:34 ` Andi Kleen
  0 siblings, 1 reply; 2+ messages in thread
From: Jim Paradis @ 2004-02-17 21:14 UTC (permalink / raw)
  To: marcelo.tosatti, ak; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 514 bytes --]

There's a fencepost error in the GART IOMMU handling on x86_64
in the unmap path.  When testing to see if the bus address is
within the IOMMU window and needs to be unmapped, the start of
the first page *beyond* the window also passes the test.  This
can cause the first doubleword of the next page beyond the gatt
table to be smashed to zero, with unpredictable results depending
on what that page is used for.

Patch attached for 2.4.  The same problem also exists in 2.6,
for which I'll send a separate patch.


[-- Attachment #2: pci-gart-fix-2.4.patch --]
[-- Type: text/plain, Size: 1006 bytes --]

--- linux-2.4.25-rc3/arch/x86_64/kernel/pci-gart.c.orig	2004-02-17 15:21:03.000000000 -0500
+++ linux-2.4.25-rc3/arch/x86_64/kernel/pci-gart.c	2004-02-17 15:23:20.000000000 -0500
@@ -220,7 +220,7 @@ void pci_free_consistent(struct pci_dev 
 	unsigned long iommu_page;
 
 	size = round_up(size, PAGE_SIZE); 
-	if (bus >= iommu_bus_base && bus <= iommu_bus_base + iommu_size) { 
+	if (bus >= iommu_bus_base && bus < iommu_bus_base + iommu_size) { 
 		unsigned pages = size >> PAGE_SHIFT;
 		iommu_page = (bus - iommu_bus_base) >> PAGE_SHIFT;
 		vaddr = __va(GPTE_DECODE(iommu_gatt_base[iommu_page]));
@@ -353,7 +353,7 @@ void pci_unmap_single(struct pci_dev *hw
 	unsigned long iommu_page; 
 	int npages;
 	if (dma_addr < iommu_bus_base + EMERGENCY_PAGES*PAGE_SIZE || 
-	    dma_addr > iommu_bus_base + iommu_size)
+	    dma_addr >= iommu_bus_base + iommu_size)
 		return;
 	iommu_page = (dma_addr - iommu_bus_base)>>PAGE_SHIFT;	
 	npages = round_up(size + (dma_addr & ~PAGE_MASK), PAGE_SIZE) >> PAGE_SHIFT;

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] Fix fencepost error in x86_64 IOMMU (2.4)
  2004-02-17 21:14 [PATCH] Fix fencepost error in x86_64 IOMMU (2.4) Jim Paradis
@ 2004-02-18 21:34 ` Andi Kleen
  0 siblings, 0 replies; 2+ messages in thread
From: Andi Kleen @ 2004-02-18 21:34 UTC (permalink / raw)
  To: Jim Paradis; +Cc: marcelo.tosatti, linux-kernel

On Tue, 17 Feb 2004 16:14:46 -0500
Jim Paradis <jparadis@redhat.com> wrote:

> There's a fencepost error in the GART IOMMU handling on x86_64
> in the unmap path.  When testing to see if the bus address is
> within the IOMMU window and needs to be unmapped, the start of
> the first page *beyond* the window also passes the test.  This
> can cause the first doubleword of the next page beyond the gatt
> table to be smashed to zero, with unpredictable results depending
> on what that page is used for.
> 
> Patch attached for 2.4.  The same problem also exists in 2.6,
> for which I'll send a separate patch.

Thanks. I will add it to my tree.

-Andi

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-02-17 21:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-17 21:14 [PATCH] Fix fencepost error in x86_64 IOMMU (2.4) Jim Paradis
2004-02-18 21:34 ` Andi Kleen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox