All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] Address an issue with hardened user copy
@ 2020-08-11 19:14 Bob Pearson
  2020-08-12  5:52 ` Leon Romanovsky
  0 siblings, 1 reply; 4+ messages in thread
From: Bob Pearson @ 2020-08-11 19:14 UTC (permalink / raw)
  To: linux-rdma, jgg; +Cc: Bob Pearson

by copying to user space from the stack instead of slab cache.
This affects the rdma_rxe driver causing a warning once per boot.
The alternative is to ifigure out how to whitelist the xxx_qp struct
but this seems simple and clean.

---
 drivers/infiniband/core/uverbs_std_types_qp.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/infiniband/core/uverbs_std_types_qp.c b/drivers/infiniband/core/uverbs_std_types_qp.c
index 3bf8dcdfe7eb..2f8b14003b95 100644
--- a/drivers/infiniband/core/uverbs_std_types_qp.c
+++ b/drivers/infiniband/core/uverbs_std_types_qp.c
@@ -98,6 +98,7 @@ static int UVERBS_HANDLER(UVERBS_METHOD_QP_CREATE)(
 	struct ib_device *device;
 	u64 user_handle;
 	int ret;
+	int qp_num;
 
 	ret = uverbs_copy_from_or_zero(&cap, attrs,
 			       UVERBS_ATTR_CREATE_QP_CAP);
@@ -293,9 +294,10 @@ static int UVERBS_HANDLER(UVERBS_METHOD_QP_CREATE)(
 	if (ret)
 		return ret;
 
+	/* copy from stack to avoid whitelisting issues */
+	qp_num = qp->qp_num;
 	ret = uverbs_copy_to(attrs, UVERBS_ATTR_CREATE_QP_RESP_QP_NUM,
-			     &qp->qp_num,
-			     sizeof(qp->qp_num));
+			     &qp_num, sizeof(qp_num));
 
 	return ret;
 err_put:
-- 
2.25.1


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

* Re: [PATCH 1/1] Address an issue with hardened user copy
  2020-08-11 19:14 [PATCH 1/1] Address an issue with hardened user copy Bob Pearson
@ 2020-08-12  5:52 ` Leon Romanovsky
  2020-08-13 14:24   ` Bob Pearson
  2020-08-14 15:13   ` Jason Gunthorpe
  0 siblings, 2 replies; 4+ messages in thread
From: Leon Romanovsky @ 2020-08-12  5:52 UTC (permalink / raw)
  To: Bob Pearson; +Cc: linux-rdma, jgg, Bob Pearson

On Tue, Aug 11, 2020 at 02:14:57PM -0500, Bob Pearson wrote:
> by copying to user space from the stack instead of slab cache.
> This affects the rdma_rxe driver causing a warning once per boot.
> The alternative is to ifigure out how to whitelist the xxx_qp struct

ifigure -> figure

> but this seems simple and clean.


We have multiple cases like this in the code, what is the error exactly?
And what is "hardened user copy"?

>
> ---

Signed-off-by is missing.

>  drivers/infiniband/core/uverbs_std_types_qp.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/infiniband/core/uverbs_std_types_qp.c b/drivers/infiniband/core/uverbs_std_types_qp.c
> index 3bf8dcdfe7eb..2f8b14003b95 100644
> --- a/drivers/infiniband/core/uverbs_std_types_qp.c
> +++ b/drivers/infiniband/core/uverbs_std_types_qp.c
> @@ -98,6 +98,7 @@ static int UVERBS_HANDLER(UVERBS_METHOD_QP_CREATE)(
>  	struct ib_device *device;
>  	u64 user_handle;
>  	int ret;
> +	int qp_num;
>
>  	ret = uverbs_copy_from_or_zero(&cap, attrs,
>  			       UVERBS_ATTR_CREATE_QP_CAP);
> @@ -293,9 +294,10 @@ static int UVERBS_HANDLER(UVERBS_METHOD_QP_CREATE)(
>  	if (ret)
>  		return ret;
>
> +	/* copy from stack to avoid whitelisting issues */
> +	qp_num = qp->qp_num;
>  	ret = uverbs_copy_to(attrs, UVERBS_ATTR_CREATE_QP_RESP_QP_NUM,
> -			     &qp->qp_num,
> -			     sizeof(qp->qp_num));
> +			     &qp_num, sizeof(qp_num));
>
>  	return ret;
>  err_put:
> --
> 2.25.1
>

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

* Re: [PATCH 1/1] Address an issue with hardened user copy
  2020-08-12  5:52 ` Leon Romanovsky
@ 2020-08-13 14:24   ` Bob Pearson
  2020-08-14 15:13   ` Jason Gunthorpe
  1 sibling, 0 replies; 4+ messages in thread
From: Bob Pearson @ 2020-08-13 14:24 UTC (permalink / raw)
  To: Leon Romanovsky; +Cc: linux-rdma, jgg, Bob Pearson

On 8/12/20 12:52 AM, Leon Romanovsky wrote:
> On Tue, Aug 11, 2020 at 02:14:57PM -0500, Bob Pearson wrote:
>> by copying to user space from the stack instead of slab cache.
>> This affects the rdma_rxe driver causing a warning once per boot.
>> The alternative is to ifigure out how to whitelist the xxx_qp struct
> 
> ifigure -> figure
> 
>> but this seems simple and clean.
> 
> 
> We have multiple cases like this in the code, what is the error exactly?
> And what is "hardened user copy"?

read https://lwn.net/Articles/727322/


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

* Re: [PATCH 1/1] Address an issue with hardened user copy
  2020-08-12  5:52 ` Leon Romanovsky
  2020-08-13 14:24   ` Bob Pearson
@ 2020-08-14 15:13   ` Jason Gunthorpe
  1 sibling, 0 replies; 4+ messages in thread
From: Jason Gunthorpe @ 2020-08-14 15:13 UTC (permalink / raw)
  To: Leon Romanovsky; +Cc: Bob Pearson, linux-rdma, Bob Pearson

On Wed, Aug 12, 2020 at 08:52:55AM +0300, Leon Romanovsky wrote:
> On Tue, Aug 11, 2020 at 02:14:57PM -0500, Bob Pearson wrote:
> > by copying to user space from the stack instead of slab cache.
> > This affects the rdma_rxe driver causing a warning once per boot.
> > The alternative is to ifigure out how to whitelist the xxx_qp struct
> 
> ifigure -> figure
> 
> > but this seems simple and clean.
> 
> 
> We have multiple cases like this in the code, what is the error exactly?
> And what is "hardened user copy"?
> 
> >
> 
> Signed-off-by is missing.

Can't take any patches without signed-off-by

Jason

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

end of thread, other threads:[~2020-08-14 15:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-11 19:14 [PATCH 1/1] Address an issue with hardened user copy Bob Pearson
2020-08-12  5:52 ` Leon Romanovsky
2020-08-13 14:24   ` Bob Pearson
2020-08-14 15:13   ` Jason Gunthorpe

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.