* [PATCH] arm: dma-mapping: fix off-by-one error in bitmap size check
@ 2015-07-01 12:48 Marek Szyprowski
2015-07-01 13:12 ` Ard Biesheuvel
2015-07-01 13:46 ` [PATCH v2] " Marek Szyprowski
0 siblings, 2 replies; 4+ messages in thread
From: Marek Szyprowski @ 2015-07-01 12:48 UTC (permalink / raw)
To: linux-arm-kernel
nr_bitmaps member of mapping structure stores the number of already
allocated bitmaps and it is interpreted as loop iterator (it starts from
0 not from 1), so a comparison against number of possible bitmap
extensions should include this fact. This patch fixes this by changing
the extension failure condition. This issue has been introduced by
commit 4d852ef8c2544ce21ae41414099a7504c61164a0 ("arm: dma-mapping: Add
support to extend DMA IOMMU mappings").
Reported-by: Hyungwon Hwang <human.hwang@samsung.com>
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
CC: stable at vger.kernel.org # v3.15+
---
arch/arm/mm/dma-mapping.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
index a64b7f621067..05619542a1c0 100644
--- a/arch/arm/mm/dma-mapping.c
+++ b/arch/arm/mm/dma-mapping.c
@@ -2015,7 +2015,7 @@ static int extend_iommu_mapping(struct dma_iommu_mapping *mapping)
{
int next_bitmap;
- if (mapping->nr_bitmaps > mapping->extensions)
+ if (mapping->nr_bitmaps => mapping->extensions)
return -EINVAL;
next_bitmap = mapping->nr_bitmaps;
--
1.9.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] arm: dma-mapping: fix off-by-one error in bitmap size check
2015-07-01 12:48 [PATCH] arm: dma-mapping: fix off-by-one error in bitmap size check Marek Szyprowski
@ 2015-07-01 13:12 ` Ard Biesheuvel
2015-07-01 13:46 ` [PATCH v2] " Marek Szyprowski
1 sibling, 0 replies; 4+ messages in thread
From: Ard Biesheuvel @ 2015-07-01 13:12 UTC (permalink / raw)
To: linux-arm-kernel
On 1 July 2015 at 14:48, Marek Szyprowski <m.szyprowski@samsung.com> wrote:
> nr_bitmaps member of mapping structure stores the number of already
> allocated bitmaps and it is interpreted as loop iterator (it starts from
> 0 not from 1), so a comparison against number of possible bitmap
> extensions should include this fact. This patch fixes this by changing
> the extension failure condition. This issue has been introduced by
> commit 4d852ef8c2544ce21ae41414099a7504c61164a0 ("arm: dma-mapping: Add
> support to extend DMA IOMMU mappings").
>
> Reported-by: Hyungwon Hwang <human.hwang@samsung.com>
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> CC: stable at vger.kernel.org # v3.15+
> ---
> arch/arm/mm/dma-mapping.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
> index a64b7f621067..05619542a1c0 100644
> --- a/arch/arm/mm/dma-mapping.c
> +++ b/arch/arm/mm/dma-mapping.c
> @@ -2015,7 +2015,7 @@ static int extend_iommu_mapping(struct dma_iommu_mapping *mapping)
> {
> int next_bitmap;
>
> - if (mapping->nr_bitmaps > mapping->extensions)
> + if (mapping->nr_bitmaps => mapping->extensions)
Did you build test this?
> return -EINVAL;
>
> next_bitmap = mapping->nr_bitmaps;
> --
> 1.9.2
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2] arm: dma-mapping: fix off-by-one error in bitmap size check
2015-07-01 12:48 [PATCH] arm: dma-mapping: fix off-by-one error in bitmap size check Marek Szyprowski
2015-07-01 13:12 ` Ard Biesheuvel
@ 2015-07-01 13:46 ` Marek Szyprowski
2015-07-02 0:50 ` Hyungwon Hwang
1 sibling, 1 reply; 4+ messages in thread
From: Marek Szyprowski @ 2015-07-01 13:46 UTC (permalink / raw)
To: linux-arm-kernel
nr_bitmaps member of mapping structure stores the number of already
allocated bitmaps and it is interpreted as loop iterator (it starts from
0 not from 1), so a comparison against number of possible bitmap
extensions should include this fact. This patch fixes this by changing
the extension failure condition. This issue has been introduced by
commit 4d852ef8c2544ce21ae41414099a7504c61164a0 ("arm: dma-mapping: Add
support to extend DMA IOMMU mappings").
Reported-by: Hyungwon Hwang <human.hwang@samsung.com>
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
CC: stable at vger.kernel.org # v3.15+
---
V2 fixed build problem caused by a hurry in patch preparation. My fault.
I'm really sorry for the noise.
Best regards
Marek Szyprowski, PhD
Samsung R&D Institute Poland
---
arch/arm/mm/dma-mapping.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
index a64b7f621067..05619542a1c0 100644
--- a/arch/arm/mm/dma-mapping.c
+++ b/arch/arm/mm/dma-mapping.c
@@ -2015,7 +2015,7 @@ static int extend_iommu_mapping(struct dma_iommu_mapping *mapping)
{
int next_bitmap;
- if (mapping->nr_bitmaps > mapping->extensions)
+ if (mapping->nr_bitmaps >= mapping->extensions)
return -EINVAL;
next_bitmap = mapping->nr_bitmaps;
--
1.9.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2] arm: dma-mapping: fix off-by-one error in bitmap size check
2015-07-01 13:46 ` [PATCH v2] " Marek Szyprowski
@ 2015-07-02 0:50 ` Hyungwon Hwang
0 siblings, 0 replies; 4+ messages in thread
From: Hyungwon Hwang @ 2015-07-02 0:50 UTC (permalink / raw)
To: linux-arm-kernel
Dear Marek,
On Wed, 01 Jul 2015 15:46:38 +0200
Marek Szyprowski <m.szyprowski@samsung.com> wrote:
> nr_bitmaps member of mapping structure stores the number of already
> allocated bitmaps and it is interpreted as loop iterator (it starts
> from 0 not from 1), so a comparison against number of possible bitmap
> extensions should include this fact. This patch fixes this by changing
> the extension failure condition. This issue has been introduced by
> commit 4d852ef8c2544ce21ae41414099a7504c61164a0 ("arm: dma-mapping:
> Add support to extend DMA IOMMU mappings").
>
> Reported-by: Hyungwon Hwang <human.hwang@samsung.com>
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> CC: stable at vger.kernel.org # v3.15+
> ---
> V2 fixed build problem caused by a hurry in patch preparation. My
> fault. I'm really sorry for the noise.
>
> Best regards
> Marek Szyprowski, PhD
> Samsung R&D Institute Poland
> ---
> arch/arm/mm/dma-mapping.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
> index a64b7f621067..05619542a1c0 100644
> --- a/arch/arm/mm/dma-mapping.c
> +++ b/arch/arm/mm/dma-mapping.c
> @@ -2015,7 +2015,7 @@ static int extend_iommu_mapping(struct
> dma_iommu_mapping *mapping) {
> int next_bitmap;
>
> - if (mapping->nr_bitmaps > mapping->extensions)
> + if (mapping->nr_bitmaps >= mapping->extensions)
> return -EINVAL;
>
> next_bitmap = mapping->nr_bitmaps;
With this patch, the error disappeared on my private arm board. Also,
the fix is clearly reasonable.
Reviewed-by: Hyungwon Hwang <human.hwang@samsung.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-07-02 0:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-01 12:48 [PATCH] arm: dma-mapping: fix off-by-one error in bitmap size check Marek Szyprowski
2015-07-01 13:12 ` Ard Biesheuvel
2015-07-01 13:46 ` [PATCH v2] " Marek Szyprowski
2015-07-02 0:50 ` Hyungwon Hwang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).