linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] cxl: Fix off by one error allowing subsequent mmap page to be accessed
@ 2015-07-07  5:45 Ian Munsie
  2015-07-07  5:45 ` [PATCH 2/2] cxl: Fail mmap if requested mapping is larger than assigned problem state area Ian Munsie
  2015-07-08 10:54 ` [1/2] cxl: Fix off by one error allowing subsequent mmap page to be accessed Michael Ellerman
  0 siblings, 2 replies; 4+ messages in thread
From: Ian Munsie @ 2015-07-07  5:45 UTC (permalink / raw)
  To: mpe; +Cc: mikey, linux-kernel, linuxppc-dev, Matt Ochs, Ian Munsie, stable

From: Ian Munsie <imunsie@au1.ibm.com>

It was discovered that if a process mmaped their problem state area they
were able to access one page more than expected, potentially allowing
them to access the problem state area of an unrelated process.

This was due to a simple off by one error in the mmap fault handler
introduced in 0712dc7e73e59d79bcead5d5520acf4e9e917e87 ("cxl: Fix issues
when unmapping contexts"), which is fixed in this patch.

Cc: stable@vger.kernel.org
Fixes: 0712dc7e73e5 ("cxl: Fix issues when unmapping contexts")
Signed-off-by: Ian Munsie <imunsie@au1.ibm.com>
---
 drivers/misc/cxl/context.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/misc/cxl/context.c b/drivers/misc/cxl/context.c
index 2a4c80a..6c1ce51 100644
--- a/drivers/misc/cxl/context.c
+++ b/drivers/misc/cxl/context.c
@@ -113,11 +113,11 @@ static int cxl_mmap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
 
 	if (ctx->afu->current_mode == CXL_MODE_DEDICATED) {
 		area = ctx->afu->psn_phys;
-		if (offset > ctx->afu->adapter->ps_size)
+		if (offset >= ctx->afu->adapter->ps_size)
 			return VM_FAULT_SIGBUS;
 	} else {
 		area = ctx->psn_phys;
-		if (offset > ctx->psn_size)
+		if (offset >= ctx->psn_size)
 			return VM_FAULT_SIGBUS;
 	}
 
-- 
2.1.4

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

* [PATCH 2/2] cxl: Fail mmap if requested mapping is larger than assigned problem state area
  2015-07-07  5:45 [PATCH 1/2] cxl: Fix off by one error allowing subsequent mmap page to be accessed Ian Munsie
@ 2015-07-07  5:45 ` Ian Munsie
  2015-07-08 10:54   ` [2/2] " Michael Ellerman
  2015-07-08 10:54 ` [1/2] cxl: Fix off by one error allowing subsequent mmap page to be accessed Michael Ellerman
  1 sibling, 1 reply; 4+ messages in thread
From: Ian Munsie @ 2015-07-07  5:45 UTC (permalink / raw)
  To: mpe; +Cc: mikey, linux-kernel, linuxppc-dev, Matt Ochs, Ian Munsie

From: Ian Munsie <imunsie@au1.ibm.com>

This patch makes the mmap call fail outright if the requested region is
larger than the problem state area assigned to the context so the error
is reported immediately rather than waiting for an attempt to access an
address out of bounds.

Although we never expect users to map more than the assigned problem
state area and are not aware of anyone doing this (other than for
testing), this does have the potential to break users if someone has
used a larger range regardless. I'm submitting it for consideration, but
if this change is not considered acceptable the previous patch is
sufficient to prevent access out of bounds without breaking anyone.

Signed-off-by: Ian Munsie <imunsie@au1.ibm.com>
---
 drivers/misc/cxl/context.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/drivers/misc/cxl/context.c b/drivers/misc/cxl/context.c
index 6c1ce51..1287148 100644
--- a/drivers/misc/cxl/context.c
+++ b/drivers/misc/cxl/context.c
@@ -145,8 +145,16 @@ static const struct vm_operations_struct cxl_mmap_vmops = {
  */
 int cxl_context_iomap(struct cxl_context *ctx, struct vm_area_struct *vma)
 {
+	u64 start = vma->vm_pgoff << PAGE_SHIFT;
 	u64 len = vma->vm_end - vma->vm_start;
-	len = min(len, ctx->psn_size);
+
+	if (ctx->afu->current_mode == CXL_MODE_DEDICATED) {
+		if (start + len > ctx->afu->adapter->ps_size)
+			return -EINVAL;
+	} else {
+		if (start + len > ctx->psn_size)
+			return -EINVAL;
+	}
 
 	if (ctx->afu->current_mode != CXL_MODE_DEDICATED) {
 		/* make sure there is a valid per process space for this AFU */
-- 
2.1.4

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

* Re: [1/2] cxl: Fix off by one error allowing subsequent mmap page to be accessed
  2015-07-07  5:45 [PATCH 1/2] cxl: Fix off by one error allowing subsequent mmap page to be accessed Ian Munsie
  2015-07-07  5:45 ` [PATCH 2/2] cxl: Fail mmap if requested mapping is larger than assigned problem state area Ian Munsie
@ 2015-07-08 10:54 ` Michael Ellerman
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2015-07-08 10:54 UTC (permalink / raw)
  To: Ian Munsie
  Cc: mikey, Matt Ochs, linux-kernel, stable, linuxppc-dev, Ian Munsie

On Tue, 2015-07-07 at 05:45:45 UTC, Ian Munsie wrote:
> From: Ian Munsie <imunsie@au1.ibm.com>
> 
> It was discovered that if a process mmaped their problem state area they
> were able to access one page more than expected, potentially allowing
> them to access the problem state area of an unrelated process.
> 
> This was due to a simple off by one error in the mmap fault handler
> introduced in 0712dc7e73e59d79bcead5d5520acf4e9e917e87 ("cxl: Fix issues
> when unmapping contexts"), which is fixed in this patch.
> 
> Cc: stable@vger.kernel.org
> Fixes: 0712dc7e73e5 ("cxl: Fix issues when unmapping contexts")
> Signed-off-by: Ian Munsie <imunsie@au1.ibm.com>

Applied to powerpc fixes, thanks.

https://git.kernel.org/cgit/linux/kernel/git/powerpc/linux.git/commit/?h=fixes&id=10a5894f2dedd8a26b3132497445b314c0d952c4

cheers

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

* Re: [2/2] cxl: Fail mmap if requested mapping is larger than assigned problem state area
  2015-07-07  5:45 ` [PATCH 2/2] cxl: Fail mmap if requested mapping is larger than assigned problem state area Ian Munsie
@ 2015-07-08 10:54   ` Michael Ellerman
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2015-07-08 10:54 UTC (permalink / raw)
  To: Ian Munsie; +Cc: Matt Ochs, linuxppc-dev, mikey, linux-kernel, Ian Munsie

On Tue, 2015-07-07 at 05:45:46 UTC, Ian Munsie wrote:
> From: Ian Munsie <imunsie@au1.ibm.com>
> 
> This patch makes the mmap call fail outright if the requested region is
> larger than the problem state area assigned to the context so the error
> is reported immediately rather than waiting for an attempt to access an
> address out of bounds.
> 
> Although we never expect users to map more than the assigned problem
> state area and are not aware of anyone doing this (other than for
> testing), this does have the potential to break users if someone has
> used a larger range regardless. I'm submitting it for consideration, but
> if this change is not considered acceptable the previous patch is
> sufficient to prevent access out of bounds without breaking anyone.
> 
> Signed-off-by: Ian Munsie <imunsie@au1.ibm.com>

Applied to powerpc fixes, thanks.

https://git.kernel.org/cgit/linux/kernel/git/powerpc/linux.git/commit/?h=fixes&id=5caaf5346892d1e7f0b8b7223062644f8538483f

cheers

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

end of thread, other threads:[~2015-07-08 10:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-07  5:45 [PATCH 1/2] cxl: Fix off by one error allowing subsequent mmap page to be accessed Ian Munsie
2015-07-07  5:45 ` [PATCH 2/2] cxl: Fail mmap if requested mapping is larger than assigned problem state area Ian Munsie
2015-07-08 10:54   ` [2/2] " Michael Ellerman
2015-07-08 10:54 ` [1/2] cxl: Fix off by one error allowing subsequent mmap page to be accessed Michael Ellerman

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).