All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] iommu/vt-d: Fix agaw for a supported 48 bit guest address width
@ 2021-08-16 11:39 Lu Baolu
  2021-08-16 11:47 ` Greg Kroah-Hartman
  2021-08-16 11:48 ` Greg Kroah-Hartman
  0 siblings, 2 replies; 6+ messages in thread
From: Lu Baolu @ 2021-08-16 11:39 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Joerg Roedel, stable, Saeed Mirzamohammadi, Ashok Raj,
	Camille Lu, Lu Baolu

From: Saeed Mirzamohammadi <saeed.mirzamohammadi@oracle.com>

[ Upstream commit 327d5b2fee91c404a3956c324193892cf2cc9528 ]

The IOMMU driver calculates the guest addressability for a DMA request
based on the value of the mgaw reported from the IOMMU. However, this
is a fused value and as mentioned in the spec, the guest width
should be calculated based on the minimum of supported adjusted guest
address width (SAGAW) and MGAW.

This is from specification:
"Guest addressability for a given DMA request is limited to the
minimum of the value reported through this field and the adjusted
guest address width of the corresponding page-table structure.
(Adjusted guest address widths supported by hardware are reported
through the SAGAW field)."

This causes domain initialization to fail and following
errors appear for EHCI PCI driver:

[    2.486393] ehci-pci 0000:01:00.4: EHCI Host Controller
[    2.486624] ehci-pci 0000:01:00.4: new USB bus registered, assigned bus
number 1
[    2.489127] ehci-pci 0000:01:00.4: DMAR: Allocating domain failed
[    2.489350] ehci-pci 0000:01:00.4: DMAR: 32bit DMA uses non-identity
mapping
[    2.489359] ehci-pci 0000:01:00.4: can't setup: -12
[    2.489531] ehci-pci 0000:01:00.4: USB bus 1 deregistered
[    2.490023] ehci-pci 0000:01:00.4: init 0000:01:00.4 fail, -12
[    2.490358] ehci-pci: probe of 0000:01:00.4 failed with error -12

This issue happens when the value of the sagaw corresponds to a
48-bit agaw. This fix updates the calculation of the agaw based on
the minimum of IOMMU's sagaw value and MGAW.

This issue happens on the code path of getting a private domain for a
device. A private domain was needed when the domain of an iommu group
couldn't meet the requirement of a device. The IOMMU core has been
evolved to eliminate the need for private domain, hence this code path
has alreay been removed from the upstream since commit 327d5b2fee91c
("iommu/vt-d: Allow 32bit devices to uses DMA domain"). Instead of back
porting all patches that are required for removing the private domain,
this simply fixes it in the affected stable kernel between v4.16 and v5.7.

[baolu: The orignal patch could be found here
 https://lore.kernel.org/linux-iommu/20210412202736.70765-1-saeed.mirzamohammadi@oracle.com/.
 I added commit message according to Greg's comments at
 https://lore.kernel.org/linux-iommu/YHZ%2FT9x7Xjf1r6fI@kroah.com/.]

Cc: Joerg Roedel <joro@8bytes.org>
Cc: Ashok Raj <ashok.raj@intel.com>
Cc: stable@vger.kernel.org #v4.16+
Signed-off-by: Saeed Mirzamohammadi <saeed.mirzamohammadi@oracle.com>
Tested-by: Camille Lu <camille.lu@hpe.com>
Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
---
 drivers/iommu/intel-iommu.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index 953d86ca6d2b..a2a03df97704 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -1853,7 +1853,7 @@ static inline int guestwidth_to_adjustwidth(int gaw)
 static int domain_init(struct dmar_domain *domain, struct intel_iommu *iommu,
 		       int guest_width)
 {
-	int adjust_width, agaw;
+	int adjust_width, agaw, cap_width;
 	unsigned long sagaw;
 	int err;
 
@@ -1867,8 +1867,9 @@ static int domain_init(struct dmar_domain *domain, struct intel_iommu *iommu,
 	domain_reserve_special_ranges(domain);
 
 	/* calculate AGAW */
-	if (guest_width > cap_mgaw(iommu->cap))
-		guest_width = cap_mgaw(iommu->cap);
+	cap_width = min_t(int, cap_mgaw(iommu->cap), agaw_to_width(iommu->agaw));
+	if (guest_width > cap_width)
+		guest_width = cap_width;
 	domain->gaw = guest_width;
 	adjust_width = guestwidth_to_adjustwidth(guest_width);
 	agaw = width_to_agaw(adjust_width);
-- 
2.25.1


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

* Re: [PATCH 1/1] iommu/vt-d: Fix agaw for a supported 48 bit guest address width
  2021-08-16 11:39 [PATCH 1/1] iommu/vt-d: Fix agaw for a supported 48 bit guest address width Lu Baolu
@ 2021-08-16 11:47 ` Greg Kroah-Hartman
  2021-08-16 11:48 ` Greg Kroah-Hartman
  1 sibling, 0 replies; 6+ messages in thread
From: Greg Kroah-Hartman @ 2021-08-16 11:47 UTC (permalink / raw)
  To: Lu Baolu
  Cc: Joerg Roedel, stable, Saeed Mirzamohammadi, Ashok Raj, Camille Lu

On Mon, Aug 16, 2021 at 07:39:32PM +0800, Lu Baolu wrote:
> From: Saeed Mirzamohammadi <saeed.mirzamohammadi@oracle.com>
> 
> [ Upstream commit 327d5b2fee91c404a3956c324193892cf2cc9528 ]
> 
> The IOMMU driver calculates the guest addressability for a DMA request
> based on the value of the mgaw reported from the IOMMU. However, this
> is a fused value and as mentioned in the spec, the guest width
> should be calculated based on the minimum of supported adjusted guest
> address width (SAGAW) and MGAW.
> 
> This is from specification:
> "Guest addressability for a given DMA request is limited to the
> minimum of the value reported through this field and the adjusted
> guest address width of the corresponding page-table structure.
> (Adjusted guest address widths supported by hardware are reported
> through the SAGAW field)."
> 
> This causes domain initialization to fail and following
> errors appear for EHCI PCI driver:
> 
> [    2.486393] ehci-pci 0000:01:00.4: EHCI Host Controller
> [    2.486624] ehci-pci 0000:01:00.4: new USB bus registered, assigned bus
> number 1
> [    2.489127] ehci-pci 0000:01:00.4: DMAR: Allocating domain failed
> [    2.489350] ehci-pci 0000:01:00.4: DMAR: 32bit DMA uses non-identity
> mapping
> [    2.489359] ehci-pci 0000:01:00.4: can't setup: -12
> [    2.489531] ehci-pci 0000:01:00.4: USB bus 1 deregistered
> [    2.490023] ehci-pci 0000:01:00.4: init 0000:01:00.4 fail, -12
> [    2.490358] ehci-pci: probe of 0000:01:00.4 failed with error -12
> 
> This issue happens when the value of the sagaw corresponds to a
> 48-bit agaw. This fix updates the calculation of the agaw based on
> the minimum of IOMMU's sagaw value and MGAW.
> 
> This issue happens on the code path of getting a private domain for a
> device. A private domain was needed when the domain of an iommu group
> couldn't meet the requirement of a device. The IOMMU core has been
> evolved to eliminate the need for private domain, hence this code path
> has alreay been removed from the upstream since commit 327d5b2fee91c
> ("iommu/vt-d: Allow 32bit devices to uses DMA domain"). Instead of back
> porting all patches that are required for removing the private domain,
> this simply fixes it in the affected stable kernel between v4.16 and v5.7.
> 
> [baolu: The orignal patch could be found here
>  https://lore.kernel.org/linux-iommu/20210412202736.70765-1-saeed.mirzamohammadi@oracle.com/.
>  I added commit message according to Greg's comments at
>  https://lore.kernel.org/linux-iommu/YHZ%2FT9x7Xjf1r6fI@kroah.com/.]
> 
> Cc: Joerg Roedel <joro@8bytes.org>
> Cc: Ashok Raj <ashok.raj@intel.com>
> Cc: stable@vger.kernel.org #v4.16+
> Signed-off-by: Saeed Mirzamohammadi <saeed.mirzamohammadi@oracle.com>
> Tested-by: Camille Lu <camille.lu@hpe.com>
> Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
> ---
>  drivers/iommu/intel-iommu.c | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)

What stable tree(s) is this backport for?

thanks,

greg k-h

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

* Re: [PATCH 1/1] iommu/vt-d: Fix agaw for a supported 48 bit guest address width
  2021-08-16 11:39 [PATCH 1/1] iommu/vt-d: Fix agaw for a supported 48 bit guest address width Lu Baolu
  2021-08-16 11:47 ` Greg Kroah-Hartman
@ 2021-08-16 11:48 ` Greg Kroah-Hartman
  2021-08-16 12:20   ` Lu Baolu
  1 sibling, 1 reply; 6+ messages in thread
From: Greg Kroah-Hartman @ 2021-08-16 11:48 UTC (permalink / raw)
  To: Lu Baolu
  Cc: Joerg Roedel, stable, Saeed Mirzamohammadi, Ashok Raj, Camille Lu

On Mon, Aug 16, 2021 at 07:39:32PM +0800, Lu Baolu wrote:
> From: Saeed Mirzamohammadi <saeed.mirzamohammadi@oracle.com>
> 
> [ Upstream commit 327d5b2fee91c404a3956c324193892cf2cc9528 ]

Also, this really does not look like this commit at all :(

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

* Re: [PATCH 1/1] iommu/vt-d: Fix agaw for a supported 48 bit guest address width
  2021-08-16 11:48 ` Greg Kroah-Hartman
@ 2021-08-16 12:20   ` Lu Baolu
  2021-08-16 12:37     ` Greg Kroah-Hartman
  0 siblings, 1 reply; 6+ messages in thread
From: Lu Baolu @ 2021-08-16 12:20 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: baolu.lu, Joerg Roedel, stable, Saeed Mirzamohammadi, Ashok Raj,
	Camille Lu

Hi Greg,

On 2021/8/16 19:48, Greg Kroah-Hartman wrote:
> On Mon, Aug 16, 2021 at 07:39:32PM +0800, Lu Baolu wrote:
>> From: Saeed Mirzamohammadi <saeed.mirzamohammadi@oracle.com>
>>
>> [ Upstream commit 327d5b2fee91c404a3956c324193892cf2cc9528 ]
> 
> Also, this really does not look like this commit at all :(
> 

This is not a back port. It's a fix for some stable kernels. Sorry for
the confusion.

The error happens in a helper function that has been deprecated in the
upstream kernel by above commit. I added below explanation in the commit
message:

"
This issue happens on the code path of getting a private domain for a
device. A private domain was needed when the domain of an iommu group
couldn't meet the requirement of a device. The IOMMU core has been
evolved to eliminate the need for private domain, hence this code path
has already been removed from the upstream since commit 327d5b2fee91c
("iommu/vt-d: Allow 32bit devices to uses DMA domain"). Instead of back
porting all patches that are required for removing the private domain,
this simply fixes it in the affected stable kernel between v4.16 and v5.7.
"

I'm sorry if this is not the right way to do this.

Best regards,
baolu

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

* Re: [PATCH 1/1] iommu/vt-d: Fix agaw for a supported 48 bit guest address width
  2021-08-16 12:20   ` Lu Baolu
@ 2021-08-16 12:37     ` Greg Kroah-Hartman
  2021-08-16 13:15       ` Lu Baolu
  0 siblings, 1 reply; 6+ messages in thread
From: Greg Kroah-Hartman @ 2021-08-16 12:37 UTC (permalink / raw)
  To: Lu Baolu
  Cc: Joerg Roedel, stable, Saeed Mirzamohammadi, Ashok Raj, Camille Lu

On Mon, Aug 16, 2021 at 08:20:31PM +0800, Lu Baolu wrote:
> Hi Greg,
> 
> On 2021/8/16 19:48, Greg Kroah-Hartman wrote:
> > On Mon, Aug 16, 2021 at 07:39:32PM +0800, Lu Baolu wrote:
> > > From: Saeed Mirzamohammadi <saeed.mirzamohammadi@oracle.com>
> > > 
> > > [ Upstream commit 327d5b2fee91c404a3956c324193892cf2cc9528 ]
> > 
> > Also, this really does not look like this commit at all :(
> > 
> 
> This is not a back port. It's a fix for some stable kernels. Sorry for
> the confusion.
> 
> The error happens in a helper function that has been deprecated in the
> upstream kernel by above commit. I added below explanation in the commit
> message:
> 
> "
> This issue happens on the code path of getting a private domain for a
> device. A private domain was needed when the domain of an iommu group
> couldn't meet the requirement of a device. The IOMMU core has been
> evolved to eliminate the need for private domain, hence this code path
> has already been removed from the upstream since commit 327d5b2fee91c
> ("iommu/vt-d: Allow 32bit devices to uses DMA domain"). Instead of back
> porting all patches that are required for removing the private domain,
> this simply fixes it in the affected stable kernel between v4.16 and v5.7.
> "
> 
> I'm sorry if this is not the right way to do this.

Ah, sorry, I totally missed that.  This is fine, now queued up for
4.19.y and 5.4.y.

thanks,

greg k-h

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

* Re: [PATCH 1/1] iommu/vt-d: Fix agaw for a supported 48 bit guest address width
  2021-08-16 12:37     ` Greg Kroah-Hartman
@ 2021-08-16 13:15       ` Lu Baolu
  0 siblings, 0 replies; 6+ messages in thread
From: Lu Baolu @ 2021-08-16 13:15 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: baolu.lu, Joerg Roedel, stable, Saeed Mirzamohammadi, Ashok Raj,
	Camille Lu

On 2021/8/16 20:37, Greg Kroah-Hartman wrote:
> On Mon, Aug 16, 2021 at 08:20:31PM +0800, Lu Baolu wrote:
>> Hi Greg,
>>
>> On 2021/8/16 19:48, Greg Kroah-Hartman wrote:
>>> On Mon, Aug 16, 2021 at 07:39:32PM +0800, Lu Baolu wrote:
>>>> From: Saeed Mirzamohammadi <saeed.mirzamohammadi@oracle.com>
>>>>
>>>> [ Upstream commit 327d5b2fee91c404a3956c324193892cf2cc9528 ]
>>>
>>> Also, this really does not look like this commit at all :(
>>>
>>
>> This is not a back port. It's a fix for some stable kernels. Sorry for
>> the confusion.
>>
>> The error happens in a helper function that has been deprecated in the
>> upstream kernel by above commit. I added below explanation in the commit
>> message:
>>
>> "
>> This issue happens on the code path of getting a private domain for a
>> device. A private domain was needed when the domain of an iommu group
>> couldn't meet the requirement of a device. The IOMMU core has been
>> evolved to eliminate the need for private domain, hence this code path
>> has already been removed from the upstream since commit 327d5b2fee91c
>> ("iommu/vt-d: Allow 32bit devices to uses DMA domain"). Instead of back
>> porting all patches that are required for removing the private domain,
>> this simply fixes it in the affected stable kernel between v4.16 and v5.7.
>> "
>>
>> I'm sorry if this is not the right way to do this.
> 
> Ah, sorry, I totally missed that.  This is fine, now queued up for
> 4.19.y and 5.4.y.

Thank you! Greg.

Best regards,
baolu

> 
> thanks,
> 
> greg k-h
> 

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

end of thread, other threads:[~2021-08-16 13:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-16 11:39 [PATCH 1/1] iommu/vt-d: Fix agaw for a supported 48 bit guest address width Lu Baolu
2021-08-16 11:47 ` Greg Kroah-Hartman
2021-08-16 11:48 ` Greg Kroah-Hartman
2021-08-16 12:20   ` Lu Baolu
2021-08-16 12:37     ` Greg Kroah-Hartman
2021-08-16 13:15       ` Lu Baolu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.