On Fri, Aug 23, 2024 at 04:12:54PM -0500, Bjorn Helgaas wrote: > On Fri, Aug 23, 2024 at 04:53:16PM +0000, Esther Shimanovich wrote: > > Some computers with CPUs that lack Thunderbolt features use discrete > > Thunderbolt chips to add Thunderbolt functionality. These Thunderbolt > > chips are located within the chassis; between the root port labeled > > ExternalFacingPort and the USB-C port. > > Is this a firmware defect? I asked this before, and I interpret your > answer of "ExternalFacingPort is not 100% accurate all of the time" as > "yes, this is a firmware defect." That should be part of the commit > log and code comments. > > We (of course) have to work around firmware defects, but workarounds > need to be labeled as such instead of masquerading as generic code. > > > These Thunderbolt PCIe devices should be labeled as fixed and trusted, > > as they are built into the computer. Otherwise, security policies that > > rely on those flags may have unintended results, such as preventing > > USB-C ports from enumerating. > > > > Detect the above scenario through the process of elimination. > > > > 1) Integrated Thunderbolt host controllers already have Thunderbolt > > implemented, so anything outside their external facing root port is > > removable and untrusted. > > > > Detect them using the following properties: > > > > - Most integrated host controllers have the usb4-host-interface > > ACPI property, as described here: > > Link: https://learn.microsoft.com/en-us/windows-hardware/drivers/pci/dsd-for-pcie-root-ports#mapping-native-protocols-pcie-displayport-tunneled-through-usb4-to-usb4-host-routers > > > > - Integrated Thunderbolt PCIe root ports before Alder Lake do not > > have the usb4-host-interface ACPI property. Identify those with > > their PCI IDs instead. > > > > 2) If a root port does not have integrated Thunderbolt capabilities, but > > has the ExternalFacingPort ACPI property, that means the manufacturer > > has opted to use a discrete Thunderbolt host controller that is > > built into the computer. > > Unconvincing. If a Root Port has an external connector, is it > impossible to plug in a Thunderbolt device to that connector? I > assume the wires from a Root Port could be traces on a PCB to a > soldered-down Thunderbolt controller, OR could be wires to a connector > where a Thunderbolt controller could be plugged in. How could we tell > the difference? You are talking about soldered down controller vs. add-in card (e.g PCIe slot)? We don't really distinguish those. The whole ExternalFacingPort and the like IOMMU protection is meant for exposed hot-pluggable ports on your laptop such as Type-C where a malicious charger for instance may have a PCIe endpoint that steals your secrets. Not something that requires dissasembly, opening the system cover and plugging in the controller, connecting all the wires etc. (We have also an additional "line of defence" in Linux because we do not automatically create any PCIe tunnels and this is something user can even disable completely [there is a flip in GNOME settings that disables PCIe tunneling completely, which can be turned on whenever you are travelling for instance]).