mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* No check of the size passed to unmap_single in  swiotlb
@ 2017-11-20  8:17 Eric Yang
  2017-11-20 16:26 ` Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 10+ messages in thread
From: Eric Yang @ 2017-11-20  8:17 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk, linux-kernel
  Cc: Greg Kroah-Hartman, Andrew Morton, Andrey Ryabinin, David Miller,
	Ingo Molnar, Geert Uytterhoeven, Al Viro, Kees Cook,
	Daniel Borkmann

Hi all,

During debug a  device only support 32bits DMA(Qualcomm Atheros AP) in our LS1043A 64bits ARM  SOC, we found that the invoke of dma_unmap_single --> swiotlb_tbl_unmap_single  will unmap the passed "size" anyway even when the "size" is incorrect.

If the size is larger than it should, the extra entries in io_tlb_orig_addr array will be refilled by INVALID_PHYS_ADDR, and it will cause the bounce buffer copy not happen when the one who really used the mis-freed entries doing  DMA data transfers, and this will cause further unknow behaviors.

Here we just fix it temporarily by adding a judge of the "size" in the swiotlb_tbl_unmap_single, if it is larger than it deserves, just unmap the right size only. Like the code:

[yangyu@titan dash-lts]$ git diff ./lib/swiotlb.c
diff --git a/lib/swiotlb.c b/lib/swiotlb.c
index ad1d2962d129..58c97ede9d78 100644
--- a/lib/swiotlb.c
+++ b/lib/swiotlb.c
@@ -591,7 +591,10 @@ void swiotlb_tbl_unmap_single(struct device *hwdev, phys_addr_t tlb_addr,
                 */
                for (i = index + nslots - 1; i >= index; i--) {
                        io_tlb_list[i] = ++count;
-                       io_tlb_orig_addr[i] = INVALID_PHYS_ADDR;
+                      if(io_tlb_orig_addr[i]  != orig_addr)
+                          printk("======size wrong, ally down ally down!===\n");
+                      else
+                         io_tlb_orig_addr[i] = INVALID_PHYS_ADDR;
                }
                /*
                 * Step 2: merge the returned slots with the preceding slots,

Although pass a right size of DMA buffer is the responsibility of  the drivers, but Is it useful to add some size check code to prevent  real damage happen? 

Regards,
Eric

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

end of thread, other threads:[~2017-11-30  3:05 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-20  8:17 No check of the size passed to unmap_single in swiotlb Eric Yang
2017-11-20 16:26 ` Konrad Rzeszutek Wilk
2017-11-20 16:50   ` Robin Murphy
2017-11-23  9:08     ` Eric Yang
2017-11-24 13:33       ` Konrad Rzeszutek Wilk
2017-11-28 14:18       ` Robin Murphy
2017-11-30  3:05         ` Eric Yang
2017-11-22  3:23   ` Eric Yang
2017-11-22 13:15     ` Robin Murphy
2017-11-23  7:47       ` Eric Yang

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

Powered by JetHome