All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] RDMA/rxe: Return -EFAULT if copy_from_user() fails
@ 2020-05-11 18:37 ` Dan Carpenter
  0 siblings, 0 replies; 16+ messages in thread
From: Dan Carpenter @ 2020-05-11 18:37 UTC (permalink / raw)
  To: Zhu Yanjun, Sudip Mukherjee
  Cc: Doug Ledford, Jason Gunthorpe, linux-rdma, kernel-janitors

This function used to always return -EINVAL but we updated it to try
preserve the error codes.  Unfortunately the copy_to_user() is returning
the number of bytes remaining to be copied instead of a negative error
code.

Fixes: a3a974b4654d ("RDMA/rxe: Always return ERR_PTR from rxe_create_mmap_info()")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
 drivers/infiniband/sw/rxe/rxe_queue.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/infiniband/sw/rxe/rxe_queue.c b/drivers/infiniband/sw/rxe/rxe_queue.c
index fef2ab5112de5..245040c3a35d0 100644
--- a/drivers/infiniband/sw/rxe/rxe_queue.c
+++ b/drivers/infiniband/sw/rxe/rxe_queue.c
@@ -50,9 +50,10 @@ int do_mmap_info(struct rxe_dev *rxe, struct mminfo __user *outbuf,
 			goto err1;
 		}
 
-		err = copy_to_user(outbuf, &ip->info, sizeof(ip->info));
-		if (err)
+		if (copy_to_user(outbuf, &ip->info, sizeof(ip->info))) {
+			err = -EFAULT;
 			goto err2;
+		}
 
 		spin_lock_bh(&rxe->pending_lock);
 		list_add(&ip->pending_mmaps, &rxe->pending_mmaps);
-- 
2.26.2

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

end of thread, other threads:[~2020-05-12 14:51 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-11 18:37 [PATCH] RDMA/rxe: Return -EFAULT if copy_from_user() fails Dan Carpenter
2020-05-11 18:37 ` Dan Carpenter
2020-05-12  1:12 ` Yanjun Zhu
2020-05-12  6:22   ` Leon Romanovsky
2020-05-12  6:22     ` Leon Romanovsky
2020-05-12  6:29 ` Leon Romanovsky
2020-05-12  6:29   ` Leon Romanovsky
2020-05-12  7:02   ` Leon Romanovsky
2020-05-12  7:02     ` Leon Romanovsky
2020-05-12  8:17     ` Dan Carpenter
2020-05-12  8:17       ` Dan Carpenter
2020-05-12  8:31       ` Leon Romanovsky
2020-05-12  8:31         ` Leon Romanovsky
2020-05-12  8:33         ` Yanjun Zhu
2020-05-12 14:51 ` Jason Gunthorpe
2020-05-12 14:51   ` 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.