PCI/ATS: Only enable ATS for trusted devices
authorJean-Philippe Brucker <jean-philippe@linaro.org>
Wed, 20 May 2020 15:22:00 +0000 (17:22 +0200)
committerJoerg Roedel <jroedel@suse.de>
Wed, 27 May 2020 12:35:41 +0000 (14:35 +0200)
commit521376741b2c26fe53a1ec24d02da24d477eb739
treec5d2b77b00a342107dd977d8f26ebf0116bfb6a5
parent79659190ee972c05498c338e48d80cb45490c533
PCI/ATS: Only enable ATS for trusted devices

Add pci_ats_supported(), which checks whether a device has an ATS
capability, and whether it is trusted.  A device is untrusted if it is
plugged into an external-facing port such as Thunderbolt and could be
spoofing an existing device to exploit weaknesses in the IOMMU
configuration.  PCIe ATS is one such weaknesses since it allows
endpoints to cache IOMMU translations and emit transactions with
'Translated' Address Type (10b) that partially bypass the IOMMU
translation.

The SMMUv3 and VT-d IOMMU drivers already disallow ATS and transactions
with 'Translated' Address Type for untrusted devices.  Add the check to
pci_enable_ats() to let other drivers (AMD IOMMU for now) benefit from
it.

By checking ats_cap, the pci_ats_supported() helper also returns whether
ATS was globally disabled with pci=noats, and could later include more
things, for example whether the whole PCIe hierarchy down to the
endpoint supports ATS.

Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
Reviewed-by: Joerg Roedel <jroedel@suse.de>
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
Link: https://lore.kernel.org/r/20200520152201.3309416-2-jean-philippe@linaro.org
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/pci/ats.c
include/linux/pci-ats.h